@maxim_mazurok/gapi.client.merchantapi-issueresolution_v1 0.0.20251105 → 0.0.20251109
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 +5 -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://merchantapi.googleapis.com/$discovery/rest?version=issueresolution_v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251109
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -433,6 +433,8 @@ declare namespace gapi.client {
|
|
|
433
433
|
oauth_token?: string;
|
|
434
434
|
/** Returns response with indentations and line breaks. */
|
|
435
435
|
prettyPrint?: boolean;
|
|
436
|
+
/** Optional. If true, the `{product}` in the `name` field of the request will be interpreted as unpadded base64url-encoded and decoded during request processing to match the decoded value. Default value is `false`. Use this if your `{product}` contains special characters, such as forward slash `/` or other characters that are unpadded base64url-encoded (as per RFC 7515: https://datatracker.ietf.org/doc/html/rfc7515#section-2). Note that future versions of the API will only accept unpadded base64url-encoded product ids, so we strongly recommend proactively setting this to `true` and encoding the product ids. */
|
|
437
|
+
productIdBase64UrlEncoded?: boolean;
|
|
436
438
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
437
439
|
quotaUser?: string;
|
|
438
440
|
/** Optional. The [IANA](https://www.iana.org/time-zones) timezone used to localize times in an issue resolution content. For example 'America/Los_Angeles'. If not set, results will use as a default UTC. */
|
|
@@ -466,6 +468,8 @@ declare namespace gapi.client {
|
|
|
466
468
|
oauth_token?: string;
|
|
467
469
|
/** Returns response with indentations and line breaks. */
|
|
468
470
|
prettyPrint?: boolean;
|
|
471
|
+
/** Optional. If true, the `{product}` in the `name` field of the request will be interpreted as unpadded base64url-encoded and decoded during request processing to match the decoded value. Default value is `false`. Use this if your `{product}` contains special characters, such as forward slash `/` or other characters that are unpadded base64url-encoded (as per RFC 7515: https://datatracker.ietf.org/doc/html/rfc7515#section-2). Note that future versions of the API will only accept unpadded base64url-encoded product ids, so we strongly recommend proactively setting this to `true` and encoding the product ids. */
|
|
472
|
+
productIdBase64UrlEncoded?: boolean;
|
|
469
473
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
470
474
|
quotaUser?: string;
|
|
471
475
|
/** Optional. The [IANA](https://www.iana.org/time-zones) timezone used to localize times in an issue resolution content. For example 'America/Los_Angeles'. If not set, results will use as a default UTC. */
|
package/package.json
CHANGED