graphlit-client 1.0.20250622007 → 1.0.20250625001

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.
@@ -189,6 +189,62 @@ export var BillableMetrics;
189
189
  BillableMetrics["Tokens"] = "TOKENS";
190
190
  BillableMetrics["Units"] = "UNITS";
191
191
  })(BillableMetrics || (BillableMetrics = {}));
192
+ /** Calendar attendee response status */
193
+ export var CalendarAttendeeResponseStatus;
194
+ (function (CalendarAttendeeResponseStatus) {
195
+ /** Accepted */
196
+ CalendarAttendeeResponseStatus["Accepted"] = "ACCEPTED";
197
+ /** Declined */
198
+ CalendarAttendeeResponseStatus["Declined"] = "DECLINED";
199
+ /** Needs action */
200
+ CalendarAttendeeResponseStatus["NeedsAction"] = "NEEDS_ACTION";
201
+ /** Tentative */
202
+ CalendarAttendeeResponseStatus["Tentative"] = "TENTATIVE";
203
+ })(CalendarAttendeeResponseStatus || (CalendarAttendeeResponseStatus = {}));
204
+ /** Calendar event status */
205
+ export var CalendarEventStatus;
206
+ (function (CalendarEventStatus) {
207
+ /** Cancelled event */
208
+ CalendarEventStatus["Cancelled"] = "CANCELLED";
209
+ /** Confirmed event */
210
+ CalendarEventStatus["Confirmed"] = "CONFIRMED";
211
+ /** Tentative event */
212
+ CalendarEventStatus["Tentative"] = "TENTATIVE";
213
+ })(CalendarEventStatus || (CalendarEventStatus = {}));
214
+ /** Calendar event visibility */
215
+ export var CalendarEventVisibility;
216
+ (function (CalendarEventVisibility) {
217
+ /** Confidential event */
218
+ CalendarEventVisibility["Confidential"] = "CONFIDENTIAL";
219
+ /** Default visibility */
220
+ CalendarEventVisibility["Default"] = "DEFAULT";
221
+ /** Private event */
222
+ CalendarEventVisibility["Private"] = "PRIVATE";
223
+ /** Public event */
224
+ CalendarEventVisibility["Public"] = "PUBLIC";
225
+ })(CalendarEventVisibility || (CalendarEventVisibility = {}));
226
+ /** Calendar recurrence pattern */
227
+ export var CalendarRecurrencePattern;
228
+ (function (CalendarRecurrencePattern) {
229
+ /** Daily recurrence */
230
+ CalendarRecurrencePattern["Daily"] = "DAILY";
231
+ /** Monthly recurrence */
232
+ CalendarRecurrencePattern["Monthly"] = "MONTHLY";
233
+ /** Weekly recurrence */
234
+ CalendarRecurrencePattern["Weekly"] = "WEEKLY";
235
+ /** Yearly recurrence */
236
+ CalendarRecurrencePattern["Yearly"] = "YEARLY";
237
+ })(CalendarRecurrencePattern || (CalendarRecurrencePattern = {}));
238
+ /** Calendar reminder method */
239
+ export var CalendarReminderMethod;
240
+ (function (CalendarReminderMethod) {
241
+ /** Email reminder */
242
+ CalendarReminderMethod["Email"] = "EMAIL";
243
+ /** Popup reminder */
244
+ CalendarReminderMethod["Popup"] = "POPUP";
245
+ /** SMS reminder */
246
+ CalendarReminderMethod["Sms"] = "SMS";
247
+ })(CalendarReminderMethod || (CalendarReminderMethod = {}));
192
248
  /** Category facet types */
193
249
  export var CategoryFacetTypes;
194
250
  (function (CategoryFacetTypes) {
@@ -238,6 +294,8 @@ export var CollectionTypes;
238
294
  (function (CollectionTypes) {
239
295
  /** Content collection */
240
296
  CollectionTypes["Collection"] = "COLLECTION";
297
+ /** Recurring event series */
298
+ CollectionTypes["Series"] = "SERIES";
241
299
  /** Email thread */
242
300
  CollectionTypes["Thread"] = "THREAD";
243
301
  })(CollectionTypes || (CollectionTypes = {}));
@@ -723,6 +781,8 @@ export var FeedConnectorTypes;
723
781
  FeedConnectorTypes["GitHub"] = "GIT_HUB";
724
782
  /** Google Cloud feed connector */
725
783
  FeedConnectorTypes["Google"] = "GOOGLE";
784
+ /** Google Calendar feed connector */
785
+ FeedConnectorTypes["GoogleCalendar"] = "GOOGLE_CALENDAR";
726
786
  /** Google Drive feed connector */
727
787
  FeedConnectorTypes["GoogleDrive"] = "GOOGLE_DRIVE";
728
788
  /** Google Mail feed connector */
@@ -731,6 +791,8 @@ export var FeedConnectorTypes;
731
791
  FeedConnectorTypes["Intercom"] = "INTERCOM";
732
792
  /** Linear feed connector */
733
793
  FeedConnectorTypes["Linear"] = "LINEAR";
794
+ /** Microsoft Calendar feed connector */
795
+ FeedConnectorTypes["MicrosoftCalendar"] = "MICROSOFT_CALENDAR";
734
796
  /** Microsoft Outlook Email feed connector */
735
797
  FeedConnectorTypes["MicrosoftEmail"] = "MICROSOFT_EMAIL";
736
798
  /** Microsoft OneDrive feed connector */
@@ -767,6 +829,8 @@ export var FeedServiceTypes;
767
829
  FeedServiceTypes["GitHubIssues"] = "GIT_HUB_ISSUES";
768
830
  /** Google Cloud Blob feed service */
769
831
  FeedServiceTypes["GoogleBlob"] = "GOOGLE_BLOB";
832
+ /** Google Calendar feed service */
833
+ FeedServiceTypes["GoogleCalendar"] = "GOOGLE_CALENDAR";
770
834
  /** Google Drive feed service */
771
835
  FeedServiceTypes["GoogleDrive"] = "GOOGLE_DRIVE";
772
836
  /** Google Mail feed service */
@@ -777,6 +841,8 @@ export var FeedServiceTypes;
777
841
  FeedServiceTypes["IntercomTickets"] = "INTERCOM_TICKETS";
778
842
  /** Linear feed service */
779
843
  FeedServiceTypes["Linear"] = "LINEAR";
844
+ /** Microsoft Calendar feed service */
845
+ FeedServiceTypes["MicrosoftCalendar"] = "MICROSOFT_CALENDAR";
780
846
  /** Microsoft Outlook Email feed service */
781
847
  FeedServiceTypes["MicrosoftEmail"] = "MICROSOFT_EMAIL";
782
848
  /** Microsoft OneDrive feed service */
@@ -795,6 +861,8 @@ export var FeedServiceTypes;
795
861
  /** Feed type */
796
862
  export var FeedTypes;
797
863
  (function (FeedTypes) {
864
+ /** Calendar feed */
865
+ FeedTypes["Calendar"] = "CALENDAR";
798
866
  /** Discord channel feed */
799
867
  FeedTypes["Discord"] = "DISCORD";
800
868
  /** Email feed */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250622007",
3
+ "version": "1.0.20250625001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",