@maxim_mazurok/gapi.client.walletobjects-v1 0.0.20250731 → 0.0.20250804
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 +9 -2
- 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://walletobjects.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250804
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1062,7 +1062,9 @@ declare namespace gapi.client {
|
|
|
1062
1062
|
contentDescription?: LocalizedString;
|
|
1063
1063
|
/** Identifies what kind of resource this is. Value: the fixed string `"walletobjects#image"`. */
|
|
1064
1064
|
kind?: string;
|
|
1065
|
-
/**
|
|
1065
|
+
/** An ID for an already uploaded private image. Either this or source_uri should be set. Requests setting both or neither will be rejected. Please contact support to use private images. */
|
|
1066
|
+
privateImageId?: string;
|
|
1067
|
+
/** A URI for the image. Either this or private_image_id should be set. Requests setting both or neither will be rejected. */
|
|
1066
1068
|
sourceUri?: ImageUri;
|
|
1067
1069
|
}
|
|
1068
1070
|
interface ImageModuleData {
|
|
@@ -2169,6 +2171,11 @@ declare namespace gapi.client {
|
|
|
2169
2171
|
/** Indicates if the object needs to have upcoming notification enabled. */
|
|
2170
2172
|
enableNotification?: boolean;
|
|
2171
2173
|
}
|
|
2174
|
+
interface UploadPrivateImageRequest {}
|
|
2175
|
+
interface UploadPrivateImageResponse {
|
|
2176
|
+
/** Unique ID of the uploaded image to be referenced later in Image.private_image_id. */
|
|
2177
|
+
privateImageId?: string;
|
|
2178
|
+
}
|
|
2172
2179
|
interface Uri {
|
|
2173
2180
|
/** The URI's title appearing in the app as text. Recommended maximum is 20 characters to ensure full string is displayed on smaller screens. Note that in some contexts this text is not used, such as when `description` is part of an image. */
|
|
2174
2181
|
description?: string;
|