graphlit-client 1.0.20241213002 → 1.0.20241224001
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.
@@ -148,6 +148,8 @@ export type Alert = {
|
|
148
148
|
};
|
149
149
|
/** Represents a filter for alerts. */
|
150
150
|
export type AlertFilter = {
|
151
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return alert(s) created in the last 24 hours. */
|
152
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
151
153
|
/** Filter alert(s) by their creation date range. */
|
152
154
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
153
155
|
/** The sort direction for query results. */
|
@@ -850,6 +852,46 @@ export type BoundingBoxInput = {
|
|
850
852
|
/** The width of the bounding box. */
|
851
853
|
width?: InputMaybe<Scalars['Float']['input']>;
|
852
854
|
};
|
855
|
+
/** Represents Box properties. */
|
856
|
+
export type BoxFeedProperties = {
|
857
|
+
__typename?: 'BoxFeedProperties';
|
858
|
+
/** Box client identifier. */
|
859
|
+
clientId: Scalars['String']['output'];
|
860
|
+
/** Box client secret. */
|
861
|
+
clientSecret: Scalars['String']['output'];
|
862
|
+
/** Box folder identifier. */
|
863
|
+
folderId?: Maybe<Scalars['ID']['output']>;
|
864
|
+
/** Box redirect URI. */
|
865
|
+
redirectUri: Scalars['String']['output'];
|
866
|
+
/** Box refresh token. */
|
867
|
+
refreshToken: Scalars['String']['output'];
|
868
|
+
};
|
869
|
+
/** Represents Box properties. */
|
870
|
+
export type BoxFeedPropertiesInput = {
|
871
|
+
/** Box client identifier. */
|
872
|
+
clientId: Scalars['String']['input'];
|
873
|
+
/** Box client secret. */
|
874
|
+
clientSecret: Scalars['String']['input'];
|
875
|
+
/** Box folder identifier. */
|
876
|
+
folderId?: InputMaybe<Scalars['ID']['input']>;
|
877
|
+
/** Box redirect URI. */
|
878
|
+
redirectUri: Scalars['String']['input'];
|
879
|
+
/** Box refresh token. */
|
880
|
+
refreshToken: Scalars['String']['input'];
|
881
|
+
};
|
882
|
+
/** Represents Box properties. */
|
883
|
+
export type BoxFeedPropertiesUpdateInput = {
|
884
|
+
/** Box client identifier. */
|
885
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
886
|
+
/** Box client secret. */
|
887
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
888
|
+
/** Box folder identifier. */
|
889
|
+
folderId?: InputMaybe<Scalars['ID']['input']>;
|
890
|
+
/** Box redirect URI. */
|
891
|
+
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
892
|
+
/** Box refresh token. */
|
893
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
894
|
+
};
|
853
895
|
/** Represents a category. */
|
854
896
|
export type Category = {
|
855
897
|
__typename?: 'Category';
|
@@ -898,6 +940,8 @@ export declare enum CategoryFacetTypes {
|
|
898
940
|
}
|
899
941
|
/** Represents a filter for categories. */
|
900
942
|
export type CategoryFilter = {
|
943
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return category(s) created in the last 24 hours. */
|
944
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
901
945
|
/** Filter category(s) by their creation date range. */
|
902
946
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
903
947
|
/** The sort direction for query results. */
|
@@ -1070,6 +1114,8 @@ export type CohereModelPropertiesUpdateInput = {
|
|
1070
1114
|
export declare enum CohereModels {
|
1071
1115
|
/** Command R (Latest) */
|
1072
1116
|
CommandR = "COMMAND_R",
|
1117
|
+
/** Command R7B (2024-12 version) */
|
1118
|
+
CommandR7B_202412 = "COMMAND_R7_B_202412",
|
1073
1119
|
/** Command R (2024-03 version) */
|
1074
1120
|
CommandR_202403 = "COMMAND_R_202403",
|
1075
1121
|
/** Command R (2024-08 version) */
|
@@ -1115,6 +1161,8 @@ export type Collection = {
|
|
1115
1161
|
};
|
1116
1162
|
/** Represents a filter for collections. */
|
1117
1163
|
export type CollectionFilter = {
|
1164
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return collection(s) created in the last 24 hours. */
|
1165
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1118
1166
|
/** Filter collection(s) by their creation date range. */
|
1119
1167
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
1120
1168
|
/** The sort direction for query results. */
|
@@ -1330,6 +1378,8 @@ export type ContentCriteria = {
|
|
1330
1378
|
collections?: Maybe<Array<EntityReference>>;
|
1331
1379
|
/** Filter by similar contents. */
|
1332
1380
|
contents?: Maybe<Array<EntityReference>>;
|
1381
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return content created in the last 24 hours. */
|
1382
|
+
createdInLast?: Maybe<Scalars['TimeSpan']['output']>;
|
1333
1383
|
/** Filter by creation date range. */
|
1334
1384
|
creationDateRange?: Maybe<DateRange>;
|
1335
1385
|
/** Filter by original date range. */
|
@@ -1338,6 +1388,8 @@ export type ContentCriteria = {
|
|
1338
1388
|
feeds?: Maybe<Array<EntityReference>>;
|
1339
1389
|
/** Filter by file types. */
|
1340
1390
|
fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
|
1391
|
+
/** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
|
1392
|
+
inLast?: Maybe<Scalars['TimeSpan']['output']>;
|
1341
1393
|
/** Filter by observations. */
|
1342
1394
|
observations?: Maybe<Array<ObservationCriteria>>;
|
1343
1395
|
/** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
|
@@ -1355,6 +1407,8 @@ export type ContentCriteriaInput = {
|
|
1355
1407
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
1356
1408
|
/** Filter by similar contents. */
|
1357
1409
|
contents?: InputMaybe<Array<EntityReferenceInput>>;
|
1410
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return content created in the last 24 hours. */
|
1411
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1358
1412
|
/** Filter by creation date range. */
|
1359
1413
|
creationDateRange?: InputMaybe<DateRangeInput>;
|
1360
1414
|
/** Filter by original date range. */
|
@@ -1363,6 +1417,8 @@ export type ContentCriteriaInput = {
|
|
1363
1417
|
feeds?: InputMaybe<Array<EntityReferenceInput>>;
|
1364
1418
|
/** Filter by file types. */
|
1365
1419
|
fileTypes?: InputMaybe<Array<FileTypes>>;
|
1420
|
+
/** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
|
1421
|
+
inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1366
1422
|
/** Filter by observations. */
|
1367
1423
|
observations?: InputMaybe<Array<ObservationCriteriaInput>>;
|
1368
1424
|
/** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
|
@@ -1493,6 +1549,8 @@ export type ContentFilter = {
|
|
1493
1549
|
collections?: InputMaybe<Array<EntityReferenceFilter>>;
|
1494
1550
|
/** Filter by similar contents. */
|
1495
1551
|
contents?: InputMaybe<Array<EntityReferenceFilter>>;
|
1552
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return content(s) created in the last 24 hours. */
|
1553
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1496
1554
|
/** Filter content(s) by their creation date range. */
|
1497
1555
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
1498
1556
|
/** The sort direction for query results. */
|
@@ -1513,6 +1571,8 @@ export type ContentFilter = {
|
|
1513
1571
|
id?: InputMaybe<Scalars['ID']['input']>;
|
1514
1572
|
/** Filter contents by their external identifier. */
|
1515
1573
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
1574
|
+
/** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
|
1575
|
+
inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1516
1576
|
/** Limit the number of content(s) to be returned. */
|
1517
1577
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
1518
1578
|
/** Filter by geo-location. */
|
@@ -1829,6 +1889,8 @@ export type ConversationDetails = {
|
|
1829
1889
|
export type ConversationFilter = {
|
1830
1890
|
/** Filter by similar conversations. */
|
1831
1891
|
conversations?: InputMaybe<Array<EntityReferenceFilter>>;
|
1892
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return conversation(s) created in the last 24 hours. */
|
1893
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
1832
1894
|
/** Filter conversation(s) by their creation date range. */
|
1833
1895
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
1834
1896
|
/** The sort direction for query results. */
|
@@ -2405,6 +2467,46 @@ export type DrawingMetadataInput = {
|
|
2405
2467
|
/** The drawing Y origin. */
|
2406
2468
|
y?: InputMaybe<Scalars['Float']['input']>;
|
2407
2469
|
};
|
2470
|
+
/** Represents Dropbox properties. */
|
2471
|
+
export type DropboxFeedProperties = {
|
2472
|
+
__typename?: 'DropboxFeedProperties';
|
2473
|
+
/** Dropbox app key. */
|
2474
|
+
appKey: Scalars['String']['output'];
|
2475
|
+
/** Dropbox app secret. */
|
2476
|
+
appSecret: Scalars['String']['output'];
|
2477
|
+
/** Dropbox folder path. */
|
2478
|
+
path?: Maybe<Scalars['ID']['output']>;
|
2479
|
+
/** Dropbox redirect URI. */
|
2480
|
+
redirectUri: Scalars['String']['output'];
|
2481
|
+
/** Dropbox refresh token. */
|
2482
|
+
refreshToken: Scalars['String']['output'];
|
2483
|
+
};
|
2484
|
+
/** Represents Dropbox properties. */
|
2485
|
+
export type DropboxFeedPropertiesInput = {
|
2486
|
+
/** Dropbox app key. */
|
2487
|
+
appKey: Scalars['String']['input'];
|
2488
|
+
/** Dropbox app secret. */
|
2489
|
+
appSecret: Scalars['String']['input'];
|
2490
|
+
/** Dropbox folder path. */
|
2491
|
+
path?: InputMaybe<Scalars['ID']['input']>;
|
2492
|
+
/** Dropbox redirect URI. */
|
2493
|
+
redirectUri: Scalars['String']['input'];
|
2494
|
+
/** Dropbox refresh token. */
|
2495
|
+
refreshToken: Scalars['String']['input'];
|
2496
|
+
};
|
2497
|
+
/** Represents Dropbox properties. */
|
2498
|
+
export type DropboxFeedPropertiesUpdateInput = {
|
2499
|
+
/** Dropbox app key. */
|
2500
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
2501
|
+
/** Dropbox app secret. */
|
2502
|
+
appSecret?: InputMaybe<Scalars['String']['input']>;
|
2503
|
+
/** Dropbox folder path. */
|
2504
|
+
path?: InputMaybe<Scalars['ID']['input']>;
|
2505
|
+
/** Dropbox redirect URI. */
|
2506
|
+
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
2507
|
+
/** Dropbox refresh token. */
|
2508
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
2509
|
+
};
|
2408
2510
|
/** ElevenLabs models */
|
2409
2511
|
export declare enum ElevenLabsModels {
|
2410
2512
|
/** Eleven English v1 */
|
@@ -2921,6 +3023,8 @@ export type EventFilter = {
|
|
2921
3023
|
availabilityStartDateRange?: InputMaybe<DateRangeFilter>;
|
2922
3024
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
2923
3025
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3026
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return event(s) created in the last 24 hours. */
|
3027
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
2924
3028
|
/** Filter event(s) by their creation date range. */
|
2925
3029
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
2926
3030
|
/** The sort direction for query results. */
|
@@ -3135,6 +3239,8 @@ export type Feed = {
|
|
3135
3239
|
error?: Maybe<Scalars['String']['output']>;
|
3136
3240
|
/** The ID of the feed. */
|
3137
3241
|
id: Scalars['ID']['output'];
|
3242
|
+
/** The Intercom feed properties. */
|
3243
|
+
intercom?: Maybe<IntercomFeedProperties>;
|
3138
3244
|
/** The issue feed properties. */
|
3139
3245
|
issue?: Maybe<IssueFeedProperties>;
|
3140
3246
|
/** The date of the last item that was read from the feed. */
|
@@ -3176,6 +3282,8 @@ export type Feed = {
|
|
3176
3282
|
workflow?: Maybe<Workflow>;
|
3177
3283
|
/** The YouTube feed properties. */
|
3178
3284
|
youtube?: Maybe<YouTubeFeedProperties>;
|
3285
|
+
/** The Zendesk feed properties. */
|
3286
|
+
zendesk?: Maybe<ZendeskFeedProperties>;
|
3179
3287
|
};
|
3180
3288
|
/** Feed connector type */
|
3181
3289
|
export declare enum FeedConnectorTypes {
|
@@ -3185,6 +3293,10 @@ export declare enum FeedConnectorTypes {
|
|
3185
3293
|
Atlassian = "ATLASSIAN",
|
3186
3294
|
/** Microsoft Azure feed connector */
|
3187
3295
|
Azure = "AZURE",
|
3296
|
+
/** Box feed connector */
|
3297
|
+
Box = "BOX",
|
3298
|
+
/** Dropbox feed connector */
|
3299
|
+
Dropbox = "DROPBOX",
|
3188
3300
|
/** GitHub feed connector */
|
3189
3301
|
GitHub = "GIT_HUB",
|
3190
3302
|
/** Google Cloud feed connector */
|
@@ -3193,6 +3305,8 @@ export declare enum FeedConnectorTypes {
|
|
3193
3305
|
GoogleDrive = "GOOGLE_DRIVE",
|
3194
3306
|
/** Google Mail feed connector */
|
3195
3307
|
GoogleEmail = "GOOGLE_EMAIL",
|
3308
|
+
/** Intercom feed connector */
|
3309
|
+
Intercom = "INTERCOM",
|
3196
3310
|
/** Linear feed connector */
|
3197
3311
|
Linear = "LINEAR",
|
3198
3312
|
/** Microsoft Outlook Email feed connector */
|
@@ -3200,10 +3314,14 @@ export declare enum FeedConnectorTypes {
|
|
3200
3314
|
/** Microsoft OneDrive feed connector */
|
3201
3315
|
OneDrive = "ONE_DRIVE",
|
3202
3316
|
/** Microsoft SharePoint feed connector */
|
3203
|
-
SharePoint = "SHARE_POINT"
|
3317
|
+
SharePoint = "SHARE_POINT",
|
3318
|
+
/** Zendesk feed connector */
|
3319
|
+
Zendesk = "ZENDESK"
|
3204
3320
|
}
|
3205
3321
|
/** Represents a filter for feeds. */
|
3206
3322
|
export type FeedFilter = {
|
3323
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return feed(s) created in the last 24 hours. */
|
3324
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
3207
3325
|
/** Filter feed(s) by their creation date range. */
|
3208
3326
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
3209
3327
|
/** The sort direction for query results. */
|
@@ -3233,6 +3351,8 @@ export type FeedInput = {
|
|
3233
3351
|
discord?: InputMaybe<DiscordFeedPropertiesInput>;
|
3234
3352
|
/** The email feed properties. */
|
3235
3353
|
email?: InputMaybe<EmailFeedPropertiesInput>;
|
3354
|
+
/** The Intercom feed properties. */
|
3355
|
+
intercom?: InputMaybe<IntercomFeedPropertiesInput>;
|
3236
3356
|
/** The issue feed properties. */
|
3237
3357
|
issue?: InputMaybe<IssueFeedPropertiesInput>;
|
3238
3358
|
/** The Microsoft Teams feed properties. */
|
@@ -3261,6 +3381,8 @@ export type FeedInput = {
|
|
3261
3381
|
workflow?: InputMaybe<EntityReferenceInput>;
|
3262
3382
|
/** The YouTube feed properties. */
|
3263
3383
|
youtube?: InputMaybe<YouTubeFeedPropertiesInput>;
|
3384
|
+
/** The Zendesk feed properties. */
|
3385
|
+
zendesk?: InputMaybe<ZendeskFeedPropertiesInput>;
|
3264
3386
|
};
|
3265
3387
|
/** Feed list type */
|
3266
3388
|
export declare enum FeedListingTypes {
|
@@ -3292,12 +3414,18 @@ export type FeedSchedulePolicyInput = {
|
|
3292
3414
|
};
|
3293
3415
|
/** Feed service type */
|
3294
3416
|
export declare enum FeedServiceTypes {
|
3417
|
+
/** Atlassian Confluence feed service */
|
3418
|
+
AtlassianConfluence = "ATLASSIAN_CONFLUENCE",
|
3295
3419
|
/** Atlassian Jira feed service */
|
3296
3420
|
AtlassianJira = "ATLASSIAN_JIRA",
|
3297
3421
|
/** Azure Blob feed service */
|
3298
3422
|
AzureBlob = "AZURE_BLOB",
|
3299
3423
|
/** Azure File feed service */
|
3300
3424
|
AzureFile = "AZURE_FILE",
|
3425
|
+
/** Box feed service */
|
3426
|
+
Box = "BOX",
|
3427
|
+
/** Dropbox feed service */
|
3428
|
+
Dropbox = "DROPBOX",
|
3301
3429
|
/** GitHub feed service */
|
3302
3430
|
GitHub = "GIT_HUB",
|
3303
3431
|
/** GitHub Issues feed service */
|
@@ -3308,6 +3436,10 @@ export declare enum FeedServiceTypes {
|
|
3308
3436
|
GoogleDrive = "GOOGLE_DRIVE",
|
3309
3437
|
/** Google Mail feed service */
|
3310
3438
|
GoogleEmail = "GOOGLE_EMAIL",
|
3439
|
+
/** Intercom Articles feed service */
|
3440
|
+
IntercomArticles = "INTERCOM_ARTICLES",
|
3441
|
+
/** Intercom Tickets feed service */
|
3442
|
+
IntercomTickets = "INTERCOM_TICKETS",
|
3311
3443
|
/** Linear feed service */
|
3312
3444
|
Linear = "LINEAR",
|
3313
3445
|
/** Microsoft Outlook Email feed service */
|
@@ -3317,7 +3449,11 @@ export declare enum FeedServiceTypes {
|
|
3317
3449
|
/** AWS S3 Blob feed service */
|
3318
3450
|
S3Blob = "S3_BLOB",
|
3319
3451
|
/** Microsoft SharePoint feed service */
|
3320
|
-
SharePoint = "SHARE_POINT"
|
3452
|
+
SharePoint = "SHARE_POINT",
|
3453
|
+
/** Zendesk Articles feed service */
|
3454
|
+
ZendeskArticles = "ZENDESK_ARTICLES",
|
3455
|
+
/** Zendesk Tickets feed service */
|
3456
|
+
ZendeskTickets = "ZENDESK_TICKETS"
|
3321
3457
|
}
|
3322
3458
|
/** Feed type */
|
3323
3459
|
export declare enum FeedTypes {
|
@@ -3325,6 +3461,8 @@ export declare enum FeedTypes {
|
|
3325
3461
|
Discord = "DISCORD",
|
3326
3462
|
/** Email feed */
|
3327
3463
|
Email = "EMAIL",
|
3464
|
+
/** Intercom articles feed */
|
3465
|
+
Intercom = "INTERCOM",
|
3328
3466
|
/** Issue feed */
|
3329
3467
|
Issue = "ISSUE",
|
3330
3468
|
/** Microsoft Teams channel feed */
|
@@ -3344,7 +3482,9 @@ export declare enum FeedTypes {
|
|
3344
3482
|
/** Web feed */
|
3345
3483
|
Web = "WEB",
|
3346
3484
|
/** YouTube audio feed */
|
3347
|
-
YouTube = "YOU_TUBE"
|
3485
|
+
YouTube = "YOU_TUBE",
|
3486
|
+
/** Zendesk articles feed */
|
3487
|
+
Zendesk = "ZENDESK"
|
3348
3488
|
}
|
3349
3489
|
/** Represents a feed. */
|
3350
3490
|
export type FeedUpdateInput = {
|
@@ -3574,6 +3714,8 @@ export type GoogleDriveFeedProperties = {
|
|
3574
3714
|
clientId: Scalars['String']['output'];
|
3575
3715
|
/** Google client secret. */
|
3576
3716
|
clientSecret: Scalars['String']['output'];
|
3717
|
+
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
3718
|
+
files?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
3577
3719
|
/** Google Drive folder identifier. */
|
3578
3720
|
folderId?: Maybe<Scalars['String']['output']>;
|
3579
3721
|
/** Google refresh token. */
|
@@ -3585,6 +3727,8 @@ export type GoogleDriveFeedPropertiesInput = {
|
|
3585
3727
|
clientId: Scalars['String']['input'];
|
3586
3728
|
/** Google client secret. */
|
3587
3729
|
clientSecret: Scalars['String']['input'];
|
3730
|
+
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
3731
|
+
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3588
3732
|
/** Google Drive folder identifier. */
|
3589
3733
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
3590
3734
|
/** Google refresh token. */
|
@@ -3596,6 +3740,8 @@ export type GoogleDriveFeedPropertiesUpdateInput = {
|
|
3596
3740
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
3597
3741
|
/** Google client secret. */
|
3598
3742
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3743
|
+
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
3744
|
+
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3599
3745
|
/** Google Drive folder identifier. */
|
3600
3746
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
3601
3747
|
/** Google refresh token. */
|
@@ -4235,6 +4381,37 @@ export declare enum IntegrationServiceTypes {
|
|
4235
4381
|
/** HTTP WebHook integration service */
|
4236
4382
|
WebHook = "WEB_HOOK"
|
4237
4383
|
}
|
4384
|
+
/** Represents Intercom feed properties. */
|
4385
|
+
export type IntercomFeedProperties = {
|
4386
|
+
__typename?: 'IntercomFeedProperties';
|
4387
|
+
/** Intercom access token. */
|
4388
|
+
accessToken: Scalars['String']['output'];
|
4389
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
4390
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
4391
|
+
};
|
4392
|
+
/** Represents Intercom feed properties. */
|
4393
|
+
export type IntercomFeedPropertiesInput = {
|
4394
|
+
/** Intercom access token. */
|
4395
|
+
accessToken: Scalars['String']['input'];
|
4396
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
4397
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
4398
|
+
};
|
4399
|
+
/** Represents Intercom Tickets feed properties. */
|
4400
|
+
export type IntercomTicketsFeedProperties = {
|
4401
|
+
__typename?: 'IntercomTicketsFeedProperties';
|
4402
|
+
/** Intercom access token. */
|
4403
|
+
accessToken: Scalars['String']['output'];
|
4404
|
+
};
|
4405
|
+
/** Represents Intercom Tickets feed properties. */
|
4406
|
+
export type IntercomTicketsFeedPropertiesInput = {
|
4407
|
+
/** Intercom access token. */
|
4408
|
+
accessToken: Scalars['String']['input'];
|
4409
|
+
};
|
4410
|
+
/** Represents Intercom Tickets feed properties. */
|
4411
|
+
export type IntercomTicketsFeedPropertiesUpdateInput = {
|
4412
|
+
/** Intercom access token. */
|
4413
|
+
accessToken?: InputMaybe<Scalars['String']['input']>;
|
4414
|
+
};
|
4238
4415
|
/** Represents issue feed properties. */
|
4239
4416
|
export type IssueFeedProperties = {
|
4240
4417
|
__typename?: 'IssueFeedProperties';
|
@@ -4244,6 +4421,8 @@ export type IssueFeedProperties = {
|
|
4244
4421
|
github?: Maybe<GitHubIssuesFeedProperties>;
|
4245
4422
|
/** Should the issue feed include attachments. */
|
4246
4423
|
includeAttachments?: Maybe<Scalars['Boolean']['output']>;
|
4424
|
+
/** Intercom Tickets properties. */
|
4425
|
+
intercom?: Maybe<IntercomTicketsFeedProperties>;
|
4247
4426
|
/** Atlassian Jira properties. */
|
4248
4427
|
jira?: Maybe<AtlassianJiraFeedProperties>;
|
4249
4428
|
/** Linear properties. */
|
@@ -4252,6 +4431,8 @@ export type IssueFeedProperties = {
|
|
4252
4431
|
readLimit?: Maybe<Scalars['Int']['output']>;
|
4253
4432
|
/** Feed service type. */
|
4254
4433
|
type: FeedServiceTypes;
|
4434
|
+
/** Zendesk Tickets properties. */
|
4435
|
+
zendesk?: Maybe<ZendeskTicketsFeedProperties>;
|
4255
4436
|
};
|
4256
4437
|
/** Represents issue feed properties. */
|
4257
4438
|
export type IssueFeedPropertiesInput = {
|
@@ -4259,6 +4440,8 @@ export type IssueFeedPropertiesInput = {
|
|
4259
4440
|
github?: InputMaybe<GitHubIssuesFeedPropertiesInput>;
|
4260
4441
|
/** Should the issue feed include attachments. */
|
4261
4442
|
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
4443
|
+
/** Intercom Tickets properties. */
|
4444
|
+
intercom?: InputMaybe<IntercomTicketsFeedPropertiesInput>;
|
4262
4445
|
/** Atlassian Jira properties. */
|
4263
4446
|
jira?: InputMaybe<AtlassianJiraFeedPropertiesInput>;
|
4264
4447
|
/** Linear properties. */
|
@@ -4267,6 +4450,8 @@ export type IssueFeedPropertiesInput = {
|
|
4267
4450
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
4268
4451
|
/** Feed service type. */
|
4269
4452
|
type: FeedServiceTypes;
|
4453
|
+
/** Zendesk Tickets properties. */
|
4454
|
+
zendesk?: InputMaybe<ZendeskTicketsFeedPropertiesInput>;
|
4270
4455
|
};
|
4271
4456
|
/** Represents issue feed properties. */
|
4272
4457
|
export type IssueFeedPropertiesUpdateInput = {
|
@@ -4274,12 +4459,16 @@ export type IssueFeedPropertiesUpdateInput = {
|
|
4274
4459
|
github?: InputMaybe<GitHubIssuesFeedPropertiesUpdateInput>;
|
4275
4460
|
/** Should the issue feed include attachments. */
|
4276
4461
|
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
4462
|
+
/** Intercom Tickets properties. */
|
4463
|
+
intercom?: InputMaybe<IntercomTicketsFeedPropertiesUpdateInput>;
|
4277
4464
|
/** Atlassian Jira properties. */
|
4278
4465
|
jira?: InputMaybe<AtlassianJiraFeedPropertiesUpdateInput>;
|
4279
4466
|
/** Linear properties. */
|
4280
4467
|
linear?: InputMaybe<LinearFeedPropertiesUpdateInput>;
|
4281
4468
|
/** The limit of items to be read from feed, defaults to 100. */
|
4282
4469
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
4470
|
+
/** Zendesk Tickets properties. */
|
4471
|
+
zendesk?: InputMaybe<ZendeskTicketsFeedPropertiesUpdateInput>;
|
4283
4472
|
};
|
4284
4473
|
/** Represents issue metadata. */
|
4285
4474
|
export type IssueMetadata = {
|
@@ -4423,6 +4612,8 @@ export declare enum LabelFacetTypes {
|
|
4423
4612
|
}
|
4424
4613
|
/** Represents a filter for labels. */
|
4425
4614
|
export type LabelFilter = {
|
4615
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return label(s) created in the last 24 hours. */
|
4616
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
4426
4617
|
/** Filter label(s) by their creation date range. */
|
4427
4618
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
4428
4619
|
/** The sort direction for query results. */
|
@@ -4762,6 +4953,8 @@ export type MedicalConditionFilter = {
|
|
4762
4953
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4763
4954
|
/** Filter by similar medical conditions. */
|
4764
4955
|
conditions?: InputMaybe<Array<EntityReferenceFilter>>;
|
4956
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcondition(s) created in the last 24 hours. */
|
4957
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
4765
4958
|
/** Filter medicalcondition(s) by their creation date range. */
|
4766
4959
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
4767
4960
|
/** The sort direction for query results. */
|
@@ -4903,6 +5096,8 @@ export type MedicalContraindicationFilter = {
|
|
4903
5096
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4904
5097
|
/** Filter by similar medical contraindications. */
|
4905
5098
|
contraindications?: InputMaybe<Array<EntityReferenceFilter>>;
|
5099
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) created in the last 24 hours. */
|
5100
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
4906
5101
|
/** Filter medicalcontraindication(s) by their creation date range. */
|
4907
5102
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
4908
5103
|
/** The sort direction for query results. */
|
@@ -5042,6 +5237,8 @@ export type MedicalDeviceFilter = {
|
|
5042
5237
|
address?: InputMaybe<AddressFilter>;
|
5043
5238
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5044
5239
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5240
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldevice(s) created in the last 24 hours. */
|
5241
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5045
5242
|
/** Filter medicaldevice(s) by their creation date range. */
|
5046
5243
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5047
5244
|
/** Filter by similar medical devices. */
|
@@ -5221,6 +5418,8 @@ export type MedicalDrugClassFilter = {
|
|
5221
5418
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5222
5419
|
/** Filter by similar medical drug classes. */
|
5223
5420
|
classes?: InputMaybe<Array<EntityReferenceFilter>>;
|
5421
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) created in the last 24 hours. */
|
5422
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5224
5423
|
/** Filter medicaldrugclass(s) by their creation date range. */
|
5225
5424
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5226
5425
|
/** The sort direction for query results. */
|
@@ -5324,6 +5523,8 @@ export type MedicalDrugFilter = {
|
|
5324
5523
|
address?: InputMaybe<AddressFilter>;
|
5325
5524
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5326
5525
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5526
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldrug(s) created in the last 24 hours. */
|
5527
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5327
5528
|
/** Filter medicaldrug(s) by their creation date range. */
|
5328
5529
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5329
5530
|
/** The sort direction for query results. */
|
@@ -5465,6 +5666,8 @@ export type MedicalGuidelineFilter = {
|
|
5465
5666
|
address?: InputMaybe<AddressFilter>;
|
5466
5667
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5467
5668
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5669
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalguideline(s) created in the last 24 hours. */
|
5670
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5468
5671
|
/** Filter medicalguideline(s) by their creation date range. */
|
5469
5672
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5470
5673
|
/** The sort direction for query results. */
|
@@ -5606,6 +5809,8 @@ export type MedicalIndicationFilter = {
|
|
5606
5809
|
address?: InputMaybe<AddressFilter>;
|
5607
5810
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5608
5811
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5812
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalindication(s) created in the last 24 hours. */
|
5813
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5609
5814
|
/** Filter medicalindication(s) by their creation date range. */
|
5610
5815
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5611
5816
|
/** The sort direction for query results. */
|
@@ -5747,6 +5952,8 @@ export type MedicalProcedureFilter = {
|
|
5747
5952
|
address?: InputMaybe<AddressFilter>;
|
5748
5953
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5749
5954
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
5955
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalprocedure(s) created in the last 24 hours. */
|
5956
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5750
5957
|
/** Filter medicalprocedure(s) by their creation date range. */
|
5751
5958
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5752
5959
|
/** The sort direction for query results. */
|
@@ -5890,6 +6097,8 @@ export type MedicalStudyFilter = {
|
|
5890
6097
|
address?: InputMaybe<AddressFilter>;
|
5891
6098
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
5892
6099
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
6100
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalstudy(s) created in the last 24 hours. */
|
6101
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
5893
6102
|
/** Filter medicalstudy(s) by their creation date range. */
|
5894
6103
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
5895
6104
|
/** The sort direction for query results. */
|
@@ -6037,6 +6246,8 @@ export type MedicalTestFilter = {
|
|
6037
6246
|
address?: InputMaybe<AddressFilter>;
|
6038
6247
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
6039
6248
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
6249
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaltest(s) created in the last 24 hours. */
|
6250
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
6040
6251
|
/** Filter medicaltest(s) by their creation date range. */
|
6041
6252
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
6042
6253
|
/** The sort direction for query results. */
|
@@ -6178,6 +6389,8 @@ export type MedicalTherapyFilter = {
|
|
6178
6389
|
address?: InputMaybe<AddressFilter>;
|
6179
6390
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
6180
6391
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
6392
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaltherapy(s) created in the last 24 hours. */
|
6393
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
6181
6394
|
/** Filter medicaltherapy(s) by their creation date range. */
|
6182
6395
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
6183
6396
|
/** The sort direction for query results. */
|
@@ -6283,6 +6496,8 @@ export type Metadata = {
|
|
6283
6496
|
export type MetadataFilter = {
|
6284
6497
|
/** Filter by parent content. */
|
6285
6498
|
content?: InputMaybe<EntityReferenceFilter>;
|
6499
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return metadata(s) created in the last 24 hours. */
|
6500
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
6286
6501
|
/** Filter metadata(s) by their creation date range. */
|
6287
6502
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
6288
6503
|
/** The sort direction for query results. */
|
@@ -7471,6 +7686,7 @@ export type MutationFormatConversationArgs = {
|
|
7471
7686
|
export type MutationIngestBatchArgs = {
|
7472
7687
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
7473
7688
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7689
|
+
observations?: InputMaybe<Array<ObservationReferenceInput>>;
|
7474
7690
|
uris: Array<Scalars['URL']['input']>;
|
7475
7691
|
workflow?: InputMaybe<EntityReferenceInput>;
|
7476
7692
|
};
|
@@ -7482,6 +7698,7 @@ export type MutationIngestEncodedFileArgs = {
|
|
7482
7698
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7483
7699
|
mimeType: Scalars['String']['input'];
|
7484
7700
|
name: Scalars['String']['input'];
|
7701
|
+
observations?: InputMaybe<Array<ObservationReferenceInput>>;
|
7485
7702
|
workflow?: InputMaybe<EntityReferenceInput>;
|
7486
7703
|
};
|
7487
7704
|
export type MutationIngestFileArgs = {
|
@@ -7508,6 +7725,7 @@ export type MutationIngestTextArgs = {
|
|
7508
7725
|
id?: InputMaybe<Scalars['ID']['input']>;
|
7509
7726
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7510
7727
|
name: Scalars['String']['input'];
|
7728
|
+
observations?: InputMaybe<Array<ObservationReferenceInput>>;
|
7511
7729
|
text: Scalars['String']['input'];
|
7512
7730
|
textType?: InputMaybe<TextTypes>;
|
7513
7731
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
@@ -7517,6 +7735,7 @@ export type MutationIngestTextBatchArgs = {
|
|
7517
7735
|
batch: Array<TextContentInput>;
|
7518
7736
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
7519
7737
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7738
|
+
observations?: InputMaybe<Array<ObservationReferenceInput>>;
|
7520
7739
|
textType?: InputMaybe<TextTypes>;
|
7521
7740
|
workflow?: InputMaybe<EntityReferenceInput>;
|
7522
7741
|
};
|
@@ -7526,6 +7745,7 @@ export type MutationIngestUriArgs = {
|
|
7526
7745
|
id?: InputMaybe<Scalars['ID']['input']>;
|
7527
7746
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7528
7747
|
name?: InputMaybe<Scalars['String']['input']>;
|
7748
|
+
observations?: InputMaybe<Array<ObservationReferenceInput>>;
|
7529
7749
|
uri: Scalars['URL']['input'];
|
7530
7750
|
workflow?: InputMaybe<EntityReferenceInput>;
|
7531
7751
|
};
|
@@ -7961,6 +8181,13 @@ export type ObservationReferenceFilter = {
|
|
7961
8181
|
/** Filter by observed entity type. */
|
7962
8182
|
type: ObservableTypes;
|
7963
8183
|
};
|
8184
|
+
/** Represents an observation reference. */
|
8185
|
+
export type ObservationReferenceInput = {
|
8186
|
+
/** The observed entity. */
|
8187
|
+
observable: NamedEntityReferenceInput;
|
8188
|
+
/** The observed entity type. */
|
8189
|
+
type: ObservableTypes;
|
8190
|
+
};
|
7964
8191
|
/** Represents an observation. */
|
7965
8192
|
export type ObservationUpdateInput = {
|
7966
8193
|
/** The ID of the observation to update. */
|
@@ -7990,6 +8217,8 @@ export type OneDriveFeedProperties = {
|
|
7990
8217
|
clientId: Scalars['String']['output'];
|
7991
8218
|
/** OneDrive client secret. */
|
7992
8219
|
clientSecret: Scalars['String']['output'];
|
8220
|
+
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
8221
|
+
files?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
7993
8222
|
/** OneDrive folder identifier. */
|
7994
8223
|
folderId?: Maybe<Scalars['ID']['output']>;
|
7995
8224
|
/** OneDrive refresh token. */
|
@@ -8001,6 +8230,8 @@ export type OneDriveFeedPropertiesInput = {
|
|
8001
8230
|
clientId: Scalars['String']['input'];
|
8002
8231
|
/** OneDrive client secret. */
|
8003
8232
|
clientSecret: Scalars['String']['input'];
|
8233
|
+
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
8234
|
+
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
8004
8235
|
/** OneDrive folder identifier. */
|
8005
8236
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
8006
8237
|
/** OneDrive refresh token. */
|
@@ -8012,6 +8243,8 @@ export type OneDriveFeedPropertiesUpdateInput = {
|
|
8012
8243
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8013
8244
|
/** OneDrive client secret. */
|
8014
8245
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8246
|
+
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
8247
|
+
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
8015
8248
|
/** OneDrive folder identifier. */
|
8016
8249
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
8017
8250
|
/** OneDrive refresh token. */
|
@@ -8208,6 +8441,10 @@ export declare enum OpenAiModels {
|
|
8208
8441
|
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
8209
8442
|
*/
|
8210
8443
|
Gpt35Turbo_16K_1106 = "GPT35_TURBO_16K_1106",
|
8444
|
+
/** o1 200k (Latest) */
|
8445
|
+
O1_200K = "O1_200K",
|
8446
|
+
/** o1 200k (2024-12-17 version) */
|
8447
|
+
O1_200K_20241217 = "O1_200K_20241217",
|
8211
8448
|
/** o1 Mini 128k (Latest) */
|
8212
8449
|
O1Mini_128K = "O1_MINI_128K",
|
8213
8450
|
/** o1 Mini 128k (2024-09-12 version) */
|
@@ -8332,6 +8569,8 @@ export type OrganizationFilter = {
|
|
8332
8569
|
address?: InputMaybe<AddressFilter>;
|
8333
8570
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
8334
8571
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
8572
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return organization(s) created in the last 24 hours. */
|
8573
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
8335
8574
|
/** Filter organization(s) by their creation date range. */
|
8336
8575
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
8337
8576
|
/** The sort direction for query results. */
|
@@ -8571,6 +8810,8 @@ export type PersonFilter = {
|
|
8571
8810
|
address?: InputMaybe<AddressFilter>;
|
8572
8811
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
8573
8812
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
8813
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return person(s) created in the last 24 hours. */
|
8814
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
8574
8815
|
/** Filter person(s) by their creation date range. */
|
8575
8816
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
8576
8817
|
/** The sort direction for query results. */
|
@@ -8774,6 +9015,8 @@ export type PlaceFilter = {
|
|
8774
9015
|
address?: InputMaybe<AddressFilter>;
|
8775
9016
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
8776
9017
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
9018
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return place(s) created in the last 24 hours. */
|
9019
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
8777
9020
|
/** Filter place(s) by their creation date range. */
|
8778
9021
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
8779
9022
|
/** The sort direction for query results. */
|
@@ -9031,6 +9274,8 @@ export type ProductFilter = {
|
|
9031
9274
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
9032
9275
|
/** Filter by product brand. */
|
9033
9276
|
brand?: InputMaybe<Scalars['String']['input']>;
|
9277
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return product(s) created in the last 24 hours. */
|
9278
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
9034
9279
|
/** Filter product(s) by their creation date range. */
|
9035
9280
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
9036
9281
|
/** The sort direction for query results. */
|
@@ -9224,6 +9469,8 @@ export type ProjectCredits = {
|
|
9224
9469
|
};
|
9225
9470
|
/** Represents a filter for projects. */
|
9226
9471
|
export type ProjectFilter = {
|
9472
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return project(s) created in the last 24 hours. */
|
9473
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
9227
9474
|
/** Filter project(s) by their creation date range. */
|
9228
9475
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
9229
9476
|
/** The sort direction for query results. */
|
@@ -10399,6 +10646,8 @@ export type RepoFilter = {
|
|
10399
10646
|
address?: InputMaybe<AddressFilter>;
|
10400
10647
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
10401
10648
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
10649
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return repo(s) created in the last 24 hours. */
|
10650
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
10402
10651
|
/** Filter repo(s) by their creation date range. */
|
10403
10652
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
10404
10653
|
/** The sort direction for query results. */
|
@@ -10787,8 +11036,12 @@ export type SiteFeedProperties = {
|
|
10787
11036
|
azureBlob?: Maybe<AzureBlobFeedProperties>;
|
10788
11037
|
/** Microsoft Azure file share properties. */
|
10789
11038
|
azureFile?: Maybe<AzureFileFeedProperties>;
|
11039
|
+
/** Box properties. */
|
11040
|
+
box?: Maybe<BoxFeedProperties>;
|
10790
11041
|
/** Feed connector type. */
|
10791
11042
|
connectorType: FeedConnectorTypes;
|
11043
|
+
/** Dropbox properties. */
|
11044
|
+
dropbox?: Maybe<DropboxFeedProperties>;
|
10792
11045
|
/** GitHub properties. */
|
10793
11046
|
github?: Maybe<GitHubFeedProperties>;
|
10794
11047
|
/** Google Cloud blob properties. */
|
@@ -10816,6 +11069,10 @@ export type SiteFeedPropertiesInput = {
|
|
10816
11069
|
azureBlob?: InputMaybe<AzureBlobFeedPropertiesInput>;
|
10817
11070
|
/** Microsoft Azure file share properties. */
|
10818
11071
|
azureFile?: InputMaybe<AzureFileFeedPropertiesInput>;
|
11072
|
+
/** Box properties. */
|
11073
|
+
box?: InputMaybe<BoxFeedPropertiesInput>;
|
11074
|
+
/** Dropbox properties. */
|
11075
|
+
dropbox?: InputMaybe<DropboxFeedPropertiesInput>;
|
10819
11076
|
/** GitHub properties. */
|
10820
11077
|
github?: InputMaybe<GitHubFeedPropertiesInput>;
|
10821
11078
|
/** Google Cloud blob properties. */
|
@@ -10841,6 +11098,10 @@ export type SiteFeedPropertiesUpdateInput = {
|
|
10841
11098
|
azureBlob?: InputMaybe<AzureBlobFeedPropertiesUpdateInput>;
|
10842
11099
|
/** Microsoft Azure file share properties. */
|
10843
11100
|
azureFile?: InputMaybe<AzureFileFeedPropertiesUpdateInput>;
|
11101
|
+
/** Box properties. */
|
11102
|
+
box?: InputMaybe<BoxFeedPropertiesUpdateInput>;
|
11103
|
+
/** Dropbox properties. */
|
11104
|
+
dropbox?: InputMaybe<DropboxFeedPropertiesUpdateInput>;
|
10844
11105
|
/** GitHub properties. */
|
10845
11106
|
github?: InputMaybe<GitHubFeedPropertiesUpdateInput>;
|
10846
11107
|
/** Google Cloud blob properties. */
|
@@ -10991,6 +11252,8 @@ export type SoftwareFilter = {
|
|
10991
11252
|
address?: InputMaybe<AddressFilter>;
|
10992
11253
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
10993
11254
|
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
11255
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return software(s) created in the last 24 hours. */
|
11256
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
10994
11257
|
/** Filter software(s) by their creation date range. */
|
10995
11258
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
10996
11259
|
/** The sort direction for query results. */
|
@@ -11136,6 +11399,8 @@ export type Specification = {
|
|
11136
11399
|
};
|
11137
11400
|
/** Represents a filter for LLM specifications. */
|
11138
11401
|
export type SpecificationFilter = {
|
11402
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return specification(s) created in the last 24 hours. */
|
11403
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
11139
11404
|
/** Filter specification(s) by their creation date range. */
|
11140
11405
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
11141
11406
|
/** The sort direction for query results. */
|
@@ -11816,6 +12081,8 @@ export type WorkflowActionInput = {
|
|
11816
12081
|
};
|
11817
12082
|
/** Represents a filter for workflows. */
|
11818
12083
|
export type WorkflowFilter = {
|
12084
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return workflow(s) created in the last 24 hours. */
|
12085
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
11819
12086
|
/** Filter workflow(s) by their creation date range. */
|
11820
12087
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
11821
12088
|
/** The sort direction for query results. */
|
@@ -11933,6 +12200,47 @@ export declare enum YouTubeTypes {
|
|
11933
12200
|
/** YouTube Videos */
|
11934
12201
|
Videos = "VIDEOS"
|
11935
12202
|
}
|
12203
|
+
/** Represents Zendesk feed properties. */
|
12204
|
+
export type ZendeskFeedProperties = {
|
12205
|
+
__typename?: 'ZendeskFeedProperties';
|
12206
|
+
/** Zendesk access token. */
|
12207
|
+
accessToken: Scalars['String']['output'];
|
12208
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
12209
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
12210
|
+
/** Zendesk subdomain. */
|
12211
|
+
subdomain: Scalars['String']['output'];
|
12212
|
+
};
|
12213
|
+
/** Represents Zendesk feed properties. */
|
12214
|
+
export type ZendeskFeedPropertiesInput = {
|
12215
|
+
/** Zendesk access token. */
|
12216
|
+
accessToken: Scalars['String']['input'];
|
12217
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
12218
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
12219
|
+
/** Zendesk subdomain. */
|
12220
|
+
subdomain: Scalars['String']['input'];
|
12221
|
+
};
|
12222
|
+
/** Represents Zendesk Tickets feed properties. */
|
12223
|
+
export type ZendeskTicketsFeedProperties = {
|
12224
|
+
__typename?: 'ZendeskTicketsFeedProperties';
|
12225
|
+
/** Zendesk access token. */
|
12226
|
+
accessToken: Scalars['String']['output'];
|
12227
|
+
/** Zendesk subdomain. */
|
12228
|
+
subdomain: Scalars['String']['output'];
|
12229
|
+
};
|
12230
|
+
/** Represents Zendesk Tickets feed properties. */
|
12231
|
+
export type ZendeskTicketsFeedPropertiesInput = {
|
12232
|
+
/** Zendesk access token. */
|
12233
|
+
accessToken: Scalars['String']['input'];
|
12234
|
+
/** Zendesk subdomain. */
|
12235
|
+
subdomain: Scalars['String']['input'];
|
12236
|
+
};
|
12237
|
+
/** Represents Zendesk Tickets feed properties. */
|
12238
|
+
export type ZendeskTicketsFeedPropertiesUpdateInput = {
|
12239
|
+
/** Zendesk access token. */
|
12240
|
+
accessToken?: InputMaybe<Scalars['String']['input']>;
|
12241
|
+
/** Zendesk subdomain. */
|
12242
|
+
subdomain?: InputMaybe<Scalars['String']['input']>;
|
12243
|
+
};
|
11936
12244
|
export type CountAlertsQueryVariables = Exact<{
|
11937
12245
|
filter?: InputMaybe<AlertFilter>;
|
11938
12246
|
}>;
|
@@ -12038,6 +12346,8 @@ export type GetAlertQuery = {
|
|
12038
12346
|
};
|
12039
12347
|
filter?: {
|
12040
12348
|
__typename?: 'ContentCriteria';
|
12349
|
+
inLast?: any | null;
|
12350
|
+
createdInLast?: any | null;
|
12041
12351
|
types?: Array<ContentTypes> | null;
|
12042
12352
|
fileTypes?: Array<FileTypes | null> | null;
|
12043
12353
|
dateRange?: {
|
@@ -12178,6 +12488,8 @@ export type QueryAlertsQuery = {
|
|
12178
12488
|
};
|
12179
12489
|
filter?: {
|
12180
12490
|
__typename?: 'ContentCriteria';
|
12491
|
+
inLast?: any | null;
|
12492
|
+
createdInLast?: any | null;
|
12181
12493
|
types?: Array<ContentTypes> | null;
|
12182
12494
|
fileTypes?: Array<FileTypes | null> | null;
|
12183
12495
|
dateRange?: {
|
@@ -13247,6 +13559,39 @@ export type IngestBatchMutation = {
|
|
13247
13559
|
id: string;
|
13248
13560
|
name: string;
|
13249
13561
|
} | null> | null;
|
13562
|
+
observations?: Array<{
|
13563
|
+
__typename?: 'Observation';
|
13564
|
+
id: string;
|
13565
|
+
type: ObservableTypes;
|
13566
|
+
relatedType?: ObservableTypes | null;
|
13567
|
+
relation?: string | null;
|
13568
|
+
state: EntityState;
|
13569
|
+
observable: {
|
13570
|
+
__typename?: 'NamedEntityReference';
|
13571
|
+
id: string;
|
13572
|
+
name?: string | null;
|
13573
|
+
};
|
13574
|
+
related?: {
|
13575
|
+
__typename?: 'NamedEntityReference';
|
13576
|
+
id: string;
|
13577
|
+
name?: string | null;
|
13578
|
+
} | null;
|
13579
|
+
occurrences?: Array<{
|
13580
|
+
__typename?: 'ObservationOccurrence';
|
13581
|
+
type?: OccurrenceTypes | null;
|
13582
|
+
confidence?: number | null;
|
13583
|
+
startTime?: any | null;
|
13584
|
+
endTime?: any | null;
|
13585
|
+
pageIndex?: number | null;
|
13586
|
+
boundingBox?: {
|
13587
|
+
__typename?: 'BoundingBox';
|
13588
|
+
left?: number | null;
|
13589
|
+
top?: number | null;
|
13590
|
+
width?: number | null;
|
13591
|
+
height?: number | null;
|
13592
|
+
} | null;
|
13593
|
+
} | null> | null;
|
13594
|
+
} | null> | null;
|
13250
13595
|
} | null> | null;
|
13251
13596
|
};
|
13252
13597
|
export type IngestEncodedFileMutationVariables = Exact<{
|
@@ -13275,6 +13620,39 @@ export type IngestEncodedFileMutation = {
|
|
13275
13620
|
id: string;
|
13276
13621
|
name: string;
|
13277
13622
|
} | null> | null;
|
13623
|
+
observations?: Array<{
|
13624
|
+
__typename?: 'Observation';
|
13625
|
+
id: string;
|
13626
|
+
type: ObservableTypes;
|
13627
|
+
relatedType?: ObservableTypes | null;
|
13628
|
+
relation?: string | null;
|
13629
|
+
state: EntityState;
|
13630
|
+
observable: {
|
13631
|
+
__typename?: 'NamedEntityReference';
|
13632
|
+
id: string;
|
13633
|
+
name?: string | null;
|
13634
|
+
};
|
13635
|
+
related?: {
|
13636
|
+
__typename?: 'NamedEntityReference';
|
13637
|
+
id: string;
|
13638
|
+
name?: string | null;
|
13639
|
+
} | null;
|
13640
|
+
occurrences?: Array<{
|
13641
|
+
__typename?: 'ObservationOccurrence';
|
13642
|
+
type?: OccurrenceTypes | null;
|
13643
|
+
confidence?: number | null;
|
13644
|
+
startTime?: any | null;
|
13645
|
+
endTime?: any | null;
|
13646
|
+
pageIndex?: number | null;
|
13647
|
+
boundingBox?: {
|
13648
|
+
__typename?: 'BoundingBox';
|
13649
|
+
left?: number | null;
|
13650
|
+
top?: number | null;
|
13651
|
+
width?: number | null;
|
13652
|
+
height?: number | null;
|
13653
|
+
} | null;
|
13654
|
+
} | null> | null;
|
13655
|
+
} | null> | null;
|
13278
13656
|
} | null;
|
13279
13657
|
};
|
13280
13658
|
export type IngestTextMutationVariables = Exact<{
|
@@ -13304,6 +13682,39 @@ export type IngestTextMutation = {
|
|
13304
13682
|
id: string;
|
13305
13683
|
name: string;
|
13306
13684
|
} | null> | null;
|
13685
|
+
observations?: Array<{
|
13686
|
+
__typename?: 'Observation';
|
13687
|
+
id: string;
|
13688
|
+
type: ObservableTypes;
|
13689
|
+
relatedType?: ObservableTypes | null;
|
13690
|
+
relation?: string | null;
|
13691
|
+
state: EntityState;
|
13692
|
+
observable: {
|
13693
|
+
__typename?: 'NamedEntityReference';
|
13694
|
+
id: string;
|
13695
|
+
name?: string | null;
|
13696
|
+
};
|
13697
|
+
related?: {
|
13698
|
+
__typename?: 'NamedEntityReference';
|
13699
|
+
id: string;
|
13700
|
+
name?: string | null;
|
13701
|
+
} | null;
|
13702
|
+
occurrences?: Array<{
|
13703
|
+
__typename?: 'ObservationOccurrence';
|
13704
|
+
type?: OccurrenceTypes | null;
|
13705
|
+
confidence?: number | null;
|
13706
|
+
startTime?: any | null;
|
13707
|
+
endTime?: any | null;
|
13708
|
+
pageIndex?: number | null;
|
13709
|
+
boundingBox?: {
|
13710
|
+
__typename?: 'BoundingBox';
|
13711
|
+
left?: number | null;
|
13712
|
+
top?: number | null;
|
13713
|
+
width?: number | null;
|
13714
|
+
height?: number | null;
|
13715
|
+
} | null;
|
13716
|
+
} | null> | null;
|
13717
|
+
} | null> | null;
|
13307
13718
|
} | null;
|
13308
13719
|
};
|
13309
13720
|
export type IngestTextBatchMutationVariables = Exact<{
|
@@ -13329,6 +13740,39 @@ export type IngestTextBatchMutation = {
|
|
13329
13740
|
id: string;
|
13330
13741
|
name: string;
|
13331
13742
|
} | null> | null;
|
13743
|
+
observations?: Array<{
|
13744
|
+
__typename?: 'Observation';
|
13745
|
+
id: string;
|
13746
|
+
type: ObservableTypes;
|
13747
|
+
relatedType?: ObservableTypes | null;
|
13748
|
+
relation?: string | null;
|
13749
|
+
state: EntityState;
|
13750
|
+
observable: {
|
13751
|
+
__typename?: 'NamedEntityReference';
|
13752
|
+
id: string;
|
13753
|
+
name?: string | null;
|
13754
|
+
};
|
13755
|
+
related?: {
|
13756
|
+
__typename?: 'NamedEntityReference';
|
13757
|
+
id: string;
|
13758
|
+
name?: string | null;
|
13759
|
+
} | null;
|
13760
|
+
occurrences?: Array<{
|
13761
|
+
__typename?: 'ObservationOccurrence';
|
13762
|
+
type?: OccurrenceTypes | null;
|
13763
|
+
confidence?: number | null;
|
13764
|
+
startTime?: any | null;
|
13765
|
+
endTime?: any | null;
|
13766
|
+
pageIndex?: number | null;
|
13767
|
+
boundingBox?: {
|
13768
|
+
__typename?: 'BoundingBox';
|
13769
|
+
left?: number | null;
|
13770
|
+
top?: number | null;
|
13771
|
+
width?: number | null;
|
13772
|
+
height?: number | null;
|
13773
|
+
} | null;
|
13774
|
+
} | null> | null;
|
13775
|
+
} | null> | null;
|
13332
13776
|
} | null> | null;
|
13333
13777
|
};
|
13334
13778
|
export type IngestUriMutationVariables = Exact<{
|
@@ -13356,6 +13800,39 @@ export type IngestUriMutation = {
|
|
13356
13800
|
id: string;
|
13357
13801
|
name: string;
|
13358
13802
|
} | null> | null;
|
13803
|
+
observations?: Array<{
|
13804
|
+
__typename?: 'Observation';
|
13805
|
+
id: string;
|
13806
|
+
type: ObservableTypes;
|
13807
|
+
relatedType?: ObservableTypes | null;
|
13808
|
+
relation?: string | null;
|
13809
|
+
state: EntityState;
|
13810
|
+
observable: {
|
13811
|
+
__typename?: 'NamedEntityReference';
|
13812
|
+
id: string;
|
13813
|
+
name?: string | null;
|
13814
|
+
};
|
13815
|
+
related?: {
|
13816
|
+
__typename?: 'NamedEntityReference';
|
13817
|
+
id: string;
|
13818
|
+
name?: string | null;
|
13819
|
+
} | null;
|
13820
|
+
occurrences?: Array<{
|
13821
|
+
__typename?: 'ObservationOccurrence';
|
13822
|
+
type?: OccurrenceTypes | null;
|
13823
|
+
confidence?: number | null;
|
13824
|
+
startTime?: any | null;
|
13825
|
+
endTime?: any | null;
|
13826
|
+
pageIndex?: number | null;
|
13827
|
+
boundingBox?: {
|
13828
|
+
__typename?: 'BoundingBox';
|
13829
|
+
left?: number | null;
|
13830
|
+
top?: number | null;
|
13831
|
+
width?: number | null;
|
13832
|
+
height?: number | null;
|
13833
|
+
} | null;
|
13834
|
+
} | null> | null;
|
13835
|
+
} | null> | null;
|
13359
13836
|
} | null;
|
13360
13837
|
};
|
13361
13838
|
export type IsContentDoneQueryVariables = Exact<{
|
@@ -13399,6 +13876,39 @@ export type PublishContentsMutation = {
|
|
13399
13876
|
id: string;
|
13400
13877
|
name: string;
|
13401
13878
|
} | null> | null;
|
13879
|
+
observations?: Array<{
|
13880
|
+
__typename?: 'Observation';
|
13881
|
+
id: string;
|
13882
|
+
type: ObservableTypes;
|
13883
|
+
relatedType?: ObservableTypes | null;
|
13884
|
+
relation?: string | null;
|
13885
|
+
state: EntityState;
|
13886
|
+
observable: {
|
13887
|
+
__typename?: 'NamedEntityReference';
|
13888
|
+
id: string;
|
13889
|
+
name?: string | null;
|
13890
|
+
};
|
13891
|
+
related?: {
|
13892
|
+
__typename?: 'NamedEntityReference';
|
13893
|
+
id: string;
|
13894
|
+
name?: string | null;
|
13895
|
+
} | null;
|
13896
|
+
occurrences?: Array<{
|
13897
|
+
__typename?: 'ObservationOccurrence';
|
13898
|
+
type?: OccurrenceTypes | null;
|
13899
|
+
confidence?: number | null;
|
13900
|
+
startTime?: any | null;
|
13901
|
+
endTime?: any | null;
|
13902
|
+
pageIndex?: number | null;
|
13903
|
+
boundingBox?: {
|
13904
|
+
__typename?: 'BoundingBox';
|
13905
|
+
left?: number | null;
|
13906
|
+
top?: number | null;
|
13907
|
+
width?: number | null;
|
13908
|
+
height?: number | null;
|
13909
|
+
} | null;
|
13910
|
+
} | null> | null;
|
13911
|
+
} | null> | null;
|
13402
13912
|
} | null;
|
13403
13913
|
};
|
13404
13914
|
export type PublishTextMutationVariables = Exact<{
|
@@ -13429,6 +13939,39 @@ export type PublishTextMutation = {
|
|
13429
13939
|
id: string;
|
13430
13940
|
name: string;
|
13431
13941
|
} | null> | null;
|
13942
|
+
observations?: Array<{
|
13943
|
+
__typename?: 'Observation';
|
13944
|
+
id: string;
|
13945
|
+
type: ObservableTypes;
|
13946
|
+
relatedType?: ObservableTypes | null;
|
13947
|
+
relation?: string | null;
|
13948
|
+
state: EntityState;
|
13949
|
+
observable: {
|
13950
|
+
__typename?: 'NamedEntityReference';
|
13951
|
+
id: string;
|
13952
|
+
name?: string | null;
|
13953
|
+
};
|
13954
|
+
related?: {
|
13955
|
+
__typename?: 'NamedEntityReference';
|
13956
|
+
id: string;
|
13957
|
+
name?: string | null;
|
13958
|
+
} | null;
|
13959
|
+
occurrences?: Array<{
|
13960
|
+
__typename?: 'ObservationOccurrence';
|
13961
|
+
type?: OccurrenceTypes | null;
|
13962
|
+
confidence?: number | null;
|
13963
|
+
startTime?: any | null;
|
13964
|
+
endTime?: any | null;
|
13965
|
+
pageIndex?: number | null;
|
13966
|
+
boundingBox?: {
|
13967
|
+
__typename?: 'BoundingBox';
|
13968
|
+
left?: number | null;
|
13969
|
+
top?: number | null;
|
13970
|
+
width?: number | null;
|
13971
|
+
height?: number | null;
|
13972
|
+
} | null;
|
13973
|
+
} | null> | null;
|
13974
|
+
} | null> | null;
|
13432
13975
|
} | null;
|
13433
13976
|
};
|
13434
13977
|
export type QueryContentsQueryVariables = Exact<{
|
@@ -14069,6 +14612,39 @@ export type ScreenshotPageMutation = {
|
|
14069
14612
|
id: string;
|
14070
14613
|
name: string;
|
14071
14614
|
} | null> | null;
|
14615
|
+
observations?: Array<{
|
14616
|
+
__typename?: 'Observation';
|
14617
|
+
id: string;
|
14618
|
+
type: ObservableTypes;
|
14619
|
+
relatedType?: ObservableTypes | null;
|
14620
|
+
relation?: string | null;
|
14621
|
+
state: EntityState;
|
14622
|
+
observable: {
|
14623
|
+
__typename?: 'NamedEntityReference';
|
14624
|
+
id: string;
|
14625
|
+
name?: string | null;
|
14626
|
+
};
|
14627
|
+
related?: {
|
14628
|
+
__typename?: 'NamedEntityReference';
|
14629
|
+
id: string;
|
14630
|
+
name?: string | null;
|
14631
|
+
} | null;
|
14632
|
+
occurrences?: Array<{
|
14633
|
+
__typename?: 'ObservationOccurrence';
|
14634
|
+
type?: OccurrenceTypes | null;
|
14635
|
+
confidence?: number | null;
|
14636
|
+
startTime?: any | null;
|
14637
|
+
endTime?: any | null;
|
14638
|
+
pageIndex?: number | null;
|
14639
|
+
boundingBox?: {
|
14640
|
+
__typename?: 'BoundingBox';
|
14641
|
+
left?: number | null;
|
14642
|
+
top?: number | null;
|
14643
|
+
width?: number | null;
|
14644
|
+
height?: number | null;
|
14645
|
+
} | null;
|
14646
|
+
} | null> | null;
|
14647
|
+
} | null> | null;
|
14072
14648
|
} | null;
|
14073
14649
|
};
|
14074
14650
|
export type SummarizeContentsMutationVariables = Exact<{
|
@@ -14145,6 +14721,39 @@ export type UpdateContentMutation = {
|
|
14145
14721
|
id: string;
|
14146
14722
|
name: string;
|
14147
14723
|
} | null> | null;
|
14724
|
+
observations?: Array<{
|
14725
|
+
__typename?: 'Observation';
|
14726
|
+
id: string;
|
14727
|
+
type: ObservableTypes;
|
14728
|
+
relatedType?: ObservableTypes | null;
|
14729
|
+
relation?: string | null;
|
14730
|
+
state: EntityState;
|
14731
|
+
observable: {
|
14732
|
+
__typename?: 'NamedEntityReference';
|
14733
|
+
id: string;
|
14734
|
+
name?: string | null;
|
14735
|
+
};
|
14736
|
+
related?: {
|
14737
|
+
__typename?: 'NamedEntityReference';
|
14738
|
+
id: string;
|
14739
|
+
name?: string | null;
|
14740
|
+
} | null;
|
14741
|
+
occurrences?: Array<{
|
14742
|
+
__typename?: 'ObservationOccurrence';
|
14743
|
+
type?: OccurrenceTypes | null;
|
14744
|
+
confidence?: number | null;
|
14745
|
+
startTime?: any | null;
|
14746
|
+
endTime?: any | null;
|
14747
|
+
pageIndex?: number | null;
|
14748
|
+
boundingBox?: {
|
14749
|
+
__typename?: 'BoundingBox';
|
14750
|
+
left?: number | null;
|
14751
|
+
top?: number | null;
|
14752
|
+
width?: number | null;
|
14753
|
+
height?: number | null;
|
14754
|
+
} | null;
|
14755
|
+
} | null> | null;
|
14756
|
+
} | null> | null;
|
14148
14757
|
} | null;
|
14149
14758
|
};
|
14150
14759
|
export type ClearConversationMutationVariables = Exact<{
|
@@ -15391,6 +16000,8 @@ export type GetConversationQuery = {
|
|
15391
16000
|
} | null;
|
15392
16001
|
filter?: {
|
15393
16002
|
__typename?: 'ContentCriteria';
|
16003
|
+
inLast?: any | null;
|
16004
|
+
createdInLast?: any | null;
|
15394
16005
|
types?: Array<ContentTypes> | null;
|
15395
16006
|
fileTypes?: Array<FileTypes | null> | null;
|
15396
16007
|
dateRange?: {
|
@@ -15479,6 +16090,8 @@ export type GetConversationQuery = {
|
|
15479
16090
|
} | null;
|
15480
16091
|
augmentedFilter?: {
|
15481
16092
|
__typename?: 'ContentCriteria';
|
16093
|
+
inLast?: any | null;
|
16094
|
+
createdInLast?: any | null;
|
15482
16095
|
types?: Array<ContentTypes> | null;
|
15483
16096
|
fileTypes?: Array<FileTypes | null> | null;
|
15484
16097
|
dateRange?: {
|
@@ -16078,6 +16691,39 @@ export type PublishConversationMutation = {
|
|
16078
16691
|
id: string;
|
16079
16692
|
name: string;
|
16080
16693
|
} | null> | null;
|
16694
|
+
observations?: Array<{
|
16695
|
+
__typename?: 'Observation';
|
16696
|
+
id: string;
|
16697
|
+
type: ObservableTypes;
|
16698
|
+
relatedType?: ObservableTypes | null;
|
16699
|
+
relation?: string | null;
|
16700
|
+
state: EntityState;
|
16701
|
+
observable: {
|
16702
|
+
__typename?: 'NamedEntityReference';
|
16703
|
+
id: string;
|
16704
|
+
name?: string | null;
|
16705
|
+
};
|
16706
|
+
related?: {
|
16707
|
+
__typename?: 'NamedEntityReference';
|
16708
|
+
id: string;
|
16709
|
+
name?: string | null;
|
16710
|
+
} | null;
|
16711
|
+
occurrences?: Array<{
|
16712
|
+
__typename?: 'ObservationOccurrence';
|
16713
|
+
type?: OccurrenceTypes | null;
|
16714
|
+
confidence?: number | null;
|
16715
|
+
startTime?: any | null;
|
16716
|
+
endTime?: any | null;
|
16717
|
+
pageIndex?: number | null;
|
16718
|
+
boundingBox?: {
|
16719
|
+
__typename?: 'BoundingBox';
|
16720
|
+
left?: number | null;
|
16721
|
+
top?: number | null;
|
16722
|
+
width?: number | null;
|
16723
|
+
height?: number | null;
|
16724
|
+
} | null;
|
16725
|
+
} | null> | null;
|
16726
|
+
} | null> | null;
|
16081
16727
|
} | null;
|
16082
16728
|
};
|
16083
16729
|
export type QueryConversationsQueryVariables = Exact<{
|
@@ -16236,6 +16882,8 @@ export type QueryConversationsQuery = {
|
|
16236
16882
|
} | null;
|
16237
16883
|
filter?: {
|
16238
16884
|
__typename?: 'ContentCriteria';
|
16885
|
+
inLast?: any | null;
|
16886
|
+
createdInLast?: any | null;
|
16239
16887
|
types?: Array<ContentTypes> | null;
|
16240
16888
|
fileTypes?: Array<FileTypes | null> | null;
|
16241
16889
|
dateRange?: {
|
@@ -16324,6 +16972,8 @@ export type QueryConversationsQuery = {
|
|
16324
16972
|
} | null;
|
16325
16973
|
augmentedFilter?: {
|
16326
16974
|
__typename?: 'ContentCriteria';
|
16975
|
+
inLast?: any | null;
|
16976
|
+
createdInLast?: any | null;
|
16327
16977
|
types?: Array<ContentTypes> | null;
|
16328
16978
|
fileTypes?: Array<FileTypes | null> | null;
|
16329
16979
|
dateRange?: {
|
@@ -17323,6 +17973,7 @@ export type GetFeedQuery = {
|
|
17323
17973
|
oneDrive?: {
|
17324
17974
|
__typename?: 'OneDriveFeedProperties';
|
17325
17975
|
folderId?: string | null;
|
17976
|
+
files?: Array<string | null> | null;
|
17326
17977
|
clientId: string;
|
17327
17978
|
clientSecret: string;
|
17328
17979
|
refreshToken: string;
|
@@ -17330,10 +17981,27 @@ export type GetFeedQuery = {
|
|
17330
17981
|
googleDrive?: {
|
17331
17982
|
__typename?: 'GoogleDriveFeedProperties';
|
17332
17983
|
folderId?: string | null;
|
17984
|
+
files?: Array<string | null> | null;
|
17333
17985
|
refreshToken: string;
|
17334
17986
|
clientId: string;
|
17335
17987
|
clientSecret: string;
|
17336
17988
|
} | null;
|
17989
|
+
dropbox?: {
|
17990
|
+
__typename?: 'DropboxFeedProperties';
|
17991
|
+
path?: string | null;
|
17992
|
+
appKey: string;
|
17993
|
+
appSecret: string;
|
17994
|
+
refreshToken: string;
|
17995
|
+
redirectUri: string;
|
17996
|
+
} | null;
|
17997
|
+
box?: {
|
17998
|
+
__typename?: 'BoxFeedProperties';
|
17999
|
+
folderId?: string | null;
|
18000
|
+
clientId: string;
|
18001
|
+
clientSecret: string;
|
18002
|
+
refreshToken: string;
|
18003
|
+
redirectUri: string;
|
18004
|
+
} | null;
|
17337
18005
|
github?: {
|
17338
18006
|
__typename?: 'GitHubFeedProperties';
|
17339
18007
|
uri?: any | null;
|
@@ -17389,6 +18057,15 @@ export type GetFeedQuery = {
|
|
17389
18057
|
refreshToken?: string | null;
|
17390
18058
|
personalAccessToken?: string | null;
|
17391
18059
|
} | null;
|
18060
|
+
intercom?: {
|
18061
|
+
__typename?: 'IntercomTicketsFeedProperties';
|
18062
|
+
accessToken: string;
|
18063
|
+
} | null;
|
18064
|
+
zendesk?: {
|
18065
|
+
__typename?: 'ZendeskTicketsFeedProperties';
|
18066
|
+
subdomain: string;
|
18067
|
+
accessToken: string;
|
18068
|
+
} | null;
|
17392
18069
|
} | null;
|
17393
18070
|
rss?: {
|
17394
18071
|
__typename?: 'RSSFeedProperties';
|
@@ -17421,6 +18098,17 @@ export type GetFeedQuery = {
|
|
17421
18098
|
identifiers: Array<string>;
|
17422
18099
|
type: NotionTypes;
|
17423
18100
|
} | null;
|
18101
|
+
intercom?: {
|
18102
|
+
__typename?: 'IntercomFeedProperties';
|
18103
|
+
readLimit?: number | null;
|
18104
|
+
accessToken: string;
|
18105
|
+
} | null;
|
18106
|
+
zendesk?: {
|
18107
|
+
__typename?: 'ZendeskFeedProperties';
|
18108
|
+
readLimit?: number | null;
|
18109
|
+
subdomain: string;
|
18110
|
+
accessToken: string;
|
18111
|
+
} | null;
|
17424
18112
|
youtube?: {
|
17425
18113
|
__typename?: 'YouTubeFeedProperties';
|
17426
18114
|
readLimit?: number | null;
|
@@ -17560,6 +18248,7 @@ export type QueryFeedsQuery = {
|
|
17560
18248
|
oneDrive?: {
|
17561
18249
|
__typename?: 'OneDriveFeedProperties';
|
17562
18250
|
folderId?: string | null;
|
18251
|
+
files?: Array<string | null> | null;
|
17563
18252
|
clientId: string;
|
17564
18253
|
clientSecret: string;
|
17565
18254
|
refreshToken: string;
|
@@ -17567,9 +18256,26 @@ export type QueryFeedsQuery = {
|
|
17567
18256
|
googleDrive?: {
|
17568
18257
|
__typename?: 'GoogleDriveFeedProperties';
|
17569
18258
|
folderId?: string | null;
|
18259
|
+
files?: Array<string | null> | null;
|
18260
|
+
refreshToken: string;
|
18261
|
+
clientId: string;
|
18262
|
+
clientSecret: string;
|
18263
|
+
} | null;
|
18264
|
+
dropbox?: {
|
18265
|
+
__typename?: 'DropboxFeedProperties';
|
18266
|
+
path?: string | null;
|
18267
|
+
appKey: string;
|
18268
|
+
appSecret: string;
|
17570
18269
|
refreshToken: string;
|
18270
|
+
redirectUri: string;
|
18271
|
+
} | null;
|
18272
|
+
box?: {
|
18273
|
+
__typename?: 'BoxFeedProperties';
|
18274
|
+
folderId?: string | null;
|
17571
18275
|
clientId: string;
|
17572
18276
|
clientSecret: string;
|
18277
|
+
refreshToken: string;
|
18278
|
+
redirectUri: string;
|
17573
18279
|
} | null;
|
17574
18280
|
github?: {
|
17575
18281
|
__typename?: 'GitHubFeedProperties';
|
@@ -17626,6 +18332,15 @@ export type QueryFeedsQuery = {
|
|
17626
18332
|
refreshToken?: string | null;
|
17627
18333
|
personalAccessToken?: string | null;
|
17628
18334
|
} | null;
|
18335
|
+
intercom?: {
|
18336
|
+
__typename?: 'IntercomTicketsFeedProperties';
|
18337
|
+
accessToken: string;
|
18338
|
+
} | null;
|
18339
|
+
zendesk?: {
|
18340
|
+
__typename?: 'ZendeskTicketsFeedProperties';
|
18341
|
+
subdomain: string;
|
18342
|
+
accessToken: string;
|
18343
|
+
} | null;
|
17629
18344
|
} | null;
|
17630
18345
|
rss?: {
|
17631
18346
|
__typename?: 'RSSFeedProperties';
|
@@ -17658,6 +18373,17 @@ export type QueryFeedsQuery = {
|
|
17658
18373
|
identifiers: Array<string>;
|
17659
18374
|
type: NotionTypes;
|
17660
18375
|
} | null;
|
18376
|
+
intercom?: {
|
18377
|
+
__typename?: 'IntercomFeedProperties';
|
18378
|
+
readLimit?: number | null;
|
18379
|
+
accessToken: string;
|
18380
|
+
} | null;
|
18381
|
+
zendesk?: {
|
18382
|
+
__typename?: 'ZendeskFeedProperties';
|
18383
|
+
readLimit?: number | null;
|
18384
|
+
subdomain: string;
|
18385
|
+
accessToken: string;
|
18386
|
+
} | null;
|
17661
18387
|
youtube?: {
|
17662
18388
|
__typename?: 'YouTubeFeedProperties';
|
17663
18389
|
readLimit?: number | null;
|