@google-shopping/quota 0.3.1 → 0.5.0
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/README.md +2 -2
- package/build/protos/protos.d.ts +11 -2
- package/build/protos/protos.js +213 -60
- package/build/protos/protos.json +64 -16
- package/build/src/v1beta/quota_service_client.d.ts +26 -26
- package/build/src/v1beta/quota_service_client.js +33 -50
- package/build/src/v1beta/quota_service_client.js.map +1 -1
- package/package.json +4 -4
- package/CHANGELOG.md +0 -47
package/README.md
CHANGED
@@ -44,7 +44,7 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
|
|
44
44
|
1. [Select or create a Cloud Platform project][projects].
|
45
45
|
1. [Enable billing for your project][billing].
|
46
46
|
1. [Enable the Merchant API API][enable_api].
|
47
|
-
1. [Set up authentication
|
47
|
+
1. [Set up authentication][auth] so you can access the
|
48
48
|
API from your local workstation.
|
49
49
|
|
50
50
|
### Installing the client library
|
@@ -180,4 +180,4 @@ See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)
|
|
180
180
|
[projects]: https://console.cloud.google.com/project
|
181
181
|
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
|
182
182
|
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=merchantapi.googleapis.com
|
183
|
-
[auth]: https://cloud.google.com/docs/authentication/
|
183
|
+
[auth]: https://cloud.google.com/docs/authentication/external/set-up-adc-local
|
package/build/protos/protos.d.ts
CHANGED
@@ -1181,6 +1181,9 @@ export namespace google {
|
|
1181
1181
|
|
1182
1182
|
/** Publishing protoReferenceDocumentationUri */
|
1183
1183
|
protoReferenceDocumentationUri?: (string|null);
|
1184
|
+
|
1185
|
+
/** Publishing restReferenceDocumentationUri */
|
1186
|
+
restReferenceDocumentationUri?: (string|null);
|
1184
1187
|
}
|
1185
1188
|
|
1186
1189
|
/** Represents a Publishing. */
|
@@ -1222,6 +1225,9 @@ export namespace google {
|
|
1222
1225
|
/** Publishing protoReferenceDocumentationUri. */
|
1223
1226
|
public protoReferenceDocumentationUri: string;
|
1224
1227
|
|
1228
|
+
/** Publishing restReferenceDocumentationUri. */
|
1229
|
+
public restReferenceDocumentationUri: string;
|
1230
|
+
|
1225
1231
|
/**
|
1226
1232
|
* Creates a new Publishing instance using the specified properties.
|
1227
1233
|
* @param [properties] Properties to set
|
@@ -5439,6 +5445,9 @@ export namespace google {
|
|
5439
5445
|
|
5440
5446
|
/** ServiceOptions .google.api.oauthScopes */
|
5441
5447
|
".google.api.oauthScopes"?: (string|null);
|
5448
|
+
|
5449
|
+
/** ServiceOptions .google.api.apiVersion */
|
5450
|
+
".google.api.apiVersion"?: (string|null);
|
5442
5451
|
}
|
5443
5452
|
|
5444
5453
|
/** Represents a ServiceOptions. */
|
@@ -5687,7 +5696,7 @@ export namespace google {
|
|
5687
5696
|
doubleValue?: (number|null);
|
5688
5697
|
|
5689
5698
|
/** UninterpretedOption stringValue */
|
5690
|
-
stringValue?: (Uint8Array|string|null);
|
5699
|
+
stringValue?: (Uint8Array|Buffer|string|null);
|
5691
5700
|
|
5692
5701
|
/** UninterpretedOption aggregateValue */
|
5693
5702
|
aggregateValue?: (string|null);
|
@@ -5718,7 +5727,7 @@ export namespace google {
|
|
5718
5727
|
public doubleValue: number;
|
5719
5728
|
|
5720
5729
|
/** UninterpretedOption stringValue. */
|
5721
|
-
public stringValue: (Uint8Array|string);
|
5730
|
+
public stringValue: (Uint8Array|Buffer|string);
|
5722
5731
|
|
5723
5732
|
/** UninterpretedOption aggregateValue. */
|
5724
5733
|
public aggregateValue: string;
|