graphlit-client 1.0.20250622007 → 1.0.20250627001
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.
- package/README.md +235 -5
- package/dist/client.d.ts +26 -1
- package/dist/client.js +293 -55
- package/dist/generated/graphql-documents.d.ts +21 -0
- package/dist/generated/graphql-documents.js +1378 -0
- package/dist/generated/graphql-types.d.ts +2660 -53
- package/dist/generated/graphql-types.js +119 -0
- package/dist/streaming/llm-formatters.js +68 -5
- package/dist/streaming/providers.d.ts +18 -13
- package/dist/streaming/providers.js +690 -167
- package/dist/streaming/ui-event-adapter.d.ts +7 -0
- package/dist/streaming/ui-event-adapter.js +55 -0
- package/dist/types/internal.d.ts +11 -0
- package/dist/types/ui-events.d.ts +9 -0
- package/package.json +1 -1
@@ -431,6 +431,17 @@ export declare enum ApplyPolicy {
|
|
431
431
|
/** The policy is applied in the validation step before the execution. */
|
432
432
|
Validation = "VALIDATION"
|
433
433
|
}
|
434
|
+
/** Represents Arcade authentication properties. */
|
435
|
+
export type ArcadeAuthenticationProperties = {
|
436
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
437
|
+
/** Arcade authorization ID. */
|
438
|
+
authorizationId: Scalars['String']['output'];
|
439
|
+
};
|
440
|
+
/** Represents Arcade authentication properties. */
|
441
|
+
export type ArcadeAuthenticationPropertiesInput = {
|
442
|
+
/** Arcade authorization ID. */
|
443
|
+
authorizationId: Scalars['String']['input'];
|
444
|
+
};
|
434
445
|
/** Represents a prompted question about Graphlit. */
|
435
446
|
export type AskGraphlit = {
|
436
447
|
__typename?: 'AskGraphlit';
|
@@ -597,6 +608,8 @@ export type AudioMetadataInput = {
|
|
597
608
|
/** Represents an authentication connector. */
|
598
609
|
export type AuthenticationConnector = {
|
599
610
|
__typename?: 'AuthenticationConnector';
|
611
|
+
/** Arcade authentication properties. */
|
612
|
+
arcade?: Maybe<ArcadeAuthenticationProperties>;
|
600
613
|
/** Google authentication properties. */
|
601
614
|
google?: Maybe<GoogleAuthenticationProperties>;
|
602
615
|
/** Microsoft authentication properties. */
|
@@ -606,6 +619,8 @@ export type AuthenticationConnector = {
|
|
606
619
|
};
|
607
620
|
/** Represents an authentication connector. */
|
608
621
|
export type AuthenticationConnectorInput = {
|
622
|
+
/** Arcade authentication properties. */
|
623
|
+
arcade?: InputMaybe<ArcadeAuthenticationPropertiesInput>;
|
609
624
|
/** Google authentication properties. */
|
610
625
|
google?: InputMaybe<GoogleAuthenticationPropertiesInput>;
|
611
626
|
/** Microsoft authentication properties. */
|
@@ -615,6 +630,8 @@ export type AuthenticationConnectorInput = {
|
|
615
630
|
};
|
616
631
|
/** Authentication service type */
|
617
632
|
export declare enum AuthenticationServiceTypes {
|
633
|
+
/** Arcade authentication service */
|
634
|
+
Arcade = "ARCADE",
|
618
635
|
/** Auth0 authentication service */
|
619
636
|
Auth0 = "AUTH0",
|
620
637
|
/** Clerk authentication service */
|
@@ -1084,6 +1101,213 @@ export type BoxFeedPropertiesUpdateInput = {
|
|
1084
1101
|
/** Box refresh token. */
|
1085
1102
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
1086
1103
|
};
|
1104
|
+
/** Represents a Box folder. */
|
1105
|
+
export type BoxFolderResult = {
|
1106
|
+
__typename?: 'BoxFolderResult';
|
1107
|
+
/** The Box folder identifier. */
|
1108
|
+
folderId?: Maybe<Scalars['ID']['output']>;
|
1109
|
+
/** The Box folder name. */
|
1110
|
+
folderName?: Maybe<Scalars['String']['output']>;
|
1111
|
+
};
|
1112
|
+
/** Represents Box folders. */
|
1113
|
+
export type BoxFolderResults = {
|
1114
|
+
__typename?: 'BoxFolderResults';
|
1115
|
+
/** The Box folders. */
|
1116
|
+
results?: Maybe<Array<Maybe<BoxFolderResult>>>;
|
1117
|
+
};
|
1118
|
+
/** Represents Box folders properties. */
|
1119
|
+
export type BoxFoldersInput = {
|
1120
|
+
/** Box client identifier. */
|
1121
|
+
clientId: Scalars['String']['input'];
|
1122
|
+
/** Box client secret. */
|
1123
|
+
clientSecret: Scalars['String']['input'];
|
1124
|
+
/** Box refresh token. */
|
1125
|
+
refreshToken: Scalars['String']['input'];
|
1126
|
+
};
|
1127
|
+
/** Represents a calendar event attendee. */
|
1128
|
+
export type CalendarAttendee = {
|
1129
|
+
__typename?: 'CalendarAttendee';
|
1130
|
+
/** The attendee email. */
|
1131
|
+
email?: Maybe<Scalars['String']['output']>;
|
1132
|
+
/** Whether the attendee is optional. */
|
1133
|
+
isOptional?: Maybe<Scalars['Boolean']['output']>;
|
1134
|
+
/** Whether the attendee is the organizer. */
|
1135
|
+
isOrganizer?: Maybe<Scalars['Boolean']['output']>;
|
1136
|
+
/** The attendee name. */
|
1137
|
+
name?: Maybe<Scalars['String']['output']>;
|
1138
|
+
/** The attendee response status. */
|
1139
|
+
responseStatus?: Maybe<CalendarAttendeeResponseStatus>;
|
1140
|
+
};
|
1141
|
+
/** Represents a calendar event attendee input. */
|
1142
|
+
export type CalendarAttendeeInput = {
|
1143
|
+
/** The attendee email. */
|
1144
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
1145
|
+
/** Whether the attendee is optional. */
|
1146
|
+
isOptional?: InputMaybe<Scalars['Boolean']['input']>;
|
1147
|
+
/** Whether the attendee is the organizer. */
|
1148
|
+
isOrganizer?: InputMaybe<Scalars['Boolean']['input']>;
|
1149
|
+
/** The attendee name. */
|
1150
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
1151
|
+
/** The attendee response status. */
|
1152
|
+
responseStatus?: InputMaybe<CalendarAttendeeResponseStatus>;
|
1153
|
+
};
|
1154
|
+
/** Calendar attendee response status */
|
1155
|
+
export declare enum CalendarAttendeeResponseStatus {
|
1156
|
+
/** Accepted */
|
1157
|
+
Accepted = "ACCEPTED",
|
1158
|
+
/** Declined */
|
1159
|
+
Declined = "DECLINED",
|
1160
|
+
/** Needs action */
|
1161
|
+
NeedsAction = "NEEDS_ACTION",
|
1162
|
+
/** Tentative */
|
1163
|
+
Tentative = "TENTATIVE"
|
1164
|
+
}
|
1165
|
+
/** Calendar event status */
|
1166
|
+
export declare enum CalendarEventStatus {
|
1167
|
+
/** Cancelled event */
|
1168
|
+
Cancelled = "CANCELLED",
|
1169
|
+
/** Confirmed event */
|
1170
|
+
Confirmed = "CONFIRMED",
|
1171
|
+
/** Tentative event */
|
1172
|
+
Tentative = "TENTATIVE"
|
1173
|
+
}
|
1174
|
+
/** Calendar event visibility */
|
1175
|
+
export declare enum CalendarEventVisibility {
|
1176
|
+
/** Confidential event */
|
1177
|
+
Confidential = "CONFIDENTIAL",
|
1178
|
+
/** Default visibility */
|
1179
|
+
Default = "DEFAULT",
|
1180
|
+
/** Private event */
|
1181
|
+
Private = "PRIVATE",
|
1182
|
+
/** Public event */
|
1183
|
+
Public = "PUBLIC"
|
1184
|
+
}
|
1185
|
+
/** Represents calendar feed properties. */
|
1186
|
+
export type CalendarFeedProperties = {
|
1187
|
+
__typename?: 'CalendarFeedProperties';
|
1188
|
+
/** Feed connector type. */
|
1189
|
+
connectorType: FeedConnectorTypes;
|
1190
|
+
/** Google Calendar properties. */
|
1191
|
+
google?: Maybe<GoogleCalendarFeedProperties>;
|
1192
|
+
/** Should the calendar feed include attachments. */
|
1193
|
+
includeAttachments?: Maybe<Scalars['Boolean']['output']>;
|
1194
|
+
/** Microsoft Calendar properties. */
|
1195
|
+
microsoft?: Maybe<MicrosoftCalendarFeedProperties>;
|
1196
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
1197
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
1198
|
+
/** Feed service type. */
|
1199
|
+
type: FeedServiceTypes;
|
1200
|
+
};
|
1201
|
+
/** Represents calendar feed properties. */
|
1202
|
+
export type CalendarFeedPropertiesInput = {
|
1203
|
+
/** Google Calendar properties. */
|
1204
|
+
google?: InputMaybe<GoogleCalendarFeedPropertiesInput>;
|
1205
|
+
/** Should the calendar feed include attachments. */
|
1206
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
1207
|
+
/** Microsoft Calendar properties. */
|
1208
|
+
microsoft?: InputMaybe<MicrosoftCalendarFeedPropertiesInput>;
|
1209
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
1210
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
1211
|
+
/** Feed service type. */
|
1212
|
+
type: FeedServiceTypes;
|
1213
|
+
};
|
1214
|
+
/** Represents calendar feed properties. */
|
1215
|
+
export type CalendarFeedPropertiesUpdateInput = {
|
1216
|
+
/** Google Calendar properties. */
|
1217
|
+
google?: InputMaybe<GoogleCalendarFeedPropertiesUpdateInput>;
|
1218
|
+
/** Should the calendar feed include attachments. */
|
1219
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
1220
|
+
/** Microsoft Calendar properties. */
|
1221
|
+
microsoft?: InputMaybe<MicrosoftCalendarFeedPropertiesUpdateInput>;
|
1222
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
1223
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
1224
|
+
};
|
1225
|
+
/** Represents a calendar event recurrence. */
|
1226
|
+
export type CalendarRecurrence = {
|
1227
|
+
__typename?: 'CalendarRecurrence';
|
1228
|
+
/** The recurrence count. */
|
1229
|
+
count?: Maybe<Scalars['Int']['output']>;
|
1230
|
+
/** The recurrence day of month. */
|
1231
|
+
dayOfMonth?: Maybe<Scalars['Int']['output']>;
|
1232
|
+
/** The recurrence days of week. */
|
1233
|
+
daysOfWeek?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
1234
|
+
/** The recurrence interval. */
|
1235
|
+
interval?: Maybe<Scalars['Int']['output']>;
|
1236
|
+
/** The recurrence month of year. */
|
1237
|
+
monthOfYear?: Maybe<Scalars['Int']['output']>;
|
1238
|
+
/** The recurrence pattern. */
|
1239
|
+
pattern?: Maybe<CalendarRecurrencePattern>;
|
1240
|
+
/** The recurrence until date. */
|
1241
|
+
until?: Maybe<Scalars['DateTime']['output']>;
|
1242
|
+
};
|
1243
|
+
/** Represents a calendar event recurrence input. */
|
1244
|
+
export type CalendarRecurrenceInput = {
|
1245
|
+
/** The recurrence count. */
|
1246
|
+
count?: InputMaybe<Scalars['Int']['input']>;
|
1247
|
+
/** The recurrence day of month. */
|
1248
|
+
dayOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
1249
|
+
/** The recurrence days of week. */
|
1250
|
+
daysOfWeek?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1251
|
+
/** The recurrence interval. */
|
1252
|
+
interval?: InputMaybe<Scalars['Int']['input']>;
|
1253
|
+
/** The recurrence month of year. */
|
1254
|
+
monthOfYear?: InputMaybe<Scalars['Int']['input']>;
|
1255
|
+
/** The recurrence pattern. */
|
1256
|
+
pattern?: InputMaybe<CalendarRecurrencePattern>;
|
1257
|
+
/** The recurrence until date. */
|
1258
|
+
until?: InputMaybe<Scalars['DateTime']['input']>;
|
1259
|
+
};
|
1260
|
+
/** Calendar recurrence pattern */
|
1261
|
+
export declare enum CalendarRecurrencePattern {
|
1262
|
+
/** Daily recurrence */
|
1263
|
+
Daily = "DAILY",
|
1264
|
+
/** Monthly recurrence */
|
1265
|
+
Monthly = "MONTHLY",
|
1266
|
+
/** Weekly recurrence */
|
1267
|
+
Weekly = "WEEKLY",
|
1268
|
+
/** Yearly recurrence */
|
1269
|
+
Yearly = "YEARLY"
|
1270
|
+
}
|
1271
|
+
/** Represents a calendar event reminder. */
|
1272
|
+
export type CalendarReminder = {
|
1273
|
+
__typename?: 'CalendarReminder';
|
1274
|
+
/** The reminder method. */
|
1275
|
+
method?: Maybe<CalendarReminderMethod>;
|
1276
|
+
/** The reminder minutes before the event. */
|
1277
|
+
minutesBefore?: Maybe<Scalars['Int']['output']>;
|
1278
|
+
};
|
1279
|
+
/** Represents a calendar event reminder input. */
|
1280
|
+
export type CalendarReminderInput = {
|
1281
|
+
/** The reminder method. */
|
1282
|
+
method?: InputMaybe<CalendarReminderMethod>;
|
1283
|
+
/** The reminder minutes before the event. */
|
1284
|
+
minutesBefore?: InputMaybe<Scalars['Int']['input']>;
|
1285
|
+
};
|
1286
|
+
/** Calendar reminder method */
|
1287
|
+
export declare enum CalendarReminderMethod {
|
1288
|
+
/** Email reminder */
|
1289
|
+
Email = "EMAIL",
|
1290
|
+
/** Popup reminder */
|
1291
|
+
Popup = "POPUP",
|
1292
|
+
/** SMS reminder */
|
1293
|
+
Sms = "SMS"
|
1294
|
+
}
|
1295
|
+
/** Represents a calendar. */
|
1296
|
+
export type CalendarResult = {
|
1297
|
+
__typename?: 'CalendarResult';
|
1298
|
+
/** The calendar identifier. */
|
1299
|
+
calendarId?: Maybe<Scalars['ID']['output']>;
|
1300
|
+
/** The calendar name. */
|
1301
|
+
calendarName?: Maybe<Scalars['String']['output']>;
|
1302
|
+
/** If the calendar is primary. */
|
1303
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
1304
|
+
};
|
1305
|
+
/** Represents calendars. */
|
1306
|
+
export type CalendarResults = {
|
1307
|
+
__typename?: 'CalendarResults';
|
1308
|
+
/** The calendars. */
|
1309
|
+
results?: Maybe<Array<Maybe<CalendarResult>>>;
|
1310
|
+
};
|
1087
1311
|
/** Represents a category. */
|
1088
1312
|
export type Category = {
|
1089
1313
|
__typename?: 'Category';
|
@@ -1425,6 +1649,8 @@ export type CollectionResults = {
|
|
1425
1649
|
export declare enum CollectionTypes {
|
1426
1650
|
/** Content collection */
|
1427
1651
|
Collection = "COLLECTION",
|
1652
|
+
/** Recurring event series */
|
1653
|
+
Series = "SERIES",
|
1428
1654
|
/** Email thread */
|
1429
1655
|
Thread = "THREAD"
|
1430
1656
|
}
|
@@ -1560,6 +1786,8 @@ export type Content = {
|
|
1560
1786
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
1561
1787
|
/** If workflow failed, the error message. */
|
1562
1788
|
error?: Maybe<Scalars['String']['output']>;
|
1789
|
+
/** The content event metadata. */
|
1790
|
+
event?: Maybe<EventMetadata>;
|
1563
1791
|
/** The geo-tags of the content, as GeoJSON Features with Point geometry. */
|
1564
1792
|
features?: Maybe<Scalars['String']['output']>;
|
1565
1793
|
/** The feed where this content was sourced from. */
|
@@ -2178,6 +2406,8 @@ export type ContentUpdateInput = {
|
|
2178
2406
|
drawing?: InputMaybe<DrawingMetadataInput>;
|
2179
2407
|
/** The content email metadata. */
|
2180
2408
|
email?: InputMaybe<EmailMetadataInput>;
|
2409
|
+
/** The content event metadata. */
|
2410
|
+
event?: InputMaybe<EventMetadataInput>;
|
2181
2411
|
/** The date when the file was created. */
|
2182
2412
|
fileCreationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2183
2413
|
/** The date when the file was last modified. */
|
@@ -2637,6 +2867,8 @@ export declare enum DeepgramModels {
|
|
2637
2867
|
Nova2Voicemail = "NOVA2_VOICEMAIL",
|
2638
2868
|
/** Nova 3 (General) */
|
2639
2869
|
Nova3 = "NOVA3",
|
2870
|
+
/** Nova 3 (Medical) */
|
2871
|
+
Nova3Medical = "NOVA3_MEDICAL",
|
2640
2872
|
/** Whisper (Base) */
|
2641
2873
|
WhisperBase = "WHISPER_BASE",
|
2642
2874
|
/** Whisper (Large) */
|
@@ -2744,6 +2976,27 @@ export type DiffbotEnrichmentPropertiesInput = {
|
|
2744
2976
|
/** The Diffbot API key. */
|
2745
2977
|
key?: InputMaybe<Scalars['String']['input']>;
|
2746
2978
|
};
|
2979
|
+
/** Represents a Discord channel. */
|
2980
|
+
export type DiscordChannelResult = {
|
2981
|
+
__typename?: 'DiscordChannelResult';
|
2982
|
+
/** The Discord channel identifier. */
|
2983
|
+
channelId?: Maybe<Scalars['ID']['output']>;
|
2984
|
+
/** The Discord channel name. */
|
2985
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
2986
|
+
};
|
2987
|
+
/** Represents Discord channels. */
|
2988
|
+
export type DiscordChannelResults = {
|
2989
|
+
__typename?: 'DiscordChannelResults';
|
2990
|
+
/** The Discord channels. */
|
2991
|
+
results?: Maybe<Array<Maybe<DiscordChannelResult>>>;
|
2992
|
+
};
|
2993
|
+
/** Represents Discord channels properties. */
|
2994
|
+
export type DiscordChannelsInput = {
|
2995
|
+
/** Discord guild identifier. */
|
2996
|
+
guildId: Scalars['String']['input'];
|
2997
|
+
/** Discord bot token. */
|
2998
|
+
token: Scalars['String']['input'];
|
2999
|
+
};
|
2747
3000
|
/** Represents Discord feed properties. */
|
2748
3001
|
export type DiscordFeedProperties = {
|
2749
3002
|
__typename?: 'DiscordFeedProperties';
|
@@ -2784,6 +3037,25 @@ export type DiscordFeedPropertiesUpdateInput = {
|
|
2784
3037
|
/** Feed listing type, i.e. past or new messages. */
|
2785
3038
|
type?: InputMaybe<FeedListingTypes>;
|
2786
3039
|
};
|
3040
|
+
/** Represents a Discord guild. */
|
3041
|
+
export type DiscordGuildResult = {
|
3042
|
+
__typename?: 'DiscordGuildResult';
|
3043
|
+
/** The Discord guild identifier. */
|
3044
|
+
guildId?: Maybe<Scalars['ID']['output']>;
|
3045
|
+
/** The Discord guild name. */
|
3046
|
+
guildName?: Maybe<Scalars['String']['output']>;
|
3047
|
+
};
|
3048
|
+
/** Represents Discord guilds. */
|
3049
|
+
export type DiscordGuildResults = {
|
3050
|
+
__typename?: 'DiscordGuildResults';
|
3051
|
+
/** The Discord guilds. */
|
3052
|
+
results?: Maybe<Array<Maybe<DiscordGuildResult>>>;
|
3053
|
+
};
|
3054
|
+
/** Represents Discord guilds properties. */
|
3055
|
+
export type DiscordGuildsInput = {
|
3056
|
+
/** Discord bot token. */
|
3057
|
+
token: Scalars['String']['input'];
|
3058
|
+
};
|
2787
3059
|
/** Represents document metadata. */
|
2788
3060
|
export type DocumentMetadata = {
|
2789
3061
|
__typename?: 'DocumentMetadata';
|
@@ -2993,6 +3265,29 @@ export type DropboxFeedPropertiesUpdateInput = {
|
|
2993
3265
|
/** Dropbox refresh token. */
|
2994
3266
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
2995
3267
|
};
|
3268
|
+
/** Represents a Dropbox folder. */
|
3269
|
+
export type DropboxFolderResult = {
|
3270
|
+
__typename?: 'DropboxFolderResult';
|
3271
|
+
/** The Dropbox folder identifier. */
|
3272
|
+
folderId?: Maybe<Scalars['ID']['output']>;
|
3273
|
+
/** The Dropbox folder name. */
|
3274
|
+
folderName?: Maybe<Scalars['String']['output']>;
|
3275
|
+
};
|
3276
|
+
/** Represents Dropbox folders. */
|
3277
|
+
export type DropboxFolderResults = {
|
3278
|
+
__typename?: 'DropboxFolderResults';
|
3279
|
+
/** The Dropbox folders. */
|
3280
|
+
results?: Maybe<Array<Maybe<DropboxFolderResult>>>;
|
3281
|
+
};
|
3282
|
+
/** Represents Dropbox folders properties. */
|
3283
|
+
export type DropboxFoldersInput = {
|
3284
|
+
/** Dropbox app key. */
|
3285
|
+
appKey: Scalars['String']['input'];
|
3286
|
+
/** Dropbox app secret. */
|
3287
|
+
appSecret: Scalars['String']['input'];
|
3288
|
+
/** Dropbox refresh token. */
|
3289
|
+
refreshToken: Scalars['String']['input'];
|
3290
|
+
};
|
2996
3291
|
/** ElevenLabs models */
|
2997
3292
|
export declare enum ElevenLabsModels {
|
2998
3293
|
/** Eleven English v1 */
|
@@ -3442,6 +3737,8 @@ export declare enum EntityTypes {
|
|
3442
3737
|
Specification = "SPECIFICATION",
|
3443
3738
|
/** User */
|
3444
3739
|
User = "USER",
|
3740
|
+
/** View */
|
3741
|
+
View = "VIEW",
|
3445
3742
|
/** Workflow */
|
3446
3743
|
Workflow = "WORKFLOW"
|
3447
3744
|
}
|
@@ -3634,6 +3931,91 @@ export type EventInput = {
|
|
3634
3931
|
/** The event URI. */
|
3635
3932
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
3636
3933
|
};
|
3934
|
+
/** Represents event metadata. */
|
3935
|
+
export type EventMetadata = {
|
3936
|
+
__typename?: 'EventMetadata';
|
3937
|
+
/** The event attendees. */
|
3938
|
+
attendees?: Maybe<Array<Maybe<CalendarAttendee>>>;
|
3939
|
+
/** The calendar identifier. */
|
3940
|
+
calendarIdentifier?: Maybe<Scalars['String']['output']>;
|
3941
|
+
/** The event categories. */
|
3942
|
+
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
3943
|
+
/** The event end date/time. */
|
3944
|
+
endDateTime?: Maybe<Scalars['DateTime']['output']>;
|
3945
|
+
/** The event identifier. */
|
3946
|
+
eventIdentifier?: Maybe<Scalars['String']['output']>;
|
3947
|
+
/** Whether the event is all day. */
|
3948
|
+
isAllDay?: Maybe<Scalars['Boolean']['output']>;
|
3949
|
+
/** Whether the event is recurring. */
|
3950
|
+
isRecurring?: Maybe<Scalars['Boolean']['output']>;
|
3951
|
+
/** The event hyperlinks. */
|
3952
|
+
links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
3953
|
+
/** The event meeting link. */
|
3954
|
+
meetingLink?: Maybe<Scalars['String']['output']>;
|
3955
|
+
/** The event organizer. */
|
3956
|
+
organizer?: Maybe<CalendarAttendee>;
|
3957
|
+
/** The event recurrence. */
|
3958
|
+
recurrence?: Maybe<CalendarRecurrence>;
|
3959
|
+
/** The recurring event identifier. */
|
3960
|
+
recurringEventIdentifier?: Maybe<Scalars['String']['output']>;
|
3961
|
+
/** The event reminders. */
|
3962
|
+
reminders?: Maybe<Array<Maybe<CalendarReminder>>>;
|
3963
|
+
/** The event start date/time. */
|
3964
|
+
startDateTime?: Maybe<Scalars['DateTime']['output']>;
|
3965
|
+
/** The event status. */
|
3966
|
+
status?: Maybe<CalendarEventStatus>;
|
3967
|
+
/** The event subject. */
|
3968
|
+
subject?: Maybe<Scalars['String']['output']>;
|
3969
|
+
/** The event timezone. */
|
3970
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
3971
|
+
/** The event visibility. */
|
3972
|
+
visibility?: Maybe<CalendarEventVisibility>;
|
3973
|
+
};
|
3974
|
+
/** Represents event metadata. */
|
3975
|
+
export type EventMetadataInput = {
|
3976
|
+
/** The event attendees. */
|
3977
|
+
attendees?: InputMaybe<Array<InputMaybe<CalendarAttendeeInput>>>;
|
3978
|
+
/** The calendar identifier. */
|
3979
|
+
calendarId?: InputMaybe<Scalars['String']['input']>;
|
3980
|
+
/** The event categories. */
|
3981
|
+
categories?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3982
|
+
/** The metadata creation date. */
|
3983
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
3984
|
+
/** The event end date/time. */
|
3985
|
+
endDateTime?: InputMaybe<Scalars['DateTime']['input']>;
|
3986
|
+
/** The event identifier. */
|
3987
|
+
eventId?: InputMaybe<Scalars['String']['input']>;
|
3988
|
+
/** Whether the event is all day. */
|
3989
|
+
isAllDay?: InputMaybe<Scalars['Boolean']['input']>;
|
3990
|
+
/** Whether the event is recurring. */
|
3991
|
+
isRecurring?: InputMaybe<Scalars['Boolean']['input']>;
|
3992
|
+
/** The event hyperlinks. */
|
3993
|
+
links?: InputMaybe<Array<InputMaybe<LinkReferenceInput>>>;
|
3994
|
+
/** The metadata geo-location. */
|
3995
|
+
location?: InputMaybe<PointInput>;
|
3996
|
+
/** The event meeting link. */
|
3997
|
+
meetingLink?: InputMaybe<Scalars['String']['input']>;
|
3998
|
+
/** The metadata modified date. */
|
3999
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
4000
|
+
/** The event organizer. */
|
4001
|
+
organizer?: InputMaybe<CalendarAttendeeInput>;
|
4002
|
+
/** The event recurrence. */
|
4003
|
+
recurrence?: InputMaybe<CalendarRecurrenceInput>;
|
4004
|
+
/** The recurring event identifier. */
|
4005
|
+
recurringEventId?: InputMaybe<Scalars['String']['input']>;
|
4006
|
+
/** The event reminders. */
|
4007
|
+
reminders?: InputMaybe<Array<InputMaybe<CalendarReminderInput>>>;
|
4008
|
+
/** The event start date/time. */
|
4009
|
+
startDateTime?: InputMaybe<Scalars['DateTime']['input']>;
|
4010
|
+
/** The event status. */
|
4011
|
+
status?: InputMaybe<CalendarEventStatus>;
|
4012
|
+
/** The event subject. */
|
4013
|
+
subject?: InputMaybe<Scalars['String']['input']>;
|
4014
|
+
/** The event timezone. */
|
4015
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
4016
|
+
/** The event visibility. */
|
4017
|
+
visibility?: InputMaybe<CalendarEventVisibility>;
|
4018
|
+
};
|
3637
4019
|
/** Represents event query results. */
|
3638
4020
|
export type EventResults = {
|
3639
4021
|
__typename?: 'EventResults';
|
@@ -3748,6 +4130,8 @@ export declare enum FacetValueTypes {
|
|
3748
4130
|
/** Represents a feed. */
|
3749
4131
|
export type Feed = {
|
3750
4132
|
__typename?: 'Feed';
|
4133
|
+
/** The calendar feed properties. */
|
4134
|
+
calendar?: Maybe<CalendarFeedProperties>;
|
3751
4135
|
/** The contents sourced from the feed. */
|
3752
4136
|
contents?: Maybe<Array<Maybe<Content>>>;
|
3753
4137
|
/** The tenant correlation identifier. */
|
@@ -3828,6 +4212,8 @@ export declare enum FeedConnectorTypes {
|
|
3828
4212
|
GitHub = "GIT_HUB",
|
3829
4213
|
/** Google Cloud feed connector */
|
3830
4214
|
Google = "GOOGLE",
|
4215
|
+
/** Google Calendar feed connector */
|
4216
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
3831
4217
|
/** Google Drive feed connector */
|
3832
4218
|
GoogleDrive = "GOOGLE_DRIVE",
|
3833
4219
|
/** Google Mail feed connector */
|
@@ -3836,6 +4222,8 @@ export declare enum FeedConnectorTypes {
|
|
3836
4222
|
Intercom = "INTERCOM",
|
3837
4223
|
/** Linear feed connector */
|
3838
4224
|
Linear = "LINEAR",
|
4225
|
+
/** Microsoft Calendar feed connector */
|
4226
|
+
MicrosoftCalendar = "MICROSOFT_CALENDAR",
|
3839
4227
|
/** Microsoft Outlook Email feed connector */
|
3840
4228
|
MicrosoftEmail = "MICROSOFT_EMAIL",
|
3841
4229
|
/** Microsoft OneDrive feed connector */
|
@@ -3872,6 +4260,8 @@ export type FeedFilter = {
|
|
3872
4260
|
};
|
3873
4261
|
/** Represents a feed. */
|
3874
4262
|
export type FeedInput = {
|
4263
|
+
/** The calendar feed properties. */
|
4264
|
+
calendar?: InputMaybe<CalendarFeedPropertiesInput>;
|
3875
4265
|
/** The feed description. */
|
3876
4266
|
description?: InputMaybe<Scalars['String']['input']>;
|
3877
4267
|
/** The Discord feed properties. */
|
@@ -3959,6 +4349,8 @@ export declare enum FeedServiceTypes {
|
|
3959
4349
|
GitHubIssues = "GIT_HUB_ISSUES",
|
3960
4350
|
/** Google Cloud Blob feed service */
|
3961
4351
|
GoogleBlob = "GOOGLE_BLOB",
|
4352
|
+
/** Google Calendar feed service */
|
4353
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
3962
4354
|
/** Google Drive feed service */
|
3963
4355
|
GoogleDrive = "GOOGLE_DRIVE",
|
3964
4356
|
/** Google Mail feed service */
|
@@ -3969,6 +4361,8 @@ export declare enum FeedServiceTypes {
|
|
3969
4361
|
IntercomTickets = "INTERCOM_TICKETS",
|
3970
4362
|
/** Linear feed service */
|
3971
4363
|
Linear = "LINEAR",
|
4364
|
+
/** Microsoft Calendar feed service */
|
4365
|
+
MicrosoftCalendar = "MICROSOFT_CALENDAR",
|
3972
4366
|
/** Microsoft Outlook Email feed service */
|
3973
4367
|
MicrosoftEmail = "MICROSOFT_EMAIL",
|
3974
4368
|
/** Microsoft OneDrive feed service */
|
@@ -3986,6 +4380,8 @@ export declare enum FeedServiceTypes {
|
|
3986
4380
|
}
|
3987
4381
|
/** Feed type */
|
3988
4382
|
export declare enum FeedTypes {
|
4383
|
+
/** Calendar feed */
|
4384
|
+
Calendar = "CALENDAR",
|
3989
4385
|
/** Discord channel feed */
|
3990
4386
|
Discord = "DISCORD",
|
3991
4387
|
/** Email feed */
|
@@ -4022,6 +4418,8 @@ export declare enum FeedTypes {
|
|
4022
4418
|
}
|
4023
4419
|
/** Represents a feed. */
|
4024
4420
|
export type FeedUpdateInput = {
|
4421
|
+
/** The calendar feed properties. */
|
4422
|
+
calendar?: InputMaybe<CalendarFeedPropertiesUpdateInput>;
|
4025
4423
|
/** The feed description. */
|
4026
4424
|
description?: InputMaybe<Scalars['String']['input']>;
|
4027
4425
|
/** The Discord feed properties. */
|
@@ -4191,9 +4589,18 @@ export type GeometryMetadataInput = {
|
|
4191
4589
|
/** The geometry vertex count. */
|
4192
4590
|
vertexCount?: InputMaybe<Scalars['Long']['input']>;
|
4193
4591
|
};
|
4592
|
+
export declare enum GitHubAuthenticationTypes {
|
4593
|
+
Connector = "CONNECTOR",
|
4594
|
+
OAuth = "O_AUTH",
|
4595
|
+
PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
|
4596
|
+
}
|
4194
4597
|
/** Represents GitHub properties. */
|
4195
4598
|
export type GitHubFeedProperties = {
|
4196
4599
|
__typename?: 'GitHubFeedProperties';
|
4600
|
+
/** OneDrive authentication type, defaults to User. */
|
4601
|
+
authenticationType?: Maybe<OneDriveAuthenticationTypes>;
|
4602
|
+
/** Connector identifier. */
|
4603
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
4197
4604
|
/** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
|
4198
4605
|
personalAccessToken?: Maybe<Scalars['String']['output']>;
|
4199
4606
|
/** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
|
@@ -4207,9 +4614,13 @@ export type GitHubFeedProperties = {
|
|
4207
4614
|
};
|
4208
4615
|
/** Represents GitHub properties. */
|
4209
4616
|
export type GitHubFeedPropertiesInput = {
|
4210
|
-
/** GitHub
|
4617
|
+
/** GitHub authentication type, defaults to PersonalAccessToken. */
|
4618
|
+
authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
|
4619
|
+
/** Connector identifier, for Connector authentication type. */
|
4620
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4621
|
+
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
4211
4622
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
4212
|
-
/** GitHub refresh token
|
4623
|
+
/** GitHub refresh token, requires OAuth authentication type. */
|
4213
4624
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4214
4625
|
/** GitHub repository name. */
|
4215
4626
|
repositoryName: Scalars['String']['input'];
|
@@ -4220,9 +4631,13 @@ export type GitHubFeedPropertiesInput = {
|
|
4220
4631
|
};
|
4221
4632
|
/** Represents GitHub properties. */
|
4222
4633
|
export type GitHubFeedPropertiesUpdateInput = {
|
4223
|
-
/** GitHub
|
4634
|
+
/** GitHub authentication type, defaults to PersonalAccessToken. */
|
4635
|
+
authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
|
4636
|
+
/** Connector identifier, for Connector authentication type. */
|
4637
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4638
|
+
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
4224
4639
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
4225
|
-
/** GitHub refresh token
|
4640
|
+
/** GitHub refresh token, requires OAuth authentication type. */
|
4226
4641
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4227
4642
|
/** GitHub repository name. */
|
4228
4643
|
repositoryName?: InputMaybe<Scalars['String']['input']>;
|
@@ -4231,6 +4646,11 @@ export type GitHubFeedPropertiesUpdateInput = {
|
|
4231
4646
|
/** GitHub Enterprise URI, optional. */
|
4232
4647
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
4233
4648
|
};
|
4649
|
+
export declare enum GitHubIssueAuthenticationTypes {
|
4650
|
+
Connector = "CONNECTOR",
|
4651
|
+
OAuth = "O_AUTH",
|
4652
|
+
PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
|
4653
|
+
}
|
4234
4654
|
/** Represents GitHub Issues feed properties. */
|
4235
4655
|
export type GitHubIssuesFeedProperties = {
|
4236
4656
|
__typename?: 'GitHubIssuesFeedProperties';
|
@@ -4247,9 +4667,13 @@ export type GitHubIssuesFeedProperties = {
|
|
4247
4667
|
};
|
4248
4668
|
/** Represents GitHub Issues feed properties. */
|
4249
4669
|
export type GitHubIssuesFeedPropertiesInput = {
|
4250
|
-
/** GitHub
|
4670
|
+
/** GitHub Issues authentication type, defaults to PersonalAccessToken. */
|
4671
|
+
authenticationType?: InputMaybe<GitHubIssueAuthenticationTypes>;
|
4672
|
+
/** Connector identifier, for Connector authentication type. */
|
4673
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4674
|
+
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
4251
4675
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
4252
|
-
/** GitHub refresh token
|
4676
|
+
/** GitHub refresh token, requires OAuth authentication type. */
|
4253
4677
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4254
4678
|
/** GitHub repository name. */
|
4255
4679
|
repositoryName: Scalars['String']['input'];
|
@@ -4286,7 +4710,73 @@ export type GoogleAuthenticationPropertiesInput = {
|
|
4286
4710
|
/** Google client secret. */
|
4287
4711
|
clientSecret: Scalars['String']['input'];
|
4288
4712
|
};
|
4713
|
+
export declare enum GoogleCalendarAuthenticationTypes {
|
4714
|
+
Connector = "CONNECTOR",
|
4715
|
+
User = "USER"
|
4716
|
+
}
|
4717
|
+
/** Represents Google Calendar feed properties. */
|
4718
|
+
export type GoogleCalendarFeedProperties = {
|
4719
|
+
__typename?: 'GoogleCalendarFeedProperties';
|
4720
|
+
/** Read calendar events after this date (inclusive), optional. */
|
4721
|
+
afterDate?: Maybe<Scalars['DateTime']['output']>;
|
4722
|
+
/** Google Calendar authentication type. */
|
4723
|
+
authenticationType?: Maybe<GoogleCalendarAuthenticationTypes>;
|
4724
|
+
/** Read calendar events before this date (inclusive), optional. */
|
4725
|
+
beforeDate?: Maybe<Scalars['DateTime']['output']>;
|
4726
|
+
/** Google Email calendar identifier, optional. */
|
4727
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
4728
|
+
/** Google OAuth2 client identifier. */
|
4729
|
+
clientId: Scalars['String']['output'];
|
4730
|
+
/** Google OAuth2 client secret. */
|
4731
|
+
clientSecret: Scalars['String']['output'];
|
4732
|
+
/** Connector identifier. */
|
4733
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
4734
|
+
/** Google OAuth2 refresh token. */
|
4735
|
+
refreshToken: Scalars['String']['output'];
|
4736
|
+
};
|
4737
|
+
/** Represents Google Calendar properties. */
|
4738
|
+
export type GoogleCalendarFeedPropertiesInput = {
|
4739
|
+
/** Read calendar events after this date (inclusive), optional. */
|
4740
|
+
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
4741
|
+
/** Google Calendar authentication type, defaults to User. */
|
4742
|
+
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
4743
|
+
/** Read calendar events before this date (inclusive), optional. */
|
4744
|
+
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
4745
|
+
/** Google Email calendar identifier, optional. */
|
4746
|
+
calendarId?: InputMaybe<Scalars['String']['input']>;
|
4747
|
+
/** Google OAuth2 client identifier, requires User authentication type. */
|
4748
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
4749
|
+
/** Google OAuth2 client secret, requires User authentication type. */
|
4750
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4751
|
+
/** Connector identifier, for Connector authentication type. */
|
4752
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4753
|
+
/** Google OAuth2 refresh token, requires User authentication type. */
|
4754
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4755
|
+
};
|
4756
|
+
/** Represents Google Calendar properties. */
|
4757
|
+
export type GoogleCalendarFeedPropertiesUpdateInput = {
|
4758
|
+
/** Google Calendar authentication type, defaults to User. */
|
4759
|
+
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
4760
|
+
/** Google OAuth2 client identifier, requires User authentication type. */
|
4761
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
4762
|
+
/** Google OAuth2 client secret, requires User authentication type. */
|
4763
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4764
|
+
/** Connector identifier, for Connector authentication type. */
|
4765
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4766
|
+
/** Google OAuth2 refresh token, requires User authentication type. */
|
4767
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4768
|
+
};
|
4769
|
+
/** Represents Google Calendar properties. */
|
4770
|
+
export type GoogleCalendarsInput = {
|
4771
|
+
/** Google OAuth2 client identifier. */
|
4772
|
+
clientId: Scalars['String']['input'];
|
4773
|
+
/** Google OAuth2 client secret. */
|
4774
|
+
clientSecret: Scalars['String']['input'];
|
4775
|
+
/** Google OAuth2 refresh token. */
|
4776
|
+
refreshToken: Scalars['String']['input'];
|
4777
|
+
};
|
4289
4778
|
export declare enum GoogleDriveAuthenticationTypes {
|
4779
|
+
Connector = "CONNECTOR",
|
4290
4780
|
ServiceAccount = "SERVICE_ACCOUNT",
|
4291
4781
|
User = "USER"
|
4292
4782
|
}
|
@@ -4299,6 +4789,8 @@ export type GoogleDriveFeedProperties = {
|
|
4299
4789
|
clientId?: Maybe<Scalars['String']['output']>;
|
4300
4790
|
/** Google client secret, requires User authentication type. */
|
4301
4791
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
4792
|
+
/** Connector identifier. */
|
4793
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
4302
4794
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4303
4795
|
files?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
4304
4796
|
/** Google Drive folder identifier. */
|
@@ -4316,6 +4808,8 @@ export type GoogleDriveFeedPropertiesInput = {
|
|
4316
4808
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4317
4809
|
/** Google client secret, requires User authentication type. */
|
4318
4810
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4811
|
+
/** Connector identifier, for Connector authentication type. */
|
4812
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4319
4813
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4320
4814
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4321
4815
|
/** Google Drive folder identifier. */
|
@@ -4333,6 +4827,8 @@ export type GoogleDriveFeedPropertiesUpdateInput = {
|
|
4333
4827
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4334
4828
|
/** Google client secret, requires User authentication type. */
|
4335
4829
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4830
|
+
/** Connector identifier, for Connector authentication type. */
|
4831
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4336
4832
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4337
4833
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4338
4834
|
/** Google Drive folder identifier. */
|
@@ -4342,13 +4838,44 @@ export type GoogleDriveFeedPropertiesUpdateInput = {
|
|
4342
4838
|
/** The full JSON contents of your Google service account credentials (not a file path), requires ServiceAccount authentication type. */
|
4343
4839
|
serviceAccountJson?: InputMaybe<Scalars['String']['input']>;
|
4344
4840
|
};
|
4841
|
+
/** Represents a Google Drive folder. */
|
4842
|
+
export type GoogleDriveFolderResult = {
|
4843
|
+
__typename?: 'GoogleDriveFolderResult';
|
4844
|
+
/** The Google Drive folder identifier. */
|
4845
|
+
folderId?: Maybe<Scalars['ID']['output']>;
|
4846
|
+
/** The Google Drive folder name. */
|
4847
|
+
folderName?: Maybe<Scalars['String']['output']>;
|
4848
|
+
};
|
4849
|
+
/** Represents Google Drive folders. */
|
4850
|
+
export type GoogleDriveFolderResults = {
|
4851
|
+
__typename?: 'GoogleDriveFolderResults';
|
4852
|
+
/** The Google Drive folders. */
|
4853
|
+
results?: Maybe<Array<Maybe<GoogleDriveFolderResult>>>;
|
4854
|
+
};
|
4855
|
+
/** Represents Google Drive folders properties. */
|
4856
|
+
export type GoogleDriveFoldersInput = {
|
4857
|
+
/** Google OAuth2 client identifier. */
|
4858
|
+
clientId: Scalars['String']['input'];
|
4859
|
+
/** Google OAuth2 client secret. */
|
4860
|
+
clientSecret: Scalars['String']['input'];
|
4861
|
+
/** Google OAuth2 refresh token. */
|
4862
|
+
refreshToken: Scalars['String']['input'];
|
4863
|
+
};
|
4864
|
+
export declare enum GoogleEmailAuthenticationTypes {
|
4865
|
+
Connector = "CONNECTOR",
|
4866
|
+
User = "USER"
|
4867
|
+
}
|
4345
4868
|
/** Represents Google Email feed properties. */
|
4346
4869
|
export type GoogleEmailFeedProperties = {
|
4347
4870
|
__typename?: 'GoogleEmailFeedProperties';
|
4871
|
+
/** Google Email authentication type. */
|
4872
|
+
authenticationType?: Maybe<GoogleEmailAuthenticationTypes>;
|
4348
4873
|
/** Google Email client identifier. */
|
4349
4874
|
clientId: Scalars['String']['output'];
|
4350
4875
|
/** Google Email client secret. */
|
4351
4876
|
clientSecret: Scalars['String']['output'];
|
4877
|
+
/** Connector identifier. */
|
4878
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
4352
4879
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
4353
4880
|
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
4354
4881
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -4364,10 +4891,14 @@ export type GoogleEmailFeedProperties = {
|
|
4364
4891
|
};
|
4365
4892
|
/** Represents Google Email feed properties. */
|
4366
4893
|
export type GoogleEmailFeedPropertiesInput = {
|
4367
|
-
/** Google
|
4368
|
-
|
4369
|
-
/** Google client
|
4370
|
-
|
4894
|
+
/** Google Email authentication type, defaults to User. */
|
4895
|
+
authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
|
4896
|
+
/** Google client identifier, requires User authentication type. */
|
4897
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
4898
|
+
/** Google client secret, requires User authentication type. */
|
4899
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4900
|
+
/** Connector identifier, for Connector authentication type. */
|
4901
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4371
4902
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
4372
4903
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
4373
4904
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -4376,17 +4907,21 @@ export type GoogleEmailFeedPropertiesInput = {
|
|
4376
4907
|
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
4377
4908
|
/** Whether to include Spam messages in email listing. Default is False. */
|
4378
4909
|
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
4379
|
-
/** Google refresh token. */
|
4380
|
-
refreshToken
|
4910
|
+
/** Google refresh token, requires User authentication type. */
|
4911
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4381
4912
|
/** Email listing type, i.e. past or new emails. */
|
4382
4913
|
type?: InputMaybe<EmailListingTypes>;
|
4383
4914
|
};
|
4384
4915
|
/** Represents Google Email feed properties. */
|
4385
4916
|
export type GoogleEmailFeedPropertiesUpdateInput = {
|
4386
|
-
/** Google
|
4917
|
+
/** Google Email authentication type, defaults to User. */
|
4918
|
+
authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
|
4919
|
+
/** Google client identifier, requires User authentication type. */
|
4387
4920
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4388
|
-
/** Google client secret. */
|
4921
|
+
/** Google client secret, requires User authentication type. */
|
4389
4922
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4923
|
+
/** Connector identifier, for Connector authentication type. */
|
4924
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4390
4925
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
4391
4926
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
4392
4927
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -4395,7 +4930,7 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
|
|
4395
4930
|
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
4396
4931
|
/** Whether to include Spam messages in email listing. Default is False. */
|
4397
4932
|
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
4398
|
-
/** Google refresh token. */
|
4933
|
+
/** Google refresh token, requires User authentication type. */
|
4399
4934
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4400
4935
|
/** Email listing type, i.e. past or new emails. */
|
4401
4936
|
type?: InputMaybe<EmailListingTypes>;
|
@@ -5419,11 +5954,20 @@ export type LinkReference = {
|
|
5419
5954
|
/** The hyperlink URI. */
|
5420
5955
|
uri?: Maybe<Scalars['URL']['output']>;
|
5421
5956
|
};
|
5957
|
+
/** Represents a hyperlink. */
|
5958
|
+
export type LinkReferenceInput = {
|
5959
|
+
/** The hyperlink type. */
|
5960
|
+
linkType?: InputMaybe<LinkTypes>;
|
5961
|
+
/** The hyperlink URI. */
|
5962
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
5963
|
+
};
|
5422
5964
|
/** Represents the content hyperlink strategy. */
|
5423
5965
|
export type LinkStrategy = {
|
5424
5966
|
__typename?: 'LinkStrategy';
|
5425
5967
|
/** Whether to crawl the content DNS domain, i.e. hyperlinks to same domain as content page. */
|
5426
5968
|
allowContentDomain?: Maybe<Scalars['Boolean']['output']>;
|
5969
|
+
/** The allowed content types for link crawling. */
|
5970
|
+
allowedContentTypes?: Maybe<Array<ContentTypes>>;
|
5427
5971
|
/** The list of DNS domains to be crawled, i.e. example.com. */
|
5428
5972
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
5429
5973
|
/** The allowed file types. */
|
@@ -5434,6 +5978,8 @@ export type LinkStrategy = {
|
|
5434
5978
|
allowedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
5435
5979
|
/** Whether link crawling is enabled. */
|
5436
5980
|
enableCrawling?: Maybe<Scalars['Boolean']['output']>;
|
5981
|
+
/** The excluded content types for link crawling. */
|
5982
|
+
excludedContentTypes?: Maybe<Array<ContentTypes>>;
|
5437
5983
|
/** The list of DNS domains to not be crawled, i.e. example.com. */
|
5438
5984
|
excludedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
5439
5985
|
/** The excluded link types. */
|
@@ -5449,6 +5995,8 @@ export type LinkStrategy = {
|
|
5449
5995
|
export type LinkStrategyInput = {
|
5450
5996
|
/** Whether to crawl the content DNS domain, i.e. hyperlinks to same domain as content page. */
|
5451
5997
|
allowContentDomain?: InputMaybe<Scalars['Boolean']['input']>;
|
5998
|
+
/** The allowed content types for link crawling. */
|
5999
|
+
allowedContentTypes?: InputMaybe<Array<ContentTypes>>;
|
5452
6000
|
/** The list of DNS domains to be crawled, i.e. example.com. */
|
5453
6001
|
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
5454
6002
|
/** The allowed file types. */
|
@@ -5459,6 +6007,8 @@ export type LinkStrategyInput = {
|
|
5459
6007
|
allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
5460
6008
|
/** Whether link crawling is enabled. */
|
5461
6009
|
enableCrawling?: InputMaybe<Scalars['Boolean']['input']>;
|
6010
|
+
/** The excluded content types for link crawling. */
|
6011
|
+
excludedContentTypes?: InputMaybe<Array<ContentTypes>>;
|
5462
6012
|
/** The list of DNS domains to not be crawled, i.e. example.com. */
|
5463
6013
|
excludedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
5464
6014
|
/** The excluded link types. */
|
@@ -7290,13 +7840,86 @@ export type MicrosoftAuthenticationPropertiesInput = {
|
|
7290
7840
|
/** Microsoft Entra ID tenant ID. */
|
7291
7841
|
tenantId: Scalars['ID']['input'];
|
7292
7842
|
};
|
7843
|
+
export declare enum MicrosoftCalendarAuthenticationTypes {
|
7844
|
+
Connector = "CONNECTOR",
|
7845
|
+
User = "USER"
|
7846
|
+
}
|
7847
|
+
/** Represents Microsoft Calendar feed properties. */
|
7848
|
+
export type MicrosoftCalendarFeedProperties = {
|
7849
|
+
__typename?: 'MicrosoftCalendarFeedProperties';
|
7850
|
+
/** Read calendar events after this date (inclusive), optional. */
|
7851
|
+
afterDate?: Maybe<Scalars['DateTime']['output']>;
|
7852
|
+
/** Microsoft Calendar authentication type. */
|
7853
|
+
authenticationType?: Maybe<MicrosoftCalendarAuthenticationTypes>;
|
7854
|
+
/** Read calendar events before this date (inclusive), optional. */
|
7855
|
+
beforeDate?: Maybe<Scalars['DateTime']['output']>;
|
7856
|
+
/** Microsoft Email calendar identifier, optional. */
|
7857
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
7858
|
+
/** Microsoft Entra ID client identifier. */
|
7859
|
+
clientId: Scalars['String']['output'];
|
7860
|
+
/** Microsoft Entra ID client secret. */
|
7861
|
+
clientSecret: Scalars['String']['output'];
|
7862
|
+
/** Connector identifier. */
|
7863
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
7864
|
+
/** Microsoft Entra ID refresh token. */
|
7865
|
+
refreshToken: Scalars['String']['output'];
|
7866
|
+
};
|
7867
|
+
/** Represents Microsoft Calendar properties. */
|
7868
|
+
export type MicrosoftCalendarFeedPropertiesInput = {
|
7869
|
+
/** Read calendar events after this date (inclusive), optional. */
|
7870
|
+
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
7871
|
+
/** Microsoft Calendar authentication type, defaults to User. */
|
7872
|
+
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
7873
|
+
/** Read calendar events before this date (inclusive), optional. */
|
7874
|
+
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
7875
|
+
/** Microsoft Email calendar identifier, optional. */
|
7876
|
+
calendarId?: InputMaybe<Scalars['String']['input']>;
|
7877
|
+
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
7878
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
7879
|
+
/** Microsoft Entra ID client secret, requires User authentication type. */
|
7880
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
7881
|
+
/** Connector identifier, for Connector authentication type. */
|
7882
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
7883
|
+
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
7884
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
7885
|
+
};
|
7886
|
+
/** Represents Microsoft Calendar properties. */
|
7887
|
+
export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
7888
|
+
/** Microsoft Calendar authentication type, defaults to User. */
|
7889
|
+
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
7890
|
+
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
7891
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
7892
|
+
/** Microsoft Entra ID client secret, requires User authentication type. */
|
7893
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
7894
|
+
/** Connector identifier, for Connector authentication type. */
|
7895
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
7896
|
+
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
7897
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
7898
|
+
};
|
7899
|
+
/** Represents Microsoft Calendar properties. */
|
7900
|
+
export type MicrosoftCalendarsInput = {
|
7901
|
+
/** Microsoft Entra ID client identifier. */
|
7902
|
+
clientId: Scalars['String']['input'];
|
7903
|
+
/** Microsoft Entra ID client secret. */
|
7904
|
+
clientSecret: Scalars['String']['input'];
|
7905
|
+
/** Microsoft Entra ID refresh token. */
|
7906
|
+
refreshToken: Scalars['String']['input'];
|
7907
|
+
};
|
7908
|
+
export declare enum MicrosoftEmailAuthenticationTypes {
|
7909
|
+
Connector = "CONNECTOR",
|
7910
|
+
User = "USER"
|
7911
|
+
}
|
7293
7912
|
/** Represents Microsoft Email feed properties. */
|
7294
7913
|
export type MicrosoftEmailFeedProperties = {
|
7295
7914
|
__typename?: 'MicrosoftEmailFeedProperties';
|
7915
|
+
/** Microsoft Email authentication type. */
|
7916
|
+
authenticationType?: Maybe<MicrosoftEmailAuthenticationTypes>;
|
7296
7917
|
/** Microsoft Email client identifier. */
|
7297
7918
|
clientId: Scalars['String']['output'];
|
7298
7919
|
/** Microsoft Email client secret. */
|
7299
7920
|
clientSecret: Scalars['String']['output'];
|
7921
|
+
/** Connector identifier. */
|
7922
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
7300
7923
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
7301
7924
|
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
7302
7925
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -7312,10 +7935,14 @@ export type MicrosoftEmailFeedProperties = {
|
|
7312
7935
|
};
|
7313
7936
|
/** Represents Microsoft Email feed properties. */
|
7314
7937
|
export type MicrosoftEmailFeedPropertiesInput = {
|
7315
|
-
/** Microsoft Email
|
7316
|
-
|
7317
|
-
/** Microsoft Email client
|
7318
|
-
|
7938
|
+
/** Microsoft Email authentication type, defaults to User. */
|
7939
|
+
authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
|
7940
|
+
/** Microsoft Email client identifier, requires User authentication type. */
|
7941
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
7942
|
+
/** Microsoft Email client secret, requires User authentication type. */
|
7943
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
7944
|
+
/** Connector identifier, for Connector authentication type. */
|
7945
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
7319
7946
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
7320
7947
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
7321
7948
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -7324,17 +7951,21 @@ export type MicrosoftEmailFeedPropertiesInput = {
|
|
7324
7951
|
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
7325
7952
|
/** Whether to include Spam messages in email listing. Default is False. */
|
7326
7953
|
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
7327
|
-
/** Microsoft Email refresh token. */
|
7328
|
-
refreshToken
|
7954
|
+
/** Microsoft Email refresh token, requires User authentication type. */
|
7955
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
7329
7956
|
/** Email listing type, i.e. past or new emails. */
|
7330
7957
|
type?: InputMaybe<EmailListingTypes>;
|
7331
7958
|
};
|
7332
7959
|
/** Represents Microsoft Email feed properties. */
|
7333
7960
|
export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
7334
|
-
/** Microsoft Email
|
7961
|
+
/** Microsoft Email authentication type, defaults to User. */
|
7962
|
+
authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
|
7963
|
+
/** Microsoft Email client identifier, requires User authentication type. */
|
7335
7964
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
7336
|
-
/** Microsoft Email client secret. */
|
7965
|
+
/** Microsoft Email client secret, requires User authentication type. */
|
7337
7966
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
7967
|
+
/** Connector identifier, for Connector authentication type. */
|
7968
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
7338
7969
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
7339
7970
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
7340
7971
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -7343,7 +7974,7 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
|
7343
7974
|
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
7344
7975
|
/** Whether to include Spam messages in email listing. Default is False. */
|
7345
7976
|
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
7346
|
-
/** Microsoft Email refresh token. */
|
7977
|
+
/** Microsoft Email refresh token, requires User authentication type. */
|
7347
7978
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
7348
7979
|
/** Email listing type, i.e. past or new emails. */
|
7349
7980
|
type?: InputMaybe<EmailListingTypes>;
|
@@ -7776,6 +8407,8 @@ export type Mutation = {
|
|
7776
8407
|
createSpecification?: Maybe<Specification>;
|
7777
8408
|
/** Creates a new user. */
|
7778
8409
|
createUser?: Maybe<User>;
|
8410
|
+
/** Creates a new view. */
|
8411
|
+
createView?: Maybe<View>;
|
7779
8412
|
/** Creates a new content workflow. */
|
7780
8413
|
createWorkflow?: Maybe<Workflow>;
|
7781
8414
|
/** Deletes an alert. */
|
@@ -7834,6 +8467,8 @@ export type Mutation = {
|
|
7834
8467
|
deleteAllSoftwares?: Maybe<Array<Maybe<Software>>>;
|
7835
8468
|
/** Bulk deletes specifications based on the provided filter criteria. */
|
7836
8469
|
deleteAllSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
8470
|
+
/** Bulk deletes views based on the provided filter criteria. */
|
8471
|
+
deleteAllViews?: Maybe<Array<Maybe<View>>>;
|
7837
8472
|
/** Bulk deletes workflows based on the provided filter criteria. */
|
7838
8473
|
deleteAllWorkflows?: Maybe<Array<Maybe<Workflow>>>;
|
7839
8474
|
/** Bulk deletes categories. */
|
@@ -7942,6 +8577,10 @@ export type Mutation = {
|
|
7942
8577
|
deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
7943
8578
|
/** Deletes a user. */
|
7944
8579
|
deleteUser?: Maybe<User>;
|
8580
|
+
/** Deletes a view. */
|
8581
|
+
deleteView?: Maybe<View>;
|
8582
|
+
/** Bulk deletes views. */
|
8583
|
+
deleteViews?: Maybe<Array<Maybe<View>>>;
|
7945
8584
|
/** Deletes a content workflow. */
|
7946
8585
|
deleteWorkflow?: Maybe<Workflow>;
|
7947
8586
|
/** Deletes multiple workflows given their IDs. */
|
@@ -8020,6 +8659,8 @@ export type Mutation = {
|
|
8020
8659
|
restartContent?: Maybe<Content>;
|
8021
8660
|
/** Retrieve content sources. */
|
8022
8661
|
retrieveSources?: Maybe<ContentSourceResults>;
|
8662
|
+
/** Retrieve content sources using a saved view. */
|
8663
|
+
retrieveView?: Maybe<ContentSourceResults>;
|
8023
8664
|
/** Revise content via prompted conversation. */
|
8024
8665
|
reviseContent?: Maybe<ReviseContent>;
|
8025
8666
|
/** Revise encoded image via prompted conversation. */
|
@@ -8100,6 +8741,8 @@ export type Mutation = {
|
|
8100
8741
|
updateSpecification?: Maybe<Specification>;
|
8101
8742
|
/** Updates an existing user. */
|
8102
8743
|
updateUser?: Maybe<User>;
|
8744
|
+
/** Updates an existing view. */
|
8745
|
+
updateView?: Maybe<View>;
|
8103
8746
|
/** Updates an existing content workflow. */
|
8104
8747
|
updateWorkflow?: Maybe<Workflow>;
|
8105
8748
|
/** Upserts a category. */
|
@@ -8108,6 +8751,8 @@ export type Mutation = {
|
|
8108
8751
|
upsertLabel?: Maybe<Label>;
|
8109
8752
|
/** Upserts an LLM specification. */
|
8110
8753
|
upsertSpecification?: Maybe<Specification>;
|
8754
|
+
/** Upserts a view. */
|
8755
|
+
upsertView?: Maybe<View>;
|
8111
8756
|
/** Upserts a content workflow. */
|
8112
8757
|
upsertWorkflow?: Maybe<Workflow>;
|
8113
8758
|
};
|
@@ -8240,6 +8885,9 @@ export type MutationCreateSpecificationArgs = {
|
|
8240
8885
|
export type MutationCreateUserArgs = {
|
8241
8886
|
user: UserInput;
|
8242
8887
|
};
|
8888
|
+
export type MutationCreateViewArgs = {
|
8889
|
+
view: ViewInput;
|
8890
|
+
};
|
8243
8891
|
export type MutationCreateWorkflowArgs = {
|
8244
8892
|
workflow: WorkflowInput;
|
8245
8893
|
};
|
@@ -8380,6 +9028,11 @@ export type MutationDeleteAllSpecificationsArgs = {
|
|
8380
9028
|
filter?: InputMaybe<SpecificationFilter>;
|
8381
9029
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8382
9030
|
};
|
9031
|
+
export type MutationDeleteAllViewsArgs = {
|
9032
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9033
|
+
filter?: InputMaybe<ViewFilter>;
|
9034
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9035
|
+
};
|
8383
9036
|
export type MutationDeleteAllWorkflowsArgs = {
|
8384
9037
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8385
9038
|
filter?: InputMaybe<WorkflowFilter>;
|
@@ -8569,6 +9222,13 @@ export type MutationDeleteSpecificationsArgs = {
|
|
8569
9222
|
export type MutationDeleteUserArgs = {
|
8570
9223
|
id: Scalars['ID']['input'];
|
8571
9224
|
};
|
9225
|
+
export type MutationDeleteViewArgs = {
|
9226
|
+
id: Scalars['ID']['input'];
|
9227
|
+
};
|
9228
|
+
export type MutationDeleteViewsArgs = {
|
9229
|
+
ids: Array<Scalars['ID']['input']>;
|
9230
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9231
|
+
};
|
8572
9232
|
export type MutationDeleteWorkflowArgs = {
|
8573
9233
|
id: Scalars['ID']['input'];
|
8574
9234
|
};
|
@@ -8805,6 +9465,13 @@ export type MutationRetrieveSourcesArgs = {
|
|
8805
9465
|
rerankingStrategy?: InputMaybe<RerankingStrategyInput>;
|
8806
9466
|
retrievalStrategy?: InputMaybe<RetrievalStrategyInput>;
|
8807
9467
|
};
|
9468
|
+
export type MutationRetrieveViewArgs = {
|
9469
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9470
|
+
id: Scalars['ID']['input'];
|
9471
|
+
prompt: Scalars['String']['input'];
|
9472
|
+
rerankingStrategy?: InputMaybe<RerankingStrategyInput>;
|
9473
|
+
retrievalStrategy?: InputMaybe<RetrievalStrategyInput>;
|
9474
|
+
};
|
8808
9475
|
export type MutationReviseContentArgs = {
|
8809
9476
|
content: EntityReferenceInput;
|
8810
9477
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -8957,6 +9624,9 @@ export type MutationUpdateSpecificationArgs = {
|
|
8957
9624
|
export type MutationUpdateUserArgs = {
|
8958
9625
|
user: UserUpdateInput;
|
8959
9626
|
};
|
9627
|
+
export type MutationUpdateViewArgs = {
|
9628
|
+
view: ViewUpdateInput;
|
9629
|
+
};
|
8960
9630
|
export type MutationUpdateWorkflowArgs = {
|
8961
9631
|
workflow: WorkflowUpdateInput;
|
8962
9632
|
};
|
@@ -8969,6 +9639,9 @@ export type MutationUpsertLabelArgs = {
|
|
8969
9639
|
export type MutationUpsertSpecificationArgs = {
|
8970
9640
|
specification: SpecificationInput;
|
8971
9641
|
};
|
9642
|
+
export type MutationUpsertViewArgs = {
|
9643
|
+
view: ViewInput;
|
9644
|
+
};
|
8972
9645
|
export type MutationUpsertWorkflowArgs = {
|
8973
9646
|
workflow: WorkflowInput;
|
8974
9647
|
};
|
@@ -9265,13 +9938,21 @@ export declare enum OccurrenceTypes {
|
|
9265
9938
|
Text = "TEXT",
|
9266
9939
|
Time = "TIME"
|
9267
9940
|
}
|
9941
|
+
export declare enum OneDriveAuthenticationTypes {
|
9942
|
+
Connector = "CONNECTOR",
|
9943
|
+
User = "USER"
|
9944
|
+
}
|
9268
9945
|
/** Represents OneDrive properties. */
|
9269
9946
|
export type OneDriveFeedProperties = {
|
9270
9947
|
__typename?: 'OneDriveFeedProperties';
|
9948
|
+
/** OneDrive authentication type, defaults to User. */
|
9949
|
+
authenticationType?: Maybe<OneDriveAuthenticationTypes>;
|
9271
9950
|
/** OneDrive client identifier. */
|
9272
9951
|
clientId: Scalars['String']['output'];
|
9273
9952
|
/** OneDrive client secret. */
|
9274
9953
|
clientSecret: Scalars['String']['output'];
|
9954
|
+
/** Connector identifier. */
|
9955
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
9275
9956
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
9276
9957
|
files?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
9277
9958
|
/** OneDrive folder identifier. */
|
@@ -9281,28 +9962,36 @@ export type OneDriveFeedProperties = {
|
|
9281
9962
|
};
|
9282
9963
|
/** Represents OneDrive properties. */
|
9283
9964
|
export type OneDriveFeedPropertiesInput = {
|
9284
|
-
/** OneDrive
|
9285
|
-
|
9286
|
-
/** OneDrive client
|
9287
|
-
|
9965
|
+
/** OneDrive authentication type, defaults to User. */
|
9966
|
+
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
9967
|
+
/** OneDrive client identifier, requires User authentication type. */
|
9968
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
9969
|
+
/** OneDrive client secret, requires User authentication type. */
|
9970
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
9971
|
+
/** Connector identifier, for Connector authentication type. */
|
9972
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
9288
9973
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
9289
9974
|
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
9290
9975
|
/** OneDrive folder identifier. */
|
9291
9976
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
9292
|
-
/** OneDrive refresh token. */
|
9293
|
-
refreshToken
|
9977
|
+
/** OneDrive refresh token, requires User authentication type. */
|
9978
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
9294
9979
|
};
|
9295
9980
|
/** Represents OneDrive properties. */
|
9296
9981
|
export type OneDriveFeedPropertiesUpdateInput = {
|
9297
|
-
/** OneDrive
|
9982
|
+
/** OneDrive authentication type, defaults to User. */
|
9983
|
+
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
9984
|
+
/** OneDrive client identifier, requires User authentication type. */
|
9298
9985
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
9299
|
-
/** OneDrive client secret. */
|
9986
|
+
/** OneDrive client secret, requires User authentication type. */
|
9300
9987
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
9988
|
+
/** Connector identifier, for Connector authentication type. */
|
9989
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
9301
9990
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
9302
9991
|
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
9303
9992
|
/** OneDrive folder identifier. */
|
9304
9993
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
9305
|
-
/** OneDrive refresh token. */
|
9994
|
+
/** OneDrive refresh token, requires User authentication type. */
|
9306
9995
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
9307
9996
|
};
|
9308
9997
|
/** Represents a OneDrive folder. */
|
@@ -9321,7 +10010,11 @@ export type OneDriveFolderResults = {
|
|
9321
10010
|
};
|
9322
10011
|
/** Represents OneDrive folders properties. */
|
9323
10012
|
export type OneDriveFoldersInput = {
|
9324
|
-
/**
|
10013
|
+
/** Microsoft Entra ID client identifier. */
|
10014
|
+
clientId: Scalars['String']['input'];
|
10015
|
+
/** Microsoft Entra ID client secret. */
|
10016
|
+
clientSecret: Scalars['String']['input'];
|
10017
|
+
/** Microsoft Entra ID refresh token. */
|
9325
10018
|
refreshToken: Scalars['String']['input'];
|
9326
10019
|
};
|
9327
10020
|
/** Represents an OpenAI image entity extraction connector. */
|
@@ -11033,6 +11726,8 @@ export type Query = {
|
|
11033
11726
|
alert?: Maybe<Alert>;
|
11034
11727
|
/** Retrieves alerts based on the provided filter criteria. */
|
11035
11728
|
alerts?: Maybe<AlertResults>;
|
11729
|
+
/** Retrieves available Box folders. */
|
11730
|
+
boxFolders?: Maybe<BoxFolderResults>;
|
11036
11731
|
/** Retrieves categories based on the provided filter criteria. */
|
11037
11732
|
categories?: Maybe<CategoryResults>;
|
11038
11733
|
/** Lookup a category given its ID. */
|
@@ -11059,6 +11754,8 @@ export type Query = {
|
|
11059
11754
|
countCategories?: Maybe<CountResult>;
|
11060
11755
|
/** Counts collections based on the provided filter criteria. */
|
11061
11756
|
countCollections?: Maybe<CountResult>;
|
11757
|
+
/** Counts connectors based on the provided filter criteria. */
|
11758
|
+
countConnectors?: Maybe<CountResult>;
|
11062
11759
|
/** Counts contents based on the provided filter criteria. */
|
11063
11760
|
countContents?: Maybe<CountResult>;
|
11064
11761
|
/** Counts conversations based on the provided filter criteria. */
|
@@ -11107,10 +11804,18 @@ export type Query = {
|
|
11107
11804
|
countSpecifications?: Maybe<CountResult>;
|
11108
11805
|
/** Counts users based on the provided filter criteria. */
|
11109
11806
|
countUsers?: Maybe<CountResult>;
|
11807
|
+
/** Counts views based on the provided filter criteria. */
|
11808
|
+
countViews?: Maybe<CountResult>;
|
11110
11809
|
/** Counts workflows based on the provided filter criteria. */
|
11111
11810
|
countWorkflows?: Maybe<CountResult>;
|
11112
11811
|
/** Retrieves project credits. */
|
11113
11812
|
credits?: Maybe<ProjectCredits>;
|
11813
|
+
/** Retrieves available Discord channels for a guild. */
|
11814
|
+
discordChannels?: Maybe<DiscordChannelResults>;
|
11815
|
+
/** Retrieves available Discord guilds. */
|
11816
|
+
discordGuilds?: Maybe<DiscordGuildResults>;
|
11817
|
+
/** Retrieves available Dropbox folders. */
|
11818
|
+
dropboxFolders?: Maybe<DropboxFolderResults>;
|
11114
11819
|
/** Lookup an event given its ID. */
|
11115
11820
|
event?: Maybe<Event>;
|
11116
11821
|
/** Retrieves events based on the provided filter criteria. */
|
@@ -11121,6 +11826,10 @@ export type Query = {
|
|
11121
11826
|
feedExists?: Maybe<BooleanResult>;
|
11122
11827
|
/** Retrieves feeds based on the provided filter criteria. */
|
11123
11828
|
feeds?: Maybe<FeedResults>;
|
11829
|
+
/** Retrieves available Google calendars. */
|
11830
|
+
googleCalendars?: Maybe<CalendarResults>;
|
11831
|
+
/** Retrieves available Google Drive folders. */
|
11832
|
+
googleDriveFolders?: Maybe<GoogleDriveFolderResults>;
|
11124
11833
|
/** Returns if ingested content has finished (or errored). */
|
11125
11834
|
isContentDone?: Maybe<BooleanResult>;
|
11126
11835
|
/** Returns if all the contents ingested from a feed have finished (or errored). */
|
@@ -11183,6 +11892,8 @@ export type Query = {
|
|
11183
11892
|
medicalTherapies?: Maybe<MedicalTherapyResults>;
|
11184
11893
|
/** Lookup a medical therapy given its ID. */
|
11185
11894
|
medicalTherapy?: Maybe<MedicalTherapy>;
|
11895
|
+
/** Retrieves available Microsoft calendars. */
|
11896
|
+
microsoftCalendars?: Maybe<CalendarResults>;
|
11186
11897
|
/** Retrieves available Microsoft Teams team channels. */
|
11187
11898
|
microsoftTeamsChannels?: Maybe<MicrosoftTeamsChannelResults>;
|
11188
11899
|
/** Retrieves available Microsoft Teams teams. */
|
@@ -11251,6 +11962,12 @@ export type Query = {
|
|
11251
11962
|
userByIdentifier?: Maybe<User>;
|
11252
11963
|
/** Retrieves users based on the provided filter criteria. */
|
11253
11964
|
users?: Maybe<UserResults>;
|
11965
|
+
/** Lookup a view given its ID. */
|
11966
|
+
view?: Maybe<View>;
|
11967
|
+
/** Returns whether any view exists based on the provided filter criteria. */
|
11968
|
+
viewExists?: Maybe<BooleanResult>;
|
11969
|
+
/** Retrieves views based on the provided filter criteria. */
|
11970
|
+
views?: Maybe<QueryResults>;
|
11254
11971
|
/** Lookup a workflow given its ID. */
|
11255
11972
|
workflow?: Maybe<Workflow>;
|
11256
11973
|
/** Returns whether any workflow exists based on the provided filter criteria. */
|
@@ -11266,6 +11983,10 @@ export type QueryAlertsArgs = {
|
|
11266
11983
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11267
11984
|
filter?: InputMaybe<AlertFilter>;
|
11268
11985
|
};
|
11986
|
+
export type QueryBoxFoldersArgs = {
|
11987
|
+
folderId?: InputMaybe<Scalars['ID']['input']>;
|
11988
|
+
properties: BoxFoldersInput;
|
11989
|
+
};
|
11269
11990
|
export type QueryCategoriesArgs = {
|
11270
11991
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11271
11992
|
facets?: InputMaybe<Array<InputMaybe<CategoryFacetInput>>>;
|
@@ -11321,6 +12042,10 @@ export type QueryCountCollectionsArgs = {
|
|
11321
12042
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11322
12043
|
filter?: InputMaybe<CollectionFilter>;
|
11323
12044
|
};
|
12045
|
+
export type QueryCountConnectorsArgs = {
|
12046
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12047
|
+
filter?: InputMaybe<ConnectorFilter>;
|
12048
|
+
};
|
11324
12049
|
export type QueryCountContentsArgs = {
|
11325
12050
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11326
12051
|
filter?: InputMaybe<ContentFilter>;
|
@@ -11417,6 +12142,10 @@ export type QueryCountUsersArgs = {
|
|
11417
12142
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11418
12143
|
filter?: InputMaybe<UserFilter>;
|
11419
12144
|
};
|
12145
|
+
export type QueryCountViewsArgs = {
|
12146
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12147
|
+
filter?: InputMaybe<ViewFilter>;
|
12148
|
+
};
|
11420
12149
|
export type QueryCountWorkflowsArgs = {
|
11421
12150
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11422
12151
|
filter?: InputMaybe<WorkflowFilter>;
|
@@ -11425,6 +12154,16 @@ export type QueryCreditsArgs = {
|
|
11425
12154
|
duration: Scalars['TimeSpan']['input'];
|
11426
12155
|
startDate: Scalars['DateTime']['input'];
|
11427
12156
|
};
|
12157
|
+
export type QueryDiscordChannelsArgs = {
|
12158
|
+
properties: DiscordChannelsInput;
|
12159
|
+
};
|
12160
|
+
export type QueryDiscordGuildsArgs = {
|
12161
|
+
properties: DiscordGuildsInput;
|
12162
|
+
};
|
12163
|
+
export type QueryDropboxFoldersArgs = {
|
12164
|
+
folderPath?: InputMaybe<Scalars['String']['input']>;
|
12165
|
+
properties: DropboxFoldersInput;
|
12166
|
+
};
|
11428
12167
|
export type QueryEventArgs = {
|
11429
12168
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11430
12169
|
id: Scalars['ID']['input'];
|
@@ -11446,6 +12185,13 @@ export type QueryFeedsArgs = {
|
|
11446
12185
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11447
12186
|
filter?: InputMaybe<FeedFilter>;
|
11448
12187
|
};
|
12188
|
+
export type QueryGoogleCalendarsArgs = {
|
12189
|
+
properties: GoogleCalendarsInput;
|
12190
|
+
};
|
12191
|
+
export type QueryGoogleDriveFoldersArgs = {
|
12192
|
+
folderId?: InputMaybe<Scalars['ID']['input']>;
|
12193
|
+
properties: GoogleDriveFoldersInput;
|
12194
|
+
};
|
11449
12195
|
export type QueryIsContentDoneArgs = {
|
11450
12196
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11451
12197
|
id: Scalars['ID']['input'];
|
@@ -11585,6 +12331,9 @@ export type QueryMedicalTherapyArgs = {
|
|
11585
12331
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11586
12332
|
id: Scalars['ID']['input'];
|
11587
12333
|
};
|
12334
|
+
export type QueryMicrosoftCalendarsArgs = {
|
12335
|
+
properties: MicrosoftCalendarsInput;
|
12336
|
+
};
|
11588
12337
|
export type QueryMicrosoftTeamsChannelsArgs = {
|
11589
12338
|
properties: MicrosoftTeamsChannelsInput;
|
11590
12339
|
teamId: Scalars['ID']['input'];
|
@@ -11728,6 +12477,18 @@ export type QueryUsersArgs = {
|
|
11728
12477
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11729
12478
|
filter?: InputMaybe<UserFilter>;
|
11730
12479
|
};
|
12480
|
+
export type QueryViewArgs = {
|
12481
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12482
|
+
id: Scalars['ID']['input'];
|
12483
|
+
};
|
12484
|
+
export type QueryViewExistsArgs = {
|
12485
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12486
|
+
filter?: InputMaybe<ViewFilter>;
|
12487
|
+
};
|
12488
|
+
export type QueryViewsArgs = {
|
12489
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12490
|
+
filter?: InputMaybe<ViewFilter>;
|
12491
|
+
};
|
11731
12492
|
export type QueryWorkflowArgs = {
|
11732
12493
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11733
12494
|
id: Scalars['ID']['input'];
|
@@ -11740,6 +12501,11 @@ export type QueryWorkflowsArgs = {
|
|
11740
12501
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11741
12502
|
filter?: InputMaybe<WorkflowFilter>;
|
11742
12503
|
};
|
12504
|
+
export type QueryResults = {
|
12505
|
+
__typename?: 'QueryResults';
|
12506
|
+
/** The list of view query results. */
|
12507
|
+
results?: Maybe<Array<View>>;
|
12508
|
+
};
|
11743
12509
|
/** Represents RSS feed properties. */
|
11744
12510
|
export type RssFeedProperties = {
|
11745
12511
|
__typename?: 'RSSFeedProperties';
|
@@ -12346,6 +13112,7 @@ export type ShapeMetadataInput = {
|
|
12346
13112
|
};
|
12347
13113
|
export declare enum SharePointAuthenticationTypes {
|
12348
13114
|
Application = "APPLICATION",
|
13115
|
+
Connector = "CONNECTOR",
|
12349
13116
|
User = "USER"
|
12350
13117
|
}
|
12351
13118
|
/** Represents SharePoint properties. */
|
@@ -12354,11 +13121,13 @@ export type SharePointFeedProperties = {
|
|
12354
13121
|
/** SharePoint account name. */
|
12355
13122
|
accountName: Scalars['String']['output'];
|
12356
13123
|
/** SharePoint authentication type. */
|
12357
|
-
authenticationType
|
13124
|
+
authenticationType?: Maybe<SharePointAuthenticationTypes>;
|
12358
13125
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
12359
13126
|
clientId?: Maybe<Scalars['String']['output']>;
|
12360
13127
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
12361
13128
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
13129
|
+
/** Connector identifier. */
|
13130
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
12362
13131
|
/** SharePoint folder identifier. */
|
12363
13132
|
folderId?: Maybe<Scalars['ID']['output']>;
|
12364
13133
|
/** SharePoint library identifier. */
|
@@ -12378,6 +13147,8 @@ export type SharePointFeedPropertiesInput = {
|
|
12378
13147
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
12379
13148
|
/** Microsoft Entra ID client secret, requires user authentication type. */
|
12380
13149
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
13150
|
+
/** Connector identifier, for Connector authentication type. */
|
13151
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
12381
13152
|
/** SharePoint folder identifier. */
|
12382
13153
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
12383
13154
|
/** SharePoint library identifier. */
|
@@ -12393,6 +13164,8 @@ export type SharePointFeedPropertiesUpdateInput = {
|
|
12393
13164
|
accountName?: InputMaybe<Scalars['String']['input']>;
|
12394
13165
|
/** SharePoint authentication type. */
|
12395
13166
|
authenticationType?: InputMaybe<SharePointAuthenticationTypes>;
|
13167
|
+
/** Connector identifier, for Connector authentication type. */
|
13168
|
+
connectorId?: InputMaybe<Scalars['String']['input']>;
|
12396
13169
|
/** SharePoint folder identifier. */
|
12397
13170
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
12398
13171
|
/** SharePoint library identifier. */
|
@@ -13613,17 +14386,95 @@ export type VideoMetadataInput = {
|
|
13613
14386
|
/** The video width. */
|
13614
14387
|
width?: InputMaybe<Scalars['Int']['input']>;
|
13615
14388
|
};
|
13616
|
-
/** Represents
|
13617
|
-
export type
|
13618
|
-
__typename?: '
|
13619
|
-
/**
|
13620
|
-
|
13621
|
-
/** The
|
13622
|
-
|
13623
|
-
/**
|
13624
|
-
|
13625
|
-
/** The
|
13626
|
-
|
14389
|
+
/** Represents a view. */
|
14390
|
+
export type View = {
|
14391
|
+
__typename?: 'View';
|
14392
|
+
/** Augmented filter for view. */
|
14393
|
+
augmentedFilter?: Maybe<ContentCriteria>;
|
14394
|
+
/** The creation date of the view. */
|
14395
|
+
creationDate: Scalars['DateTime']['output'];
|
14396
|
+
/** Filter for view. */
|
14397
|
+
filter?: Maybe<ContentCriteria>;
|
14398
|
+
/** The ID of the view. */
|
14399
|
+
id: Scalars['ID']['output'];
|
14400
|
+
/** The modified date of the view. */
|
14401
|
+
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
14402
|
+
/** The name of the view. */
|
14403
|
+
name: Scalars['String']['output'];
|
14404
|
+
/** The owner of the view. */
|
14405
|
+
owner: Owner;
|
14406
|
+
/** The relevance score of the view. */
|
14407
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
14408
|
+
/** The state of the view (i.e. created, finished). */
|
14409
|
+
state: EntityState;
|
14410
|
+
/** Type of view. */
|
14411
|
+
type?: Maybe<ViewTypes>;
|
14412
|
+
};
|
14413
|
+
/** Represents a filter for views. */
|
14414
|
+
export type ViewFilter = {
|
14415
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return view(s) created in the last 24 hours. */
|
14416
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
14417
|
+
/** Filter view(s) by their creation date range. */
|
14418
|
+
creationDateRange?: InputMaybe<DateRangeFilter>;
|
14419
|
+
/** The sort direction for query results. */
|
14420
|
+
direction?: InputMaybe<OrderDirectionTypes>;
|
14421
|
+
/** Filter view(s) by their unique ID. */
|
14422
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
14423
|
+
/** Limit the number of view(s) to be returned. Defaults to 100. */
|
14424
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
14425
|
+
/** Filter view(s) by their name. */
|
14426
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
14427
|
+
/** Skip the specified number of view(s) from the beginning of the result set. Only supported on keyword search. */
|
14428
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
14429
|
+
/** The sort order for query results. */
|
14430
|
+
orderBy?: InputMaybe<OrderByTypes>;
|
14431
|
+
/** Filter view(s) by searching for similar text. */
|
14432
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
14433
|
+
/** Filter view(s) by their states. */
|
14434
|
+
states?: InputMaybe<Array<EntityState>>;
|
14435
|
+
/** Filter by view types. */
|
14436
|
+
types?: InputMaybe<Array<InputMaybe<ViewTypes>>>;
|
14437
|
+
};
|
14438
|
+
/** Represents a view. */
|
14439
|
+
export type ViewInput = {
|
14440
|
+
/** Augmented filter for view. */
|
14441
|
+
augmentedFilter?: InputMaybe<ContentCriteriaInput>;
|
14442
|
+
/** Filter for view. */
|
14443
|
+
filter?: InputMaybe<ContentCriteriaInput>;
|
14444
|
+
/** The name of the view. */
|
14445
|
+
name: Scalars['String']['input'];
|
14446
|
+
/** Type of view. */
|
14447
|
+
type?: InputMaybe<ViewTypes>;
|
14448
|
+
};
|
14449
|
+
/** View type */
|
14450
|
+
export declare enum ViewTypes {
|
14451
|
+
/** Content view */
|
14452
|
+
Content = "CONTENT"
|
14453
|
+
}
|
14454
|
+
/** Represents a view. */
|
14455
|
+
export type ViewUpdateInput = {
|
14456
|
+
/** Augmented filter for view. */
|
14457
|
+
augmentedFilter?: InputMaybe<ContentCriteriaInput>;
|
14458
|
+
/** Filter for view. */
|
14459
|
+
filter?: InputMaybe<ContentCriteriaInput>;
|
14460
|
+
/** The ID of the view to update. */
|
14461
|
+
id: Scalars['ID']['input'];
|
14462
|
+
/** The name of the view. */
|
14463
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
14464
|
+
/** Type of view. */
|
14465
|
+
type?: InputMaybe<ViewTypes>;
|
14466
|
+
};
|
14467
|
+
/** Represents Voyage model properties. */
|
14468
|
+
export type VoyageModelProperties = {
|
14469
|
+
__typename?: 'VoyageModelProperties';
|
14470
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
14471
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
14472
|
+
/** The Voyage API key, if using developer's own account. */
|
14473
|
+
key?: Maybe<Scalars['String']['output']>;
|
14474
|
+
/** The Voyage model, or custom, when using developer's own account. */
|
14475
|
+
model: VoyageModels;
|
14476
|
+
/** The Voyage model name, if using developer's own account. */
|
14477
|
+
modelName?: Maybe<Scalars['String']['output']>;
|
13627
14478
|
};
|
13628
14479
|
/** Represents Voyage model properties. */
|
13629
14480
|
export type VoyageModelPropertiesInput = {
|
@@ -14684,6 +15535,181 @@ export type UpdateCollectionMutation = {
|
|
14684
15535
|
type?: CollectionTypes | null;
|
14685
15536
|
} | null;
|
14686
15537
|
};
|
15538
|
+
export type CountConnectorsQueryVariables = Exact<{
|
15539
|
+
filter?: InputMaybe<ConnectorFilter>;
|
15540
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15541
|
+
}>;
|
15542
|
+
export type CountConnectorsQuery = {
|
15543
|
+
__typename?: 'Query';
|
15544
|
+
countConnectors?: {
|
15545
|
+
__typename?: 'CountResult';
|
15546
|
+
count?: any | null;
|
15547
|
+
} | null;
|
15548
|
+
};
|
15549
|
+
export type CreateConnectorMutationVariables = Exact<{
|
15550
|
+
connector: ConnectorInput;
|
15551
|
+
}>;
|
15552
|
+
export type CreateConnectorMutation = {
|
15553
|
+
__typename?: 'Mutation';
|
15554
|
+
createConnector?: {
|
15555
|
+
__typename?: 'Connector';
|
15556
|
+
id: string;
|
15557
|
+
name: string;
|
15558
|
+
state: EntityState;
|
15559
|
+
type?: ConnectorTypes | null;
|
15560
|
+
} | null;
|
15561
|
+
};
|
15562
|
+
export type DeleteConnectorMutationVariables = Exact<{
|
15563
|
+
id: Scalars['ID']['input'];
|
15564
|
+
}>;
|
15565
|
+
export type DeleteConnectorMutation = {
|
15566
|
+
__typename?: 'Mutation';
|
15567
|
+
deleteConnector?: {
|
15568
|
+
__typename?: 'Connector';
|
15569
|
+
id: string;
|
15570
|
+
state: EntityState;
|
15571
|
+
} | null;
|
15572
|
+
};
|
15573
|
+
export type GetConnectorQueryVariables = Exact<{
|
15574
|
+
id: Scalars['ID']['input'];
|
15575
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15576
|
+
}>;
|
15577
|
+
export type GetConnectorQuery = {
|
15578
|
+
__typename?: 'Query';
|
15579
|
+
connector?: {
|
15580
|
+
__typename?: 'Connector';
|
15581
|
+
id: string;
|
15582
|
+
name: string;
|
15583
|
+
creationDate: any;
|
15584
|
+
relevance?: number | null;
|
15585
|
+
state: EntityState;
|
15586
|
+
type?: ConnectorTypes | null;
|
15587
|
+
owner: {
|
15588
|
+
__typename?: 'Owner';
|
15589
|
+
id: string;
|
15590
|
+
};
|
15591
|
+
authentication?: {
|
15592
|
+
__typename?: 'AuthenticationConnector';
|
15593
|
+
type: AuthenticationServiceTypes;
|
15594
|
+
microsoft?: {
|
15595
|
+
__typename?: 'MicrosoftAuthenticationProperties';
|
15596
|
+
tenantId: string;
|
15597
|
+
clientId: string;
|
15598
|
+
clientSecret: string;
|
15599
|
+
} | null;
|
15600
|
+
google?: {
|
15601
|
+
__typename?: 'GoogleAuthenticationProperties';
|
15602
|
+
clientId: string;
|
15603
|
+
clientSecret: string;
|
15604
|
+
} | null;
|
15605
|
+
arcade?: {
|
15606
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
15607
|
+
authorizationId: string;
|
15608
|
+
} | null;
|
15609
|
+
} | null;
|
15610
|
+
integration?: {
|
15611
|
+
__typename?: 'IntegrationConnector';
|
15612
|
+
type: IntegrationServiceTypes;
|
15613
|
+
uri?: string | null;
|
15614
|
+
slack?: {
|
15615
|
+
__typename?: 'SlackIntegrationProperties';
|
15616
|
+
token: string;
|
15617
|
+
channel: string;
|
15618
|
+
} | null;
|
15619
|
+
email?: {
|
15620
|
+
__typename?: 'EmailIntegrationProperties';
|
15621
|
+
from: string;
|
15622
|
+
subject: string;
|
15623
|
+
to: Array<string>;
|
15624
|
+
} | null;
|
15625
|
+
twitter?: {
|
15626
|
+
__typename?: 'TwitterIntegrationProperties';
|
15627
|
+
consumerKey: string;
|
15628
|
+
consumerSecret: string;
|
15629
|
+
accessTokenKey: string;
|
15630
|
+
accessTokenSecret: string;
|
15631
|
+
} | null;
|
15632
|
+
} | null;
|
15633
|
+
} | null;
|
15634
|
+
};
|
15635
|
+
export type QueryConnectorsQueryVariables = Exact<{
|
15636
|
+
filter?: InputMaybe<ConnectorFilter>;
|
15637
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15638
|
+
}>;
|
15639
|
+
export type QueryConnectorsQuery = {
|
15640
|
+
__typename?: 'Query';
|
15641
|
+
connectors?: {
|
15642
|
+
__typename?: 'ConnectorResults';
|
15643
|
+
results?: Array<{
|
15644
|
+
__typename?: 'Connector';
|
15645
|
+
id: string;
|
15646
|
+
name: string;
|
15647
|
+
creationDate: any;
|
15648
|
+
relevance?: number | null;
|
15649
|
+
state: EntityState;
|
15650
|
+
type?: ConnectorTypes | null;
|
15651
|
+
owner: {
|
15652
|
+
__typename?: 'Owner';
|
15653
|
+
id: string;
|
15654
|
+
};
|
15655
|
+
authentication?: {
|
15656
|
+
__typename?: 'AuthenticationConnector';
|
15657
|
+
type: AuthenticationServiceTypes;
|
15658
|
+
microsoft?: {
|
15659
|
+
__typename?: 'MicrosoftAuthenticationProperties';
|
15660
|
+
tenantId: string;
|
15661
|
+
clientId: string;
|
15662
|
+
clientSecret: string;
|
15663
|
+
} | null;
|
15664
|
+
google?: {
|
15665
|
+
__typename?: 'GoogleAuthenticationProperties';
|
15666
|
+
clientId: string;
|
15667
|
+
clientSecret: string;
|
15668
|
+
} | null;
|
15669
|
+
arcade?: {
|
15670
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
15671
|
+
authorizationId: string;
|
15672
|
+
} | null;
|
15673
|
+
} | null;
|
15674
|
+
integration?: {
|
15675
|
+
__typename?: 'IntegrationConnector';
|
15676
|
+
type: IntegrationServiceTypes;
|
15677
|
+
uri?: string | null;
|
15678
|
+
slack?: {
|
15679
|
+
__typename?: 'SlackIntegrationProperties';
|
15680
|
+
token: string;
|
15681
|
+
channel: string;
|
15682
|
+
} | null;
|
15683
|
+
email?: {
|
15684
|
+
__typename?: 'EmailIntegrationProperties';
|
15685
|
+
from: string;
|
15686
|
+
subject: string;
|
15687
|
+
to: Array<string>;
|
15688
|
+
} | null;
|
15689
|
+
twitter?: {
|
15690
|
+
__typename?: 'TwitterIntegrationProperties';
|
15691
|
+
consumerKey: string;
|
15692
|
+
consumerSecret: string;
|
15693
|
+
accessTokenKey: string;
|
15694
|
+
accessTokenSecret: string;
|
15695
|
+
} | null;
|
15696
|
+
} | null;
|
15697
|
+
}> | null;
|
15698
|
+
} | null;
|
15699
|
+
};
|
15700
|
+
export type UpdateConnectorMutationVariables = Exact<{
|
15701
|
+
connector: ConnectorUpdateInput;
|
15702
|
+
}>;
|
15703
|
+
export type UpdateConnectorMutation = {
|
15704
|
+
__typename?: 'Mutation';
|
15705
|
+
updateConnector?: {
|
15706
|
+
__typename?: 'Connector';
|
15707
|
+
id: string;
|
15708
|
+
name: string;
|
15709
|
+
state: EntityState;
|
15710
|
+
type?: ConnectorTypes | null;
|
15711
|
+
} | null;
|
15712
|
+
};
|
14687
15713
|
export type CountContentsQueryVariables = Exact<{
|
14688
15714
|
filter?: InputMaybe<ContentFilter>;
|
14689
15715
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -15270,6 +16296,53 @@ export type GetContentQuery = {
|
|
15270
16296
|
familyName?: string | null;
|
15271
16297
|
} | null> | null;
|
15272
16298
|
} | null;
|
16299
|
+
event?: {
|
16300
|
+
__typename?: 'EventMetadata';
|
16301
|
+
eventIdentifier?: string | null;
|
16302
|
+
calendarIdentifier?: string | null;
|
16303
|
+
subject?: string | null;
|
16304
|
+
startDateTime?: any | null;
|
16305
|
+
endDateTime?: any | null;
|
16306
|
+
isAllDay?: boolean | null;
|
16307
|
+
timezone?: string | null;
|
16308
|
+
status?: CalendarEventStatus | null;
|
16309
|
+
visibility?: CalendarEventVisibility | null;
|
16310
|
+
meetingLink?: string | null;
|
16311
|
+
categories?: Array<string | null> | null;
|
16312
|
+
recurringEventIdentifier?: string | null;
|
16313
|
+
isRecurring?: boolean | null;
|
16314
|
+
organizer?: {
|
16315
|
+
__typename?: 'CalendarAttendee';
|
16316
|
+
name?: string | null;
|
16317
|
+
email?: string | null;
|
16318
|
+
isOptional?: boolean | null;
|
16319
|
+
isOrganizer?: boolean | null;
|
16320
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
16321
|
+
} | null;
|
16322
|
+
attendees?: Array<{
|
16323
|
+
__typename?: 'CalendarAttendee';
|
16324
|
+
name?: string | null;
|
16325
|
+
email?: string | null;
|
16326
|
+
isOptional?: boolean | null;
|
16327
|
+
isOrganizer?: boolean | null;
|
16328
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
16329
|
+
} | null> | null;
|
16330
|
+
reminders?: Array<{
|
16331
|
+
__typename?: 'CalendarReminder';
|
16332
|
+
minutesBefore?: number | null;
|
16333
|
+
method?: CalendarReminderMethod | null;
|
16334
|
+
} | null> | null;
|
16335
|
+
recurrence?: {
|
16336
|
+
__typename?: 'CalendarRecurrence';
|
16337
|
+
pattern?: CalendarRecurrencePattern | null;
|
16338
|
+
interval?: number | null;
|
16339
|
+
count?: number | null;
|
16340
|
+
until?: any | null;
|
16341
|
+
daysOfWeek?: Array<string | null> | null;
|
16342
|
+
dayOfMonth?: number | null;
|
16343
|
+
monthOfYear?: number | null;
|
16344
|
+
} | null;
|
16345
|
+
} | null;
|
15273
16346
|
issue?: {
|
15274
16347
|
__typename?: 'IssueMetadata';
|
15275
16348
|
identifier?: string | null;
|
@@ -16030,6 +17103,53 @@ export type LookupContentsQuery = {
|
|
16030
17103
|
familyName?: string | null;
|
16031
17104
|
} | null> | null;
|
16032
17105
|
} | null;
|
17106
|
+
event?: {
|
17107
|
+
__typename?: 'EventMetadata';
|
17108
|
+
eventIdentifier?: string | null;
|
17109
|
+
calendarIdentifier?: string | null;
|
17110
|
+
subject?: string | null;
|
17111
|
+
startDateTime?: any | null;
|
17112
|
+
endDateTime?: any | null;
|
17113
|
+
isAllDay?: boolean | null;
|
17114
|
+
timezone?: string | null;
|
17115
|
+
status?: CalendarEventStatus | null;
|
17116
|
+
visibility?: CalendarEventVisibility | null;
|
17117
|
+
meetingLink?: string | null;
|
17118
|
+
categories?: Array<string | null> | null;
|
17119
|
+
recurringEventIdentifier?: string | null;
|
17120
|
+
isRecurring?: boolean | null;
|
17121
|
+
organizer?: {
|
17122
|
+
__typename?: 'CalendarAttendee';
|
17123
|
+
name?: string | null;
|
17124
|
+
email?: string | null;
|
17125
|
+
isOptional?: boolean | null;
|
17126
|
+
isOrganizer?: boolean | null;
|
17127
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
17128
|
+
} | null;
|
17129
|
+
attendees?: Array<{
|
17130
|
+
__typename?: 'CalendarAttendee';
|
17131
|
+
name?: string | null;
|
17132
|
+
email?: string | null;
|
17133
|
+
isOptional?: boolean | null;
|
17134
|
+
isOrganizer?: boolean | null;
|
17135
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
17136
|
+
} | null> | null;
|
17137
|
+
reminders?: Array<{
|
17138
|
+
__typename?: 'CalendarReminder';
|
17139
|
+
minutesBefore?: number | null;
|
17140
|
+
method?: CalendarReminderMethod | null;
|
17141
|
+
} | null> | null;
|
17142
|
+
recurrence?: {
|
17143
|
+
__typename?: 'CalendarRecurrence';
|
17144
|
+
pattern?: CalendarRecurrencePattern | null;
|
17145
|
+
interval?: number | null;
|
17146
|
+
count?: number | null;
|
17147
|
+
until?: any | null;
|
17148
|
+
daysOfWeek?: Array<string | null> | null;
|
17149
|
+
dayOfMonth?: number | null;
|
17150
|
+
monthOfYear?: number | null;
|
17151
|
+
} | null;
|
17152
|
+
} | null;
|
16033
17153
|
issue?: {
|
16034
17154
|
__typename?: 'IssueMetadata';
|
16035
17155
|
identifier?: string | null;
|
@@ -16450,6 +17570,7 @@ export type QueryContentsQuery = {
|
|
16450
17570
|
uri?: any | null;
|
16451
17571
|
description?: string | null;
|
16452
17572
|
identifier?: string | null;
|
17573
|
+
features?: string | null;
|
16453
17574
|
type?: ContentTypes | null;
|
16454
17575
|
fileType?: FileTypes | null;
|
16455
17576
|
mimeType?: string | null;
|
@@ -16600,6 +17721,53 @@ export type QueryContentsQuery = {
|
|
16600
17721
|
familyName?: string | null;
|
16601
17722
|
} | null> | null;
|
16602
17723
|
} | null;
|
17724
|
+
event?: {
|
17725
|
+
__typename?: 'EventMetadata';
|
17726
|
+
eventIdentifier?: string | null;
|
17727
|
+
calendarIdentifier?: string | null;
|
17728
|
+
subject?: string | null;
|
17729
|
+
startDateTime?: any | null;
|
17730
|
+
endDateTime?: any | null;
|
17731
|
+
isAllDay?: boolean | null;
|
17732
|
+
timezone?: string | null;
|
17733
|
+
status?: CalendarEventStatus | null;
|
17734
|
+
visibility?: CalendarEventVisibility | null;
|
17735
|
+
meetingLink?: string | null;
|
17736
|
+
categories?: Array<string | null> | null;
|
17737
|
+
recurringEventIdentifier?: string | null;
|
17738
|
+
isRecurring?: boolean | null;
|
17739
|
+
organizer?: {
|
17740
|
+
__typename?: 'CalendarAttendee';
|
17741
|
+
name?: string | null;
|
17742
|
+
email?: string | null;
|
17743
|
+
isOptional?: boolean | null;
|
17744
|
+
isOrganizer?: boolean | null;
|
17745
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
17746
|
+
} | null;
|
17747
|
+
attendees?: Array<{
|
17748
|
+
__typename?: 'CalendarAttendee';
|
17749
|
+
name?: string | null;
|
17750
|
+
email?: string | null;
|
17751
|
+
isOptional?: boolean | null;
|
17752
|
+
isOrganizer?: boolean | null;
|
17753
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
17754
|
+
} | null> | null;
|
17755
|
+
reminders?: Array<{
|
17756
|
+
__typename?: 'CalendarReminder';
|
17757
|
+
minutesBefore?: number | null;
|
17758
|
+
method?: CalendarReminderMethod | null;
|
17759
|
+
} | null> | null;
|
17760
|
+
recurrence?: {
|
17761
|
+
__typename?: 'CalendarRecurrence';
|
17762
|
+
pattern?: CalendarRecurrencePattern | null;
|
17763
|
+
interval?: number | null;
|
17764
|
+
count?: number | null;
|
17765
|
+
until?: any | null;
|
17766
|
+
daysOfWeek?: Array<string | null> | null;
|
17767
|
+
dayOfMonth?: number | null;
|
17768
|
+
monthOfYear?: number | null;
|
17769
|
+
} | null;
|
17770
|
+
} | null;
|
16603
17771
|
issue?: {
|
16604
17772
|
__typename?: 'IssueMetadata';
|
16605
17773
|
identifier?: string | null;
|
@@ -16761,6 +17929,7 @@ export type QueryContentsObservationsQuery = {
|
|
16761
17929
|
uri?: any | null;
|
16762
17930
|
description?: string | null;
|
16763
17931
|
identifier?: string | null;
|
17932
|
+
features?: string | null;
|
16764
17933
|
type?: ContentTypes | null;
|
16765
17934
|
fileType?: FileTypes | null;
|
16766
17935
|
mimeType?: string | null;
|
@@ -16912,6 +18081,53 @@ export type QueryContentsObservationsQuery = {
|
|
16912
18081
|
familyName?: string | null;
|
16913
18082
|
} | null> | null;
|
16914
18083
|
} | null;
|
18084
|
+
event?: {
|
18085
|
+
__typename?: 'EventMetadata';
|
18086
|
+
eventIdentifier?: string | null;
|
18087
|
+
calendarIdentifier?: string | null;
|
18088
|
+
subject?: string | null;
|
18089
|
+
startDateTime?: any | null;
|
18090
|
+
endDateTime?: any | null;
|
18091
|
+
isAllDay?: boolean | null;
|
18092
|
+
timezone?: string | null;
|
18093
|
+
status?: CalendarEventStatus | null;
|
18094
|
+
visibility?: CalendarEventVisibility | null;
|
18095
|
+
meetingLink?: string | null;
|
18096
|
+
categories?: Array<string | null> | null;
|
18097
|
+
recurringEventIdentifier?: string | null;
|
18098
|
+
isRecurring?: boolean | null;
|
18099
|
+
organizer?: {
|
18100
|
+
__typename?: 'CalendarAttendee';
|
18101
|
+
name?: string | null;
|
18102
|
+
email?: string | null;
|
18103
|
+
isOptional?: boolean | null;
|
18104
|
+
isOrganizer?: boolean | null;
|
18105
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
18106
|
+
} | null;
|
18107
|
+
attendees?: Array<{
|
18108
|
+
__typename?: 'CalendarAttendee';
|
18109
|
+
name?: string | null;
|
18110
|
+
email?: string | null;
|
18111
|
+
isOptional?: boolean | null;
|
18112
|
+
isOrganizer?: boolean | null;
|
18113
|
+
responseStatus?: CalendarAttendeeResponseStatus | null;
|
18114
|
+
} | null> | null;
|
18115
|
+
reminders?: Array<{
|
18116
|
+
__typename?: 'CalendarReminder';
|
18117
|
+
minutesBefore?: number | null;
|
18118
|
+
method?: CalendarReminderMethod | null;
|
18119
|
+
} | null> | null;
|
18120
|
+
recurrence?: {
|
18121
|
+
__typename?: 'CalendarRecurrence';
|
18122
|
+
pattern?: CalendarRecurrencePattern | null;
|
18123
|
+
interval?: number | null;
|
18124
|
+
count?: number | null;
|
18125
|
+
until?: any | null;
|
18126
|
+
daysOfWeek?: Array<string | null> | null;
|
18127
|
+
dayOfMonth?: number | null;
|
18128
|
+
monthOfYear?: number | null;
|
18129
|
+
} | null;
|
18130
|
+
} | null;
|
16915
18131
|
issue?: {
|
16916
18132
|
__typename?: 'IssueMetadata';
|
16917
18133
|
identifier?: string | null;
|
@@ -20865,7 +22081,7 @@ export type GetFeedQuery = {
|
|
20865
22081
|
} | null;
|
20866
22082
|
sharePoint?: {
|
20867
22083
|
__typename?: 'SharePointFeedProperties';
|
20868
|
-
authenticationType
|
22084
|
+
authenticationType?: SharePointAuthenticationTypes | null;
|
20869
22085
|
accountName: string;
|
20870
22086
|
libraryId: string;
|
20871
22087
|
folderId?: string | null;
|
@@ -20873,14 +22089,17 @@ export type GetFeedQuery = {
|
|
20873
22089
|
clientId?: string | null;
|
20874
22090
|
clientSecret?: string | null;
|
20875
22091
|
refreshToken?: string | null;
|
22092
|
+
connectorId?: string | null;
|
20876
22093
|
} | null;
|
20877
22094
|
oneDrive?: {
|
20878
22095
|
__typename?: 'OneDriveFeedProperties';
|
22096
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
20879
22097
|
folderId?: string | null;
|
20880
22098
|
files?: Array<string | null> | null;
|
20881
22099
|
clientId: string;
|
20882
22100
|
clientSecret: string;
|
20883
22101
|
refreshToken: string;
|
22102
|
+
connectorId?: string | null;
|
20884
22103
|
} | null;
|
20885
22104
|
googleDrive?: {
|
20886
22105
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -20891,6 +22110,7 @@ export type GetFeedQuery = {
|
|
20891
22110
|
clientId?: string | null;
|
20892
22111
|
clientSecret?: string | null;
|
20893
22112
|
serviceAccountJson?: string | null;
|
22113
|
+
connectorId?: string | null;
|
20894
22114
|
} | null;
|
20895
22115
|
dropbox?: {
|
20896
22116
|
__typename?: 'DropboxFeedProperties';
|
@@ -20910,11 +22130,13 @@ export type GetFeedQuery = {
|
|
20910
22130
|
} | null;
|
20911
22131
|
github?: {
|
20912
22132
|
__typename?: 'GitHubFeedProperties';
|
22133
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
20913
22134
|
uri?: any | null;
|
20914
22135
|
repositoryOwner: string;
|
20915
22136
|
repositoryName: string;
|
20916
22137
|
refreshToken?: string | null;
|
20917
22138
|
personalAccessToken?: string | null;
|
22139
|
+
connectorId?: string | null;
|
20918
22140
|
} | null;
|
20919
22141
|
} | null;
|
20920
22142
|
email?: {
|
@@ -20929,9 +22151,11 @@ export type GetFeedQuery = {
|
|
20929
22151
|
excludeSentItems?: boolean | null;
|
20930
22152
|
includeDeletedItems?: boolean | null;
|
20931
22153
|
inboxOnly?: boolean | null;
|
22154
|
+
authenticationType?: GoogleEmailAuthenticationTypes | null;
|
20932
22155
|
refreshToken?: string | null;
|
20933
22156
|
clientId: string;
|
20934
22157
|
clientSecret: string;
|
22158
|
+
connectorId?: string | null;
|
20935
22159
|
} | null;
|
20936
22160
|
microsoft?: {
|
20937
22161
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -20940,9 +22164,11 @@ export type GetFeedQuery = {
|
|
20940
22164
|
excludeSentItems?: boolean | null;
|
20941
22165
|
includeDeletedItems?: boolean | null;
|
20942
22166
|
inboxOnly?: boolean | null;
|
22167
|
+
authenticationType?: MicrosoftEmailAuthenticationTypes | null;
|
20943
22168
|
refreshToken: string;
|
20944
22169
|
clientId: string;
|
20945
22170
|
clientSecret: string;
|
22171
|
+
connectorId?: string | null;
|
20946
22172
|
} | null;
|
20947
22173
|
} | null;
|
20948
22174
|
issue?: {
|
@@ -20988,6 +22214,34 @@ export type GetFeedQuery = {
|
|
20988
22214
|
type: TrelloTypes;
|
20989
22215
|
} | null;
|
20990
22216
|
} | null;
|
22217
|
+
calendar?: {
|
22218
|
+
__typename?: 'CalendarFeedProperties';
|
22219
|
+
type: FeedServiceTypes;
|
22220
|
+
includeAttachments?: boolean | null;
|
22221
|
+
readLimit?: number | null;
|
22222
|
+
google?: {
|
22223
|
+
__typename?: 'GoogleCalendarFeedProperties';
|
22224
|
+
calendarId?: string | null;
|
22225
|
+
beforeDate?: any | null;
|
22226
|
+
afterDate?: any | null;
|
22227
|
+
authenticationType?: GoogleCalendarAuthenticationTypes | null;
|
22228
|
+
refreshToken: string;
|
22229
|
+
clientId: string;
|
22230
|
+
clientSecret: string;
|
22231
|
+
connectorId?: string | null;
|
22232
|
+
} | null;
|
22233
|
+
microsoft?: {
|
22234
|
+
__typename?: 'MicrosoftCalendarFeedProperties';
|
22235
|
+
calendarId?: string | null;
|
22236
|
+
beforeDate?: any | null;
|
22237
|
+
afterDate?: any | null;
|
22238
|
+
authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
|
22239
|
+
refreshToken: string;
|
22240
|
+
clientId: string;
|
22241
|
+
clientSecret: string;
|
22242
|
+
connectorId?: string | null;
|
22243
|
+
} | null;
|
22244
|
+
} | null;
|
20991
22245
|
rss?: {
|
20992
22246
|
__typename?: 'RSSFeedProperties';
|
20993
22247
|
readLimit?: number | null;
|
@@ -21106,6 +22360,36 @@ export type IsFeedDoneQuery = {
|
|
21106
22360
|
result?: boolean | null;
|
21107
22361
|
} | null;
|
21108
22362
|
};
|
22363
|
+
export type QueryBoxFoldersQueryVariables = Exact<{
|
22364
|
+
properties: BoxFoldersInput;
|
22365
|
+
folderId?: InputMaybe<Scalars['ID']['input']>;
|
22366
|
+
}>;
|
22367
|
+
export type QueryBoxFoldersQuery = {
|
22368
|
+
__typename?: 'Query';
|
22369
|
+
boxFolders?: {
|
22370
|
+
__typename?: 'BoxFolderResults';
|
22371
|
+
results?: Array<{
|
22372
|
+
__typename?: 'BoxFolderResult';
|
22373
|
+
folderName?: string | null;
|
22374
|
+
folderId?: string | null;
|
22375
|
+
} | null> | null;
|
22376
|
+
} | null;
|
22377
|
+
};
|
22378
|
+
export type QueryDropboxFoldersQueryVariables = Exact<{
|
22379
|
+
properties: DropboxFoldersInput;
|
22380
|
+
folderPath?: InputMaybe<Scalars['String']['input']>;
|
22381
|
+
}>;
|
22382
|
+
export type QueryDropboxFoldersQuery = {
|
22383
|
+
__typename?: 'Query';
|
22384
|
+
dropboxFolders?: {
|
22385
|
+
__typename?: 'DropboxFolderResults';
|
22386
|
+
results?: Array<{
|
22387
|
+
__typename?: 'DropboxFolderResult';
|
22388
|
+
folderName?: string | null;
|
22389
|
+
folderId?: string | null;
|
22390
|
+
} | null> | null;
|
22391
|
+
} | null;
|
22392
|
+
};
|
21109
22393
|
export type QueryFeedsQueryVariables = Exact<{
|
21110
22394
|
filter?: InputMaybe<FeedFilter>;
|
21111
22395
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -21167,7 +22451,7 @@ export type QueryFeedsQuery = {
|
|
21167
22451
|
} | null;
|
21168
22452
|
sharePoint?: {
|
21169
22453
|
__typename?: 'SharePointFeedProperties';
|
21170
|
-
authenticationType
|
22454
|
+
authenticationType?: SharePointAuthenticationTypes | null;
|
21171
22455
|
accountName: string;
|
21172
22456
|
libraryId: string;
|
21173
22457
|
folderId?: string | null;
|
@@ -21175,14 +22459,17 @@ export type QueryFeedsQuery = {
|
|
21175
22459
|
clientId?: string | null;
|
21176
22460
|
clientSecret?: string | null;
|
21177
22461
|
refreshToken?: string | null;
|
22462
|
+
connectorId?: string | null;
|
21178
22463
|
} | null;
|
21179
22464
|
oneDrive?: {
|
21180
22465
|
__typename?: 'OneDriveFeedProperties';
|
22466
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
21181
22467
|
folderId?: string | null;
|
21182
22468
|
files?: Array<string | null> | null;
|
21183
22469
|
clientId: string;
|
21184
22470
|
clientSecret: string;
|
21185
22471
|
refreshToken: string;
|
22472
|
+
connectorId?: string | null;
|
21186
22473
|
} | null;
|
21187
22474
|
googleDrive?: {
|
21188
22475
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -21193,6 +22480,7 @@ export type QueryFeedsQuery = {
|
|
21193
22480
|
clientId?: string | null;
|
21194
22481
|
clientSecret?: string | null;
|
21195
22482
|
serviceAccountJson?: string | null;
|
22483
|
+
connectorId?: string | null;
|
21196
22484
|
} | null;
|
21197
22485
|
dropbox?: {
|
21198
22486
|
__typename?: 'DropboxFeedProperties';
|
@@ -21212,11 +22500,13 @@ export type QueryFeedsQuery = {
|
|
21212
22500
|
} | null;
|
21213
22501
|
github?: {
|
21214
22502
|
__typename?: 'GitHubFeedProperties';
|
22503
|
+
authenticationType?: OneDriveAuthenticationTypes | null;
|
21215
22504
|
uri?: any | null;
|
21216
22505
|
repositoryOwner: string;
|
21217
22506
|
repositoryName: string;
|
21218
22507
|
refreshToken?: string | null;
|
21219
22508
|
personalAccessToken?: string | null;
|
22509
|
+
connectorId?: string | null;
|
21220
22510
|
} | null;
|
21221
22511
|
} | null;
|
21222
22512
|
email?: {
|
@@ -21231,9 +22521,11 @@ export type QueryFeedsQuery = {
|
|
21231
22521
|
excludeSentItems?: boolean | null;
|
21232
22522
|
includeDeletedItems?: boolean | null;
|
21233
22523
|
inboxOnly?: boolean | null;
|
22524
|
+
authenticationType?: GoogleEmailAuthenticationTypes | null;
|
21234
22525
|
refreshToken?: string | null;
|
21235
22526
|
clientId: string;
|
21236
22527
|
clientSecret: string;
|
22528
|
+
connectorId?: string | null;
|
21237
22529
|
} | null;
|
21238
22530
|
microsoft?: {
|
21239
22531
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -21242,9 +22534,11 @@ export type QueryFeedsQuery = {
|
|
21242
22534
|
excludeSentItems?: boolean | null;
|
21243
22535
|
includeDeletedItems?: boolean | null;
|
21244
22536
|
inboxOnly?: boolean | null;
|
22537
|
+
authenticationType?: MicrosoftEmailAuthenticationTypes | null;
|
21245
22538
|
refreshToken: string;
|
21246
22539
|
clientId: string;
|
21247
22540
|
clientSecret: string;
|
22541
|
+
connectorId?: string | null;
|
21248
22542
|
} | null;
|
21249
22543
|
} | null;
|
21250
22544
|
issue?: {
|
@@ -21290,12 +22584,40 @@ export type QueryFeedsQuery = {
|
|
21290
22584
|
type: TrelloTypes;
|
21291
22585
|
} | null;
|
21292
22586
|
} | null;
|
21293
|
-
|
21294
|
-
__typename?: '
|
22587
|
+
calendar?: {
|
22588
|
+
__typename?: 'CalendarFeedProperties';
|
22589
|
+
type: FeedServiceTypes;
|
22590
|
+
includeAttachments?: boolean | null;
|
21295
22591
|
readLimit?: number | null;
|
21296
|
-
|
21297
|
-
|
21298
|
-
|
22592
|
+
google?: {
|
22593
|
+
__typename?: 'GoogleCalendarFeedProperties';
|
22594
|
+
calendarId?: string | null;
|
22595
|
+
beforeDate?: any | null;
|
22596
|
+
afterDate?: any | null;
|
22597
|
+
authenticationType?: GoogleCalendarAuthenticationTypes | null;
|
22598
|
+
refreshToken: string;
|
22599
|
+
clientId: string;
|
22600
|
+
clientSecret: string;
|
22601
|
+
connectorId?: string | null;
|
22602
|
+
} | null;
|
22603
|
+
microsoft?: {
|
22604
|
+
__typename?: 'MicrosoftCalendarFeedProperties';
|
22605
|
+
calendarId?: string | null;
|
22606
|
+
beforeDate?: any | null;
|
22607
|
+
afterDate?: any | null;
|
22608
|
+
authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
|
22609
|
+
refreshToken: string;
|
22610
|
+
clientId: string;
|
22611
|
+
clientSecret: string;
|
22612
|
+
connectorId?: string | null;
|
22613
|
+
} | null;
|
22614
|
+
} | null;
|
22615
|
+
rss?: {
|
22616
|
+
__typename?: 'RSSFeedProperties';
|
22617
|
+
readLimit?: number | null;
|
22618
|
+
uri: any;
|
22619
|
+
} | null;
|
22620
|
+
web?: {
|
21299
22621
|
__typename?: 'WebFeedProperties';
|
21300
22622
|
readLimit?: number | null;
|
21301
22623
|
uri: any;
|
@@ -21389,6 +22711,35 @@ export type QueryFeedsQuery = {
|
|
21389
22711
|
}> | null;
|
21390
22712
|
} | null;
|
21391
22713
|
};
|
22714
|
+
export type QueryGoogleCalendarsQueryVariables = Exact<{
|
22715
|
+
properties: GoogleCalendarsInput;
|
22716
|
+
}>;
|
22717
|
+
export type QueryGoogleCalendarsQuery = {
|
22718
|
+
__typename?: 'Query';
|
22719
|
+
googleCalendars?: {
|
22720
|
+
__typename?: 'CalendarResults';
|
22721
|
+
results?: Array<{
|
22722
|
+
__typename?: 'CalendarResult';
|
22723
|
+
calendarName?: string | null;
|
22724
|
+
calendarId?: string | null;
|
22725
|
+
} | null> | null;
|
22726
|
+
} | null;
|
22727
|
+
};
|
22728
|
+
export type QueryGoogleDriveFoldersQueryVariables = Exact<{
|
22729
|
+
properties: GoogleDriveFoldersInput;
|
22730
|
+
folderId?: InputMaybe<Scalars['ID']['input']>;
|
22731
|
+
}>;
|
22732
|
+
export type QueryGoogleDriveFoldersQuery = {
|
22733
|
+
__typename?: 'Query';
|
22734
|
+
googleDriveFolders?: {
|
22735
|
+
__typename?: 'GoogleDriveFolderResults';
|
22736
|
+
results?: Array<{
|
22737
|
+
__typename?: 'GoogleDriveFolderResult';
|
22738
|
+
folderName?: string | null;
|
22739
|
+
folderId?: string | null;
|
22740
|
+
} | null> | null;
|
22741
|
+
} | null;
|
22742
|
+
};
|
21392
22743
|
export type QueryLinearProjectsQueryVariables = Exact<{
|
21393
22744
|
properties: LinearProjectsInput;
|
21394
22745
|
}>;
|
@@ -21399,6 +22750,20 @@ export type QueryLinearProjectsQuery = {
|
|
21399
22750
|
results?: Array<string> | null;
|
21400
22751
|
} | null;
|
21401
22752
|
};
|
22753
|
+
export type QueryMicrosoftCalendarsQueryVariables = Exact<{
|
22754
|
+
properties: MicrosoftCalendarsInput;
|
22755
|
+
}>;
|
22756
|
+
export type QueryMicrosoftCalendarsQuery = {
|
22757
|
+
__typename?: 'Query';
|
22758
|
+
microsoftCalendars?: {
|
22759
|
+
__typename?: 'CalendarResults';
|
22760
|
+
results?: Array<{
|
22761
|
+
__typename?: 'CalendarResult';
|
22762
|
+
calendarName?: string | null;
|
22763
|
+
calendarId?: string | null;
|
22764
|
+
} | null> | null;
|
22765
|
+
} | null;
|
22766
|
+
};
|
21402
22767
|
export type QueryMicrosoftTeamsChannelsQueryVariables = Exact<{
|
21403
22768
|
properties: MicrosoftTeamsChannelsInput;
|
21404
22769
|
teamId: Scalars['ID']['input'];
|
@@ -24759,6 +26124,10 @@ export type GetUserQuery = {
|
|
24759
26124
|
clientId: string;
|
24760
26125
|
clientSecret: string;
|
24761
26126
|
} | null;
|
26127
|
+
arcade?: {
|
26128
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
26129
|
+
authorizationId: string;
|
26130
|
+
} | null;
|
24762
26131
|
} | null;
|
24763
26132
|
integration?: {
|
24764
26133
|
__typename?: 'IntegrationConnector';
|
@@ -24825,6 +26194,10 @@ export type GetUserByIdentifierQuery = {
|
|
24825
26194
|
clientId: string;
|
24826
26195
|
clientSecret: string;
|
24827
26196
|
} | null;
|
26197
|
+
arcade?: {
|
26198
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
26199
|
+
authorizationId: string;
|
26200
|
+
} | null;
|
24828
26201
|
} | null;
|
24829
26202
|
integration?: {
|
24830
26203
|
__typename?: 'IntegrationConnector';
|
@@ -24894,6 +26267,10 @@ export type QueryUsersQuery = {
|
|
24894
26267
|
clientId: string;
|
24895
26268
|
clientSecret: string;
|
24896
26269
|
} | null;
|
26270
|
+
arcade?: {
|
26271
|
+
__typename?: 'ArcadeAuthenticationProperties';
|
26272
|
+
authorizationId: string;
|
26273
|
+
} | null;
|
24897
26274
|
} | null;
|
24898
26275
|
integration?: {
|
24899
26276
|
__typename?: 'IntegrationConnector';
|
@@ -24937,6 +26314,1226 @@ export type UpdateUserMutation = {
|
|
24937
26314
|
identifier: string;
|
24938
26315
|
} | null;
|
24939
26316
|
};
|
26317
|
+
export type CountViewsQueryVariables = Exact<{
|
26318
|
+
filter?: InputMaybe<ViewFilter>;
|
26319
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26320
|
+
}>;
|
26321
|
+
export type CountViewsQuery = {
|
26322
|
+
__typename?: 'Query';
|
26323
|
+
countViews?: {
|
26324
|
+
__typename?: 'CountResult';
|
26325
|
+
count?: any | null;
|
26326
|
+
} | null;
|
26327
|
+
};
|
26328
|
+
export type CreateViewMutationVariables = Exact<{
|
26329
|
+
view: ViewInput;
|
26330
|
+
}>;
|
26331
|
+
export type CreateViewMutation = {
|
26332
|
+
__typename?: 'Mutation';
|
26333
|
+
createView?: {
|
26334
|
+
__typename?: 'View';
|
26335
|
+
id: string;
|
26336
|
+
name: string;
|
26337
|
+
state: EntityState;
|
26338
|
+
type?: ViewTypes | null;
|
26339
|
+
filter?: {
|
26340
|
+
__typename?: 'ContentCriteria';
|
26341
|
+
inLast?: any | null;
|
26342
|
+
createdInLast?: any | null;
|
26343
|
+
types?: Array<ContentTypes> | null;
|
26344
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26345
|
+
formats?: Array<string | null> | null;
|
26346
|
+
fileExtensions?: Array<string> | null;
|
26347
|
+
dateRange?: {
|
26348
|
+
__typename?: 'DateRange';
|
26349
|
+
from?: any | null;
|
26350
|
+
to?: any | null;
|
26351
|
+
} | null;
|
26352
|
+
creationDateRange?: {
|
26353
|
+
__typename?: 'DateRange';
|
26354
|
+
from?: any | null;
|
26355
|
+
to?: any | null;
|
26356
|
+
} | null;
|
26357
|
+
similarContents?: Array<{
|
26358
|
+
__typename?: 'EntityReference';
|
26359
|
+
id: string;
|
26360
|
+
}> | null;
|
26361
|
+
contents?: Array<{
|
26362
|
+
__typename?: 'EntityReference';
|
26363
|
+
id: string;
|
26364
|
+
}> | null;
|
26365
|
+
feeds?: Array<{
|
26366
|
+
__typename?: 'EntityReference';
|
26367
|
+
id: string;
|
26368
|
+
}> | null;
|
26369
|
+
workflows?: Array<{
|
26370
|
+
__typename?: 'EntityReference';
|
26371
|
+
id: string;
|
26372
|
+
}> | null;
|
26373
|
+
collections?: Array<{
|
26374
|
+
__typename?: 'EntityReference';
|
26375
|
+
id: string;
|
26376
|
+
}> | null;
|
26377
|
+
users?: Array<{
|
26378
|
+
__typename?: 'EntityReference';
|
26379
|
+
id: string;
|
26380
|
+
}> | null;
|
26381
|
+
observations?: Array<{
|
26382
|
+
__typename?: 'ObservationCriteria';
|
26383
|
+
type: ObservableTypes;
|
26384
|
+
states?: Array<EntityState | null> | null;
|
26385
|
+
observable: {
|
26386
|
+
__typename?: 'EntityReference';
|
26387
|
+
id: string;
|
26388
|
+
};
|
26389
|
+
}> | null;
|
26390
|
+
or?: Array<{
|
26391
|
+
__typename?: 'ContentCriteriaLevel';
|
26392
|
+
feeds?: Array<{
|
26393
|
+
__typename?: 'EntityReference';
|
26394
|
+
id: string;
|
26395
|
+
}> | null;
|
26396
|
+
workflows?: Array<{
|
26397
|
+
__typename?: 'EntityReference';
|
26398
|
+
id: string;
|
26399
|
+
}> | null;
|
26400
|
+
collections?: Array<{
|
26401
|
+
__typename?: 'EntityReference';
|
26402
|
+
id: string;
|
26403
|
+
}> | null;
|
26404
|
+
users?: Array<{
|
26405
|
+
__typename?: 'EntityReference';
|
26406
|
+
id: string;
|
26407
|
+
}> | null;
|
26408
|
+
observations?: Array<{
|
26409
|
+
__typename?: 'ObservationCriteria';
|
26410
|
+
type: ObservableTypes;
|
26411
|
+
states?: Array<EntityState | null> | null;
|
26412
|
+
observable: {
|
26413
|
+
__typename?: 'EntityReference';
|
26414
|
+
id: string;
|
26415
|
+
};
|
26416
|
+
}> | null;
|
26417
|
+
}> | null;
|
26418
|
+
and?: Array<{
|
26419
|
+
__typename?: 'ContentCriteriaLevel';
|
26420
|
+
feeds?: Array<{
|
26421
|
+
__typename?: 'EntityReference';
|
26422
|
+
id: string;
|
26423
|
+
}> | null;
|
26424
|
+
workflows?: Array<{
|
26425
|
+
__typename?: 'EntityReference';
|
26426
|
+
id: string;
|
26427
|
+
}> | null;
|
26428
|
+
collections?: Array<{
|
26429
|
+
__typename?: 'EntityReference';
|
26430
|
+
id: string;
|
26431
|
+
}> | null;
|
26432
|
+
users?: Array<{
|
26433
|
+
__typename?: 'EntityReference';
|
26434
|
+
id: string;
|
26435
|
+
}> | null;
|
26436
|
+
observations?: Array<{
|
26437
|
+
__typename?: 'ObservationCriteria';
|
26438
|
+
type: ObservableTypes;
|
26439
|
+
states?: Array<EntityState | null> | null;
|
26440
|
+
observable: {
|
26441
|
+
__typename?: 'EntityReference';
|
26442
|
+
id: string;
|
26443
|
+
};
|
26444
|
+
}> | null;
|
26445
|
+
}> | null;
|
26446
|
+
} | null;
|
26447
|
+
augmentedFilter?: {
|
26448
|
+
__typename?: 'ContentCriteria';
|
26449
|
+
inLast?: any | null;
|
26450
|
+
createdInLast?: any | null;
|
26451
|
+
types?: Array<ContentTypes> | null;
|
26452
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26453
|
+
formats?: Array<string | null> | null;
|
26454
|
+
fileExtensions?: Array<string> | null;
|
26455
|
+
dateRange?: {
|
26456
|
+
__typename?: 'DateRange';
|
26457
|
+
from?: any | null;
|
26458
|
+
to?: any | null;
|
26459
|
+
} | null;
|
26460
|
+
creationDateRange?: {
|
26461
|
+
__typename?: 'DateRange';
|
26462
|
+
from?: any | null;
|
26463
|
+
to?: any | null;
|
26464
|
+
} | null;
|
26465
|
+
similarContents?: Array<{
|
26466
|
+
__typename?: 'EntityReference';
|
26467
|
+
id: string;
|
26468
|
+
}> | null;
|
26469
|
+
contents?: Array<{
|
26470
|
+
__typename?: 'EntityReference';
|
26471
|
+
id: string;
|
26472
|
+
}> | null;
|
26473
|
+
feeds?: Array<{
|
26474
|
+
__typename?: 'EntityReference';
|
26475
|
+
id: string;
|
26476
|
+
}> | null;
|
26477
|
+
workflows?: Array<{
|
26478
|
+
__typename?: 'EntityReference';
|
26479
|
+
id: string;
|
26480
|
+
}> | null;
|
26481
|
+
collections?: Array<{
|
26482
|
+
__typename?: 'EntityReference';
|
26483
|
+
id: string;
|
26484
|
+
}> | null;
|
26485
|
+
users?: Array<{
|
26486
|
+
__typename?: 'EntityReference';
|
26487
|
+
id: string;
|
26488
|
+
}> | null;
|
26489
|
+
observations?: Array<{
|
26490
|
+
__typename?: 'ObservationCriteria';
|
26491
|
+
type: ObservableTypes;
|
26492
|
+
states?: Array<EntityState | null> | null;
|
26493
|
+
observable: {
|
26494
|
+
__typename?: 'EntityReference';
|
26495
|
+
id: string;
|
26496
|
+
};
|
26497
|
+
}> | null;
|
26498
|
+
or?: Array<{
|
26499
|
+
__typename?: 'ContentCriteriaLevel';
|
26500
|
+
feeds?: Array<{
|
26501
|
+
__typename?: 'EntityReference';
|
26502
|
+
id: string;
|
26503
|
+
}> | null;
|
26504
|
+
workflows?: Array<{
|
26505
|
+
__typename?: 'EntityReference';
|
26506
|
+
id: string;
|
26507
|
+
}> | null;
|
26508
|
+
collections?: Array<{
|
26509
|
+
__typename?: 'EntityReference';
|
26510
|
+
id: string;
|
26511
|
+
}> | null;
|
26512
|
+
users?: Array<{
|
26513
|
+
__typename?: 'EntityReference';
|
26514
|
+
id: string;
|
26515
|
+
}> | null;
|
26516
|
+
observations?: Array<{
|
26517
|
+
__typename?: 'ObservationCriteria';
|
26518
|
+
type: ObservableTypes;
|
26519
|
+
states?: Array<EntityState | null> | null;
|
26520
|
+
observable: {
|
26521
|
+
__typename?: 'EntityReference';
|
26522
|
+
id: string;
|
26523
|
+
};
|
26524
|
+
}> | null;
|
26525
|
+
}> | null;
|
26526
|
+
and?: Array<{
|
26527
|
+
__typename?: 'ContentCriteriaLevel';
|
26528
|
+
feeds?: Array<{
|
26529
|
+
__typename?: 'EntityReference';
|
26530
|
+
id: string;
|
26531
|
+
}> | null;
|
26532
|
+
workflows?: Array<{
|
26533
|
+
__typename?: 'EntityReference';
|
26534
|
+
id: string;
|
26535
|
+
}> | null;
|
26536
|
+
collections?: Array<{
|
26537
|
+
__typename?: 'EntityReference';
|
26538
|
+
id: string;
|
26539
|
+
}> | null;
|
26540
|
+
users?: Array<{
|
26541
|
+
__typename?: 'EntityReference';
|
26542
|
+
id: string;
|
26543
|
+
}> | null;
|
26544
|
+
observations?: Array<{
|
26545
|
+
__typename?: 'ObservationCriteria';
|
26546
|
+
type: ObservableTypes;
|
26547
|
+
states?: Array<EntityState | null> | null;
|
26548
|
+
observable: {
|
26549
|
+
__typename?: 'EntityReference';
|
26550
|
+
id: string;
|
26551
|
+
};
|
26552
|
+
}> | null;
|
26553
|
+
}> | null;
|
26554
|
+
} | null;
|
26555
|
+
} | null;
|
26556
|
+
};
|
26557
|
+
export type DeleteAllViewsMutationVariables = Exact<{
|
26558
|
+
filter?: InputMaybe<ViewFilter>;
|
26559
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
26560
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26561
|
+
}>;
|
26562
|
+
export type DeleteAllViewsMutation = {
|
26563
|
+
__typename?: 'Mutation';
|
26564
|
+
deleteAllViews?: Array<{
|
26565
|
+
__typename?: 'View';
|
26566
|
+
id: string;
|
26567
|
+
state: EntityState;
|
26568
|
+
} | null> | null;
|
26569
|
+
};
|
26570
|
+
export type DeleteViewMutationVariables = Exact<{
|
26571
|
+
id: Scalars['ID']['input'];
|
26572
|
+
}>;
|
26573
|
+
export type DeleteViewMutation = {
|
26574
|
+
__typename?: 'Mutation';
|
26575
|
+
deleteView?: {
|
26576
|
+
__typename?: 'View';
|
26577
|
+
id: string;
|
26578
|
+
state: EntityState;
|
26579
|
+
} | null;
|
26580
|
+
};
|
26581
|
+
export type DeleteViewsMutationVariables = Exact<{
|
26582
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
26583
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
26584
|
+
}>;
|
26585
|
+
export type DeleteViewsMutation = {
|
26586
|
+
__typename?: 'Mutation';
|
26587
|
+
deleteViews?: Array<{
|
26588
|
+
__typename?: 'View';
|
26589
|
+
id: string;
|
26590
|
+
state: EntityState;
|
26591
|
+
} | null> | null;
|
26592
|
+
};
|
26593
|
+
export type GetViewQueryVariables = Exact<{
|
26594
|
+
id: Scalars['ID']['input'];
|
26595
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26596
|
+
}>;
|
26597
|
+
export type GetViewQuery = {
|
26598
|
+
__typename?: 'Query';
|
26599
|
+
view?: {
|
26600
|
+
__typename?: 'View';
|
26601
|
+
id: string;
|
26602
|
+
name: string;
|
26603
|
+
creationDate: any;
|
26604
|
+
relevance?: number | null;
|
26605
|
+
state: EntityState;
|
26606
|
+
type?: ViewTypes | null;
|
26607
|
+
owner: {
|
26608
|
+
__typename?: 'Owner';
|
26609
|
+
id: string;
|
26610
|
+
};
|
26611
|
+
filter?: {
|
26612
|
+
__typename?: 'ContentCriteria';
|
26613
|
+
inLast?: any | null;
|
26614
|
+
createdInLast?: any | null;
|
26615
|
+
types?: Array<ContentTypes> | null;
|
26616
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26617
|
+
formats?: Array<string | null> | null;
|
26618
|
+
fileExtensions?: Array<string> | null;
|
26619
|
+
dateRange?: {
|
26620
|
+
__typename?: 'DateRange';
|
26621
|
+
from?: any | null;
|
26622
|
+
to?: any | null;
|
26623
|
+
} | null;
|
26624
|
+
creationDateRange?: {
|
26625
|
+
__typename?: 'DateRange';
|
26626
|
+
from?: any | null;
|
26627
|
+
to?: any | null;
|
26628
|
+
} | null;
|
26629
|
+
similarContents?: Array<{
|
26630
|
+
__typename?: 'EntityReference';
|
26631
|
+
id: string;
|
26632
|
+
}> | null;
|
26633
|
+
contents?: Array<{
|
26634
|
+
__typename?: 'EntityReference';
|
26635
|
+
id: string;
|
26636
|
+
}> | null;
|
26637
|
+
feeds?: Array<{
|
26638
|
+
__typename?: 'EntityReference';
|
26639
|
+
id: string;
|
26640
|
+
}> | null;
|
26641
|
+
workflows?: Array<{
|
26642
|
+
__typename?: 'EntityReference';
|
26643
|
+
id: string;
|
26644
|
+
}> | null;
|
26645
|
+
collections?: Array<{
|
26646
|
+
__typename?: 'EntityReference';
|
26647
|
+
id: string;
|
26648
|
+
}> | null;
|
26649
|
+
users?: Array<{
|
26650
|
+
__typename?: 'EntityReference';
|
26651
|
+
id: string;
|
26652
|
+
}> | null;
|
26653
|
+
observations?: Array<{
|
26654
|
+
__typename?: 'ObservationCriteria';
|
26655
|
+
type: ObservableTypes;
|
26656
|
+
states?: Array<EntityState | null> | null;
|
26657
|
+
observable: {
|
26658
|
+
__typename?: 'EntityReference';
|
26659
|
+
id: string;
|
26660
|
+
};
|
26661
|
+
}> | null;
|
26662
|
+
or?: Array<{
|
26663
|
+
__typename?: 'ContentCriteriaLevel';
|
26664
|
+
feeds?: Array<{
|
26665
|
+
__typename?: 'EntityReference';
|
26666
|
+
id: string;
|
26667
|
+
}> | null;
|
26668
|
+
workflows?: Array<{
|
26669
|
+
__typename?: 'EntityReference';
|
26670
|
+
id: string;
|
26671
|
+
}> | null;
|
26672
|
+
collections?: Array<{
|
26673
|
+
__typename?: 'EntityReference';
|
26674
|
+
id: string;
|
26675
|
+
}> | null;
|
26676
|
+
users?: Array<{
|
26677
|
+
__typename?: 'EntityReference';
|
26678
|
+
id: string;
|
26679
|
+
}> | null;
|
26680
|
+
observations?: Array<{
|
26681
|
+
__typename?: 'ObservationCriteria';
|
26682
|
+
type: ObservableTypes;
|
26683
|
+
states?: Array<EntityState | null> | null;
|
26684
|
+
observable: {
|
26685
|
+
__typename?: 'EntityReference';
|
26686
|
+
id: string;
|
26687
|
+
};
|
26688
|
+
}> | null;
|
26689
|
+
}> | null;
|
26690
|
+
and?: Array<{
|
26691
|
+
__typename?: 'ContentCriteriaLevel';
|
26692
|
+
feeds?: Array<{
|
26693
|
+
__typename?: 'EntityReference';
|
26694
|
+
id: string;
|
26695
|
+
}> | null;
|
26696
|
+
workflows?: Array<{
|
26697
|
+
__typename?: 'EntityReference';
|
26698
|
+
id: string;
|
26699
|
+
}> | null;
|
26700
|
+
collections?: Array<{
|
26701
|
+
__typename?: 'EntityReference';
|
26702
|
+
id: string;
|
26703
|
+
}> | null;
|
26704
|
+
users?: Array<{
|
26705
|
+
__typename?: 'EntityReference';
|
26706
|
+
id: string;
|
26707
|
+
}> | null;
|
26708
|
+
observations?: Array<{
|
26709
|
+
__typename?: 'ObservationCriteria';
|
26710
|
+
type: ObservableTypes;
|
26711
|
+
states?: Array<EntityState | null> | null;
|
26712
|
+
observable: {
|
26713
|
+
__typename?: 'EntityReference';
|
26714
|
+
id: string;
|
26715
|
+
};
|
26716
|
+
}> | null;
|
26717
|
+
}> | null;
|
26718
|
+
} | null;
|
26719
|
+
augmentedFilter?: {
|
26720
|
+
__typename?: 'ContentCriteria';
|
26721
|
+
inLast?: any | null;
|
26722
|
+
createdInLast?: any | null;
|
26723
|
+
types?: Array<ContentTypes> | null;
|
26724
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26725
|
+
formats?: Array<string | null> | null;
|
26726
|
+
fileExtensions?: Array<string> | null;
|
26727
|
+
dateRange?: {
|
26728
|
+
__typename?: 'DateRange';
|
26729
|
+
from?: any | null;
|
26730
|
+
to?: any | null;
|
26731
|
+
} | null;
|
26732
|
+
creationDateRange?: {
|
26733
|
+
__typename?: 'DateRange';
|
26734
|
+
from?: any | null;
|
26735
|
+
to?: any | null;
|
26736
|
+
} | null;
|
26737
|
+
similarContents?: Array<{
|
26738
|
+
__typename?: 'EntityReference';
|
26739
|
+
id: string;
|
26740
|
+
}> | null;
|
26741
|
+
contents?: Array<{
|
26742
|
+
__typename?: 'EntityReference';
|
26743
|
+
id: string;
|
26744
|
+
}> | null;
|
26745
|
+
feeds?: Array<{
|
26746
|
+
__typename?: 'EntityReference';
|
26747
|
+
id: string;
|
26748
|
+
}> | null;
|
26749
|
+
workflows?: Array<{
|
26750
|
+
__typename?: 'EntityReference';
|
26751
|
+
id: string;
|
26752
|
+
}> | null;
|
26753
|
+
collections?: Array<{
|
26754
|
+
__typename?: 'EntityReference';
|
26755
|
+
id: string;
|
26756
|
+
}> | null;
|
26757
|
+
users?: Array<{
|
26758
|
+
__typename?: 'EntityReference';
|
26759
|
+
id: string;
|
26760
|
+
}> | null;
|
26761
|
+
observations?: Array<{
|
26762
|
+
__typename?: 'ObservationCriteria';
|
26763
|
+
type: ObservableTypes;
|
26764
|
+
states?: Array<EntityState | null> | null;
|
26765
|
+
observable: {
|
26766
|
+
__typename?: 'EntityReference';
|
26767
|
+
id: string;
|
26768
|
+
};
|
26769
|
+
}> | null;
|
26770
|
+
or?: Array<{
|
26771
|
+
__typename?: 'ContentCriteriaLevel';
|
26772
|
+
feeds?: Array<{
|
26773
|
+
__typename?: 'EntityReference';
|
26774
|
+
id: string;
|
26775
|
+
}> | null;
|
26776
|
+
workflows?: Array<{
|
26777
|
+
__typename?: 'EntityReference';
|
26778
|
+
id: string;
|
26779
|
+
}> | null;
|
26780
|
+
collections?: Array<{
|
26781
|
+
__typename?: 'EntityReference';
|
26782
|
+
id: string;
|
26783
|
+
}> | null;
|
26784
|
+
users?: Array<{
|
26785
|
+
__typename?: 'EntityReference';
|
26786
|
+
id: string;
|
26787
|
+
}> | null;
|
26788
|
+
observations?: Array<{
|
26789
|
+
__typename?: 'ObservationCriteria';
|
26790
|
+
type: ObservableTypes;
|
26791
|
+
states?: Array<EntityState | null> | null;
|
26792
|
+
observable: {
|
26793
|
+
__typename?: 'EntityReference';
|
26794
|
+
id: string;
|
26795
|
+
};
|
26796
|
+
}> | null;
|
26797
|
+
}> | null;
|
26798
|
+
and?: Array<{
|
26799
|
+
__typename?: 'ContentCriteriaLevel';
|
26800
|
+
feeds?: Array<{
|
26801
|
+
__typename?: 'EntityReference';
|
26802
|
+
id: string;
|
26803
|
+
}> | null;
|
26804
|
+
workflows?: Array<{
|
26805
|
+
__typename?: 'EntityReference';
|
26806
|
+
id: string;
|
26807
|
+
}> | null;
|
26808
|
+
collections?: Array<{
|
26809
|
+
__typename?: 'EntityReference';
|
26810
|
+
id: string;
|
26811
|
+
}> | null;
|
26812
|
+
users?: Array<{
|
26813
|
+
__typename?: 'EntityReference';
|
26814
|
+
id: string;
|
26815
|
+
}> | null;
|
26816
|
+
observations?: Array<{
|
26817
|
+
__typename?: 'ObservationCriteria';
|
26818
|
+
type: ObservableTypes;
|
26819
|
+
states?: Array<EntityState | null> | null;
|
26820
|
+
observable: {
|
26821
|
+
__typename?: 'EntityReference';
|
26822
|
+
id: string;
|
26823
|
+
};
|
26824
|
+
}> | null;
|
26825
|
+
}> | null;
|
26826
|
+
} | null;
|
26827
|
+
} | null;
|
26828
|
+
};
|
26829
|
+
export type QueryViewsQueryVariables = Exact<{
|
26830
|
+
filter?: InputMaybe<ViewFilter>;
|
26831
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
26832
|
+
}>;
|
26833
|
+
export type QueryViewsQuery = {
|
26834
|
+
__typename?: 'Query';
|
26835
|
+
views?: {
|
26836
|
+
__typename?: 'QueryResults';
|
26837
|
+
results?: Array<{
|
26838
|
+
__typename?: 'View';
|
26839
|
+
id: string;
|
26840
|
+
name: string;
|
26841
|
+
creationDate: any;
|
26842
|
+
relevance?: number | null;
|
26843
|
+
state: EntityState;
|
26844
|
+
type?: ViewTypes | null;
|
26845
|
+
owner: {
|
26846
|
+
__typename?: 'Owner';
|
26847
|
+
id: string;
|
26848
|
+
};
|
26849
|
+
filter?: {
|
26850
|
+
__typename?: 'ContentCriteria';
|
26851
|
+
inLast?: any | null;
|
26852
|
+
createdInLast?: any | null;
|
26853
|
+
types?: Array<ContentTypes> | null;
|
26854
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26855
|
+
formats?: Array<string | null> | null;
|
26856
|
+
fileExtensions?: Array<string> | null;
|
26857
|
+
dateRange?: {
|
26858
|
+
__typename?: 'DateRange';
|
26859
|
+
from?: any | null;
|
26860
|
+
to?: any | null;
|
26861
|
+
} | null;
|
26862
|
+
creationDateRange?: {
|
26863
|
+
__typename?: 'DateRange';
|
26864
|
+
from?: any | null;
|
26865
|
+
to?: any | null;
|
26866
|
+
} | null;
|
26867
|
+
similarContents?: Array<{
|
26868
|
+
__typename?: 'EntityReference';
|
26869
|
+
id: string;
|
26870
|
+
}> | null;
|
26871
|
+
contents?: Array<{
|
26872
|
+
__typename?: 'EntityReference';
|
26873
|
+
id: string;
|
26874
|
+
}> | null;
|
26875
|
+
feeds?: Array<{
|
26876
|
+
__typename?: 'EntityReference';
|
26877
|
+
id: string;
|
26878
|
+
}> | null;
|
26879
|
+
workflows?: Array<{
|
26880
|
+
__typename?: 'EntityReference';
|
26881
|
+
id: string;
|
26882
|
+
}> | null;
|
26883
|
+
collections?: Array<{
|
26884
|
+
__typename?: 'EntityReference';
|
26885
|
+
id: string;
|
26886
|
+
}> | null;
|
26887
|
+
users?: Array<{
|
26888
|
+
__typename?: 'EntityReference';
|
26889
|
+
id: string;
|
26890
|
+
}> | null;
|
26891
|
+
observations?: Array<{
|
26892
|
+
__typename?: 'ObservationCriteria';
|
26893
|
+
type: ObservableTypes;
|
26894
|
+
states?: Array<EntityState | null> | null;
|
26895
|
+
observable: {
|
26896
|
+
__typename?: 'EntityReference';
|
26897
|
+
id: string;
|
26898
|
+
};
|
26899
|
+
}> | null;
|
26900
|
+
or?: Array<{
|
26901
|
+
__typename?: 'ContentCriteriaLevel';
|
26902
|
+
feeds?: Array<{
|
26903
|
+
__typename?: 'EntityReference';
|
26904
|
+
id: string;
|
26905
|
+
}> | null;
|
26906
|
+
workflows?: Array<{
|
26907
|
+
__typename?: 'EntityReference';
|
26908
|
+
id: string;
|
26909
|
+
}> | null;
|
26910
|
+
collections?: Array<{
|
26911
|
+
__typename?: 'EntityReference';
|
26912
|
+
id: string;
|
26913
|
+
}> | null;
|
26914
|
+
users?: Array<{
|
26915
|
+
__typename?: 'EntityReference';
|
26916
|
+
id: string;
|
26917
|
+
}> | null;
|
26918
|
+
observations?: Array<{
|
26919
|
+
__typename?: 'ObservationCriteria';
|
26920
|
+
type: ObservableTypes;
|
26921
|
+
states?: Array<EntityState | null> | null;
|
26922
|
+
observable: {
|
26923
|
+
__typename?: 'EntityReference';
|
26924
|
+
id: string;
|
26925
|
+
};
|
26926
|
+
}> | null;
|
26927
|
+
}> | null;
|
26928
|
+
and?: Array<{
|
26929
|
+
__typename?: 'ContentCriteriaLevel';
|
26930
|
+
feeds?: Array<{
|
26931
|
+
__typename?: 'EntityReference';
|
26932
|
+
id: string;
|
26933
|
+
}> | null;
|
26934
|
+
workflows?: Array<{
|
26935
|
+
__typename?: 'EntityReference';
|
26936
|
+
id: string;
|
26937
|
+
}> | null;
|
26938
|
+
collections?: Array<{
|
26939
|
+
__typename?: 'EntityReference';
|
26940
|
+
id: string;
|
26941
|
+
}> | null;
|
26942
|
+
users?: Array<{
|
26943
|
+
__typename?: 'EntityReference';
|
26944
|
+
id: string;
|
26945
|
+
}> | null;
|
26946
|
+
observations?: Array<{
|
26947
|
+
__typename?: 'ObservationCriteria';
|
26948
|
+
type: ObservableTypes;
|
26949
|
+
states?: Array<EntityState | null> | null;
|
26950
|
+
observable: {
|
26951
|
+
__typename?: 'EntityReference';
|
26952
|
+
id: string;
|
26953
|
+
};
|
26954
|
+
}> | null;
|
26955
|
+
}> | null;
|
26956
|
+
} | null;
|
26957
|
+
augmentedFilter?: {
|
26958
|
+
__typename?: 'ContentCriteria';
|
26959
|
+
inLast?: any | null;
|
26960
|
+
createdInLast?: any | null;
|
26961
|
+
types?: Array<ContentTypes> | null;
|
26962
|
+
fileTypes?: Array<FileTypes | null> | null;
|
26963
|
+
formats?: Array<string | null> | null;
|
26964
|
+
fileExtensions?: Array<string> | null;
|
26965
|
+
dateRange?: {
|
26966
|
+
__typename?: 'DateRange';
|
26967
|
+
from?: any | null;
|
26968
|
+
to?: any | null;
|
26969
|
+
} | null;
|
26970
|
+
creationDateRange?: {
|
26971
|
+
__typename?: 'DateRange';
|
26972
|
+
from?: any | null;
|
26973
|
+
to?: any | null;
|
26974
|
+
} | null;
|
26975
|
+
similarContents?: Array<{
|
26976
|
+
__typename?: 'EntityReference';
|
26977
|
+
id: string;
|
26978
|
+
}> | null;
|
26979
|
+
contents?: Array<{
|
26980
|
+
__typename?: 'EntityReference';
|
26981
|
+
id: string;
|
26982
|
+
}> | null;
|
26983
|
+
feeds?: Array<{
|
26984
|
+
__typename?: 'EntityReference';
|
26985
|
+
id: string;
|
26986
|
+
}> | null;
|
26987
|
+
workflows?: Array<{
|
26988
|
+
__typename?: 'EntityReference';
|
26989
|
+
id: string;
|
26990
|
+
}> | null;
|
26991
|
+
collections?: Array<{
|
26992
|
+
__typename?: 'EntityReference';
|
26993
|
+
id: string;
|
26994
|
+
}> | null;
|
26995
|
+
users?: Array<{
|
26996
|
+
__typename?: 'EntityReference';
|
26997
|
+
id: string;
|
26998
|
+
}> | null;
|
26999
|
+
observations?: Array<{
|
27000
|
+
__typename?: 'ObservationCriteria';
|
27001
|
+
type: ObservableTypes;
|
27002
|
+
states?: Array<EntityState | null> | null;
|
27003
|
+
observable: {
|
27004
|
+
__typename?: 'EntityReference';
|
27005
|
+
id: string;
|
27006
|
+
};
|
27007
|
+
}> | null;
|
27008
|
+
or?: Array<{
|
27009
|
+
__typename?: 'ContentCriteriaLevel';
|
27010
|
+
feeds?: Array<{
|
27011
|
+
__typename?: 'EntityReference';
|
27012
|
+
id: string;
|
27013
|
+
}> | null;
|
27014
|
+
workflows?: Array<{
|
27015
|
+
__typename?: 'EntityReference';
|
27016
|
+
id: string;
|
27017
|
+
}> | null;
|
27018
|
+
collections?: Array<{
|
27019
|
+
__typename?: 'EntityReference';
|
27020
|
+
id: string;
|
27021
|
+
}> | null;
|
27022
|
+
users?: Array<{
|
27023
|
+
__typename?: 'EntityReference';
|
27024
|
+
id: string;
|
27025
|
+
}> | null;
|
27026
|
+
observations?: Array<{
|
27027
|
+
__typename?: 'ObservationCriteria';
|
27028
|
+
type: ObservableTypes;
|
27029
|
+
states?: Array<EntityState | null> | null;
|
27030
|
+
observable: {
|
27031
|
+
__typename?: 'EntityReference';
|
27032
|
+
id: string;
|
27033
|
+
};
|
27034
|
+
}> | null;
|
27035
|
+
}> | null;
|
27036
|
+
and?: Array<{
|
27037
|
+
__typename?: 'ContentCriteriaLevel';
|
27038
|
+
feeds?: Array<{
|
27039
|
+
__typename?: 'EntityReference';
|
27040
|
+
id: string;
|
27041
|
+
}> | null;
|
27042
|
+
workflows?: Array<{
|
27043
|
+
__typename?: 'EntityReference';
|
27044
|
+
id: string;
|
27045
|
+
}> | null;
|
27046
|
+
collections?: Array<{
|
27047
|
+
__typename?: 'EntityReference';
|
27048
|
+
id: string;
|
27049
|
+
}> | null;
|
27050
|
+
users?: Array<{
|
27051
|
+
__typename?: 'EntityReference';
|
27052
|
+
id: string;
|
27053
|
+
}> | null;
|
27054
|
+
observations?: Array<{
|
27055
|
+
__typename?: 'ObservationCriteria';
|
27056
|
+
type: ObservableTypes;
|
27057
|
+
states?: Array<EntityState | null> | null;
|
27058
|
+
observable: {
|
27059
|
+
__typename?: 'EntityReference';
|
27060
|
+
id: string;
|
27061
|
+
};
|
27062
|
+
}> | null;
|
27063
|
+
}> | null;
|
27064
|
+
} | null;
|
27065
|
+
}> | null;
|
27066
|
+
} | null;
|
27067
|
+
};
|
27068
|
+
export type UpdateViewMutationVariables = Exact<{
|
27069
|
+
view: ViewUpdateInput;
|
27070
|
+
}>;
|
27071
|
+
export type UpdateViewMutation = {
|
27072
|
+
__typename?: 'Mutation';
|
27073
|
+
updateView?: {
|
27074
|
+
__typename?: 'View';
|
27075
|
+
id: string;
|
27076
|
+
name: string;
|
27077
|
+
state: EntityState;
|
27078
|
+
type?: ViewTypes | null;
|
27079
|
+
filter?: {
|
27080
|
+
__typename?: 'ContentCriteria';
|
27081
|
+
inLast?: any | null;
|
27082
|
+
createdInLast?: any | null;
|
27083
|
+
types?: Array<ContentTypes> | null;
|
27084
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27085
|
+
formats?: Array<string | null> | null;
|
27086
|
+
fileExtensions?: Array<string> | null;
|
27087
|
+
dateRange?: {
|
27088
|
+
__typename?: 'DateRange';
|
27089
|
+
from?: any | null;
|
27090
|
+
to?: any | null;
|
27091
|
+
} | null;
|
27092
|
+
creationDateRange?: {
|
27093
|
+
__typename?: 'DateRange';
|
27094
|
+
from?: any | null;
|
27095
|
+
to?: any | null;
|
27096
|
+
} | null;
|
27097
|
+
similarContents?: Array<{
|
27098
|
+
__typename?: 'EntityReference';
|
27099
|
+
id: string;
|
27100
|
+
}> | null;
|
27101
|
+
contents?: Array<{
|
27102
|
+
__typename?: 'EntityReference';
|
27103
|
+
id: string;
|
27104
|
+
}> | null;
|
27105
|
+
feeds?: Array<{
|
27106
|
+
__typename?: 'EntityReference';
|
27107
|
+
id: string;
|
27108
|
+
}> | null;
|
27109
|
+
workflows?: Array<{
|
27110
|
+
__typename?: 'EntityReference';
|
27111
|
+
id: string;
|
27112
|
+
}> | null;
|
27113
|
+
collections?: Array<{
|
27114
|
+
__typename?: 'EntityReference';
|
27115
|
+
id: string;
|
27116
|
+
}> | null;
|
27117
|
+
users?: Array<{
|
27118
|
+
__typename?: 'EntityReference';
|
27119
|
+
id: string;
|
27120
|
+
}> | null;
|
27121
|
+
observations?: Array<{
|
27122
|
+
__typename?: 'ObservationCriteria';
|
27123
|
+
type: ObservableTypes;
|
27124
|
+
states?: Array<EntityState | null> | null;
|
27125
|
+
observable: {
|
27126
|
+
__typename?: 'EntityReference';
|
27127
|
+
id: string;
|
27128
|
+
};
|
27129
|
+
}> | null;
|
27130
|
+
or?: Array<{
|
27131
|
+
__typename?: 'ContentCriteriaLevel';
|
27132
|
+
feeds?: Array<{
|
27133
|
+
__typename?: 'EntityReference';
|
27134
|
+
id: string;
|
27135
|
+
}> | null;
|
27136
|
+
workflows?: Array<{
|
27137
|
+
__typename?: 'EntityReference';
|
27138
|
+
id: string;
|
27139
|
+
}> | null;
|
27140
|
+
collections?: Array<{
|
27141
|
+
__typename?: 'EntityReference';
|
27142
|
+
id: string;
|
27143
|
+
}> | null;
|
27144
|
+
users?: Array<{
|
27145
|
+
__typename?: 'EntityReference';
|
27146
|
+
id: string;
|
27147
|
+
}> | null;
|
27148
|
+
observations?: Array<{
|
27149
|
+
__typename?: 'ObservationCriteria';
|
27150
|
+
type: ObservableTypes;
|
27151
|
+
states?: Array<EntityState | null> | null;
|
27152
|
+
observable: {
|
27153
|
+
__typename?: 'EntityReference';
|
27154
|
+
id: string;
|
27155
|
+
};
|
27156
|
+
}> | null;
|
27157
|
+
}> | null;
|
27158
|
+
and?: Array<{
|
27159
|
+
__typename?: 'ContentCriteriaLevel';
|
27160
|
+
feeds?: Array<{
|
27161
|
+
__typename?: 'EntityReference';
|
27162
|
+
id: string;
|
27163
|
+
}> | null;
|
27164
|
+
workflows?: Array<{
|
27165
|
+
__typename?: 'EntityReference';
|
27166
|
+
id: string;
|
27167
|
+
}> | null;
|
27168
|
+
collections?: Array<{
|
27169
|
+
__typename?: 'EntityReference';
|
27170
|
+
id: string;
|
27171
|
+
}> | null;
|
27172
|
+
users?: Array<{
|
27173
|
+
__typename?: 'EntityReference';
|
27174
|
+
id: string;
|
27175
|
+
}> | null;
|
27176
|
+
observations?: Array<{
|
27177
|
+
__typename?: 'ObservationCriteria';
|
27178
|
+
type: ObservableTypes;
|
27179
|
+
states?: Array<EntityState | null> | null;
|
27180
|
+
observable: {
|
27181
|
+
__typename?: 'EntityReference';
|
27182
|
+
id: string;
|
27183
|
+
};
|
27184
|
+
}> | null;
|
27185
|
+
}> | null;
|
27186
|
+
} | null;
|
27187
|
+
augmentedFilter?: {
|
27188
|
+
__typename?: 'ContentCriteria';
|
27189
|
+
inLast?: any | null;
|
27190
|
+
createdInLast?: any | null;
|
27191
|
+
types?: Array<ContentTypes> | null;
|
27192
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27193
|
+
formats?: Array<string | null> | null;
|
27194
|
+
fileExtensions?: Array<string> | null;
|
27195
|
+
dateRange?: {
|
27196
|
+
__typename?: 'DateRange';
|
27197
|
+
from?: any | null;
|
27198
|
+
to?: any | null;
|
27199
|
+
} | null;
|
27200
|
+
creationDateRange?: {
|
27201
|
+
__typename?: 'DateRange';
|
27202
|
+
from?: any | null;
|
27203
|
+
to?: any | null;
|
27204
|
+
} | null;
|
27205
|
+
similarContents?: Array<{
|
27206
|
+
__typename?: 'EntityReference';
|
27207
|
+
id: string;
|
27208
|
+
}> | null;
|
27209
|
+
contents?: Array<{
|
27210
|
+
__typename?: 'EntityReference';
|
27211
|
+
id: string;
|
27212
|
+
}> | null;
|
27213
|
+
feeds?: Array<{
|
27214
|
+
__typename?: 'EntityReference';
|
27215
|
+
id: string;
|
27216
|
+
}> | null;
|
27217
|
+
workflows?: Array<{
|
27218
|
+
__typename?: 'EntityReference';
|
27219
|
+
id: string;
|
27220
|
+
}> | null;
|
27221
|
+
collections?: Array<{
|
27222
|
+
__typename?: 'EntityReference';
|
27223
|
+
id: string;
|
27224
|
+
}> | null;
|
27225
|
+
users?: Array<{
|
27226
|
+
__typename?: 'EntityReference';
|
27227
|
+
id: string;
|
27228
|
+
}> | null;
|
27229
|
+
observations?: Array<{
|
27230
|
+
__typename?: 'ObservationCriteria';
|
27231
|
+
type: ObservableTypes;
|
27232
|
+
states?: Array<EntityState | null> | null;
|
27233
|
+
observable: {
|
27234
|
+
__typename?: 'EntityReference';
|
27235
|
+
id: string;
|
27236
|
+
};
|
27237
|
+
}> | null;
|
27238
|
+
or?: Array<{
|
27239
|
+
__typename?: 'ContentCriteriaLevel';
|
27240
|
+
feeds?: Array<{
|
27241
|
+
__typename?: 'EntityReference';
|
27242
|
+
id: string;
|
27243
|
+
}> | null;
|
27244
|
+
workflows?: Array<{
|
27245
|
+
__typename?: 'EntityReference';
|
27246
|
+
id: string;
|
27247
|
+
}> | null;
|
27248
|
+
collections?: Array<{
|
27249
|
+
__typename?: 'EntityReference';
|
27250
|
+
id: string;
|
27251
|
+
}> | null;
|
27252
|
+
users?: Array<{
|
27253
|
+
__typename?: 'EntityReference';
|
27254
|
+
id: string;
|
27255
|
+
}> | null;
|
27256
|
+
observations?: Array<{
|
27257
|
+
__typename?: 'ObservationCriteria';
|
27258
|
+
type: ObservableTypes;
|
27259
|
+
states?: Array<EntityState | null> | null;
|
27260
|
+
observable: {
|
27261
|
+
__typename?: 'EntityReference';
|
27262
|
+
id: string;
|
27263
|
+
};
|
27264
|
+
}> | null;
|
27265
|
+
}> | null;
|
27266
|
+
and?: Array<{
|
27267
|
+
__typename?: 'ContentCriteriaLevel';
|
27268
|
+
feeds?: Array<{
|
27269
|
+
__typename?: 'EntityReference';
|
27270
|
+
id: string;
|
27271
|
+
}> | null;
|
27272
|
+
workflows?: Array<{
|
27273
|
+
__typename?: 'EntityReference';
|
27274
|
+
id: string;
|
27275
|
+
}> | null;
|
27276
|
+
collections?: Array<{
|
27277
|
+
__typename?: 'EntityReference';
|
27278
|
+
id: string;
|
27279
|
+
}> | null;
|
27280
|
+
users?: Array<{
|
27281
|
+
__typename?: 'EntityReference';
|
27282
|
+
id: string;
|
27283
|
+
}> | null;
|
27284
|
+
observations?: Array<{
|
27285
|
+
__typename?: 'ObservationCriteria';
|
27286
|
+
type: ObservableTypes;
|
27287
|
+
states?: Array<EntityState | null> | null;
|
27288
|
+
observable: {
|
27289
|
+
__typename?: 'EntityReference';
|
27290
|
+
id: string;
|
27291
|
+
};
|
27292
|
+
}> | null;
|
27293
|
+
}> | null;
|
27294
|
+
} | null;
|
27295
|
+
} | null;
|
27296
|
+
};
|
27297
|
+
export type UpsertViewMutationVariables = Exact<{
|
27298
|
+
view: ViewInput;
|
27299
|
+
}>;
|
27300
|
+
export type UpsertViewMutation = {
|
27301
|
+
__typename?: 'Mutation';
|
27302
|
+
upsertView?: {
|
27303
|
+
__typename?: 'View';
|
27304
|
+
id: string;
|
27305
|
+
name: string;
|
27306
|
+
state: EntityState;
|
27307
|
+
type?: ViewTypes | null;
|
27308
|
+
filter?: {
|
27309
|
+
__typename?: 'ContentCriteria';
|
27310
|
+
inLast?: any | null;
|
27311
|
+
createdInLast?: any | null;
|
27312
|
+
types?: Array<ContentTypes> | null;
|
27313
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27314
|
+
formats?: Array<string | null> | null;
|
27315
|
+
fileExtensions?: Array<string> | null;
|
27316
|
+
dateRange?: {
|
27317
|
+
__typename?: 'DateRange';
|
27318
|
+
from?: any | null;
|
27319
|
+
to?: any | null;
|
27320
|
+
} | null;
|
27321
|
+
creationDateRange?: {
|
27322
|
+
__typename?: 'DateRange';
|
27323
|
+
from?: any | null;
|
27324
|
+
to?: any | null;
|
27325
|
+
} | null;
|
27326
|
+
similarContents?: Array<{
|
27327
|
+
__typename?: 'EntityReference';
|
27328
|
+
id: string;
|
27329
|
+
}> | null;
|
27330
|
+
contents?: Array<{
|
27331
|
+
__typename?: 'EntityReference';
|
27332
|
+
id: string;
|
27333
|
+
}> | null;
|
27334
|
+
feeds?: Array<{
|
27335
|
+
__typename?: 'EntityReference';
|
27336
|
+
id: string;
|
27337
|
+
}> | null;
|
27338
|
+
workflows?: Array<{
|
27339
|
+
__typename?: 'EntityReference';
|
27340
|
+
id: string;
|
27341
|
+
}> | null;
|
27342
|
+
collections?: Array<{
|
27343
|
+
__typename?: 'EntityReference';
|
27344
|
+
id: string;
|
27345
|
+
}> | null;
|
27346
|
+
users?: Array<{
|
27347
|
+
__typename?: 'EntityReference';
|
27348
|
+
id: string;
|
27349
|
+
}> | null;
|
27350
|
+
observations?: Array<{
|
27351
|
+
__typename?: 'ObservationCriteria';
|
27352
|
+
type: ObservableTypes;
|
27353
|
+
states?: Array<EntityState | null> | null;
|
27354
|
+
observable: {
|
27355
|
+
__typename?: 'EntityReference';
|
27356
|
+
id: string;
|
27357
|
+
};
|
27358
|
+
}> | null;
|
27359
|
+
or?: Array<{
|
27360
|
+
__typename?: 'ContentCriteriaLevel';
|
27361
|
+
feeds?: Array<{
|
27362
|
+
__typename?: 'EntityReference';
|
27363
|
+
id: string;
|
27364
|
+
}> | null;
|
27365
|
+
workflows?: Array<{
|
27366
|
+
__typename?: 'EntityReference';
|
27367
|
+
id: string;
|
27368
|
+
}> | null;
|
27369
|
+
collections?: Array<{
|
27370
|
+
__typename?: 'EntityReference';
|
27371
|
+
id: string;
|
27372
|
+
}> | null;
|
27373
|
+
users?: Array<{
|
27374
|
+
__typename?: 'EntityReference';
|
27375
|
+
id: string;
|
27376
|
+
}> | null;
|
27377
|
+
observations?: Array<{
|
27378
|
+
__typename?: 'ObservationCriteria';
|
27379
|
+
type: ObservableTypes;
|
27380
|
+
states?: Array<EntityState | null> | null;
|
27381
|
+
observable: {
|
27382
|
+
__typename?: 'EntityReference';
|
27383
|
+
id: string;
|
27384
|
+
};
|
27385
|
+
}> | null;
|
27386
|
+
}> | null;
|
27387
|
+
and?: Array<{
|
27388
|
+
__typename?: 'ContentCriteriaLevel';
|
27389
|
+
feeds?: Array<{
|
27390
|
+
__typename?: 'EntityReference';
|
27391
|
+
id: string;
|
27392
|
+
}> | null;
|
27393
|
+
workflows?: Array<{
|
27394
|
+
__typename?: 'EntityReference';
|
27395
|
+
id: string;
|
27396
|
+
}> | null;
|
27397
|
+
collections?: Array<{
|
27398
|
+
__typename?: 'EntityReference';
|
27399
|
+
id: string;
|
27400
|
+
}> | null;
|
27401
|
+
users?: Array<{
|
27402
|
+
__typename?: 'EntityReference';
|
27403
|
+
id: string;
|
27404
|
+
}> | null;
|
27405
|
+
observations?: Array<{
|
27406
|
+
__typename?: 'ObservationCriteria';
|
27407
|
+
type: ObservableTypes;
|
27408
|
+
states?: Array<EntityState | null> | null;
|
27409
|
+
observable: {
|
27410
|
+
__typename?: 'EntityReference';
|
27411
|
+
id: string;
|
27412
|
+
};
|
27413
|
+
}> | null;
|
27414
|
+
}> | null;
|
27415
|
+
} | null;
|
27416
|
+
augmentedFilter?: {
|
27417
|
+
__typename?: 'ContentCriteria';
|
27418
|
+
inLast?: any | null;
|
27419
|
+
createdInLast?: any | null;
|
27420
|
+
types?: Array<ContentTypes> | null;
|
27421
|
+
fileTypes?: Array<FileTypes | null> | null;
|
27422
|
+
formats?: Array<string | null> | null;
|
27423
|
+
fileExtensions?: Array<string> | null;
|
27424
|
+
dateRange?: {
|
27425
|
+
__typename?: 'DateRange';
|
27426
|
+
from?: any | null;
|
27427
|
+
to?: any | null;
|
27428
|
+
} | null;
|
27429
|
+
creationDateRange?: {
|
27430
|
+
__typename?: 'DateRange';
|
27431
|
+
from?: any | null;
|
27432
|
+
to?: any | null;
|
27433
|
+
} | null;
|
27434
|
+
similarContents?: Array<{
|
27435
|
+
__typename?: 'EntityReference';
|
27436
|
+
id: string;
|
27437
|
+
}> | null;
|
27438
|
+
contents?: Array<{
|
27439
|
+
__typename?: 'EntityReference';
|
27440
|
+
id: string;
|
27441
|
+
}> | null;
|
27442
|
+
feeds?: Array<{
|
27443
|
+
__typename?: 'EntityReference';
|
27444
|
+
id: string;
|
27445
|
+
}> | null;
|
27446
|
+
workflows?: Array<{
|
27447
|
+
__typename?: 'EntityReference';
|
27448
|
+
id: string;
|
27449
|
+
}> | null;
|
27450
|
+
collections?: Array<{
|
27451
|
+
__typename?: 'EntityReference';
|
27452
|
+
id: string;
|
27453
|
+
}> | null;
|
27454
|
+
users?: Array<{
|
27455
|
+
__typename?: 'EntityReference';
|
27456
|
+
id: string;
|
27457
|
+
}> | null;
|
27458
|
+
observations?: Array<{
|
27459
|
+
__typename?: 'ObservationCriteria';
|
27460
|
+
type: ObservableTypes;
|
27461
|
+
states?: Array<EntityState | null> | null;
|
27462
|
+
observable: {
|
27463
|
+
__typename?: 'EntityReference';
|
27464
|
+
id: string;
|
27465
|
+
};
|
27466
|
+
}> | null;
|
27467
|
+
or?: Array<{
|
27468
|
+
__typename?: 'ContentCriteriaLevel';
|
27469
|
+
feeds?: Array<{
|
27470
|
+
__typename?: 'EntityReference';
|
27471
|
+
id: string;
|
27472
|
+
}> | null;
|
27473
|
+
workflows?: Array<{
|
27474
|
+
__typename?: 'EntityReference';
|
27475
|
+
id: string;
|
27476
|
+
}> | null;
|
27477
|
+
collections?: Array<{
|
27478
|
+
__typename?: 'EntityReference';
|
27479
|
+
id: string;
|
27480
|
+
}> | null;
|
27481
|
+
users?: Array<{
|
27482
|
+
__typename?: 'EntityReference';
|
27483
|
+
id: string;
|
27484
|
+
}> | null;
|
27485
|
+
observations?: Array<{
|
27486
|
+
__typename?: 'ObservationCriteria';
|
27487
|
+
type: ObservableTypes;
|
27488
|
+
states?: Array<EntityState | null> | null;
|
27489
|
+
observable: {
|
27490
|
+
__typename?: 'EntityReference';
|
27491
|
+
id: string;
|
27492
|
+
};
|
27493
|
+
}> | null;
|
27494
|
+
}> | null;
|
27495
|
+
and?: Array<{
|
27496
|
+
__typename?: 'ContentCriteriaLevel';
|
27497
|
+
feeds?: Array<{
|
27498
|
+
__typename?: 'EntityReference';
|
27499
|
+
id: string;
|
27500
|
+
}> | null;
|
27501
|
+
workflows?: Array<{
|
27502
|
+
__typename?: 'EntityReference';
|
27503
|
+
id: string;
|
27504
|
+
}> | null;
|
27505
|
+
collections?: Array<{
|
27506
|
+
__typename?: 'EntityReference';
|
27507
|
+
id: string;
|
27508
|
+
}> | null;
|
27509
|
+
users?: Array<{
|
27510
|
+
__typename?: 'EntityReference';
|
27511
|
+
id: string;
|
27512
|
+
}> | null;
|
27513
|
+
observations?: Array<{
|
27514
|
+
__typename?: 'ObservationCriteria';
|
27515
|
+
type: ObservableTypes;
|
27516
|
+
states?: Array<EntityState | null> | null;
|
27517
|
+
observable: {
|
27518
|
+
__typename?: 'EntityReference';
|
27519
|
+
id: string;
|
27520
|
+
};
|
27521
|
+
}> | null;
|
27522
|
+
}> | null;
|
27523
|
+
} | null;
|
27524
|
+
} | null;
|
27525
|
+
};
|
27526
|
+
export type ViewExistsQueryVariables = Exact<{
|
27527
|
+
filter?: InputMaybe<ViewFilter>;
|
27528
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
27529
|
+
}>;
|
27530
|
+
export type ViewExistsQuery = {
|
27531
|
+
__typename?: 'Query';
|
27532
|
+
viewExists?: {
|
27533
|
+
__typename?: 'BooleanResult';
|
27534
|
+
result?: boolean | null;
|
27535
|
+
} | null;
|
27536
|
+
};
|
24940
27537
|
export type CountWorkflowsQueryVariables = Exact<{
|
24941
27538
|
filter?: InputMaybe<WorkflowFilter>;
|
24942
27539
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -25161,6 +27758,8 @@ export type CreateWorkflowMutation = {
|
|
25161
27758
|
excludedLinks?: Array<LinkTypes> | null;
|
25162
27759
|
allowedFiles?: Array<FileTypes> | null;
|
25163
27760
|
excludedFiles?: Array<FileTypes> | null;
|
27761
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
27762
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
25164
27763
|
allowContentDomain?: boolean | null;
|
25165
27764
|
maximumLinks?: number | null;
|
25166
27765
|
} | null;
|
@@ -25473,6 +28072,8 @@ export type GetWorkflowQuery = {
|
|
25473
28072
|
excludedLinks?: Array<LinkTypes> | null;
|
25474
28073
|
allowedFiles?: Array<FileTypes> | null;
|
25475
28074
|
excludedFiles?: Array<FileTypes> | null;
|
28075
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28076
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
25476
28077
|
allowContentDomain?: boolean | null;
|
25477
28078
|
maximumLinks?: number | null;
|
25478
28079
|
} | null;
|
@@ -25751,6 +28352,8 @@ export type QueryWorkflowsQuery = {
|
|
25751
28352
|
excludedLinks?: Array<LinkTypes> | null;
|
25752
28353
|
allowedFiles?: Array<FileTypes> | null;
|
25753
28354
|
excludedFiles?: Array<FileTypes> | null;
|
28355
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28356
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
25754
28357
|
allowContentDomain?: boolean | null;
|
25755
28358
|
maximumLinks?: number | null;
|
25756
28359
|
} | null;
|
@@ -26021,6 +28624,8 @@ export type UpdateWorkflowMutation = {
|
|
26021
28624
|
excludedLinks?: Array<LinkTypes> | null;
|
26022
28625
|
allowedFiles?: Array<FileTypes> | null;
|
26023
28626
|
excludedFiles?: Array<FileTypes> | null;
|
28627
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28628
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
26024
28629
|
allowContentDomain?: boolean | null;
|
26025
28630
|
maximumLinks?: number | null;
|
26026
28631
|
} | null;
|
@@ -26290,6 +28895,8 @@ export type UpsertWorkflowMutation = {
|
|
26290
28895
|
excludedLinks?: Array<LinkTypes> | null;
|
26291
28896
|
allowedFiles?: Array<FileTypes> | null;
|
26292
28897
|
excludedFiles?: Array<FileTypes> | null;
|
28898
|
+
allowedContentTypes?: Array<ContentTypes> | null;
|
28899
|
+
excludedContentTypes?: Array<ContentTypes> | null;
|
26293
28900
|
allowContentDomain?: boolean | null;
|
26294
28901
|
maximumLinks?: number | null;
|
26295
28902
|
} | null;
|