@maxim_mazurok/gapi.client.playintegrity-v1 0.0.20241117 → 0.0.20241119
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: 20241119
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -64,7 +64,13 @@ declare namespace gapi.client {
|
|
|
64
64
|
/** Plain token payload generated from the decoded integrity token. */
|
|
65
65
|
tokenPayloadExternal?: TokenPayloadExternal;
|
|
66
66
|
}
|
|
67
|
+
interface DeviceAttributes {
|
|
68
|
+
/** 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. */
|
|
69
|
+
sdkVersion?: number;
|
|
70
|
+
}
|
|
67
71
|
interface DeviceIntegrity {
|
|
72
|
+
/** Attributes of the device where the integrity token was generated. */
|
|
73
|
+
deviceAttributes?: DeviceAttributes;
|
|
68
74
|
/** Details about the device recall bits set by the developer. */
|
|
69
75
|
deviceRecall?: DeviceRecall;
|
|
70
76
|
/** Details about the integrity of the device the app is running on. */
|