@maxim_mazurok/gapi.client.merchantapi-datasources_v1beta 0.0.20240930 → 0.0.20241004
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 -5
- 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=datasources_v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241004
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -198,13 +198,13 @@ declare namespace gapi.client {
|
|
|
198
198
|
referencingPrimaryDataSources?: DataSourceReference[];
|
|
199
199
|
}
|
|
200
200
|
interface TimeOfDay {
|
|
201
|
-
/** Hours of day in 24 hour format.
|
|
201
|
+
/** Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time. */
|
|
202
202
|
hours?: number;
|
|
203
|
-
/** Minutes of hour
|
|
203
|
+
/** Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59. */
|
|
204
204
|
minutes?: number;
|
|
205
|
-
/** Fractions of seconds in nanoseconds. Must be
|
|
205
|
+
/** Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999. */
|
|
206
206
|
nanos?: number;
|
|
207
|
-
/** Seconds of
|
|
207
|
+
/** Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds. */
|
|
208
208
|
seconds?: number;
|
|
209
209
|
}
|
|
210
210
|
interface FileUploadsResource {
|
package/package.json
CHANGED