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.ConferenceData.properties.conferenceId.description
- schemas.Event.properties.anyoneCanAddSelf.description
- schemas.Event.properties.creator.properties.id.description
- schemas.Event.properties.hangoutLink.description
- schemas.Event.properties.organizer.properties.id.description
- schemas.EventAttendee.properties.id.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jul 8, 2021
1 parent e9fba43 commit a810c47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions discovery/calendar-v3.json
Expand Up @@ -1723,7 +1723,7 @@
}
}
},
"revision": "20210518",
"revision": "20210703",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Acl": {
Expand Down Expand Up @@ -2104,7 +2104,7 @@
"id": "ConferenceData",
"properties": {
"conferenceId": {
"description": "The ID of the conference.\nCan be used by developers to keep track of conferences, should not be displayed to users.\nThe ID value is formed differently for each conference solution type: `\n- eventHangout: ID is not set.\n- eventNamedHangout: ID is the name of the Hangout.\n- hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.\n- addOn: ID is defined by the third-party provider. Optional.",
"description": "The ID of the conference.\nCan be used by developers to keep track of conferences, should not be displayed to users.\nThe ID value is formed differently for each conference solution type: \n- eventHangout: ID is not set.\n- eventNamedHangout: ID is the name of the Hangout.\n- hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.\n- addOn: ID is defined by the third-party provider. Optional.",
"type": "string"
},
"conferenceSolution": {
Expand Down Expand Up @@ -2296,7 +2296,7 @@
"properties": {
"anyoneCanAddSelf": {
"default": "false",
"description": "Whether anyone can invite themselves to the event (currently works for Google+ events only). Optional. The default is False.",
"description": "Whether anyone can invite themselves to the event (deprecated). Optional. The default is False.",
"type": "boolean"
},
"attachments": {
Expand Down Expand Up @@ -2343,7 +2343,7 @@
"type": "string"
},
"id": {
"description": "The creator's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API",
"description": "The creator's Profile ID, if available.",
"type": "string"
},
"self": {
Expand Down Expand Up @@ -2465,7 +2465,7 @@
"type": "boolean"
},
"hangoutLink": {
"description": "An absolute link to the Google+ hangout associated with this event. Read-only.",
"description": "An absolute link to the Google Hangout associated with this event. Read-only.",
"type": "string"
},
"htmlLink": {
Expand Down Expand Up @@ -2511,7 +2511,7 @@
"type": "string"
},
"id": {
"description": "The organizer's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API",
"description": "The organizer's Profile ID, if available.",
"type": "string"
},
"self": {
Expand Down Expand Up @@ -2663,7 +2663,7 @@
"type": "string"
},
"id": {
"description": "The attendee's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API",
"description": "The attendee's Profile ID, if available.",
"type": "string"
},
"optional": {
Expand Down
8 changes: 4 additions & 4 deletions src/apis/calendar/v3.ts
Expand Up @@ -404,7 +404,7 @@ export namespace calendar_v3 {
/**
* The ID of the conference.
* Can be used by developers to keep track of conferences, should not be displayed to users.
* The ID value is formed differently for each conference solution type: `
* The ID value is formed differently for each conference solution type:
* - eventHangout: ID is not set.
* - eventNamedHangout: ID is the name of the Hangout.
* - hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.
Expand Down Expand Up @@ -598,7 +598,7 @@ export namespace calendar_v3 {
}
export interface Schema$Event {
/**
* Whether anyone can invite themselves to the event (currently works for Google+ events only). Optional. The default is False.
* Whether anyone can invite themselves to the event (deprecated). Optional. The default is False.
*/
anyoneCanAddSelf?: boolean | null;
/**
Expand Down Expand Up @@ -691,7 +691,7 @@ export namespace calendar_v3 {
*/
guestsCanSeeOtherGuests?: boolean | null;
/**
* An absolute link to the Google+ hangout associated with this event. Read-only.
* An absolute link to the Google Hangout associated with this event. Read-only.
*/
hangoutLink?: string | null;
/**
Expand Down Expand Up @@ -848,7 +848,7 @@ export namespace calendar_v3 {
*/
email?: string | null;
/**
* The attendee's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API
* The attendee's Profile ID, if available.
*/
id?: string | null;
/**
Expand Down

0 comments on commit a810c47

Please sign in to comment.