@maxim_mazurok/gapi.client.calendar-v3 0.0.20240823 → 0.0.20240920

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.
Files changed (3) hide show
  1. package/index.d.ts +6 -5
  2. package/package.json +1 -1
  3. package/readme.md +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://calendar-json.googleapis.com/$discovery/rest?version=v3
12
- // Revision: 20240823
12
+ // Revision: 20240920
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -417,11 +417,12 @@ declare namespace gapi.client {
417
417
  etag?: string;
418
418
  /**
419
419
  * Specific type of the event. This cannot be modified after the event is created. Possible values are:
420
+ * - "birthday" - A special all-day event with an annual recurrence.
420
421
  * - "default" - A regular event or not further specified.
421
- * - "outOfOffice" - An out-of-office event.
422
422
  * - "focusTime" - A focus-time event.
423
- * - "workingLocation" - A working location event.
424
423
  * - "fromGmail" - An event from Gmail. This type of event cannot be created.
424
+ * - "outOfOffice" - An out-of-office event.
425
+ * - "workingLocation" - A working location event.
425
426
  */
426
427
  eventType?: string;
427
428
  /** Extended properties of the event. */
@@ -603,7 +604,7 @@ declare namespace gapi.client {
603
604
  * - "needsAction" - The attendee has not responded to the invitation (recommended for new events).
604
605
  * - "declined" - The attendee has declined the invitation.
605
606
  * - "tentative" - The attendee has tentatively accepted the invitation.
606
- * - "accepted" - The attendee has accepted the invitation. Warning: If you add an event using the values declined, tentative, or accepted, attendees with the "Add invitations to my calendar" setting set to "When I respond to invitation in email" won't see an event on their calendar unless they choose to change their invitation response in the event invitation email.
607
+ * - "accepted" - The attendee has accepted the invitation. Warning: If you add an event using the values declined, tentative, or accepted, attendees with the "Add invitations to my calendar" setting set to "When I respond to invitation in email" or "Only if the sender is known" might have their response reset to needsAction and won't see an event in their calendar unless they change their response in the event invitation email. Furthermore, if more than 200 guests are invited to the event, response status is not propagated to the guests.
607
608
  */
608
609
  responseStatus?: string;
609
610
  /** Whether this entry represents the calendar on which this copy of the event appears. Read-only. The default is False. */
@@ -1893,7 +1894,7 @@ declare namespace gapi.client {
1893
1894
  /** Deprecated. Please use quotaUser instead. */
1894
1895
  userIp?: string;
1895
1896
  }): Request<Events>;
1896
- /** Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime, workingLocation and fromGmail events cannot be moved. */
1897
+ /** Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; birthday, focusTime, fromGmail, outOfOffice and workingLocation events cannot be moved. */
1897
1898
  move(request?: {
1898
1899
  /** Data format for the response. */
1899
1900
  alt?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.calendar-v3",
3
- "version": "0.0.20240823",
3
+ "version": "0.0.20240920",
4
4
  "description": "TypeScript typings for Calendar API v3",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -244,7 +244,7 @@ Returns events on the specified calendar.
244
244
  await gapi.client.calendar.events.list({calendarId: 'calendarId'});
245
245
 
246
246
  /*
247
- Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime, workingLocation and fromGmail events cannot be moved.
247
+ Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; birthday, focusTime, fromGmail, outOfOffice and workingLocation events cannot be moved.
248
248
  */
249
249
  await gapi.client.calendar.events.move({
250
250
  calendarId: 'calendarId',