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.DeviceAttributes (Total Keys: 4)
- schemas.DeviceIntegrity.properties.deviceAttributes.$ref (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Nov 26, 2024
1 parent 7f1c637 commit 966b2ca
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/dyn/playintegrity_v1.v1.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ <h3>Method Details</h3>
&quot;versionCode&quot;: &quot;A String&quot;, # Version code of the application. Set iff app_recognition_verdict != UNEVALUATED.
},
&quot;deviceIntegrity&quot;: { # Contains the device attestation information. # Required. Details about the device integrity.
&quot;deviceAttributes&quot;: { # Contains information about the device for which the integrity token was generated, e.g. Android SDK version. # Attributes of the device where the integrity token was generated.
&quot;sdkVersion&quot;: 42, # Android SDK version of the device, as defined in the public Android documentation: https://developer.android.com/reference/android/os/Build.VERSION_CODES. It won&#x27;t be set if a necessary requirement was missed. For example DeviceIntegrity did not meet the minimum bar.
},
&quot;deviceRecall&quot;: { # Contains the recall bits per device set by the developer. # Details about the device recall bits set by the developer.
&quot;values&quot;: { # Contains the recall bits values. # Required. Contains the recall bits values.
&quot;bitFirst&quot;: True or False, # Required. First recall bit value.
Expand Down
18 changes: 17 additions & 1 deletion googleapiclient/discovery_cache/documents/playintegrity.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
}
}
},
"revision": "20240813",
"revision": "20241119",
"rootUrl": "https://playintegrity.googleapis.com/",
"schemas": {
"AccountActivity": {
Expand Down Expand Up @@ -366,10 +366,26 @@
},
"type": "object"
},
"DeviceAttributes": {
"description": "Contains information about the device for which the integrity token was generated, e.g. Android SDK version.",
"id": "DeviceAttributes",
"properties": {
"sdkVersion": {
"description": "Android SDK version of the device, as defined in the public Android documentation: https://developer.android.com/reference/android/os/Build.VERSION_CODES. It won't be set if a necessary requirement was missed. For example DeviceIntegrity did not meet the minimum bar.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"DeviceIntegrity": {
"description": "Contains the device attestation information.",
"id": "DeviceIntegrity",
"properties": {
"deviceAttributes": {
"$ref": "DeviceAttributes",
"description": "Attributes of the device where the integrity token was generated."
},
"deviceRecall": {
"$ref": "DeviceRecall",
"description": "Details about the device recall bits set by the developer."
Expand Down

0 comments on commit 966b2ca

Please sign in to comment.