@maxim_mazurok/gapi.client.playintegrity-v1 0.0.20240723 → 0.0.20240725
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 +17 -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: 20240725
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -65,11 +65,19 @@ declare namespace gapi.client {
|
|
|
65
65
|
tokenPayloadExternal?: TokenPayloadExternal;
|
|
66
66
|
}
|
|
67
67
|
interface DeviceIntegrity {
|
|
68
|
+
/** Details about the device recall bits set by the developer. */
|
|
69
|
+
deviceRecall?: DeviceRecall;
|
|
68
70
|
/** Details about the integrity of the device the app is running on. */
|
|
69
71
|
deviceRecognitionVerdict?: string[];
|
|
70
72
|
/** Details about the device activity of the device the app is running on. */
|
|
71
73
|
recentDeviceActivity?: RecentDeviceActivity;
|
|
72
74
|
}
|
|
75
|
+
interface DeviceRecall {
|
|
76
|
+
/** Required. Contains the recall bits values. */
|
|
77
|
+
values?: Values;
|
|
78
|
+
/** Required. Contains the recall bits write dates. */
|
|
79
|
+
writeDates?: WriteDates;
|
|
80
|
+
}
|
|
73
81
|
interface EnvironmentDetails {
|
|
74
82
|
/** The evaluation of the App Access Risk verdicts. */
|
|
75
83
|
appAccessRiskVerdict?: AppAccessRiskVerdict;
|
|
@@ -116,6 +124,14 @@ declare namespace gapi.client {
|
|
|
116
124
|
/** Required. Third recall bit value. */
|
|
117
125
|
bitThird?: boolean;
|
|
118
126
|
}
|
|
127
|
+
interface WriteDates {
|
|
128
|
+
/** Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the first bit. Note that this value won't be set if the first bit is false. */
|
|
129
|
+
yyyymmFirst?: number;
|
|
130
|
+
/** Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the second bit. Note that this value won't be set if the second bit is false. */
|
|
131
|
+
yyyymmSecond?: number;
|
|
132
|
+
/** Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the third bit. Note that this value won't be set if the third bit is false. */
|
|
133
|
+
yyyymmThird?: number;
|
|
134
|
+
}
|
|
119
135
|
interface WriteDeviceRecallRequest {
|
|
120
136
|
/** Required. Integrity token obtained from calling Play Integrity API. Note that the integrity token contains the existing device recall bits. The write will only succeed if those bits in the integrity token are up to date. */
|
|
121
137
|
integrityToken?: string;
|