Skip to content

Commit 45b9d74

Browse files
feat(walletobjects): update the API
#### walletobjects:v1 The following keys were added: - schemas.Media.properties.sha512Hash.description - schemas.Media.properties.sha512Hash.format - schemas.Media.properties.sha512Hash.type
1 parent 8a1acb7 commit 45b9d74

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

discovery/walletobjects-v1.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2713,7 +2713,7 @@
27132713
}
27142714
}
27152715
},
2716-
"revision": "20260508",
2716+
"revision": "20260511",
27172717
"rootUrl": "https://walletobjects.googleapis.com/",
27182718
"schemas": {
27192719
"ActivationOptions": {
@@ -7314,6 +7314,11 @@
73147314
"format": "byte",
73157315
"type": "string"
73167316
},
7317+
"sha512Hash": {
7318+
"description": "Scotty-provided SHA512 hash for an upload.",
7319+
"format": "byte",
7320+
"type": "string"
7321+
},
73177322
"timestamp": {
73187323
"description": "Time at which the media data was last updated, in milliseconds since UNIX epoch",
73197324
"format": "uint64",

src/apis/walletobjects/v1.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2876,6 +2876,10 @@ export namespace walletobjects_v1 {
28762876
* Scotty-provided SHA256 hash for an upload.
28772877
*/
28782878
sha256Hash?: string | null;
2879+
/**
2880+
* Scotty-provided SHA512 hash for an upload.
2881+
*/
2882+
sha512Hash?: string | null;
28792883
/**
28802884
* Time at which the media data was last updated, in milliseconds since UNIX epoch
28812885
*/
@@ -17540,6 +17544,7 @@ export namespace walletobjects_v1 {
1754017544
* // "referenceType": "my_referenceType",
1754117545
* // "sha1Hash": "my_sha1Hash",
1754217546
* // "sha256Hash": "my_sha256Hash",
17547+
* // "sha512Hash": "my_sha512Hash",
1754317548
* // "timestamp": "my_timestamp",
1754417549
* // "token": "my_token"
1754517550
* // }

0 commit comments

Comments
 (0)