Skip to content

Commit

Permalink
fix(calendar): update the API
Browse files Browse the repository at this point in the history
#### calendar:v3

The following keys were changed:
- schemas.Colors.properties.calendar.additionalProperties.description
- schemas.Colors.properties.calendar.description
- schemas.Colors.properties.event.description
  • Loading branch information
yoshi-automation authored and bcoe committed May 3, 2021
1 parent 3fd6fb9 commit a16f819
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions discovery/calendar-v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,7 @@
}
}
},
"revision": "20210417",
"revision": "20210424",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Acl": {
Expand Down Expand Up @@ -2074,17 +2074,17 @@
"calendar": {
"additionalProperties": {
"$ref": "ColorDefinition",
"description": "A calendar color defintion."
"description": "A calendar color definition."
},
"description": "A global palette of calendar colors, mapping from the color ID to its definition. A calendarListEntry resource refers to one of these color IDs in its color field. Read-only.",
"description": "A global palette of calendar colors, mapping from the color ID to its definition. A calendarListEntry resource refers to one of these color IDs in its colorId field. Read-only.",
"type": "object"
},
"event": {
"additionalProperties": {
"$ref": "ColorDefinition",
"description": "An event color definition."
},
"description": "A global palette of event colors, mapping from the color ID to its definition. An event resource may refer to one of these color IDs in its color field. Read-only.",
"description": "A global palette of event colors, mapping from the color ID to its definition. An event resource may refer to one of these color IDs in its colorId field. Read-only.",
"type": "object"
},
"kind": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/calendar/v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,11 @@ export namespace calendar_v3 {
}
export interface Schema$Colors {
/**
* A global palette of calendar colors, mapping from the color ID to its definition. A calendarListEntry resource refers to one of these color IDs in its color field. Read-only.
* A global palette of calendar colors, mapping from the color ID to its definition. A calendarListEntry resource refers to one of these color IDs in its colorId field. Read-only.
*/
calendar?: {[key: string]: Schema$ColorDefinition} | null;
/**
* A global palette of event colors, mapping from the color ID to its definition. An event resource may refer to one of these color IDs in its color field. Read-only.
* A global palette of event colors, mapping from the color ID to its definition. An event resource may refer to one of these color IDs in its colorId field. Read-only.
*/
event?: {[key: string]: Schema$ColorDefinition} | null;
/**
Expand Down

0 comments on commit a16f819

Please sign in to comment.