Skip to content

Commit ccafbfe

Browse files
yoshi-automationsofisl
authored andcommitted
fix(mybusinesslodging): update the API
#### mybusinesslodging:v1 The following keys were changed: - schemas.TimeOfDay.properties.hours.description - schemas.TimeOfDay.properties.minutes.description - schemas.TimeOfDay.properties.nanos.description - schemas.TimeOfDay.properties.seconds.description
1 parent f08ec6e commit ccafbfe

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

discovery/mybusinesslodging-v1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
}
195195
}
196196
},
197-
"revision": "20231114",
197+
"revision": "20241002",
198198
"rootUrl": "https://mybusinesslodging.googleapis.com/",
199199
"schemas": {
200200
"Accessibility": {
@@ -5215,22 +5215,22 @@
52155215
"id": "TimeOfDay",
52165216
"properties": {
52175217
"hours": {
5218-
"description": "Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
5218+
"description": "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.",
52195219
"format": "int32",
52205220
"type": "integer"
52215221
},
52225222
"minutes": {
5223-
"description": "Minutes of hour of day. Must be from 0 to 59.",
5223+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
52245224
"format": "int32",
52255225
"type": "integer"
52265226
},
52275227
"nanos": {
5228-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
5228+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
52295229
"format": "int32",
52305230
"type": "integer"
52315231
},
52325232
"seconds": {
5233-
"description": "Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.",
5233+
"description": "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.",
52345234
"format": "int32",
52355235
"type": "integer"
52365236
}

src/apis/mybusinesslodging/v1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2278,19 +2278,19 @@ export namespace mybusinesslodging_v1 {
22782278
*/
22792279
export interface Schema$TimeOfDay {
22802280
/**
2281-
* Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
2281+
* 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.
22822282
*/
22832283
hours?: number | null;
22842284
/**
2285-
* Minutes of hour of day. Must be from 0 to 59.
2285+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
22862286
*/
22872287
minutes?: number | null;
22882288
/**
2289-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
2289+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
22902290
*/
22912291
nanos?: number | null;
22922292
/**
2293-
* Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
2293+
* 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.
22942294
*/
22952295
seconds?: number | null;
22962296
}

0 commit comments

Comments
 (0)