@maxim_mazurok/gapi.client.playintegrity-v1 0.0.20250817 → 0.0.20250819
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://playintegrity.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250819
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -96,6 +96,10 @@ declare namespace gapi.client {
|
|
|
96
96
|
/** The evaluation of Play Protect verdict. */
|
|
97
97
|
playProtectVerdict?: string;
|
|
98
98
|
}
|
|
99
|
+
interface PcAccountDetails {
|
|
100
|
+
/** Required. Details about the licensing status of the user for the app in the scope. */
|
|
101
|
+
appLicensingVerdict?: string;
|
|
102
|
+
}
|
|
99
103
|
interface PcDeviceIntegrity {
|
|
100
104
|
/** Details about the integrity of the device the app is running on. */
|
|
101
105
|
deviceRecognitionVerdict?: string[];
|
|
@@ -109,6 +113,8 @@ declare namespace gapi.client {
|
|
|
109
113
|
requestTime?: string;
|
|
110
114
|
}
|
|
111
115
|
interface PcTokenPayloadExternal {
|
|
116
|
+
/** Details about the account information such as the licensing status. */
|
|
117
|
+
accountDetails?: PcAccountDetails;
|
|
112
118
|
/** Required. Details about the device integrity. */
|
|
113
119
|
deviceIntegrity?: PcDeviceIntegrity;
|
|
114
120
|
/** Required. Details about the integrity request. */
|