@maxim_mazurok/gapi.client.sheets-v4 0.0.20241001 → 0.0.20241008
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://sheets.googleapis.com/$discovery/rest?version=v4
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241008
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2028,13 +2028,13 @@ declare namespace gapi.client {
|
|
|
2028
2028
|
colorType?: string;
|
|
2029
2029
|
}
|
|
2030
2030
|
interface TimeOfDay {
|
|
2031
|
-
/** Hours of day in 24 hour format.
|
|
2031
|
+
/** 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. */
|
|
2032
2032
|
hours?: number;
|
|
2033
|
-
/** Minutes of hour
|
|
2033
|
+
/** Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59. */
|
|
2034
2034
|
minutes?: number;
|
|
2035
|
-
/** Fractions of seconds in nanoseconds. Must be
|
|
2035
|
+
/** Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999. */
|
|
2036
2036
|
nanos?: number;
|
|
2037
|
-
/** Seconds of
|
|
2037
|
+
/** 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. */
|
|
2038
2038
|
seconds?: number;
|
|
2039
2039
|
}
|
|
2040
2040
|
interface TreemapChartColorScale {
|