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.RequestDetails.properties.requestHash.description
- schemas.RequestDetails.properties.requestHash.type

The following keys were changed:
- schemas.RequestDetails.properties.nonce.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent 9085b75 commit ab8a18a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions discovery/playintegrity-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
}
}
},
"revision": "20221214",
"revision": "20230131",
"rootUrl": "https://playintegrity.googleapis.com/",
"schemas": {
"AccountActivity": {
Expand Down Expand Up @@ -289,7 +289,11 @@
"id": "RequestDetails",
"properties": {
"nonce": {
"description": "Required. Nonce that was provided in the request (which is base64 web-safe no-wrap).",
"description": "Nonce that was provided in the request (which is base64 web-safe no-wrap).",
"type": "string"
},
"requestHash": {
"description": "Request hash that was provided in the request.",
"type": "string"
},
"requestPackageName": {
Expand Down
6 changes: 5 additions & 1 deletion src/apis/playintegrity/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,13 @@ export namespace playintegrity_v1 {
*/
export interface Schema$RequestDetails {
/**
* Required. Nonce that was provided in the request (which is base64 web-safe no-wrap).
* Nonce that was provided in the request (which is base64 web-safe no-wrap).
*/
nonce?: string | null;
/**
* Request hash that was provided in the request.
*/
requestHash?: string | null;
/**
* Required. Application package name this attestation was requested for. Note: This field makes no guarantees or promises on the caller integrity. For details on application integrity, check application_integrity.
*/
Expand Down

0 comments on commit ab8a18a

Please sign in to comment.