@maxim_mazurok/gapi.client.playintegrity-v1 0.2.20260625 → 0.3.20260628
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 +5 -15
- 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: 20260628
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -43,10 +43,7 @@ declare namespace gapi.client {
|
|
|
43
43
|
accountActivity?: AccountActivity;
|
|
44
44
|
/** Required. Details about the licensing status of the user for the app in the scope. */
|
|
45
45
|
appLicensingVerdict?:
|
|
46
|
-
| '
|
|
47
|
-
| 'LICENSED'
|
|
48
|
-
| 'UNLICENSED'
|
|
49
|
-
| 'UNEVALUATED';
|
|
46
|
+
'UNKNOWN' | 'LICENSED' | 'UNLICENSED' | 'UNEVALUATED';
|
|
50
47
|
}
|
|
51
48
|
interface AppAccessRiskVerdict {
|
|
52
49
|
/** List of detected app types signalled for App Access Risk. */
|
|
@@ -64,10 +61,7 @@ declare namespace gapi.client {
|
|
|
64
61
|
interface AppIntegrity {
|
|
65
62
|
/** Required. Details about the app recognition verdict */
|
|
66
63
|
appRecognitionVerdict?:
|
|
67
|
-
| '
|
|
68
|
-
| 'PLAY_RECOGNIZED'
|
|
69
|
-
| 'UNRECOGNIZED_VERSION'
|
|
70
|
-
| 'UNEVALUATED';
|
|
64
|
+
'UNKNOWN' | 'PLAY_RECOGNIZED' | 'UNRECOGNIZED_VERSION' | 'UNEVALUATED';
|
|
71
65
|
/** The SHA256 hash of the requesting app's signing certificates (base64 web-safe encoded). Set iff app_recognition_verdict != UNEVALUATED. */
|
|
72
66
|
certificateSha256Digest?: string[];
|
|
73
67
|
/** Package name of the application under attestation. Set iff app_recognition_verdict != UNEVALUATED. */
|
|
@@ -139,16 +133,12 @@ declare namespace gapi.client {
|
|
|
139
133
|
interface PcAccountDetails {
|
|
140
134
|
/** Required. Details about the licensing status of the user for the app in the scope. */
|
|
141
135
|
appLicensingVerdict?:
|
|
142
|
-
| '
|
|
143
|
-
| 'LICENSED'
|
|
144
|
-
| 'UNLICENSED'
|
|
145
|
-
| 'UNEVALUATED';
|
|
136
|
+
'UNKNOWN' | 'LICENSED' | 'UNLICENSED' | 'UNEVALUATED';
|
|
146
137
|
}
|
|
147
138
|
interface PcDeviceIntegrity {
|
|
148
139
|
/** Details about the integrity of the device the app is running on. */
|
|
149
140
|
deviceRecognitionVerdict?:
|
|
150
|
-
| '
|
|
151
|
-
| 'MEETS_PC_INTEGRITY'[];
|
|
141
|
+
'DEVICE_RECOGNITION_VERDICT_UNSPECIFIED' | 'MEETS_PC_INTEGRITY'[];
|
|
152
142
|
}
|
|
153
143
|
interface PcRequestDetails {
|
|
154
144
|
/** Request hash that was provided in the request. */
|