Skip to content

Commit b1c1442

Browse files
feat(playintegrity): update the api
#### playintegrity:v1 The following keys were added: - schemas.DeviceIntegrity.properties.deviceRecall.$ref (Total Keys: 1) - schemas.DeviceRecall (Total Keys: 4) - schemas.WriteDates (Total Keys: 8)
1 parent 9a8591a commit b1c1442

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

docs/dyn/playintegrity_v1.v1.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,18 @@ <h3>Method Details</h3>
124124
&quot;versionCode&quot;: &quot;A String&quot;, # Version code of the application. Set iff app_recognition_verdict != UNEVALUATED.
125125
},
126126
&quot;deviceIntegrity&quot;: { # Contains the device attestation information. Next tag: 4 # Required. Details about the device integrity.
127+
&quot;deviceRecall&quot;: { # Contains the recall bits per device set by the developer. Next tag: 3 # Details about the device recall bits set by the developer.
128+
&quot;values&quot;: { # Contains the recall bits values. # Required. Contains the recall bits values.
129+
&quot;bitFirst&quot;: True or False, # Required. First recall bit value.
130+
&quot;bitSecond&quot;: True or False, # Required. Second recall bit value.
131+
&quot;bitThird&quot;: True or False, # Required. Third recall bit value.
132+
},
133+
&quot;writeDates&quot;: { # Contains the recall bits write dates. # Required. Contains the recall bits write dates.
134+
&quot;yyyymmFirst&quot;: 42, # Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the first bit. Note that this value won&#x27;t be set if the first bit is false.
135+
&quot;yyyymmSecond&quot;: 42, # Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the second bit. Note that this value won&#x27;t be set if the second bit is false.
136+
&quot;yyyymmThird&quot;: 42, # Optional. Write time in YYYYMM format (in UTC, e.g. 202402) for the third bit. Note that this value won&#x27;t be set if the third bit is false.
137+
},
138+
},
127139
&quot;deviceRecognitionVerdict&quot;: [ # Details about the integrity of the device the app is running on.
128140
&quot;A String&quot;,
129141
],

googleapiclient/discovery_cache/documents/playintegrity.v1.json

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
}
171171
}
172172
},
173-
"revision": "20240711",
173+
"revision": "20240725",
174174
"rootUrl": "https://playintegrity.googleapis.com/",
175175
"schemas": {
176176
"AccountActivity": {
@@ -370,6 +370,10 @@
370370
"description": "Contains the device attestation information. Next tag: 4",
371371
"id": "DeviceIntegrity",
372372
"properties": {
373+
"deviceRecall": {
374+
"$ref": "DeviceRecall",
375+
"description": "Details about the device recall bits set by the developer."
376+
},
373377
"deviceRecognitionVerdict": {
374378
"description": "Details about the integrity of the device the app is running on.",
375379
"items": {
@@ -398,6 +402,21 @@
398402
},
399403
"type": "object"
400404
},
405+
"DeviceRecall": {
406+
"description": "Contains the recall bits per device set by the developer. Next tag: 3",
407+
"id": "DeviceRecall",
408+
"properties": {
409+
"values": {
410+
"$ref": "Values",
411+
"description": "Required. Contains the recall bits values."
412+
},
413+
"writeDates": {
414+
"$ref": "WriteDates",
415+
"description": "Required. Contains the recall bits write dates."
416+
}
417+
},
418+
"type": "object"
419+
},
401420
"EnvironmentDetails": {
402421
"description": "Contains information about the environment Play Integrity API runs in, e.g. Play Protect verdict.",
403422
"id": "EnvironmentDetails",
@@ -543,6 +562,28 @@
543562
},
544563
"type": "object"
545564
},
565+
"WriteDates": {
566+
"description": "Contains the recall bits write dates.",
567+
"id": "WriteDates",
568+
"properties": {
569+
"yyyymmFirst": {
570+
"description": "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.",
571+
"format": "int32",
572+
"type": "integer"
573+
},
574+
"yyyymmSecond": {
575+
"description": "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.",
576+
"format": "int32",
577+
"type": "integer"
578+
},
579+
"yyyymmThird": {
580+
"description": "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.",
581+
"format": "int32",
582+
"type": "integer"
583+
}
584+
},
585+
"type": "object"
586+
},
546587
"WriteDeviceRecallRequest": {
547588
"description": "Request to write device recall bits.",
548589
"id": "WriteDeviceRecallRequest",

0 commit comments

Comments
 (0)