Skip to content

Commit

Permalink
feat(playdeveloperreporting): update the api
Browse files Browse the repository at this point in the history
#### playdeveloperreporting:v1alpha1

The following keys were added:
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorReport.properties.appVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorReport.properties.vcsInformation.type (Total Keys: 1)

#### playdeveloperreporting:v1beta1

The following keys were added:
- schemas.GooglePlayDeveloperReportingV1beta1ErrorReport.properties.appVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorReport.properties.vcsInformation.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Dec 12, 2023
1 parent 9490509 commit 8e799b7
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ <h3>Method Details</h3>
{ # Response with a paginated list of error reports matching the search query.
&quot;errorReports&quot;: [ # Error reports that were found.
{ # An error report received for an app. There reports are produced by the Android platform code when a (potentially fatal) error condition is detected. Identical reports from many users will be deduplicated and coalesced into a single ErrorReport. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.
&quot;appVersion&quot;: { # Representations of an app version. # The app version on which an event in this error report occurred on.
&quot;versionCode&quot;: &quot;A String&quot;, # Numeric version code of the app version (set by the app&#x27;s developer).
},
&quot;deviceModel&quot;: { # Summary of a device # A device model on which an event in this error report occurred on.
&quot;deviceId&quot;: { # Identifier of a device. # Identifier of the device.
&quot;buildBrand&quot;: &quot;A String&quot;, # Value of Build.BRAND.
Expand All @@ -145,6 +148,7 @@ <h3>Method Details</h3>
},
&quot;reportText&quot;: &quot;A String&quot;, # Textual representation of the error report. These textual reports are produced by the platform. The reports are then sanitized and filtered to remove any potentially sensitive information. Although their format is fairly stable, they are not entirely meant for machine consumption and we cannot guarantee that there won&#x27;t be subtle changes to the formatting that may break systems trying to parse information out of the reports.
&quot;type&quot;: &quot;A String&quot;, # Type of the error for which this report was generated.
&quot;vcsInformation&quot;: &quot;A String&quot;, # Version control system information from BUNDLE-METADATA/version-control-info.textproto or META-INF/version-control-info.textproto of the app bundle or APK, respectively.
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # Page token to fetch the next page of reports.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ <h3>Method Details</h3>
{ # Response with a paginated list of error reports matching the search query.
&quot;errorReports&quot;: [ # Error reports that were found.
{ # An error report received for an app. There reports are produced by the Android platform code when a (potentially fatal) error condition is detected. Identical reports from many users will be deduplicated and coalesced into a single ErrorReport. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.
&quot;appVersion&quot;: { # Representations of an app version. # The app version on which an event in this error report occurred on.
&quot;versionCode&quot;: &quot;A String&quot;, # Numeric version code of the app version (set by the app&#x27;s developer).
},
&quot;deviceModel&quot;: { # Summary of a device # A device model on which an event in this error report occurred on.
&quot;deviceId&quot;: { # Identifier of a device. # Identifier of the device.
&quot;buildBrand&quot;: &quot;A String&quot;, # Value of Build.BRAND.
Expand All @@ -145,6 +148,7 @@ <h3>Method Details</h3>
},
&quot;reportText&quot;: &quot;A String&quot;, # Textual representation of the error report. These textual reports are produced by the platform. The reports are then sanitized and filtered to remove any potentially sensitive information. Although their format is fairly stable, they are not entirely meant for machine consumption and we cannot guarantee that there won&#x27;t be subtle changes to the formatting that may break systems trying to parse information out of the reports.
&quot;type&quot;: &quot;A String&quot;, # Type of the error for which this report was generated.
&quot;vcsInformation&quot;: &quot;A String&quot;, # Version control system information from BUNDLE-METADATA/version-control-info.textproto or META-INF/version-control-info.textproto of the app bundle or APK, respectively.
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # Page token to fetch the next page of reports.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@
}
}
},
"revision": "20231205",
"revision": "20231211",
"rootUrl": "https://playdeveloperreporting.googleapis.com/",
"schemas": {
"GooglePlayDeveloperReportingV1alpha1Anomaly": {
Expand Down Expand Up @@ -1199,6 +1199,10 @@
"description": "An error report received for an app. There reports are produced by the Android platform code when a (potentially fatal) error condition is detected. Identical reports from many users will be deduplicated and coalesced into a single ErrorReport. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.",
"id": "GooglePlayDeveloperReportingV1alpha1ErrorReport",
"properties": {
"appVersion": {
"$ref": "GooglePlayDeveloperReportingV1alpha1AppVersion",
"description": "The app version on which an event in this error report occurred on."
},
"deviceModel": {
"$ref": "GooglePlayDeveloperReportingV1alpha1DeviceModelSummary",
"description": "A device model on which an event in this error report occurred on."
Expand Down Expand Up @@ -1237,6 +1241,10 @@
"Crash caused by an unhandled exception in Java (or Kotlin or any other JVM language) or a signal in native code such as SIGSEGV."
],
"type": "string"
},
"vcsInformation": {
"description": "Version control system information from BUNDLE-METADATA/version-control-info.textproto or META-INF/version-control-info.textproto of the app bundle or APK, respectively.",
"type": "string"
}
},
"type": "object"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@
}
}
},
"revision": "20231205",
"revision": "20231211",
"rootUrl": "https://playdeveloperreporting.googleapis.com/",
"schemas": {
"GooglePlayDeveloperReportingV1beta1Anomaly": {
Expand Down Expand Up @@ -1199,6 +1199,10 @@
"description": "An error report received for an app. There reports are produced by the Android platform code when a (potentially fatal) error condition is detected. Identical reports from many users will be deduplicated and coalesced into a single ErrorReport. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.",
"id": "GooglePlayDeveloperReportingV1beta1ErrorReport",
"properties": {
"appVersion": {
"$ref": "GooglePlayDeveloperReportingV1beta1AppVersion",
"description": "The app version on which an event in this error report occurred on."
},
"deviceModel": {
"$ref": "GooglePlayDeveloperReportingV1beta1DeviceModelSummary",
"description": "A device model on which an event in this error report occurred on."
Expand Down Expand Up @@ -1237,6 +1241,10 @@
"Crash caused by an unhandled exception in Java (or Kotlin or any other JVM language) or a signal in native code such as SIGSEGV."
],
"type": "string"
},
"vcsInformation": {
"description": "Version control system information from BUNDLE-METADATA/version-control-info.textproto or META-INF/version-control-info.textproto of the app bundle or APK, respectively.",
"type": "string"
}
},
"type": "object"
Expand Down

0 comments on commit 8e799b7

Please sign in to comment.