Skip to content

Commit

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

The following keys were added:
- schemas.AppAccessRiskVerdict.properties.appsDetected (Total Keys: 2)
- schemas.AppAccessRiskVerdict.properties.otherApps.deprecated (Total Keys: 1)
- schemas.AppAccessRiskVerdict.properties.playOrSystemApps.deprecated (Total Keys: 1)
  • Loading branch information
yoshi-automation committed May 10, 2024
1 parent 5590fc1 commit 8a41e8c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 5 deletions.
7 changes: 5 additions & 2 deletions docs/dyn/playintegrity_v1.v1.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,11 @@ <h3>Method Details</h3>
},
&quot;environmentDetails&quot;: { # Contains information about the environment Play Integrity API runs in, e.g. Play Protect verdict. # Details of the environment Play Integrity API runs in.
&quot;appAccessRiskVerdict&quot;: { # Contains signals about others apps on the device which could be used to access or control the requesting app. # The evaluation of the App Access Risk verdicts.
&quot;otherApps&quot;: &quot;A String&quot;, # App access risk verdict related to apps that are not installed by Google Play, and are not preloaded on the system image by the device manufacturer.
&quot;playOrSystemApps&quot;: &quot;A String&quot;, # App access risk verdict related to apps that are not installed by the Google Play Store, and are not preloaded on the system image by the device manufacturer.
&quot;appsDetected&quot;: [ # List of detected app types signalled for App Access Risk.
&quot;A String&quot;,
],
&quot;otherApps&quot;: &quot;A String&quot;, # Deprecated: this field will be removed, please use apps_detected instead. App access risk verdict related to apps that are not installed by Google Play, and are not preloaded on the system image by the device manufacturer.
&quot;playOrSystemApps&quot;: &quot;A String&quot;, # Deprecated: this field will be removed, please use apps_detected instead. App access risk verdict related to apps that are not installed by the Google Play Store, and are not preloaded on the system image by the device manufacturer.
},
&quot;playProtectVerdict&quot;: &quot;A String&quot;, # The evaluation of Play Protect verdict.
},
Expand Down
37 changes: 34 additions & 3 deletions googleapiclient/discovery_cache/documents/playintegrity.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
}
}
},
"revision": "20240502",
"revision": "20240509",
"rootUrl": "https://playintegrity.googleapis.com/",
"schemas": {
"AccountActivity": {
Expand Down Expand Up @@ -199,8 +199,38 @@
"description": "Contains signals about others apps on the device which could be used to access or control the requesting app.",
"id": "AppAccessRiskVerdict",
"properties": {
"appsDetected": {
"description": "List of detected app types signalled for App Access Risk.",
"items": {
"enum": [
"APPS_DETECTED_UNSPECIFIED",
"KNOWN_INSTALLED",
"KNOWN_CAPTURING",
"KNOWN_OVERLAYS",
"KNOWN_CONTROLLING",
"UNKNOWN_INSTALLED",
"UNKNOWN_CAPTURING",
"UNKNOWN_OVERLAYS",
"UNKNOWN_CONTROLLING"
],
"enumDescriptions": [
"Apps detected is unspecified.",
"One or more apps is installed by Google Play or preloaded on the system partition by the device manufacturer.",
"One or more apps installed by Google Play or preloaded on the device is running that could be used to read or capture the requesting app, such as a screen recording app.",
"One or more apps installed by Google Play or preloaded on the device is running that could be used to display overlays over the requesting app.",
"One or more apps installed by Google Play or preloaded on the device is running that could be used to control the device, such as a remote support app.",
"One or more unknown apps is installed, that were not installed by Google Play or preloaded on the system partition by the device manufacturer.",
"One or more unknown apps, which were not installed by Google Play or preloaded on the device, is running that could be used to read or capture the requesting app, such as a screen recording app.",
"One or more unknown apps, which were not installed by Google Play or preloaded on the device, is running that could be used to display overlays over the requesting app.",
"One or more unknown apps, which were not installed by Google Play or preloaded on the device, is running that could be used to control the device, such as a remote support app."
],
"type": "string"
},
"type": "array"
},
"otherApps": {
"description": "App access risk verdict related to apps that are not installed by Google Play, and are not preloaded on the system image by the device manufacturer.",
"deprecated": true,
"description": "Deprecated: this field will be removed, please use apps_detected instead. App access risk verdict related to apps that are not installed by Google Play, and are not preloaded on the system image by the device manufacturer.",
"enum": [
"UNKNOWN",
"UNEVALUATED",
Expand All @@ -220,7 +250,8 @@
"type": "string"
},
"playOrSystemApps": {
"description": "App access risk verdict related to apps that are not installed by the Google Play Store, and are not preloaded on the system image by the device manufacturer.",
"deprecated": true,
"description": "Deprecated: this field will be removed, please use apps_detected instead. App access risk verdict related to apps that are not installed by the Google Play Store, and are not preloaded on the system image by the device manufacturer.",
"enum": [
"UNKNOWN",
"UNEVALUATED",
Expand Down

0 comments on commit 8a41e8c

Please sign in to comment.