graphlit-client 1.0.20250921001 → 1.0.20250922001
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.
|
@@ -6696,6 +6696,7 @@ export const GetFeed = gql `
|
|
|
6696
6696
|
enableMeetingRecording
|
|
6697
6697
|
meetingBotName
|
|
6698
6698
|
google {
|
|
6699
|
+
type
|
|
6699
6700
|
calendarId
|
|
6700
6701
|
beforeDate
|
|
6701
6702
|
afterDate
|
|
@@ -6706,6 +6707,7 @@ export const GetFeed = gql `
|
|
|
6706
6707
|
authorizationId
|
|
6707
6708
|
}
|
|
6708
6709
|
microsoft {
|
|
6710
|
+
type
|
|
6709
6711
|
calendarId
|
|
6710
6712
|
beforeDate
|
|
6711
6713
|
afterDate
|
|
@@ -7039,6 +7041,7 @@ export const QueryFeeds = gql `
|
|
|
7039
7041
|
enableMeetingRecording
|
|
7040
7042
|
meetingBotName
|
|
7041
7043
|
google {
|
|
7044
|
+
type
|
|
7042
7045
|
calendarId
|
|
7043
7046
|
beforeDate
|
|
7044
7047
|
afterDate
|
|
@@ -7049,6 +7052,7 @@ export const QueryFeeds = gql `
|
|
|
7049
7052
|
authorizationId
|
|
7050
7053
|
}
|
|
7051
7054
|
microsoft {
|
|
7055
|
+
type
|
|
7052
7056
|
calendarId
|
|
7053
7057
|
beforeDate
|
|
7054
7058
|
afterDate
|
|
@@ -369,11 +369,11 @@ export type AnthropicModelPropertiesUpdateInput = {
|
|
|
369
369
|
};
|
|
370
370
|
/** Anthropic model type */
|
|
371
371
|
export declare enum AnthropicModels {
|
|
372
|
-
/** @deprecated Use Claude
|
|
372
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
373
373
|
Claude_2 = "CLAUDE_2",
|
|
374
|
-
/** @deprecated Use Claude
|
|
374
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
375
375
|
Claude_2_0 = "CLAUDE_2_0",
|
|
376
|
-
/** @deprecated Use Claude
|
|
376
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
377
377
|
Claude_2_1 = "CLAUDE_2_1",
|
|
378
378
|
/** Claude 3.5 Haiku (Latest) */
|
|
379
379
|
Claude_3_5Haiku = "CLAUDE_3_5_HAIKU",
|
|
@@ -381,7 +381,7 @@ export declare enum AnthropicModels {
|
|
|
381
381
|
Claude_3_5Haiku_20241022 = "CLAUDE_3_5_HAIKU_20241022",
|
|
382
382
|
/** Claude 3.5 Sonnet (Latest) */
|
|
383
383
|
Claude_3_5Sonnet = "CLAUDE_3_5_SONNET",
|
|
384
|
-
/** Claude
|
|
384
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
385
385
|
Claude_3_5Sonnet_20240620 = "CLAUDE_3_5_SONNET_20240620",
|
|
386
386
|
/** Claude 3.5 Sonnet (10-22-2024 version) */
|
|
387
387
|
Claude_3_5Sonnet_20241022 = "CLAUDE_3_5_SONNET_20241022",
|
|
@@ -1278,6 +1278,13 @@ export type CalendarFeedPropertiesUpdateInput = {
|
|
|
1278
1278
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
1279
1279
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
1280
1280
|
};
|
|
1281
|
+
/** Calendar list type */
|
|
1282
|
+
export declare enum CalendarListingTypes {
|
|
1283
|
+
/** Read new calendar events */
|
|
1284
|
+
New = "NEW",
|
|
1285
|
+
/** Read past calendar events */
|
|
1286
|
+
Past = "PAST"
|
|
1287
|
+
}
|
|
1281
1288
|
/** Represents a calendar event recurrence. */
|
|
1282
1289
|
export type CalendarRecurrence = {
|
|
1283
1290
|
__typename?: 'CalendarRecurrence';
|
|
@@ -4862,6 +4869,8 @@ export type GoogleCalendarFeedProperties = {
|
|
|
4862
4869
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
4863
4870
|
/** Google OAuth2 refresh token. */
|
|
4864
4871
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
|
4872
|
+
/** Calendar listing type, i.e. past or new events. */
|
|
4873
|
+
type?: Maybe<CalendarListingTypes>;
|
|
4865
4874
|
};
|
|
4866
4875
|
/** Represents Google Calendar properties. */
|
|
4867
4876
|
export type GoogleCalendarFeedPropertiesInput = {
|
|
@@ -4881,19 +4890,29 @@ export type GoogleCalendarFeedPropertiesInput = {
|
|
|
4881
4890
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
4882
4891
|
/** Google OAuth2 refresh token, requires User authentication type. */
|
|
4883
4892
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
4893
|
+
/** Calendar listing type, i.e. past or new events. */
|
|
4894
|
+
type?: InputMaybe<CalendarListingTypes>;
|
|
4884
4895
|
};
|
|
4885
4896
|
/** Represents Google Calendar properties. */
|
|
4886
4897
|
export type GoogleCalendarFeedPropertiesUpdateInput = {
|
|
4898
|
+
/** Read calendar events after this date (inclusive), optional. */
|
|
4899
|
+
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4887
4900
|
/** Google Calendar authentication type, defaults to User. */
|
|
4888
4901
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
|
4889
4902
|
/** Authentication identifier, for Connector authentication type. */
|
|
4890
4903
|
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
4904
|
+
/** Read calendar events before this date (inclusive), optional. */
|
|
4905
|
+
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4906
|
+
/** Google Email calendar identifier, optional. */
|
|
4907
|
+
calendarId?: InputMaybe<Scalars['String']['input']>;
|
|
4891
4908
|
/** Google OAuth2 client identifier, requires User authentication type. */
|
|
4892
4909
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
4893
4910
|
/** Google OAuth2 client secret, requires User authentication type. */
|
|
4894
4911
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
4895
4912
|
/** Google OAuth2 refresh token, requires User authentication type. */
|
|
4896
4913
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
4914
|
+
/** Calendar listing type, i.e. past or new events. */
|
|
4915
|
+
type?: InputMaybe<CalendarListingTypes>;
|
|
4897
4916
|
};
|
|
4898
4917
|
/** Represents Google Calendar properties. */
|
|
4899
4918
|
export type GoogleCalendarsInput = {
|
|
@@ -8097,6 +8116,8 @@ export type MicrosoftCalendarFeedProperties = {
|
|
|
8097
8116
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
8098
8117
|
/** Microsoft Entra ID refresh token. */
|
|
8099
8118
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
|
8119
|
+
/** Calendar listing type, i.e. past or new events. */
|
|
8120
|
+
type?: Maybe<CalendarListingTypes>;
|
|
8100
8121
|
};
|
|
8101
8122
|
/** Represents Microsoft Calendar properties. */
|
|
8102
8123
|
export type MicrosoftCalendarFeedPropertiesInput = {
|
|
@@ -8116,19 +8137,29 @@ export type MicrosoftCalendarFeedPropertiesInput = {
|
|
|
8116
8137
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
8117
8138
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
|
8118
8139
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
8140
|
+
/** Calendar listing type, i.e. past or new events. */
|
|
8141
|
+
type?: InputMaybe<CalendarListingTypes>;
|
|
8119
8142
|
};
|
|
8120
8143
|
/** Represents Microsoft Calendar properties. */
|
|
8121
8144
|
export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
|
8145
|
+
/** Read calendar events after this date (inclusive), optional. */
|
|
8146
|
+
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8122
8147
|
/** Microsoft Calendar authentication type, defaults to User. */
|
|
8123
8148
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
|
8124
8149
|
/** Authentication identifier, for Connector authentication type. */
|
|
8125
8150
|
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
8151
|
+
/** Read calendar events before this date (inclusive), optional. */
|
|
8152
|
+
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8153
|
+
/** Microsoft Email calendar identifier, optional. */
|
|
8154
|
+
calendarId?: InputMaybe<Scalars['String']['input']>;
|
|
8126
8155
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
|
8127
8156
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
8128
8157
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
|
8129
8158
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
8130
8159
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
|
8131
8160
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
8161
|
+
/** Calendar listing type, i.e. past or new events. */
|
|
8162
|
+
type?: InputMaybe<CalendarListingTypes>;
|
|
8132
8163
|
};
|
|
8133
8164
|
/** Represents Microsoft Calendar properties. */
|
|
8134
8165
|
export type MicrosoftCalendarsInput = {
|
|
@@ -22910,6 +22941,7 @@ export type GetFeedQuery = {
|
|
|
22910
22941
|
readLimit?: number | null;
|
|
22911
22942
|
google?: {
|
|
22912
22943
|
__typename?: 'GoogleCalendarFeedProperties';
|
|
22944
|
+
type?: CalendarListingTypes | null;
|
|
22913
22945
|
calendarId?: string | null;
|
|
22914
22946
|
beforeDate?: any | null;
|
|
22915
22947
|
afterDate?: any | null;
|
|
@@ -22921,6 +22953,7 @@ export type GetFeedQuery = {
|
|
|
22921
22953
|
} | null;
|
|
22922
22954
|
microsoft?: {
|
|
22923
22955
|
__typename?: 'MicrosoftCalendarFeedProperties';
|
|
22956
|
+
type?: CalendarListingTypes | null;
|
|
22924
22957
|
calendarId?: string | null;
|
|
22925
22958
|
beforeDate?: any | null;
|
|
22926
22959
|
afterDate?: any | null;
|
|
@@ -23321,6 +23354,7 @@ export type QueryFeedsQuery = {
|
|
|
23321
23354
|
readLimit?: number | null;
|
|
23322
23355
|
google?: {
|
|
23323
23356
|
__typename?: 'GoogleCalendarFeedProperties';
|
|
23357
|
+
type?: CalendarListingTypes | null;
|
|
23324
23358
|
calendarId?: string | null;
|
|
23325
23359
|
beforeDate?: any | null;
|
|
23326
23360
|
afterDate?: any | null;
|
|
@@ -23332,6 +23366,7 @@ export type QueryFeedsQuery = {
|
|
|
23332
23366
|
} | null;
|
|
23333
23367
|
microsoft?: {
|
|
23334
23368
|
__typename?: 'MicrosoftCalendarFeedProperties';
|
|
23369
|
+
type?: CalendarListingTypes | null;
|
|
23335
23370
|
calendarId?: string | null;
|
|
23336
23371
|
beforeDate?: any | null;
|
|
23337
23372
|
afterDate?: any | null;
|
|
@@ -7,11 +7,11 @@ export var AlertTypes;
|
|
|
7
7
|
/** Anthropic model type */
|
|
8
8
|
export var AnthropicModels;
|
|
9
9
|
(function (AnthropicModels) {
|
|
10
|
-
/** @deprecated Use Claude
|
|
10
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
11
11
|
AnthropicModels["Claude_2"] = "CLAUDE_2";
|
|
12
|
-
/** @deprecated Use Claude
|
|
12
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
13
13
|
AnthropicModels["Claude_2_0"] = "CLAUDE_2_0";
|
|
14
|
-
/** @deprecated Use Claude
|
|
14
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
15
15
|
AnthropicModels["Claude_2_1"] = "CLAUDE_2_1";
|
|
16
16
|
/** Claude 3.5 Haiku (Latest) */
|
|
17
17
|
AnthropicModels["Claude_3_5Haiku"] = "CLAUDE_3_5_HAIKU";
|
|
@@ -19,7 +19,7 @@ export var AnthropicModels;
|
|
|
19
19
|
AnthropicModels["Claude_3_5Haiku_20241022"] = "CLAUDE_3_5_HAIKU_20241022";
|
|
20
20
|
/** Claude 3.5 Sonnet (Latest) */
|
|
21
21
|
AnthropicModels["Claude_3_5Sonnet"] = "CLAUDE_3_5_SONNET";
|
|
22
|
-
/** Claude
|
|
22
|
+
/** @deprecated Use Claude 4.x instead. */
|
|
23
23
|
AnthropicModels["Claude_3_5Sonnet_20240620"] = "CLAUDE_3_5_SONNET_20240620";
|
|
24
24
|
/** Claude 3.5 Sonnet (10-22-2024 version) */
|
|
25
25
|
AnthropicModels["Claude_3_5Sonnet_20241022"] = "CLAUDE_3_5_SONNET_20241022";
|
|
@@ -247,6 +247,14 @@ export var CalendarEventVisibility;
|
|
|
247
247
|
/** Public event */
|
|
248
248
|
CalendarEventVisibility["Public"] = "PUBLIC";
|
|
249
249
|
})(CalendarEventVisibility || (CalendarEventVisibility = {}));
|
|
250
|
+
/** Calendar list type */
|
|
251
|
+
export var CalendarListingTypes;
|
|
252
|
+
(function (CalendarListingTypes) {
|
|
253
|
+
/** Read new calendar events */
|
|
254
|
+
CalendarListingTypes["New"] = "NEW";
|
|
255
|
+
/** Read past calendar events */
|
|
256
|
+
CalendarListingTypes["Past"] = "PAST";
|
|
257
|
+
})(CalendarListingTypes || (CalendarListingTypes = {}));
|
|
250
258
|
/** Calendar recurrence pattern */
|
|
251
259
|
export var CalendarRecurrencePattern;
|
|
252
260
|
(function (CalendarRecurrencePattern) {
|