graphlit-client 1.0.20240426002 → 1.0.20240505002
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/dist/client.d.ts +86 -0
- package/dist/client.js +436 -21
- package/dist/generated/graphql-documents.d.ts +22 -3
- package/dist/generated/graphql-documents.js +805 -194
- package/dist/generated/graphql-types.d.ts +1398 -193
- package/dist/generated/graphql-types.js +8 -0
- package/package.json +1 -1
@@ -428,6 +428,8 @@ export type AudioMetadata = {
|
|
428
428
|
channels?: Maybe<Scalars['Int']['output']>;
|
429
429
|
/** The episode copyright, if podcast episode. */
|
430
430
|
copyright?: Maybe<Scalars['String']['output']>;
|
431
|
+
/** The audio description. */
|
432
|
+
description?: Maybe<Scalars['String']['output']>;
|
431
433
|
/** The audio duration. */
|
432
434
|
duration?: Maybe<Scalars['String']['output']>;
|
433
435
|
/** The episode name, if podcast episode. */
|
@@ -451,6 +453,47 @@ export type AudioMetadata = {
|
|
451
453
|
/** The audio title. */
|
452
454
|
title?: Maybe<Scalars['String']['output']>;
|
453
455
|
};
|
456
|
+
/** Represents audio metadata. */
|
457
|
+
export type AudioMetadataInput = {
|
458
|
+
/** The episode author, if podcast episode. */
|
459
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
460
|
+
/** The audio bitrate. */
|
461
|
+
bitrate?: InputMaybe<Scalars['Int']['input']>;
|
462
|
+
/** The audio bits/sample. */
|
463
|
+
bitsPerSample?: InputMaybe<Scalars['Int']['input']>;
|
464
|
+
/** The audio channels. */
|
465
|
+
channels?: InputMaybe<Scalars['Int']['input']>;
|
466
|
+
/** The episode copyright, if podcast episode. */
|
467
|
+
copyright?: InputMaybe<Scalars['String']['input']>;
|
468
|
+
/** The metadata creation date. */
|
469
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
470
|
+
/** The audio duration. */
|
471
|
+
duration?: InputMaybe<Scalars['String']['input']>;
|
472
|
+
/** The episode name, if podcast episode. */
|
473
|
+
episode?: InputMaybe<Scalars['String']['input']>;
|
474
|
+
/** The episode type, if podcast episode. */
|
475
|
+
episodeType?: InputMaybe<Scalars['String']['input']>;
|
476
|
+
/** The audio genre. */
|
477
|
+
genre?: InputMaybe<Scalars['String']['input']>;
|
478
|
+
/** The episode keywords, if podcast episode. */
|
479
|
+
keywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
480
|
+
/** The audio language. */
|
481
|
+
language?: InputMaybe<Scalars['String']['input']>;
|
482
|
+
/** The metadata geo-location. */
|
483
|
+
location?: InputMaybe<PointInput>;
|
484
|
+
/** The metadata modified date. */
|
485
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
486
|
+
/** The episode publisher, if podcast episode. */
|
487
|
+
publisher?: InputMaybe<Scalars['String']['input']>;
|
488
|
+
/** The audio sample rate. */
|
489
|
+
sampleRate?: InputMaybe<Scalars['Int']['input']>;
|
490
|
+
/** The episode season, if podcast episode. */
|
491
|
+
season?: InputMaybe<Scalars['String']['input']>;
|
492
|
+
/** The episode series name, if podcast episode. */
|
493
|
+
series?: InputMaybe<Scalars['String']['input']>;
|
494
|
+
/** The audio title. */
|
495
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
496
|
+
};
|
454
497
|
/** Represents Azure blob feed properties. */
|
455
498
|
export type AzureBlobFeedProperties = {
|
456
499
|
__typename?: 'AzureBlobFeedProperties';
|
@@ -1133,7 +1176,7 @@ export type ContentFacet = {
|
|
1133
1176
|
/** The facet value. */
|
1134
1177
|
value?: Maybe<Scalars['String']['output']>;
|
1135
1178
|
};
|
1136
|
-
/** Represents the configuration for content facets. */
|
1179
|
+
/** Represents the configuration for retrieving the content facets. */
|
1137
1180
|
export type ContentFacetInput = {
|
1138
1181
|
/** The content facet type. */
|
1139
1182
|
facet?: InputMaybe<ContentFacetTypes>;
|
@@ -1262,6 +1305,11 @@ export type ContentFilter = {
|
|
1262
1305
|
/** Filter by workflows. */
|
1263
1306
|
workflows?: InputMaybe<Array<EntityReferenceFilter>>;
|
1264
1307
|
};
|
1308
|
+
/** Represents the configuration for retrieving the knowledge graph. */
|
1309
|
+
export type ContentGraphInput = {
|
1310
|
+
/** The observable types. */
|
1311
|
+
types?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
|
1312
|
+
};
|
1265
1313
|
/** Represents content. */
|
1266
1314
|
export type ContentInput = {
|
1267
1315
|
/** The content description. */
|
@@ -1327,6 +1375,8 @@ export type ContentResults = {
|
|
1327
1375
|
__typename?: 'ContentResults';
|
1328
1376
|
/** The content facets. */
|
1329
1377
|
facets?: Maybe<Array<Maybe<ContentFacet>>>;
|
1378
|
+
/** The knowledge graph generated from the content results. */
|
1379
|
+
graph?: Maybe<Graph>;
|
1330
1380
|
/** The content H3 facets. */
|
1331
1381
|
h3?: Maybe<H3Facets>;
|
1332
1382
|
/** The content results. */
|
@@ -1353,12 +1403,34 @@ export declare enum ContentTypes {
|
|
1353
1403
|
}
|
1354
1404
|
/** Represents content. */
|
1355
1405
|
export type ContentUpdateInput = {
|
1406
|
+
/** The content audio metadata. */
|
1407
|
+
audio?: InputMaybe<AudioMetadataInput>;
|
1356
1408
|
/** The content description. */
|
1357
1409
|
description?: InputMaybe<Scalars['String']['input']>;
|
1410
|
+
/** The content document metadata. */
|
1411
|
+
document?: InputMaybe<DocumentMetadataInput>;
|
1412
|
+
/** The content drawing metadata. */
|
1413
|
+
drawing?: InputMaybe<DrawingMetadataInput>;
|
1414
|
+
/** The content email metadata. */
|
1415
|
+
email?: InputMaybe<EmailMetadataInput>;
|
1416
|
+
/** The content geometry metadata. */
|
1417
|
+
geometry?: InputMaybe<GeometryMetadataInput>;
|
1358
1418
|
/** The ID of the content to update. */
|
1359
1419
|
id: Scalars['ID']['input'];
|
1420
|
+
/** The content image metadata. */
|
1421
|
+
image?: InputMaybe<ImageMetadataInput>;
|
1422
|
+
/** The content issue metadata. */
|
1423
|
+
issue?: InputMaybe<IssueMetadataInput>;
|
1360
1424
|
/** The name of the content. */
|
1361
1425
|
name?: InputMaybe<Scalars['String']['input']>;
|
1426
|
+
/** The content package metadata. */
|
1427
|
+
package?: InputMaybe<PackageMetadataInput>;
|
1428
|
+
/** The content point cloud metadata. */
|
1429
|
+
pointCloud?: InputMaybe<PointCloudMetadataInput>;
|
1430
|
+
/** The content shape metadata. */
|
1431
|
+
shape?: InputMaybe<ShapeMetadataInput>;
|
1432
|
+
/** The content video metadata. */
|
1433
|
+
video?: InputMaybe<VideoMetadataInput>;
|
1362
1434
|
};
|
1363
1435
|
/** Represents a conversation. */
|
1364
1436
|
export type Conversation = {
|
@@ -1753,6 +1825,57 @@ export type DocumentMetadata = {
|
|
1753
1825
|
/** The document worksheet count. */
|
1754
1826
|
worksheetCount?: Maybe<Scalars['Int']['output']>;
|
1755
1827
|
};
|
1828
|
+
/** Represents document metadata. */
|
1829
|
+
export type DocumentMetadataInput = {
|
1830
|
+
/** The document author. */
|
1831
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
1832
|
+
/** The document character count. */
|
1833
|
+
characterCount?: InputMaybe<Scalars['Int']['input']>;
|
1834
|
+
/** The document comments. */
|
1835
|
+
comments?: InputMaybe<Scalars['String']['input']>;
|
1836
|
+
/** The metadata creation date. */
|
1837
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
1838
|
+
/** The document description. */
|
1839
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
1840
|
+
/** Whether the document has a digital signature. */
|
1841
|
+
hasDigitalSignature?: InputMaybe<Scalars['Boolean']['input']>;
|
1842
|
+
/** The document identifier. */
|
1843
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
1844
|
+
/** Whether the document is encrypted or not. */
|
1845
|
+
isEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
1846
|
+
/** The document keywords. */
|
1847
|
+
keywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1848
|
+
/** The document line count. */
|
1849
|
+
lineCount?: InputMaybe<Scalars['Int']['input']>;
|
1850
|
+
/** The document hyperlinks. */
|
1851
|
+
links?: InputMaybe<Array<InputMaybe<Scalars['URL']['input']>>>;
|
1852
|
+
/** The metadata geo-location. */
|
1853
|
+
location?: InputMaybe<PointInput>;
|
1854
|
+
/** The metadata modified date. */
|
1855
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
1856
|
+
/** The document page count. */
|
1857
|
+
pageCount?: InputMaybe<Scalars['Int']['input']>;
|
1858
|
+
/** The document paragraph count. */
|
1859
|
+
paragraphCount?: InputMaybe<Scalars['Int']['input']>;
|
1860
|
+
/** The document publisher. */
|
1861
|
+
publisher?: InputMaybe<Scalars['String']['input']>;
|
1862
|
+
/** The document slide count. */
|
1863
|
+
slideCount?: InputMaybe<Scalars['Int']['input']>;
|
1864
|
+
/** The document software. */
|
1865
|
+
software?: InputMaybe<Scalars['String']['input']>;
|
1866
|
+
/** The document subject. */
|
1867
|
+
subject?: InputMaybe<Scalars['String']['input']>;
|
1868
|
+
/** The document summary. */
|
1869
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
1870
|
+
/** The document title. */
|
1871
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
1872
|
+
/** The document total editing time. */
|
1873
|
+
totalEditingTime?: InputMaybe<Scalars['String']['input']>;
|
1874
|
+
/** The document word count. */
|
1875
|
+
wordCount?: InputMaybe<Scalars['Int']['input']>;
|
1876
|
+
/** The document worksheet count. */
|
1877
|
+
worksheetCount?: InputMaybe<Scalars['Int']['input']>;
|
1878
|
+
};
|
1756
1879
|
/** Represents the document preparation properties. */
|
1757
1880
|
export type DocumentPreparationProperties = {
|
1758
1881
|
__typename?: 'DocumentPreparationProperties';
|
@@ -1804,6 +1927,27 @@ export type DrawingMetadata = {
|
|
1804
1927
|
/** The drawing Y origin. */
|
1805
1928
|
y?: Maybe<Scalars['Float']['output']>;
|
1806
1929
|
};
|
1930
|
+
/** Represents drawing metadata. */
|
1931
|
+
export type DrawingMetadataInput = {
|
1932
|
+
/** The metadata creation date. */
|
1933
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
1934
|
+
/** The drawing depth. */
|
1935
|
+
depth?: InputMaybe<Scalars['Float']['input']>;
|
1936
|
+
/** The drawing height. */
|
1937
|
+
height?: InputMaybe<Scalars['Float']['input']>;
|
1938
|
+
/** The metadata geo-location. */
|
1939
|
+
location?: InputMaybe<PointInput>;
|
1940
|
+
/** The metadata modified date. */
|
1941
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
1942
|
+
/** The drawing unit type. */
|
1943
|
+
unitType?: InputMaybe<UnitTypes>;
|
1944
|
+
/** The drawing width. */
|
1945
|
+
width?: InputMaybe<Scalars['Float']['input']>;
|
1946
|
+
/** The drawing X origin. */
|
1947
|
+
x?: InputMaybe<Scalars['Float']['input']>;
|
1948
|
+
/** The drawing Y origin. */
|
1949
|
+
y?: InputMaybe<Scalars['Float']['input']>;
|
1950
|
+
};
|
1807
1951
|
/** ElevenLabs models */
|
1808
1952
|
export declare enum ElevenLabsModels {
|
1809
1953
|
/** Eleven English v1 */
|
@@ -1903,6 +2047,29 @@ export type EmailMetadata = {
|
|
1903
2047
|
/** The to recipients of the email. */
|
1904
2048
|
to?: Maybe<Array<Maybe<PersonReference>>>;
|
1905
2049
|
};
|
2050
|
+
/** Represents email metadata. */
|
2051
|
+
export type EmailMetadataInput = {
|
2052
|
+
/** The metadata creation date. */
|
2053
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2054
|
+
/** The email identifier. */
|
2055
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
2056
|
+
/** The email importance. */
|
2057
|
+
importance?: InputMaybe<MailImportance>;
|
2058
|
+
/** The email labels. */
|
2059
|
+
labels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
2060
|
+
/** The email hyperlinks. */
|
2061
|
+
links?: InputMaybe<Array<InputMaybe<Scalars['URL']['input']>>>;
|
2062
|
+
/** The metadata geo-location. */
|
2063
|
+
location?: InputMaybe<PointInput>;
|
2064
|
+
/** The metadata modified date. */
|
2065
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2066
|
+
/** The email priority. */
|
2067
|
+
priority?: InputMaybe<MailPriority>;
|
2068
|
+
/** The email sensitivity. */
|
2069
|
+
sensitivity?: InputMaybe<MailSensitivity>;
|
2070
|
+
/** The email subject. */
|
2071
|
+
subject?: InputMaybe<Scalars['String']['input']>;
|
2072
|
+
};
|
1906
2073
|
/** Represents the email preparation properties. */
|
1907
2074
|
export type EmailPreparationProperties = {
|
1908
2075
|
__typename?: 'EmailPreparationProperties';
|
@@ -2434,6 +2601,8 @@ export type Feed = {
|
|
2434
2601
|
lastPostDate?: Maybe<Scalars['DateTime']['output']>;
|
2435
2602
|
/** The date the feed was last read. */
|
2436
2603
|
lastReadDate?: Maybe<Scalars['DateTime']['output']>;
|
2604
|
+
/** The Microsoft Teams feed properties. */
|
2605
|
+
microsoftTeams?: Maybe<MicrosoftTeamsFeedProperties>;
|
2437
2606
|
/** The modified date of the feed. */
|
2438
2607
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
2439
2608
|
/** The name of the feed. */
|
@@ -2522,6 +2691,8 @@ export type FeedInput = {
|
|
2522
2691
|
email?: InputMaybe<EmailFeedPropertiesInput>;
|
2523
2692
|
/** The issue feed properties. */
|
2524
2693
|
issue?: InputMaybe<IssueFeedPropertiesInput>;
|
2694
|
+
/** The Microsoft Teams feed properties. */
|
2695
|
+
microsoftTeams?: InputMaybe<MicrosoftTeamsFeedPropertiesInput>;
|
2525
2696
|
/** The name of the feed. */
|
2526
2697
|
name: Scalars['String']['input'];
|
2527
2698
|
/** The Notion feed properties. */
|
@@ -2608,6 +2779,8 @@ export declare enum FeedTypes {
|
|
2608
2779
|
Email = "EMAIL",
|
2609
2780
|
/** Issue feed */
|
2610
2781
|
Issue = "ISSUE",
|
2782
|
+
/** Microsoft Teams channel feed */
|
2783
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
2611
2784
|
/** Notion feed */
|
2612
2785
|
Notion = "NOTION",
|
2613
2786
|
/** Reddit feed */
|
@@ -2635,6 +2808,8 @@ export type FeedUpdateInput = {
|
|
2635
2808
|
id: Scalars['ID']['input'];
|
2636
2809
|
/** The issue feed properties. */
|
2637
2810
|
issue?: InputMaybe<IssueFeedPropertiesUpdateInput>;
|
2811
|
+
/** The Microsoft Teams feed properties. */
|
2812
|
+
microsoftTeams?: InputMaybe<MicrosoftTeamsFeedPropertiesUpdateInput>;
|
2638
2813
|
/** The name of the feed. */
|
2639
2814
|
name?: InputMaybe<Scalars['String']['input']>;
|
2640
2815
|
/** The Notion feed properties. */
|
@@ -2741,6 +2916,19 @@ export type GeometryMetadata = {
|
|
2741
2916
|
/** The geometry vertex count. */
|
2742
2917
|
vertexCount?: Maybe<Scalars['Long']['output']>;
|
2743
2918
|
};
|
2919
|
+
/** Represents geometry metadata. */
|
2920
|
+
export type GeometryMetadataInput = {
|
2921
|
+
/** The metadata creation date. */
|
2922
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2923
|
+
/** The metadata geo-location. */
|
2924
|
+
location?: InputMaybe<PointInput>;
|
2925
|
+
/** The metadata modified date. */
|
2926
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
2927
|
+
/** The geometry triangle count. */
|
2928
|
+
triangleCount?: InputMaybe<Scalars['Long']['input']>;
|
2929
|
+
/** The geometry vertex count. */
|
2930
|
+
vertexCount?: InputMaybe<Scalars['Long']['input']>;
|
2931
|
+
};
|
2744
2932
|
/** Represents GitHub Issues feed properties. */
|
2745
2933
|
export type GitHubIssuesFeedProperties = {
|
2746
2934
|
__typename?: 'GitHubIssuesFeedProperties';
|
@@ -2853,6 +3041,34 @@ export type GoogleFeedPropertiesUpdateInput = {
|
|
2853
3041
|
/** Google Cloud storage container prefix. */
|
2854
3042
|
prefix?: InputMaybe<Scalars['String']['input']>;
|
2855
3043
|
};
|
3044
|
+
/** Represents a knowledge graph. */
|
3045
|
+
export type Graph = {
|
3046
|
+
__typename?: 'Graph';
|
3047
|
+
/** The knowledge graph edges. */
|
3048
|
+
edges?: Maybe<Array<Maybe<GraphEdge>>>;
|
3049
|
+
/** The knowledge graph nodes. */
|
3050
|
+
nodes?: Maybe<Array<Maybe<GraphNode>>>;
|
3051
|
+
};
|
3052
|
+
/** Represents a knowledge graph edge. */
|
3053
|
+
export type GraphEdge = {
|
3054
|
+
__typename?: 'GraphEdge';
|
3055
|
+
/** The source node identifier of the knowledge graph edge. */
|
3056
|
+
from: Scalars['ID']['output'];
|
3057
|
+
/** The destination node identifier of the knowledge graph edge. */
|
3058
|
+
to: Scalars['ID']['output'];
|
3059
|
+
};
|
3060
|
+
/** Represents a knowledge graph node. */
|
3061
|
+
export type GraphNode = {
|
3062
|
+
__typename?: 'GraphNode';
|
3063
|
+
/** The knowledge graph node identifier. */
|
3064
|
+
id: Scalars['ID']['output'];
|
3065
|
+
/** The knowledge graph node metadata. */
|
3066
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
3067
|
+
/** The knowledge graph node name. */
|
3068
|
+
name: Scalars['String']['output'];
|
3069
|
+
/** The knowledge graph node type. */
|
3070
|
+
type: EntityTypes;
|
3071
|
+
};
|
2856
3072
|
/** Represents Groq model properties. */
|
2857
3073
|
export type GroqModelProperties = {
|
2858
3074
|
__typename?: 'GroqModelProperties';
|
@@ -3075,6 +3291,59 @@ export type ImageMetadata = {
|
|
3075
3291
|
/** The image width. */
|
3076
3292
|
width?: Maybe<Scalars['Int']['output']>;
|
3077
3293
|
};
|
3294
|
+
/** Represents image metadata. */
|
3295
|
+
export type ImageMetadataInput = {
|
3296
|
+
/** The image bits/component. */
|
3297
|
+
bitsPerComponent?: InputMaybe<Scalars['Int']['input']>;
|
3298
|
+
/** The image device color space. */
|
3299
|
+
colorSpace?: InputMaybe<Scalars['String']['input']>;
|
3300
|
+
/** The number of image components. */
|
3301
|
+
components?: InputMaybe<Scalars['Int']['input']>;
|
3302
|
+
/** The metadata creation date. */
|
3303
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
3304
|
+
/** The image description. */
|
3305
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
3306
|
+
/** The image device exposure time. */
|
3307
|
+
exposureTime?: InputMaybe<Scalars['String']['input']>;
|
3308
|
+
/** The image device F/number. */
|
3309
|
+
fNumber?: InputMaybe<Scalars['String']['input']>;
|
3310
|
+
/** The image device focal length. */
|
3311
|
+
focalLength?: InputMaybe<Scalars['Float']['input']>;
|
3312
|
+
/** The image device GPS heading. */
|
3313
|
+
heading?: InputMaybe<Scalars['Float']['input']>;
|
3314
|
+
/** The image height. */
|
3315
|
+
height?: InputMaybe<Scalars['Int']['input']>;
|
3316
|
+
/** The image device identifier. */
|
3317
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
3318
|
+
/** The image device ISO rating. */
|
3319
|
+
iso?: InputMaybe<Scalars['String']['input']>;
|
3320
|
+
/** The image device lens. */
|
3321
|
+
lens?: InputMaybe<Scalars['String']['input']>;
|
3322
|
+
/** The image device lens specification. */
|
3323
|
+
lensSpecification?: InputMaybe<Scalars['String']['input']>;
|
3324
|
+
/** The metadata geo-location. */
|
3325
|
+
location?: InputMaybe<PointInput>;
|
3326
|
+
/** The image device make. */
|
3327
|
+
make?: InputMaybe<Scalars['String']['input']>;
|
3328
|
+
/** The image device model. */
|
3329
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
3330
|
+
/** The metadata modified date. */
|
3331
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
3332
|
+
/** The image orientation. */
|
3333
|
+
orientation?: InputMaybe<OrientationTypes>;
|
3334
|
+
/** The image device GPS pitch. */
|
3335
|
+
pitch?: InputMaybe<Scalars['Float']['input']>;
|
3336
|
+
/** The image projection type. */
|
3337
|
+
projectionType?: InputMaybe<ImageProjectionTypes>;
|
3338
|
+
/** The image X resolution. */
|
3339
|
+
resolutionX?: InputMaybe<Scalars['Int']['input']>;
|
3340
|
+
/** The image Y resolution. */
|
3341
|
+
resolutionY?: InputMaybe<Scalars['Int']['input']>;
|
3342
|
+
/** The image device software. */
|
3343
|
+
software?: InputMaybe<Scalars['String']['input']>;
|
3344
|
+
/** The image width. */
|
3345
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
3346
|
+
};
|
3078
3347
|
/** Image projection types */
|
3079
3348
|
export declare enum ImageProjectionTypes {
|
3080
3349
|
/** Cylindrical image projection */
|
@@ -3226,6 +3495,33 @@ export type IssueMetadata = {
|
|
3226
3495
|
/** The issue type, i.e. epic, story, task. */
|
3227
3496
|
type?: Maybe<Scalars['String']['output']>;
|
3228
3497
|
};
|
3498
|
+
/** Represents issue metadata. */
|
3499
|
+
export type IssueMetadataInput = {
|
3500
|
+
/** The metadata creation date. */
|
3501
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
3502
|
+
/** The issue identifier. */
|
3503
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
3504
|
+
/** The issue labels. */
|
3505
|
+
labels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3506
|
+
/** The issue hyperlinks. */
|
3507
|
+
links?: InputMaybe<Array<InputMaybe<Scalars['URL']['input']>>>;
|
3508
|
+
/** The metadata geo-location. */
|
3509
|
+
location?: InputMaybe<PointInput>;
|
3510
|
+
/** The metadata modified date. */
|
3511
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
3512
|
+
/** The issue priority. */
|
3513
|
+
priority?: InputMaybe<Scalars['String']['input']>;
|
3514
|
+
/** The issue project name. */
|
3515
|
+
project?: InputMaybe<Scalars['String']['input']>;
|
3516
|
+
/** The issue status. */
|
3517
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
3518
|
+
/** The issue team name. */
|
3519
|
+
team?: InputMaybe<Scalars['String']['input']>;
|
3520
|
+
/** The issue title. */
|
3521
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
3522
|
+
/** The issue type, i.e. epic, story, task. */
|
3523
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
3524
|
+
};
|
3229
3525
|
/** Represents a label. */
|
3230
3526
|
export type Label = {
|
3231
3527
|
__typename?: 'Label';
|
@@ -3432,6 +3728,8 @@ export declare enum LinkTypes {
|
|
3432
3728
|
Media = "MEDIA",
|
3433
3729
|
/** Medium link */
|
3434
3730
|
Medium = "MEDIUM",
|
3731
|
+
/** Microsoft Teams link */
|
3732
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
3435
3733
|
/** Notion link */
|
3436
3734
|
Notion = "NOTION",
|
3437
3735
|
/** Pandora link */
|
@@ -3602,7 +3900,7 @@ export type MetadataUpdateInput = {
|
|
3602
3900
|
export type MicrosoftEmailFeedProperties = {
|
3603
3901
|
__typename?: 'MicrosoftEmailFeedProperties';
|
3604
3902
|
/** Microsoft refresh token. */
|
3605
|
-
refreshToken
|
3903
|
+
refreshToken: Scalars['String']['output'];
|
3606
3904
|
/** Azure Active Directory tenant identifier. */
|
3607
3905
|
tenantId?: Maybe<Scalars['String']['output']>;
|
3608
3906
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3611,7 +3909,7 @@ export type MicrosoftEmailFeedProperties = {
|
|
3611
3909
|
/** Represents Microsoft Email feed properties. */
|
3612
3910
|
export type MicrosoftEmailFeedPropertiesInput = {
|
3613
3911
|
/** Microsoft refresh token. */
|
3614
|
-
refreshToken
|
3912
|
+
refreshToken: Scalars['String']['input'];
|
3615
3913
|
/** Azure Active Directory tenant identifier. */
|
3616
3914
|
tenantId?: InputMaybe<Scalars['String']['input']>;
|
3617
3915
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3626,6 +3924,52 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
|
3626
3924
|
/** Email listing type, i.e. past or new emails. */
|
3627
3925
|
type?: InputMaybe<EmailListingTypes>;
|
3628
3926
|
};
|
3927
|
+
/** Represents Microsoft Teams feed properties. */
|
3928
|
+
export type MicrosoftTeamsFeedProperties = {
|
3929
|
+
__typename?: 'MicrosoftTeamsFeedProperties';
|
3930
|
+
/** The Microsoft Teams channel identifier. */
|
3931
|
+
channel: Scalars['String']['output'];
|
3932
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
3933
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
3934
|
+
/** The Microsoft Graph refresh token. */
|
3935
|
+
refreshToken: Scalars['String']['output'];
|
3936
|
+
/** The Microsoft Teams team identifier. */
|
3937
|
+
team: Scalars['String']['output'];
|
3938
|
+
/** Azure Active Directory tenant identifier. */
|
3939
|
+
tenantId: Scalars['String']['output'];
|
3940
|
+
/** Feed listing type, i.e. past or new messages. */
|
3941
|
+
type?: Maybe<FeedListingTypes>;
|
3942
|
+
};
|
3943
|
+
/** Represents Microsoft Teams feed properties. */
|
3944
|
+
export type MicrosoftTeamsFeedPropertiesInput = {
|
3945
|
+
/** The Microsoft Teams channel identifier. */
|
3946
|
+
channel: Scalars['String']['input'];
|
3947
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
3948
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
3949
|
+
/** The Microsoft Graph refresh token. */
|
3950
|
+
refreshToken: Scalars['String']['input'];
|
3951
|
+
/** The Microsoft Teams team identifier. */
|
3952
|
+
team: Scalars['String']['input'];
|
3953
|
+
/** Azure Active Directory tenant identifier. */
|
3954
|
+
tenantId: Scalars['String']['input'];
|
3955
|
+
/** Feed listing type, i.e. past or new messages. */
|
3956
|
+
type?: InputMaybe<FeedListingTypes>;
|
3957
|
+
};
|
3958
|
+
/** Represents Microsoft Teams feed properties. */
|
3959
|
+
export type MicrosoftTeamsFeedPropertiesUpdateInput = {
|
3960
|
+
/** The Microsoft Teams channel identifier. */
|
3961
|
+
channel: Scalars['String']['input'];
|
3962
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
3963
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
3964
|
+
/** The Microsoft Graph refresh token. */
|
3965
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3966
|
+
/** The Microsoft Teams team identifier. */
|
3967
|
+
team: Scalars['String']['input'];
|
3968
|
+
/** Azure Active Directory tenant identifier. */
|
3969
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
3970
|
+
/** Feed listing type, i.e. past or new messages. */
|
3971
|
+
type?: InputMaybe<FeedListingTypes>;
|
3972
|
+
};
|
3629
3973
|
/** Represents Mistral model properties. */
|
3630
3974
|
export type MistralModelProperties = {
|
3631
3975
|
__typename?: 'MistralModelProperties';
|
@@ -3806,6 +4150,8 @@ export type Mutation = {
|
|
3806
4150
|
deleteAllRepos?: Maybe<Array<Maybe<Repo>>>;
|
3807
4151
|
/** Bulk deletes software based on the provided filter criteria. */
|
3808
4152
|
deleteAllSoftwares?: Maybe<Array<Maybe<Software>>>;
|
4153
|
+
/** Bulk deletes specifications based on the provided filter criteria. */
|
4154
|
+
deleteAllSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
3809
4155
|
/** Bulk deletes workflows based on the provided filter criteria. */
|
3810
4156
|
deleteAllWorkflows?: Maybe<Array<Maybe<Workflow>>>;
|
3811
4157
|
/** Bulk deletes categories. */
|
@@ -3864,6 +4210,8 @@ export type Mutation = {
|
|
3864
4210
|
deleteSoftwares?: Maybe<Array<Maybe<Software>>>;
|
3865
4211
|
/** Deletes a LLM specification. */
|
3866
4212
|
deleteSpecification?: Maybe<Specification>;
|
4213
|
+
/** Deletes multiple specifications given their IDs. */
|
4214
|
+
deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
3867
4215
|
/** Deletes a content workflow. */
|
3868
4216
|
deleteWorkflow?: Maybe<Workflow>;
|
3869
4217
|
/** Deletes multiple workflows given their IDs. */
|
@@ -4035,67 +4383,91 @@ export type MutationDeleteAlertArgs = {
|
|
4035
4383
|
};
|
4036
4384
|
export type MutationDeleteAlertsArgs = {
|
4037
4385
|
ids: Array<Scalars['ID']['input']>;
|
4386
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4038
4387
|
};
|
4039
4388
|
export type MutationDeleteAllAlertsArgs = {
|
4389
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4040
4390
|
filter?: InputMaybe<AlertFilter>;
|
4391
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4041
4392
|
};
|
4042
4393
|
export type MutationDeleteAllCategoriesArgs = {
|
4043
4394
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4044
4395
|
filter?: InputMaybe<CategoryFilter>;
|
4396
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4045
4397
|
};
|
4046
4398
|
export type MutationDeleteAllCollectionsArgs = {
|
4047
4399
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4048
4400
|
filter?: InputMaybe<CollectionFilter>;
|
4401
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4049
4402
|
};
|
4050
4403
|
export type MutationDeleteAllContentsArgs = {
|
4051
4404
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4052
4405
|
filter?: InputMaybe<ContentFilter>;
|
4406
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4053
4407
|
};
|
4054
4408
|
export type MutationDeleteAllConversationsArgs = {
|
4055
4409
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4056
4410
|
filter?: InputMaybe<ConversationFilter>;
|
4411
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4057
4412
|
};
|
4058
4413
|
export type MutationDeleteAllEventsArgs = {
|
4059
4414
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4060
4415
|
filter?: InputMaybe<EventFilter>;
|
4416
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4061
4417
|
};
|
4062
4418
|
export type MutationDeleteAllFeedsArgs = {
|
4419
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4063
4420
|
filter?: InputMaybe<FeedFilter>;
|
4421
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4064
4422
|
};
|
4065
4423
|
export type MutationDeleteAllLabelsArgs = {
|
4066
4424
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4067
4425
|
filter?: InputMaybe<LabelFilter>;
|
4426
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4068
4427
|
};
|
4069
4428
|
export type MutationDeleteAllOrganizationsArgs = {
|
4070
4429
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4071
4430
|
filter?: InputMaybe<OrganizationFilter>;
|
4431
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4072
4432
|
};
|
4073
4433
|
export type MutationDeleteAllPersonsArgs = {
|
4074
4434
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4075
4435
|
filter?: InputMaybe<PersonFilter>;
|
4436
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4076
4437
|
};
|
4077
4438
|
export type MutationDeleteAllPlacesArgs = {
|
4078
4439
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4079
4440
|
filter?: InputMaybe<PlaceFilter>;
|
4441
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4080
4442
|
};
|
4081
4443
|
export type MutationDeleteAllProductsArgs = {
|
4082
4444
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4083
4445
|
filter?: InputMaybe<ProductFilter>;
|
4446
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4084
4447
|
};
|
4085
4448
|
export type MutationDeleteAllReposArgs = {
|
4086
4449
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4087
4450
|
filter?: InputMaybe<RepoFilter>;
|
4451
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4088
4452
|
};
|
4089
4453
|
export type MutationDeleteAllSoftwaresArgs = {
|
4090
4454
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4091
4455
|
filter?: InputMaybe<SoftwareFilter>;
|
4456
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4457
|
+
};
|
4458
|
+
export type MutationDeleteAllSpecificationsArgs = {
|
4459
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4460
|
+
filter?: InputMaybe<SpecificationFilter>;
|
4461
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4092
4462
|
};
|
4093
4463
|
export type MutationDeleteAllWorkflowsArgs = {
|
4094
4464
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4095
4465
|
filter?: InputMaybe<WorkflowFilter>;
|
4466
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4096
4467
|
};
|
4097
4468
|
export type MutationDeleteCategoriesArgs = {
|
4098
4469
|
ids: Array<Scalars['ID']['input']>;
|
4470
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4099
4471
|
};
|
4100
4472
|
export type MutationDeleteCategoryArgs = {
|
4101
4473
|
id: Scalars['ID']['input'];
|
@@ -4105,36 +4477,42 @@ export type MutationDeleteCollectionArgs = {
|
|
4105
4477
|
};
|
4106
4478
|
export type MutationDeleteCollectionsArgs = {
|
4107
4479
|
ids: Array<Scalars['ID']['input']>;
|
4480
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4108
4481
|
};
|
4109
4482
|
export type MutationDeleteContentArgs = {
|
4110
4483
|
id: Scalars['ID']['input'];
|
4111
4484
|
};
|
4112
4485
|
export type MutationDeleteContentsArgs = {
|
4113
4486
|
ids: Array<Scalars['ID']['input']>;
|
4487
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4114
4488
|
};
|
4115
4489
|
export type MutationDeleteConversationArgs = {
|
4116
4490
|
id: Scalars['ID']['input'];
|
4117
4491
|
};
|
4118
4492
|
export type MutationDeleteConversationsArgs = {
|
4119
4493
|
ids: Array<Scalars['ID']['input']>;
|
4494
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4120
4495
|
};
|
4121
4496
|
export type MutationDeleteEventArgs = {
|
4122
4497
|
id: Scalars['ID']['input'];
|
4123
4498
|
};
|
4124
4499
|
export type MutationDeleteEventsArgs = {
|
4125
4500
|
ids: Array<Scalars['ID']['input']>;
|
4501
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4126
4502
|
};
|
4127
4503
|
export type MutationDeleteFeedArgs = {
|
4128
4504
|
id: Scalars['ID']['input'];
|
4129
4505
|
};
|
4130
4506
|
export type MutationDeleteFeedsArgs = {
|
4131
4507
|
ids: Array<Scalars['ID']['input']>;
|
4508
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4132
4509
|
};
|
4133
4510
|
export type MutationDeleteLabelArgs = {
|
4134
4511
|
id: Scalars['ID']['input'];
|
4135
4512
|
};
|
4136
4513
|
export type MutationDeleteLabelsArgs = {
|
4137
4514
|
ids: Array<Scalars['ID']['input']>;
|
4515
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4138
4516
|
};
|
4139
4517
|
export type MutationDeleteObservationArgs = {
|
4140
4518
|
id: Scalars['ID']['input'];
|
@@ -4144,45 +4522,56 @@ export type MutationDeleteOrganizationArgs = {
|
|
4144
4522
|
};
|
4145
4523
|
export type MutationDeleteOrganizationsArgs = {
|
4146
4524
|
ids: Array<Scalars['ID']['input']>;
|
4525
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4147
4526
|
};
|
4148
4527
|
export type MutationDeletePersonArgs = {
|
4149
4528
|
id: Scalars['ID']['input'];
|
4150
4529
|
};
|
4151
4530
|
export type MutationDeletePersonsArgs = {
|
4152
4531
|
ids: Array<Scalars['ID']['input']>;
|
4532
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4153
4533
|
};
|
4154
4534
|
export type MutationDeletePlaceArgs = {
|
4155
4535
|
id: Scalars['ID']['input'];
|
4156
4536
|
};
|
4157
4537
|
export type MutationDeletePlacesArgs = {
|
4158
4538
|
ids: Array<Scalars['ID']['input']>;
|
4539
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4159
4540
|
};
|
4160
4541
|
export type MutationDeleteProductArgs = {
|
4161
4542
|
id: Scalars['ID']['input'];
|
4162
4543
|
};
|
4163
4544
|
export type MutationDeleteProductsArgs = {
|
4164
4545
|
ids: Array<Scalars['ID']['input']>;
|
4546
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4165
4547
|
};
|
4166
4548
|
export type MutationDeleteRepoArgs = {
|
4167
4549
|
id: Scalars['ID']['input'];
|
4168
4550
|
};
|
4169
4551
|
export type MutationDeleteReposArgs = {
|
4170
4552
|
ids: Array<Scalars['ID']['input']>;
|
4553
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4171
4554
|
};
|
4172
4555
|
export type MutationDeleteSoftwareArgs = {
|
4173
4556
|
id: Scalars['ID']['input'];
|
4174
4557
|
};
|
4175
4558
|
export type MutationDeleteSoftwaresArgs = {
|
4176
4559
|
ids: Array<Scalars['ID']['input']>;
|
4560
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4177
4561
|
};
|
4178
4562
|
export type MutationDeleteSpecificationArgs = {
|
4179
4563
|
id: Scalars['ID']['input'];
|
4180
4564
|
};
|
4565
|
+
export type MutationDeleteSpecificationsArgs = {
|
4566
|
+
ids: Array<Scalars['ID']['input']>;
|
4567
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4568
|
+
};
|
4181
4569
|
export type MutationDeleteWorkflowArgs = {
|
4182
4570
|
id: Scalars['ID']['input'];
|
4183
4571
|
};
|
4184
4572
|
export type MutationDeleteWorkflowsArgs = {
|
4185
4573
|
ids: Array<Scalars['ID']['input']>;
|
4574
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4186
4575
|
};
|
4187
4576
|
export type MutationDisableAlertArgs = {
|
4188
4577
|
id: Scalars['ID']['input'];
|
@@ -4282,6 +4671,7 @@ export type MutationPublishConversationArgs = {
|
|
4282
4671
|
connector: ContentPublishingConnectorInput;
|
4283
4672
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4284
4673
|
id: Scalars['ID']['input'];
|
4674
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4285
4675
|
name?: InputMaybe<Scalars['String']['input']>;
|
4286
4676
|
workflow?: InputMaybe<EntityReferenceInput>;
|
4287
4677
|
};
|
@@ -4943,6 +5333,19 @@ export type PackageMetadata = {
|
|
4943
5333
|
/** Whether the package is encrypted or not. */
|
4944
5334
|
isEncrypted?: Maybe<Scalars['Boolean']['output']>;
|
4945
5335
|
};
|
5336
|
+
/** Represents package metadata. */
|
5337
|
+
export type PackageMetadataInput = {
|
5338
|
+
/** The metadata creation date. */
|
5339
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
5340
|
+
/** The package file count. */
|
5341
|
+
fileCount?: InputMaybe<Scalars['Int']['input']>;
|
5342
|
+
/** The package folder count. */
|
5343
|
+
folderCount?: InputMaybe<Scalars['Int']['input']>;
|
5344
|
+
/** The metadata geo-location. */
|
5345
|
+
location?: InputMaybe<PointInput>;
|
5346
|
+
/** The metadata modified date. */
|
5347
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
5348
|
+
};
|
4946
5349
|
/** Represents a person. */
|
4947
5350
|
export type Person = {
|
4948
5351
|
__typename?: 'Person';
|
@@ -5305,6 +5708,23 @@ export type PointCloudMetadata = {
|
|
5305
5708
|
/** The point cloud device software. */
|
5306
5709
|
software?: Maybe<Scalars['String']['output']>;
|
5307
5710
|
};
|
5711
|
+
/** Represents point cloud metadata. */
|
5712
|
+
export type PointCloudMetadataInput = {
|
5713
|
+
/** The metadata creation date. */
|
5714
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
5715
|
+
/** The point cloud description. */
|
5716
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
5717
|
+
/** The point cloud device identifier. */
|
5718
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
5719
|
+
/** The metadata geo-location. */
|
5720
|
+
location?: InputMaybe<PointInput>;
|
5721
|
+
/** The metadata modified date. */
|
5722
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
5723
|
+
/** The point cloud point count. */
|
5724
|
+
pointCount?: InputMaybe<Scalars['Long']['input']>;
|
5725
|
+
/** The point cloud device software. */
|
5726
|
+
software?: InputMaybe<Scalars['String']['input']>;
|
5727
|
+
};
|
5308
5728
|
/** Filter by geospatial point (i.e. latitude, longitude) and distance radius. */
|
5309
5729
|
export type PointFilter = {
|
5310
5730
|
/** The distance radius (in meters). */
|
@@ -5897,7 +6317,9 @@ export declare enum PromptStrategyTypes {
|
|
5897
6317
|
/** Rewrite prompt */
|
5898
6318
|
Rewrite = "REWRITE",
|
5899
6319
|
/** Rewrite prompt as multiple sub-prompts */
|
5900
|
-
RewriteMultiple = "REWRITE_MULTIPLE"
|
6320
|
+
RewriteMultiple = "REWRITE_MULTIPLE",
|
6321
|
+
/** Rewrite prompt as question requiring detailed response with example */
|
6322
|
+
RewriteQuestion = "REWRITE_QUESTION"
|
5901
6323
|
}
|
5902
6324
|
/** Represents a prompt strategy. */
|
5903
6325
|
export type PromptStrategyUpdateInput = {
|
@@ -5946,12 +6368,20 @@ export type Query = {
|
|
5946
6368
|
conversation?: Maybe<Conversation>;
|
5947
6369
|
/** Retrieves conversations based on the provided filter criteria. */
|
5948
6370
|
conversations?: Maybe<ConversationResults>;
|
6371
|
+
/** Counts alerts based on the provided filter criteria. */
|
6372
|
+
countAlerts?: Maybe<CountResult>;
|
5949
6373
|
/** Counts categories based on the provided filter criteria. */
|
5950
6374
|
countCategories?: Maybe<CountResult>;
|
6375
|
+
/** Counts collections based on the provided filter criteria. */
|
6376
|
+
countCollections?: Maybe<CountResult>;
|
5951
6377
|
/** Counts contents based on the provided filter criteria. */
|
5952
6378
|
countContents?: Maybe<CountResult>;
|
6379
|
+
/** Counts conversations based on the provided filter criteria. */
|
6380
|
+
countConversations?: Maybe<CountResult>;
|
5953
6381
|
/** Counts events based on the provided filter criteria. */
|
5954
6382
|
countEvents?: Maybe<CountResult>;
|
6383
|
+
/** Counts feeds based on the provided filter criteria. */
|
6384
|
+
countFeeds?: Maybe<CountResult>;
|
5955
6385
|
/** Counts labels based on the provided filter criteria. */
|
5956
6386
|
countLabels?: Maybe<CountResult>;
|
5957
6387
|
/** Counts organizations based on the provided filter criteria. */
|
@@ -5965,7 +6395,11 @@ export type Query = {
|
|
5965
6395
|
/** Counts repos based on the provided filter criteria. */
|
5966
6396
|
countRepos?: Maybe<CountResult>;
|
5967
6397
|
/** Counts software based on the provided filter criteria. */
|
5968
|
-
|
6398
|
+
countSoftwares?: Maybe<CountResult>;
|
6399
|
+
/** Counts specifications based on the provided filter criteria. */
|
6400
|
+
countSpecifications?: Maybe<CountResult>;
|
6401
|
+
/** Counts workflows based on the provided filter criteria. */
|
6402
|
+
countWorkflows?: Maybe<CountResult>;
|
5969
6403
|
/** Retrieves correlated project credits. */
|
5970
6404
|
credits?: Maybe<Array<Maybe<ProjectCredits>>>;
|
5971
6405
|
/** Lookup an event given its ID. */
|
@@ -6016,7 +6450,7 @@ export type Query = {
|
|
6016
6450
|
repo?: Maybe<Repo>;
|
6017
6451
|
/** Retrieves code repositories based on the provided filter criteria. */
|
6018
6452
|
repos?: Maybe<RepoResults>;
|
6019
|
-
/** Retrieves SharePoint consent URI. Visit URI to provide administrator consent for
|
6453
|
+
/** Retrieves Microsoft SharePoint consent URI. Visit URI to provide administrator consent for feeds which use the Microsoft Graph API. */
|
6020
6454
|
sharePointConsentUri?: Maybe<UriResult>;
|
6021
6455
|
/** Retrieves available SharePoint document libraries. */
|
6022
6456
|
sharePointLibraries?: Maybe<SharePointLibraryResults>;
|
@@ -6068,6 +6502,7 @@ export type QueryContentsArgs = {
|
|
6068
6502
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6069
6503
|
facets?: InputMaybe<Array<ContentFacetInput>>;
|
6070
6504
|
filter?: InputMaybe<ContentFilter>;
|
6505
|
+
graph?: InputMaybe<ContentGraphInput>;
|
6071
6506
|
};
|
6072
6507
|
export type QueryConversationArgs = {
|
6073
6508
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -6077,18 +6512,34 @@ export type QueryConversationsArgs = {
|
|
6077
6512
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6078
6513
|
filter?: InputMaybe<ConversationFilter>;
|
6079
6514
|
};
|
6515
|
+
export type QueryCountAlertsArgs = {
|
6516
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6517
|
+
filter?: InputMaybe<AlertFilter>;
|
6518
|
+
};
|
6080
6519
|
export type QueryCountCategoriesArgs = {
|
6081
6520
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6082
6521
|
filter?: InputMaybe<CategoryFilter>;
|
6083
6522
|
};
|
6523
|
+
export type QueryCountCollectionsArgs = {
|
6524
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6525
|
+
filter?: InputMaybe<CollectionFilter>;
|
6526
|
+
};
|
6084
6527
|
export type QueryCountContentsArgs = {
|
6085
6528
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6086
6529
|
filter?: InputMaybe<ContentFilter>;
|
6087
6530
|
};
|
6531
|
+
export type QueryCountConversationsArgs = {
|
6532
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6533
|
+
filter?: InputMaybe<ConversationFilter>;
|
6534
|
+
};
|
6088
6535
|
export type QueryCountEventsArgs = {
|
6089
6536
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6090
6537
|
filter?: InputMaybe<EventFilter>;
|
6091
6538
|
};
|
6539
|
+
export type QueryCountFeedsArgs = {
|
6540
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6541
|
+
filter?: InputMaybe<FeedFilter>;
|
6542
|
+
};
|
6092
6543
|
export type QueryCountLabelsArgs = {
|
6093
6544
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6094
6545
|
filter?: InputMaybe<LabelFilter>;
|
@@ -6113,10 +6564,18 @@ export type QueryCountReposArgs = {
|
|
6113
6564
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6114
6565
|
filter?: InputMaybe<RepoFilter>;
|
6115
6566
|
};
|
6116
|
-
export type
|
6567
|
+
export type QueryCountSoftwaresArgs = {
|
6117
6568
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6118
6569
|
filter?: InputMaybe<SoftwareFilter>;
|
6119
6570
|
};
|
6571
|
+
export type QueryCountSpecificationsArgs = {
|
6572
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6573
|
+
filter?: InputMaybe<SpecificationFilter>;
|
6574
|
+
};
|
6575
|
+
export type QueryCountWorkflowsArgs = {
|
6576
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6577
|
+
filter?: InputMaybe<WorkflowFilter>;
|
6578
|
+
};
|
6120
6579
|
export type QueryCreditsArgs = {
|
6121
6580
|
duration: Scalars['TimeSpan']['input'];
|
6122
6581
|
startDate: Scalars['DateTime']['input'];
|
@@ -6538,7 +6997,9 @@ export declare enum RerankingModelServiceTypes {
|
|
6538
6997
|
/** Cohere */
|
6539
6998
|
Cohere = "COHERE",
|
6540
6999
|
/** Jina */
|
6541
|
-
Jina = "JINA"
|
7000
|
+
Jina = "JINA",
|
7001
|
+
/** Pongo */
|
7002
|
+
Pongo = "PONGO"
|
6542
7003
|
}
|
6543
7004
|
/** Represents a reranking strategy. */
|
6544
7005
|
export type RerankingStrategy = {
|
@@ -6624,6 +7085,19 @@ export type ShapeMetadata = {
|
|
6624
7085
|
/** The shape WKT (well-known text) specification. */
|
6625
7086
|
wkt?: Maybe<Scalars['String']['output']>;
|
6626
7087
|
};
|
7088
|
+
/** Represents shape metadata. */
|
7089
|
+
export type ShapeMetadataInput = {
|
7090
|
+
/** The shape attribute count. */
|
7091
|
+
attributeCount?: InputMaybe<Scalars['Int']['input']>;
|
7092
|
+
/** The metadata creation date. */
|
7093
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
7094
|
+
/** The shape feature count. */
|
7095
|
+
featureCount?: InputMaybe<Scalars['Int']['input']>;
|
7096
|
+
/** The metadata geo-location. */
|
7097
|
+
location?: InputMaybe<PointInput>;
|
7098
|
+
/** The metadata modified date. */
|
7099
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
7100
|
+
};
|
6627
7101
|
export declare enum SharePointAuthenticationTypes {
|
6628
7102
|
Application = "APPLICATION",
|
6629
7103
|
User = "USER"
|
@@ -7430,19 +7904,48 @@ export type UriResult = {
|
|
7430
7904
|
/** Represents video metadata. */
|
7431
7905
|
export type VideoMetadata = {
|
7432
7906
|
__typename?: 'VideoMetadata';
|
7907
|
+
/** The episode author, if podcast episode. */
|
7908
|
+
author?: Maybe<Scalars['String']['output']>;
|
7909
|
+
/** The audio description. */
|
7910
|
+
description?: Maybe<Scalars['String']['output']>;
|
7433
7911
|
/** The video duration. */
|
7434
7912
|
duration?: Maybe<Scalars['String']['output']>;
|
7435
7913
|
/** The video height. */
|
7436
7914
|
height?: Maybe<Scalars['Int']['output']>;
|
7915
|
+
/** The episode keywords, if podcast episode. */
|
7916
|
+
keywords?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
7437
7917
|
/** The video device make. */
|
7438
7918
|
make?: Maybe<Scalars['String']['output']>;
|
7439
7919
|
/** The video device model. */
|
7440
7920
|
model?: Maybe<Scalars['String']['output']>;
|
7441
7921
|
/** The video device software. */
|
7442
7922
|
software?: Maybe<Scalars['String']['output']>;
|
7923
|
+
/** The audio title. */
|
7924
|
+
title?: Maybe<Scalars['String']['output']>;
|
7443
7925
|
/** The video width. */
|
7444
7926
|
width?: Maybe<Scalars['Int']['output']>;
|
7445
7927
|
};
|
7928
|
+
/** Represents video metadata. */
|
7929
|
+
export type VideoMetadataInput = {
|
7930
|
+
/** The metadata creation date. */
|
7931
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
7932
|
+
/** The video duration. */
|
7933
|
+
duration?: InputMaybe<Scalars['String']['input']>;
|
7934
|
+
/** The video height. */
|
7935
|
+
height?: InputMaybe<Scalars['Int']['input']>;
|
7936
|
+
/** The metadata geo-location. */
|
7937
|
+
location?: InputMaybe<PointInput>;
|
7938
|
+
/** The video device make. */
|
7939
|
+
make?: InputMaybe<Scalars['String']['input']>;
|
7940
|
+
/** The video device model. */
|
7941
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
7942
|
+
/** The metadata modified date. */
|
7943
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
7944
|
+
/** The video device software. */
|
7945
|
+
software?: InputMaybe<Scalars['String']['input']>;
|
7946
|
+
/** The video width. */
|
7947
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
7948
|
+
};
|
7446
7949
|
/** Represents web feed properties. */
|
7447
7950
|
export type WebFeedProperties = {
|
7448
7951
|
__typename?: 'WebFeedProperties';
|
@@ -7623,6 +8126,16 @@ export declare enum YouTubeTypes {
|
|
7623
8126
|
/** YouTube Videos */
|
7624
8127
|
Videos = "VIDEOS"
|
7625
8128
|
}
|
8129
|
+
export type CountAlertsQueryVariables = Exact<{
|
8130
|
+
filter?: InputMaybe<AlertFilter>;
|
8131
|
+
}>;
|
8132
|
+
export type CountAlertsQuery = {
|
8133
|
+
__typename?: 'Query';
|
8134
|
+
countAlerts?: {
|
8135
|
+
__typename?: 'CountResult';
|
8136
|
+
count?: any | null;
|
8137
|
+
} | null;
|
8138
|
+
};
|
7626
8139
|
export type CreateAlertMutationVariables = Exact<{
|
7627
8140
|
alert: AlertInput;
|
7628
8141
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -7650,6 +8163,7 @@ export type DeleteAlertMutation = {
|
|
7650
8163
|
};
|
7651
8164
|
export type DeleteAlertsMutationVariables = Exact<{
|
7652
8165
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8166
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7653
8167
|
}>;
|
7654
8168
|
export type DeleteAlertsMutation = {
|
7655
8169
|
__typename?: 'Mutation';
|
@@ -7660,7 +8174,9 @@ export type DeleteAlertsMutation = {
|
|
7660
8174
|
} | null> | null;
|
7661
8175
|
};
|
7662
8176
|
export type DeleteAllAlertsMutationVariables = Exact<{
|
7663
|
-
|
8177
|
+
filter?: InputMaybe<AlertFilter>;
|
8178
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8179
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7664
8180
|
}>;
|
7665
8181
|
export type DeleteAllAlertsMutation = {
|
7666
8182
|
__typename?: 'Mutation';
|
@@ -7886,6 +8402,16 @@ export type UpdateAlertMutation = {
|
|
7886
8402
|
type: AlertTypes;
|
7887
8403
|
} | null;
|
7888
8404
|
};
|
8405
|
+
export type CountCategoriesQueryVariables = Exact<{
|
8406
|
+
filter?: InputMaybe<CategoryFilter>;
|
8407
|
+
}>;
|
8408
|
+
export type CountCategoriesQuery = {
|
8409
|
+
__typename?: 'Query';
|
8410
|
+
countCategories?: {
|
8411
|
+
__typename?: 'CountResult';
|
8412
|
+
count?: any | null;
|
8413
|
+
} | null;
|
8414
|
+
};
|
7889
8415
|
export type CreateCategoryMutationVariables = Exact<{
|
7890
8416
|
category: CategoryInput;
|
7891
8417
|
}>;
|
@@ -7898,7 +8424,9 @@ export type CreateCategoryMutation = {
|
|
7898
8424
|
} | null;
|
7899
8425
|
};
|
7900
8426
|
export type DeleteAllCategoriesMutationVariables = Exact<{
|
7901
|
-
filter
|
8427
|
+
filter?: InputMaybe<CategoryFilter>;
|
8428
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8429
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7902
8430
|
}>;
|
7903
8431
|
export type DeleteAllCategoriesMutation = {
|
7904
8432
|
__typename?: 'Mutation';
|
@@ -7910,6 +8438,7 @@ export type DeleteAllCategoriesMutation = {
|
|
7910
8438
|
};
|
7911
8439
|
export type DeleteCategoriesMutationVariables = Exact<{
|
7912
8440
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8441
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7913
8442
|
}>;
|
7914
8443
|
export type DeleteCategoriesMutation = {
|
7915
8444
|
__typename?: 'Mutation';
|
@@ -7944,7 +8473,7 @@ export type GetCategoryQuery = {
|
|
7944
8473
|
} | null;
|
7945
8474
|
};
|
7946
8475
|
export type QueryCategoriesQueryVariables = Exact<{
|
7947
|
-
filter
|
8476
|
+
filter?: InputMaybe<CategoryFilter>;
|
7948
8477
|
}>;
|
7949
8478
|
export type QueryCategoriesQuery = {
|
7950
8479
|
__typename?: 'Query';
|
@@ -7989,6 +8518,16 @@ export type AddContentsToCollectionsMutation = {
|
|
7989
8518
|
} | null> | null;
|
7990
8519
|
} | null> | null;
|
7991
8520
|
};
|
8521
|
+
export type CountCollectionsQueryVariables = Exact<{
|
8522
|
+
filter?: InputMaybe<CollectionFilter>;
|
8523
|
+
}>;
|
8524
|
+
export type CountCollectionsQuery = {
|
8525
|
+
__typename?: 'Query';
|
8526
|
+
countCollections?: {
|
8527
|
+
__typename?: 'CountResult';
|
8528
|
+
count?: any | null;
|
8529
|
+
} | null;
|
8530
|
+
};
|
7992
8531
|
export type CreateCollectionMutationVariables = Exact<{
|
7993
8532
|
collection: CollectionInput;
|
7994
8533
|
}>;
|
@@ -8003,7 +8542,9 @@ export type CreateCollectionMutation = {
|
|
8003
8542
|
} | null;
|
8004
8543
|
};
|
8005
8544
|
export type DeleteAllCollectionsMutationVariables = Exact<{
|
8006
|
-
|
8545
|
+
filter?: InputMaybe<CollectionFilter>;
|
8546
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8547
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8007
8548
|
}>;
|
8008
8549
|
export type DeleteAllCollectionsMutation = {
|
8009
8550
|
__typename?: 'Mutation';
|
@@ -8026,6 +8567,7 @@ export type DeleteCollectionMutation = {
|
|
8026
8567
|
};
|
8027
8568
|
export type DeleteCollectionsMutationVariables = Exact<{
|
8028
8569
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8570
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8029
8571
|
}>;
|
8030
8572
|
export type DeleteCollectionsMutation = {
|
8031
8573
|
__typename?: 'Mutation';
|
@@ -8116,8 +8658,20 @@ export type UpdateCollectionMutation = {
|
|
8116
8658
|
type?: CollectionTypes | null;
|
8117
8659
|
} | null;
|
8118
8660
|
};
|
8661
|
+
export type CountContentsQueryVariables = Exact<{
|
8662
|
+
filter?: InputMaybe<ContentFilter>;
|
8663
|
+
}>;
|
8664
|
+
export type CountContentsQuery = {
|
8665
|
+
__typename?: 'Query';
|
8666
|
+
countContents?: {
|
8667
|
+
__typename?: 'CountResult';
|
8668
|
+
count?: any | null;
|
8669
|
+
} | null;
|
8670
|
+
};
|
8119
8671
|
export type DeleteAllContentsMutationVariables = Exact<{
|
8120
|
-
|
8672
|
+
filter?: InputMaybe<ContentFilter>;
|
8673
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8674
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8121
8675
|
}>;
|
8122
8676
|
export type DeleteAllContentsMutation = {
|
8123
8677
|
__typename?: 'Mutation';
|
@@ -8140,6 +8694,7 @@ export type DeleteContentMutation = {
|
|
8140
8694
|
};
|
8141
8695
|
export type DeleteContentsMutationVariables = Exact<{
|
8142
8696
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8697
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8143
8698
|
}>;
|
8144
8699
|
export type DeleteContentsMutation = {
|
8145
8700
|
__typename?: 'Mutation';
|
@@ -8183,13 +8738,14 @@ export type GetContentQuery = {
|
|
8183
8738
|
__typename?: 'Content';
|
8184
8739
|
id: string;
|
8185
8740
|
name: string;
|
8186
|
-
description?: string | null;
|
8187
8741
|
creationDate: any;
|
8188
8742
|
state: EntityState;
|
8189
8743
|
originalDate?: any | null;
|
8190
8744
|
finishedDate?: any | null;
|
8191
8745
|
workflowDuration?: any | null;
|
8192
8746
|
uri?: any | null;
|
8747
|
+
description?: string | null;
|
8748
|
+
markdown?: string | null;
|
8193
8749
|
type?: ContentTypes | null;
|
8194
8750
|
fileType?: FileTypes | null;
|
8195
8751
|
mimeType?: string | null;
|
@@ -8200,20 +8756,36 @@ export type GetContentQuery = {
|
|
8200
8756
|
textUri?: any | null;
|
8201
8757
|
audioUri?: any | null;
|
8202
8758
|
transcriptUri?: any | null;
|
8203
|
-
markdown?: string | null;
|
8204
8759
|
error?: string | null;
|
8205
8760
|
owner: {
|
8206
8761
|
__typename?: 'Owner';
|
8207
8762
|
id: string;
|
8208
8763
|
};
|
8764
|
+
address?: {
|
8765
|
+
__typename?: 'Address';
|
8766
|
+
streetAddress?: string | null;
|
8767
|
+
city?: string | null;
|
8768
|
+
region?: string | null;
|
8769
|
+
country?: string | null;
|
8770
|
+
postalCode?: string | null;
|
8771
|
+
} | null;
|
8772
|
+
location?: {
|
8773
|
+
__typename?: 'Point';
|
8774
|
+
latitude?: number | null;
|
8775
|
+
longitude?: number | null;
|
8776
|
+
} | null;
|
8209
8777
|
video?: {
|
8210
8778
|
__typename?: 'VideoMetadata';
|
8211
8779
|
width?: number | null;
|
8212
8780
|
height?: number | null;
|
8213
8781
|
duration?: string | null;
|
8214
|
-
software?: string | null;
|
8215
8782
|
make?: string | null;
|
8216
8783
|
model?: string | null;
|
8784
|
+
software?: string | null;
|
8785
|
+
title?: string | null;
|
8786
|
+
description?: string | null;
|
8787
|
+
keywords?: Array<string | null> | null;
|
8788
|
+
author?: string | null;
|
8217
8789
|
} | null;
|
8218
8790
|
audio?: {
|
8219
8791
|
__typename?: 'AudioMetadata';
|
@@ -8228,6 +8800,7 @@ export type GetContentQuery = {
|
|
8228
8800
|
language?: string | null;
|
8229
8801
|
genre?: string | null;
|
8230
8802
|
title?: string | null;
|
8803
|
+
description?: string | null;
|
8231
8804
|
bitrate?: number | null;
|
8232
8805
|
channels?: number | null;
|
8233
8806
|
sampleRate?: number | null;
|
@@ -8238,21 +8811,32 @@ export type GetContentQuery = {
|
|
8238
8811
|
__typename?: 'ImageMetadata';
|
8239
8812
|
width?: number | null;
|
8240
8813
|
height?: number | null;
|
8814
|
+
resolutionX?: number | null;
|
8815
|
+
resolutionY?: number | null;
|
8816
|
+
bitsPerComponent?: number | null;
|
8817
|
+
components?: number | null;
|
8818
|
+
projectionType?: ImageProjectionTypes | null;
|
8819
|
+
orientation?: OrientationTypes | null;
|
8241
8820
|
description?: string | null;
|
8242
|
-
software?: string | null;
|
8243
|
-
identifier?: string | null;
|
8244
8821
|
make?: string | null;
|
8245
8822
|
model?: string | null;
|
8823
|
+
software?: string | null;
|
8824
|
+
lens?: string | null;
|
8825
|
+
focalLength?: number | null;
|
8826
|
+
exposureTime?: string | null;
|
8827
|
+
fNumber?: string | null;
|
8828
|
+
iso?: string | null;
|
8829
|
+
heading?: number | null;
|
8830
|
+
pitch?: number | null;
|
8246
8831
|
} | null;
|
8247
8832
|
document?: {
|
8248
8833
|
__typename?: 'DocumentMetadata';
|
8249
8834
|
title?: string | null;
|
8250
8835
|
subject?: string | null;
|
8836
|
+
summary?: string | null;
|
8251
8837
|
author?: string | null;
|
8252
|
-
software?: string | null;
|
8253
8838
|
publisher?: string | null;
|
8254
8839
|
description?: string | null;
|
8255
|
-
summary?: string | null;
|
8256
8840
|
keywords?: Array<string | null> | null;
|
8257
8841
|
pageCount?: number | null;
|
8258
8842
|
worksheetCount?: number | null;
|
@@ -8260,61 +8844,93 @@ export type GetContentQuery = {
|
|
8260
8844
|
wordCount?: number | null;
|
8261
8845
|
lineCount?: number | null;
|
8262
8846
|
paragraphCount?: number | null;
|
8263
|
-
characterCount?: number | null;
|
8264
8847
|
isEncrypted?: boolean | null;
|
8265
8848
|
hasDigitalSignature?: boolean | null;
|
8266
8849
|
} | null;
|
8267
8850
|
email?: {
|
8268
8851
|
__typename?: 'EmailMetadata';
|
8269
|
-
subject?: string | null;
|
8270
8852
|
identifier?: string | null;
|
8853
|
+
subject?: string | null;
|
8854
|
+
labels?: Array<string | null> | null;
|
8271
8855
|
sensitivity?: MailSensitivity | null;
|
8272
8856
|
priority?: MailPriority | null;
|
8273
8857
|
importance?: MailImportance | null;
|
8274
|
-
labels?: Array<string | null> | null;
|
8275
8858
|
from?: Array<{
|
8276
8859
|
__typename?: 'PersonReference';
|
8277
8860
|
name?: string | null;
|
8278
|
-
familyName?: string | null;
|
8279
|
-
givenName?: string | null;
|
8280
8861
|
email?: string | null;
|
8862
|
+
givenName?: string | null;
|
8863
|
+
familyName?: string | null;
|
8281
8864
|
} | null> | null;
|
8282
8865
|
to?: Array<{
|
8283
8866
|
__typename?: 'PersonReference';
|
8284
8867
|
name?: string | null;
|
8285
|
-
familyName?: string | null;
|
8286
|
-
givenName?: string | null;
|
8287
8868
|
email?: string | null;
|
8869
|
+
givenName?: string | null;
|
8870
|
+
familyName?: string | null;
|
8288
8871
|
} | null> | null;
|
8289
8872
|
cc?: Array<{
|
8290
8873
|
__typename?: 'PersonReference';
|
8291
8874
|
name?: string | null;
|
8292
|
-
familyName?: string | null;
|
8293
|
-
givenName?: string | null;
|
8294
8875
|
email?: string | null;
|
8876
|
+
givenName?: string | null;
|
8877
|
+
familyName?: string | null;
|
8295
8878
|
} | null> | null;
|
8296
8879
|
bcc?: Array<{
|
8297
8880
|
__typename?: 'PersonReference';
|
8298
8881
|
name?: string | null;
|
8299
|
-
familyName?: string | null;
|
8300
|
-
givenName?: string | null;
|
8301
8882
|
email?: string | null;
|
8883
|
+
givenName?: string | null;
|
8884
|
+
familyName?: string | null;
|
8302
8885
|
} | null> | null;
|
8303
8886
|
} | null;
|
8304
8887
|
issue?: {
|
8305
8888
|
__typename?: 'IssueMetadata';
|
8889
|
+
identifier?: string | null;
|
8306
8890
|
title?: string | null;
|
8307
8891
|
project?: string | null;
|
8308
8892
|
team?: string | null;
|
8309
8893
|
status?: string | null;
|
8310
8894
|
priority?: string | null;
|
8311
8895
|
type?: string | null;
|
8312
|
-
identifier?: string | null;
|
8313
8896
|
labels?: Array<string | null> | null;
|
8314
8897
|
} | null;
|
8898
|
+
package?: {
|
8899
|
+
__typename?: 'PackageMetadata';
|
8900
|
+
fileCount?: number | null;
|
8901
|
+
folderCount?: number | null;
|
8902
|
+
isEncrypted?: boolean | null;
|
8903
|
+
} | null;
|
8904
|
+
parent?: {
|
8905
|
+
__typename?: 'Content';
|
8906
|
+
id: string;
|
8907
|
+
name: string;
|
8908
|
+
} | null;
|
8909
|
+
children?: Array<{
|
8910
|
+
__typename?: 'Content';
|
8911
|
+
id: string;
|
8912
|
+
name: string;
|
8913
|
+
} | null> | null;
|
8914
|
+
feed?: {
|
8915
|
+
__typename?: 'Feed';
|
8916
|
+
id: string;
|
8917
|
+
name: string;
|
8918
|
+
} | null;
|
8919
|
+
collections?: Array<{
|
8920
|
+
__typename?: 'Collection';
|
8921
|
+
id: string;
|
8922
|
+
name: string;
|
8923
|
+
} | null> | null;
|
8924
|
+
links?: Array<{
|
8925
|
+
__typename?: 'LinkReferenceType';
|
8926
|
+
uri?: any | null;
|
8927
|
+
linkType?: LinkTypes | null;
|
8928
|
+
}> | null;
|
8315
8929
|
observations?: Array<{
|
8316
8930
|
__typename?: 'Observation';
|
8931
|
+
id: string;
|
8317
8932
|
type: ObservableTypes;
|
8933
|
+
state: EntityState;
|
8318
8934
|
observable: {
|
8319
8935
|
__typename?: 'NamedEntityReference';
|
8320
8936
|
id: string;
|
@@ -8324,9 +8940,9 @@ export type GetContentQuery = {
|
|
8324
8940
|
__typename?: 'ObservationOccurrence';
|
8325
8941
|
type?: OccurrenceTypes | null;
|
8326
8942
|
confidence?: number | null;
|
8327
|
-
pageIndex?: number | null;
|
8328
8943
|
startTime?: any | null;
|
8329
8944
|
endTime?: any | null;
|
8945
|
+
pageIndex?: number | null;
|
8330
8946
|
boundingBox?: {
|
8331
8947
|
__typename?: 'BoundingBox';
|
8332
8948
|
left?: number | null;
|
@@ -8336,30 +8952,32 @@ export type GetContentQuery = {
|
|
8336
8952
|
} | null;
|
8337
8953
|
} | null> | null;
|
8338
8954
|
} | null> | null;
|
8339
|
-
parent?: {
|
8340
|
-
__typename?: 'Content';
|
8341
|
-
id: string;
|
8342
|
-
} | null;
|
8343
|
-
children?: Array<{
|
8344
|
-
__typename?: 'Content';
|
8345
|
-
id: string;
|
8346
|
-
} | null> | null;
|
8347
|
-
collections?: Array<{
|
8348
|
-
__typename?: 'Collection';
|
8349
|
-
id: string;
|
8350
|
-
} | null> | null;
|
8351
|
-
feed?: {
|
8352
|
-
__typename?: 'Feed';
|
8353
|
-
id: string;
|
8354
|
-
} | null;
|
8355
8955
|
workflow?: {
|
8356
8956
|
__typename?: 'Workflow';
|
8357
8957
|
id: string;
|
8958
|
+
name: string;
|
8358
8959
|
} | null;
|
8359
|
-
|
8360
|
-
__typename?: '
|
8361
|
-
|
8362
|
-
|
8960
|
+
pages?: Array<{
|
8961
|
+
__typename?: 'TextPage';
|
8962
|
+
index?: number | null;
|
8963
|
+
chunks?: Array<{
|
8964
|
+
__typename?: 'TextChunk';
|
8965
|
+
index?: number | null;
|
8966
|
+
pageIndex?: number | null;
|
8967
|
+
rowIndex?: number | null;
|
8968
|
+
columnIndex?: number | null;
|
8969
|
+
confidence?: number | null;
|
8970
|
+
text?: string | null;
|
8971
|
+
role?: TextRoles | null;
|
8972
|
+
relevance?: number | null;
|
8973
|
+
} | null> | null;
|
8974
|
+
}> | null;
|
8975
|
+
segments?: Array<{
|
8976
|
+
__typename?: 'TextSegment';
|
8977
|
+
startTime?: any | null;
|
8978
|
+
endTime?: any | null;
|
8979
|
+
text?: string | null;
|
8980
|
+
relevance?: number | null;
|
8363
8981
|
}> | null;
|
8364
8982
|
} | null;
|
8365
8983
|
};
|
@@ -8384,6 +9002,11 @@ export type IngestEncodedFileMutation = {
|
|
8384
9002
|
fileType?: FileTypes | null;
|
8385
9003
|
mimeType?: string | null;
|
8386
9004
|
uri?: any | null;
|
9005
|
+
collections?: Array<{
|
9006
|
+
__typename?: 'Collection';
|
9007
|
+
id: string;
|
9008
|
+
name: string;
|
9009
|
+
} | null> | null;
|
8387
9010
|
} | null;
|
8388
9011
|
};
|
8389
9012
|
export type IngestTextMutationVariables = Exact<{
|
@@ -8393,8 +9016,8 @@ export type IngestTextMutationVariables = Exact<{
|
|
8393
9016
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
8394
9017
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8395
9018
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8396
|
-
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8397
9019
|
workflow?: InputMaybe<EntityReferenceInput>;
|
9020
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8398
9021
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8399
9022
|
}>;
|
8400
9023
|
export type IngestTextMutation = {
|
@@ -8408,6 +9031,11 @@ export type IngestTextMutation = {
|
|
8408
9031
|
fileType?: FileTypes | null;
|
8409
9032
|
mimeType?: string | null;
|
8410
9033
|
uri?: any | null;
|
9034
|
+
collections?: Array<{
|
9035
|
+
__typename?: 'Collection';
|
9036
|
+
id: string;
|
9037
|
+
name: string;
|
9038
|
+
} | null> | null;
|
8411
9039
|
} | null;
|
8412
9040
|
};
|
8413
9041
|
export type IngestUriMutationVariables = Exact<{
|
@@ -8415,8 +9043,8 @@ export type IngestUriMutationVariables = Exact<{
|
|
8415
9043
|
uri: Scalars['URL']['input'];
|
8416
9044
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8417
9045
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8418
|
-
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8419
9046
|
workflow?: InputMaybe<EntityReferenceInput>;
|
9047
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8420
9048
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8421
9049
|
}>;
|
8422
9050
|
export type IngestUriMutation = {
|
@@ -8430,6 +9058,11 @@ export type IngestUriMutation = {
|
|
8430
9058
|
fileType?: FileTypes | null;
|
8431
9059
|
mimeType?: string | null;
|
8432
9060
|
uri?: any | null;
|
9061
|
+
collections?: Array<{
|
9062
|
+
__typename?: 'Collection';
|
9063
|
+
id: string;
|
9064
|
+
name: string;
|
9065
|
+
} | null> | null;
|
8433
9066
|
} | null;
|
8434
9067
|
};
|
8435
9068
|
export type IsContentDoneQueryVariables = Exact<{
|
@@ -8447,12 +9080,12 @@ export type PublishContentsMutationVariables = Exact<{
|
|
8447
9080
|
publishPrompt: Scalars['String']['input'];
|
8448
9081
|
connector: ContentPublishingConnectorInput;
|
8449
9082
|
filter?: InputMaybe<ContentFilter>;
|
9083
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8450
9084
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8451
9085
|
name?: InputMaybe<Scalars['String']['input']>;
|
8452
9086
|
summarySpecification?: InputMaybe<EntityReferenceInput>;
|
8453
9087
|
publishSpecification?: InputMaybe<EntityReferenceInput>;
|
8454
9088
|
workflow?: InputMaybe<EntityReferenceInput>;
|
8455
|
-
isSynchronous: Scalars['Boolean']['input'];
|
8456
9089
|
}>;
|
8457
9090
|
export type PublishContentsMutation = {
|
8458
9091
|
__typename?: 'Mutation';
|
@@ -8468,16 +9101,21 @@ export type PublishContentsMutation = {
|
|
8468
9101
|
textUri?: any | null;
|
8469
9102
|
audioUri?: any | null;
|
8470
9103
|
markdown?: string | null;
|
9104
|
+
collections?: Array<{
|
9105
|
+
__typename?: 'Collection';
|
9106
|
+
id: string;
|
9107
|
+
name: string;
|
9108
|
+
} | null> | null;
|
8471
9109
|
} | null;
|
8472
9110
|
};
|
8473
9111
|
export type PublishTextMutationVariables = Exact<{
|
8474
9112
|
text: Scalars['String']['input'];
|
8475
9113
|
textType?: InputMaybe<TextTypes>;
|
8476
9114
|
connector: ContentPublishingConnectorInput;
|
9115
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8477
9116
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8478
9117
|
name?: InputMaybe<Scalars['String']['input']>;
|
8479
9118
|
workflow?: InputMaybe<EntityReferenceInput>;
|
8480
|
-
isSynchronous: Scalars['Boolean']['input'];
|
8481
9119
|
}>;
|
8482
9120
|
export type PublishTextMutation = {
|
8483
9121
|
__typename?: 'Mutation';
|
@@ -8493,35 +9131,15 @@ export type PublishTextMutation = {
|
|
8493
9131
|
textUri?: any | null;
|
8494
9132
|
audioUri?: any | null;
|
8495
9133
|
markdown?: string | null;
|
8496
|
-
|
8497
|
-
|
8498
|
-
|
8499
|
-
|
8500
|
-
facets?: InputMaybe<Array<ContentFacetInput> | ContentFacetInput>;
|
8501
|
-
}>;
|
8502
|
-
export type QueryContentFacetsQuery = {
|
8503
|
-
__typename?: 'Query';
|
8504
|
-
contents?: {
|
8505
|
-
__typename?: 'ContentResults';
|
8506
|
-
facets?: Array<{
|
8507
|
-
__typename?: 'ContentFacet';
|
8508
|
-
facet?: ContentFacetTypes | null;
|
8509
|
-
type?: FacetValueTypes | null;
|
8510
|
-
count?: any | null;
|
8511
|
-
observable?: {
|
8512
|
-
__typename?: 'ObservableFacet';
|
8513
|
-
type?: ObservableTypes | null;
|
8514
|
-
observable?: {
|
8515
|
-
__typename?: 'NamedEntityReference';
|
8516
|
-
id: string;
|
8517
|
-
name?: string | null;
|
8518
|
-
} | null;
|
8519
|
-
} | null;
|
9134
|
+
collections?: Array<{
|
9135
|
+
__typename?: 'Collection';
|
9136
|
+
id: string;
|
9137
|
+
name: string;
|
8520
9138
|
} | null> | null;
|
8521
9139
|
} | null;
|
8522
9140
|
};
|
8523
9141
|
export type QueryContentsQueryVariables = Exact<{
|
8524
|
-
filter
|
9142
|
+
filter: ContentFilter;
|
8525
9143
|
}>;
|
8526
9144
|
export type QueryContentsQuery = {
|
8527
9145
|
__typename?: 'Query';
|
@@ -8537,6 +9155,8 @@ export type QueryContentsQuery = {
|
|
8537
9155
|
finishedDate?: any | null;
|
8538
9156
|
workflowDuration?: any | null;
|
8539
9157
|
uri?: any | null;
|
9158
|
+
description?: string | null;
|
9159
|
+
markdown?: string | null;
|
8540
9160
|
type?: ContentTypes | null;
|
8541
9161
|
fileType?: FileTypes | null;
|
8542
9162
|
mimeType?: string | null;
|
@@ -8547,42 +9167,36 @@ export type QueryContentsQuery = {
|
|
8547
9167
|
textUri?: any | null;
|
8548
9168
|
audioUri?: any | null;
|
8549
9169
|
transcriptUri?: any | null;
|
8550
|
-
markdown?: string | null;
|
8551
9170
|
error?: string | null;
|
8552
9171
|
owner: {
|
8553
9172
|
__typename?: 'Owner';
|
8554
9173
|
id: string;
|
8555
9174
|
};
|
8556
|
-
|
8557
|
-
__typename?: '
|
8558
|
-
|
8559
|
-
|
8560
|
-
|
8561
|
-
|
8562
|
-
|
8563
|
-
|
8564
|
-
|
8565
|
-
|
8566
|
-
|
8567
|
-
|
8568
|
-
|
8569
|
-
} | null> | null;
|
8570
|
-
}> | null;
|
8571
|
-
segments?: Array<{
|
8572
|
-
__typename?: 'TextSegment';
|
8573
|
-
startTime?: any | null;
|
8574
|
-
endTime?: any | null;
|
8575
|
-
text?: string | null;
|
8576
|
-
relevance?: number | null;
|
8577
|
-
}> | null;
|
9175
|
+
address?: {
|
9176
|
+
__typename?: 'Address';
|
9177
|
+
streetAddress?: string | null;
|
9178
|
+
city?: string | null;
|
9179
|
+
region?: string | null;
|
9180
|
+
country?: string | null;
|
9181
|
+
postalCode?: string | null;
|
9182
|
+
} | null;
|
9183
|
+
location?: {
|
9184
|
+
__typename?: 'Point';
|
9185
|
+
latitude?: number | null;
|
9186
|
+
longitude?: number | null;
|
9187
|
+
} | null;
|
8578
9188
|
video?: {
|
8579
9189
|
__typename?: 'VideoMetadata';
|
8580
9190
|
width?: number | null;
|
8581
9191
|
height?: number | null;
|
8582
9192
|
duration?: string | null;
|
8583
|
-
software?: string | null;
|
8584
9193
|
make?: string | null;
|
8585
9194
|
model?: string | null;
|
9195
|
+
software?: string | null;
|
9196
|
+
title?: string | null;
|
9197
|
+
description?: string | null;
|
9198
|
+
keywords?: Array<string | null> | null;
|
9199
|
+
author?: string | null;
|
8586
9200
|
} | null;
|
8587
9201
|
audio?: {
|
8588
9202
|
__typename?: 'AudioMetadata';
|
@@ -8597,6 +9211,7 @@ export type QueryContentsQuery = {
|
|
8597
9211
|
language?: string | null;
|
8598
9212
|
genre?: string | null;
|
8599
9213
|
title?: string | null;
|
9214
|
+
description?: string | null;
|
8600
9215
|
bitrate?: number | null;
|
8601
9216
|
channels?: number | null;
|
8602
9217
|
sampleRate?: number | null;
|
@@ -8607,21 +9222,32 @@ export type QueryContentsQuery = {
|
|
8607
9222
|
__typename?: 'ImageMetadata';
|
8608
9223
|
width?: number | null;
|
8609
9224
|
height?: number | null;
|
9225
|
+
resolutionX?: number | null;
|
9226
|
+
resolutionY?: number | null;
|
9227
|
+
bitsPerComponent?: number | null;
|
9228
|
+
components?: number | null;
|
9229
|
+
projectionType?: ImageProjectionTypes | null;
|
9230
|
+
orientation?: OrientationTypes | null;
|
8610
9231
|
description?: string | null;
|
8611
|
-
software?: string | null;
|
8612
|
-
identifier?: string | null;
|
8613
9232
|
make?: string | null;
|
8614
9233
|
model?: string | null;
|
9234
|
+
software?: string | null;
|
9235
|
+
lens?: string | null;
|
9236
|
+
focalLength?: number | null;
|
9237
|
+
exposureTime?: string | null;
|
9238
|
+
fNumber?: string | null;
|
9239
|
+
iso?: string | null;
|
9240
|
+
heading?: number | null;
|
9241
|
+
pitch?: number | null;
|
8615
9242
|
} | null;
|
8616
9243
|
document?: {
|
8617
9244
|
__typename?: 'DocumentMetadata';
|
8618
9245
|
title?: string | null;
|
8619
9246
|
subject?: string | null;
|
9247
|
+
summary?: string | null;
|
8620
9248
|
author?: string | null;
|
8621
|
-
software?: string | null;
|
8622
9249
|
publisher?: string | null;
|
8623
9250
|
description?: string | null;
|
8624
|
-
summary?: string | null;
|
8625
9251
|
keywords?: Array<string | null> | null;
|
8626
9252
|
pageCount?: number | null;
|
8627
9253
|
worksheetCount?: number | null;
|
@@ -8629,61 +9255,93 @@ export type QueryContentsQuery = {
|
|
8629
9255
|
wordCount?: number | null;
|
8630
9256
|
lineCount?: number | null;
|
8631
9257
|
paragraphCount?: number | null;
|
8632
|
-
characterCount?: number | null;
|
8633
9258
|
isEncrypted?: boolean | null;
|
8634
9259
|
hasDigitalSignature?: boolean | null;
|
8635
9260
|
} | null;
|
8636
9261
|
email?: {
|
8637
9262
|
__typename?: 'EmailMetadata';
|
8638
|
-
subject?: string | null;
|
8639
9263
|
identifier?: string | null;
|
9264
|
+
subject?: string | null;
|
9265
|
+
labels?: Array<string | null> | null;
|
8640
9266
|
sensitivity?: MailSensitivity | null;
|
8641
9267
|
priority?: MailPriority | null;
|
8642
9268
|
importance?: MailImportance | null;
|
8643
|
-
labels?: Array<string | null> | null;
|
8644
9269
|
from?: Array<{
|
8645
9270
|
__typename?: 'PersonReference';
|
8646
9271
|
name?: string | null;
|
8647
|
-
familyName?: string | null;
|
8648
|
-
givenName?: string | null;
|
8649
9272
|
email?: string | null;
|
9273
|
+
givenName?: string | null;
|
9274
|
+
familyName?: string | null;
|
8650
9275
|
} | null> | null;
|
8651
9276
|
to?: Array<{
|
8652
9277
|
__typename?: 'PersonReference';
|
8653
9278
|
name?: string | null;
|
8654
|
-
familyName?: string | null;
|
8655
|
-
givenName?: string | null;
|
8656
9279
|
email?: string | null;
|
9280
|
+
givenName?: string | null;
|
9281
|
+
familyName?: string | null;
|
8657
9282
|
} | null> | null;
|
8658
9283
|
cc?: Array<{
|
8659
9284
|
__typename?: 'PersonReference';
|
8660
9285
|
name?: string | null;
|
8661
|
-
familyName?: string | null;
|
8662
|
-
givenName?: string | null;
|
8663
9286
|
email?: string | null;
|
9287
|
+
givenName?: string | null;
|
9288
|
+
familyName?: string | null;
|
8664
9289
|
} | null> | null;
|
8665
9290
|
bcc?: Array<{
|
8666
9291
|
__typename?: 'PersonReference';
|
8667
9292
|
name?: string | null;
|
8668
|
-
familyName?: string | null;
|
8669
|
-
givenName?: string | null;
|
8670
9293
|
email?: string | null;
|
9294
|
+
givenName?: string | null;
|
9295
|
+
familyName?: string | null;
|
8671
9296
|
} | null> | null;
|
8672
9297
|
} | null;
|
8673
9298
|
issue?: {
|
8674
9299
|
__typename?: 'IssueMetadata';
|
9300
|
+
identifier?: string | null;
|
8675
9301
|
title?: string | null;
|
8676
9302
|
project?: string | null;
|
8677
9303
|
team?: string | null;
|
8678
9304
|
status?: string | null;
|
8679
9305
|
priority?: string | null;
|
8680
9306
|
type?: string | null;
|
8681
|
-
identifier?: string | null;
|
8682
9307
|
labels?: Array<string | null> | null;
|
8683
9308
|
} | null;
|
9309
|
+
package?: {
|
9310
|
+
__typename?: 'PackageMetadata';
|
9311
|
+
fileCount?: number | null;
|
9312
|
+
folderCount?: number | null;
|
9313
|
+
isEncrypted?: boolean | null;
|
9314
|
+
} | null;
|
9315
|
+
parent?: {
|
9316
|
+
__typename?: 'Content';
|
9317
|
+
id: string;
|
9318
|
+
name: string;
|
9319
|
+
} | null;
|
9320
|
+
children?: Array<{
|
9321
|
+
__typename?: 'Content';
|
9322
|
+
id: string;
|
9323
|
+
name: string;
|
9324
|
+
} | null> | null;
|
9325
|
+
feed?: {
|
9326
|
+
__typename?: 'Feed';
|
9327
|
+
id: string;
|
9328
|
+
name: string;
|
9329
|
+
} | null;
|
9330
|
+
collections?: Array<{
|
9331
|
+
__typename?: 'Collection';
|
9332
|
+
id: string;
|
9333
|
+
name: string;
|
9334
|
+
} | null> | null;
|
9335
|
+
links?: Array<{
|
9336
|
+
__typename?: 'LinkReferenceType';
|
9337
|
+
uri?: any | null;
|
9338
|
+
linkType?: LinkTypes | null;
|
9339
|
+
}> | null;
|
8684
9340
|
observations?: Array<{
|
8685
9341
|
__typename?: 'Observation';
|
9342
|
+
id: string;
|
8686
9343
|
type: ObservableTypes;
|
9344
|
+
state: EntityState;
|
8687
9345
|
observable: {
|
8688
9346
|
__typename?: 'NamedEntityReference';
|
8689
9347
|
id: string;
|
@@ -8693,9 +9351,9 @@ export type QueryContentsQuery = {
|
|
8693
9351
|
__typename?: 'ObservationOccurrence';
|
8694
9352
|
type?: OccurrenceTypes | null;
|
8695
9353
|
confidence?: number | null;
|
8696
|
-
pageIndex?: number | null;
|
8697
9354
|
startTime?: any | null;
|
8698
9355
|
endTime?: any | null;
|
9356
|
+
pageIndex?: number | null;
|
8699
9357
|
boundingBox?: {
|
8700
9358
|
__typename?: 'BoundingBox';
|
8701
9359
|
left?: number | null;
|
@@ -8705,32 +9363,336 @@ export type QueryContentsQuery = {
|
|
8705
9363
|
} | null;
|
8706
9364
|
} | null> | null;
|
8707
9365
|
} | null> | null;
|
9366
|
+
workflow?: {
|
9367
|
+
__typename?: 'Workflow';
|
9368
|
+
id: string;
|
9369
|
+
name: string;
|
9370
|
+
} | null;
|
9371
|
+
pages?: Array<{
|
9372
|
+
__typename?: 'TextPage';
|
9373
|
+
index?: number | null;
|
9374
|
+
chunks?: Array<{
|
9375
|
+
__typename?: 'TextChunk';
|
9376
|
+
index?: number | null;
|
9377
|
+
pageIndex?: number | null;
|
9378
|
+
rowIndex?: number | null;
|
9379
|
+
columnIndex?: number | null;
|
9380
|
+
confidence?: number | null;
|
9381
|
+
text?: string | null;
|
9382
|
+
role?: TextRoles | null;
|
9383
|
+
relevance?: number | null;
|
9384
|
+
} | null> | null;
|
9385
|
+
}> | null;
|
9386
|
+
segments?: Array<{
|
9387
|
+
__typename?: 'TextSegment';
|
9388
|
+
startTime?: any | null;
|
9389
|
+
endTime?: any | null;
|
9390
|
+
text?: string | null;
|
9391
|
+
relevance?: number | null;
|
9392
|
+
}> | null;
|
9393
|
+
} | null> | null;
|
9394
|
+
} | null;
|
9395
|
+
};
|
9396
|
+
export type QueryContentsFacetsQueryVariables = Exact<{
|
9397
|
+
filter: ContentFilter;
|
9398
|
+
facets?: InputMaybe<Array<ContentFacetInput> | ContentFacetInput>;
|
9399
|
+
}>;
|
9400
|
+
export type QueryContentsFacetsQuery = {
|
9401
|
+
__typename?: 'Query';
|
9402
|
+
contents?: {
|
9403
|
+
__typename?: 'ContentResults';
|
9404
|
+
results?: Array<{
|
9405
|
+
__typename?: 'Content';
|
9406
|
+
id: string;
|
9407
|
+
name: string;
|
9408
|
+
creationDate: any;
|
9409
|
+
state: EntityState;
|
9410
|
+
originalDate?: any | null;
|
9411
|
+
finishedDate?: any | null;
|
9412
|
+
workflowDuration?: any | null;
|
9413
|
+
uri?: any | null;
|
9414
|
+
description?: string | null;
|
9415
|
+
markdown?: string | null;
|
9416
|
+
type?: ContentTypes | null;
|
9417
|
+
fileType?: FileTypes | null;
|
9418
|
+
mimeType?: string | null;
|
9419
|
+
fileName?: string | null;
|
9420
|
+
fileSize?: any | null;
|
9421
|
+
masterUri?: any | null;
|
9422
|
+
imageUri?: any | null;
|
9423
|
+
textUri?: any | null;
|
9424
|
+
audioUri?: any | null;
|
9425
|
+
transcriptUri?: any | null;
|
9426
|
+
error?: string | null;
|
9427
|
+
owner: {
|
9428
|
+
__typename?: 'Owner';
|
9429
|
+
id: string;
|
9430
|
+
};
|
9431
|
+
address?: {
|
9432
|
+
__typename?: 'Address';
|
9433
|
+
streetAddress?: string | null;
|
9434
|
+
city?: string | null;
|
9435
|
+
region?: string | null;
|
9436
|
+
country?: string | null;
|
9437
|
+
postalCode?: string | null;
|
9438
|
+
} | null;
|
9439
|
+
location?: {
|
9440
|
+
__typename?: 'Point';
|
9441
|
+
latitude?: number | null;
|
9442
|
+
longitude?: number | null;
|
9443
|
+
} | null;
|
9444
|
+
video?: {
|
9445
|
+
__typename?: 'VideoMetadata';
|
9446
|
+
width?: number | null;
|
9447
|
+
height?: number | null;
|
9448
|
+
duration?: string | null;
|
9449
|
+
make?: string | null;
|
9450
|
+
model?: string | null;
|
9451
|
+
software?: string | null;
|
9452
|
+
title?: string | null;
|
9453
|
+
description?: string | null;
|
9454
|
+
keywords?: Array<string | null> | null;
|
9455
|
+
author?: string | null;
|
9456
|
+
} | null;
|
9457
|
+
audio?: {
|
9458
|
+
__typename?: 'AudioMetadata';
|
9459
|
+
keywords?: Array<string | null> | null;
|
9460
|
+
author?: string | null;
|
9461
|
+
series?: string | null;
|
9462
|
+
episode?: string | null;
|
9463
|
+
episodeType?: string | null;
|
9464
|
+
season?: string | null;
|
9465
|
+
publisher?: string | null;
|
9466
|
+
copyright?: string | null;
|
9467
|
+
language?: string | null;
|
9468
|
+
genre?: string | null;
|
9469
|
+
title?: string | null;
|
9470
|
+
description?: string | null;
|
9471
|
+
bitrate?: number | null;
|
9472
|
+
channels?: number | null;
|
9473
|
+
sampleRate?: number | null;
|
9474
|
+
bitsPerSample?: number | null;
|
9475
|
+
duration?: string | null;
|
9476
|
+
} | null;
|
9477
|
+
image?: {
|
9478
|
+
__typename?: 'ImageMetadata';
|
9479
|
+
width?: number | null;
|
9480
|
+
height?: number | null;
|
9481
|
+
resolutionX?: number | null;
|
9482
|
+
resolutionY?: number | null;
|
9483
|
+
bitsPerComponent?: number | null;
|
9484
|
+
components?: number | null;
|
9485
|
+
projectionType?: ImageProjectionTypes | null;
|
9486
|
+
orientation?: OrientationTypes | null;
|
9487
|
+
description?: string | null;
|
9488
|
+
make?: string | null;
|
9489
|
+
model?: string | null;
|
9490
|
+
software?: string | null;
|
9491
|
+
lens?: string | null;
|
9492
|
+
focalLength?: number | null;
|
9493
|
+
exposureTime?: string | null;
|
9494
|
+
fNumber?: string | null;
|
9495
|
+
iso?: string | null;
|
9496
|
+
heading?: number | null;
|
9497
|
+
pitch?: number | null;
|
9498
|
+
} | null;
|
9499
|
+
document?: {
|
9500
|
+
__typename?: 'DocumentMetadata';
|
9501
|
+
title?: string | null;
|
9502
|
+
subject?: string | null;
|
9503
|
+
summary?: string | null;
|
9504
|
+
author?: string | null;
|
9505
|
+
publisher?: string | null;
|
9506
|
+
description?: string | null;
|
9507
|
+
keywords?: Array<string | null> | null;
|
9508
|
+
pageCount?: number | null;
|
9509
|
+
worksheetCount?: number | null;
|
9510
|
+
slideCount?: number | null;
|
9511
|
+
wordCount?: number | null;
|
9512
|
+
lineCount?: number | null;
|
9513
|
+
paragraphCount?: number | null;
|
9514
|
+
isEncrypted?: boolean | null;
|
9515
|
+
hasDigitalSignature?: boolean | null;
|
9516
|
+
} | null;
|
9517
|
+
email?: {
|
9518
|
+
__typename?: 'EmailMetadata';
|
9519
|
+
identifier?: string | null;
|
9520
|
+
subject?: string | null;
|
9521
|
+
labels?: Array<string | null> | null;
|
9522
|
+
sensitivity?: MailSensitivity | null;
|
9523
|
+
priority?: MailPriority | null;
|
9524
|
+
importance?: MailImportance | null;
|
9525
|
+
from?: Array<{
|
9526
|
+
__typename?: 'PersonReference';
|
9527
|
+
name?: string | null;
|
9528
|
+
email?: string | null;
|
9529
|
+
givenName?: string | null;
|
9530
|
+
familyName?: string | null;
|
9531
|
+
} | null> | null;
|
9532
|
+
to?: Array<{
|
9533
|
+
__typename?: 'PersonReference';
|
9534
|
+
name?: string | null;
|
9535
|
+
email?: string | null;
|
9536
|
+
givenName?: string | null;
|
9537
|
+
familyName?: string | null;
|
9538
|
+
} | null> | null;
|
9539
|
+
cc?: Array<{
|
9540
|
+
__typename?: 'PersonReference';
|
9541
|
+
name?: string | null;
|
9542
|
+
email?: string | null;
|
9543
|
+
givenName?: string | null;
|
9544
|
+
familyName?: string | null;
|
9545
|
+
} | null> | null;
|
9546
|
+
bcc?: Array<{
|
9547
|
+
__typename?: 'PersonReference';
|
9548
|
+
name?: string | null;
|
9549
|
+
email?: string | null;
|
9550
|
+
givenName?: string | null;
|
9551
|
+
familyName?: string | null;
|
9552
|
+
} | null> | null;
|
9553
|
+
} | null;
|
9554
|
+
issue?: {
|
9555
|
+
__typename?: 'IssueMetadata';
|
9556
|
+
identifier?: string | null;
|
9557
|
+
title?: string | null;
|
9558
|
+
project?: string | null;
|
9559
|
+
team?: string | null;
|
9560
|
+
status?: string | null;
|
9561
|
+
priority?: string | null;
|
9562
|
+
type?: string | null;
|
9563
|
+
labels?: Array<string | null> | null;
|
9564
|
+
} | null;
|
9565
|
+
package?: {
|
9566
|
+
__typename?: 'PackageMetadata';
|
9567
|
+
fileCount?: number | null;
|
9568
|
+
folderCount?: number | null;
|
9569
|
+
isEncrypted?: boolean | null;
|
9570
|
+
} | null;
|
8708
9571
|
parent?: {
|
8709
9572
|
__typename?: 'Content';
|
8710
9573
|
id: string;
|
9574
|
+
name: string;
|
8711
9575
|
} | null;
|
8712
9576
|
children?: Array<{
|
8713
9577
|
__typename?: 'Content';
|
8714
9578
|
id: string;
|
9579
|
+
name: string;
|
9580
|
+
} | null> | null;
|
9581
|
+
feed?: {
|
9582
|
+
__typename?: 'Feed';
|
9583
|
+
id: string;
|
9584
|
+
name: string;
|
9585
|
+
} | null;
|
9586
|
+
collections?: Array<{
|
9587
|
+
__typename?: 'Collection';
|
9588
|
+
id: string;
|
9589
|
+
name: string;
|
9590
|
+
} | null> | null;
|
9591
|
+
links?: Array<{
|
9592
|
+
__typename?: 'LinkReferenceType';
|
9593
|
+
uri?: any | null;
|
9594
|
+
linkType?: LinkTypes | null;
|
9595
|
+
}> | null;
|
9596
|
+
observations?: Array<{
|
9597
|
+
__typename?: 'Observation';
|
9598
|
+
id: string;
|
9599
|
+
type: ObservableTypes;
|
9600
|
+
state: EntityState;
|
9601
|
+
observable: {
|
9602
|
+
__typename?: 'NamedEntityReference';
|
9603
|
+
id: string;
|
9604
|
+
name?: string | null;
|
9605
|
+
};
|
9606
|
+
occurrences?: Array<{
|
9607
|
+
__typename?: 'ObservationOccurrence';
|
9608
|
+
type?: OccurrenceTypes | null;
|
9609
|
+
confidence?: number | null;
|
9610
|
+
startTime?: any | null;
|
9611
|
+
endTime?: any | null;
|
9612
|
+
pageIndex?: number | null;
|
9613
|
+
boundingBox?: {
|
9614
|
+
__typename?: 'BoundingBox';
|
9615
|
+
left?: number | null;
|
9616
|
+
top?: number | null;
|
9617
|
+
width?: number | null;
|
9618
|
+
height?: number | null;
|
9619
|
+
} | null;
|
9620
|
+
} | null> | null;
|
9621
|
+
} | null> | null;
|
9622
|
+
workflow?: {
|
9623
|
+
__typename?: 'Workflow';
|
9624
|
+
id: string;
|
9625
|
+
name: string;
|
9626
|
+
} | null;
|
9627
|
+
pages?: Array<{
|
9628
|
+
__typename?: 'TextPage';
|
9629
|
+
index?: number | null;
|
9630
|
+
chunks?: Array<{
|
9631
|
+
__typename?: 'TextChunk';
|
9632
|
+
index?: number | null;
|
9633
|
+
pageIndex?: number | null;
|
9634
|
+
rowIndex?: number | null;
|
9635
|
+
columnIndex?: number | null;
|
9636
|
+
confidence?: number | null;
|
9637
|
+
text?: string | null;
|
9638
|
+
role?: TextRoles | null;
|
9639
|
+
relevance?: number | null;
|
9640
|
+
} | null> | null;
|
9641
|
+
}> | null;
|
9642
|
+
segments?: Array<{
|
9643
|
+
__typename?: 'TextSegment';
|
9644
|
+
startTime?: any | null;
|
9645
|
+
endTime?: any | null;
|
9646
|
+
text?: string | null;
|
9647
|
+
relevance?: number | null;
|
9648
|
+
}> | null;
|
9649
|
+
} | null> | null;
|
9650
|
+
facets?: Array<{
|
9651
|
+
__typename?: 'ContentFacet';
|
9652
|
+
facet?: ContentFacetTypes | null;
|
9653
|
+
count?: any | null;
|
9654
|
+
type?: FacetValueTypes | null;
|
9655
|
+
value?: string | null;
|
9656
|
+
range?: {
|
9657
|
+
__typename?: 'StringRange';
|
9658
|
+
from?: string | null;
|
9659
|
+
to?: string | null;
|
9660
|
+
} | null;
|
9661
|
+
observable?: {
|
9662
|
+
__typename?: 'ObservableFacet';
|
9663
|
+
type?: ObservableTypes | null;
|
9664
|
+
observable?: {
|
9665
|
+
__typename?: 'NamedEntityReference';
|
9666
|
+
id: string;
|
9667
|
+
name?: string | null;
|
9668
|
+
} | null;
|
9669
|
+
} | null;
|
9670
|
+
} | null> | null;
|
9671
|
+
} | null;
|
9672
|
+
};
|
9673
|
+
export type QueryContentsGraphQueryVariables = Exact<{
|
9674
|
+
filter: ContentFilter;
|
9675
|
+
graph?: InputMaybe<ContentGraphInput>;
|
9676
|
+
}>;
|
9677
|
+
export type QueryContentsGraphQuery = {
|
9678
|
+
__typename?: 'Query';
|
9679
|
+
contents?: {
|
9680
|
+
__typename?: 'ContentResults';
|
9681
|
+
graph?: {
|
9682
|
+
__typename?: 'Graph';
|
9683
|
+
nodes?: Array<{
|
9684
|
+
__typename?: 'GraphNode';
|
9685
|
+
id: string;
|
9686
|
+
name: string;
|
9687
|
+
type: EntityTypes;
|
9688
|
+
metadata?: string | null;
|
8715
9689
|
} | null> | null;
|
8716
|
-
|
8717
|
-
__typename?: '
|
8718
|
-
|
9690
|
+
edges?: Array<{
|
9691
|
+
__typename?: 'GraphEdge';
|
9692
|
+
from: string;
|
9693
|
+
to: string;
|
8719
9694
|
} | null> | null;
|
8720
|
-
|
8721
|
-
__typename?: 'Feed';
|
8722
|
-
id: string;
|
8723
|
-
} | null;
|
8724
|
-
workflow?: {
|
8725
|
-
__typename?: 'Workflow';
|
8726
|
-
id: string;
|
8727
|
-
} | null;
|
8728
|
-
links?: Array<{
|
8729
|
-
__typename?: 'LinkReferenceType';
|
8730
|
-
uri?: any | null;
|
8731
|
-
linkType?: LinkTypes | null;
|
8732
|
-
}> | null;
|
8733
|
-
} | null> | null;
|
9695
|
+
} | null;
|
8734
9696
|
} | null;
|
8735
9697
|
};
|
8736
9698
|
export type SummarizeContentsMutationVariables = Exact<{
|
@@ -8774,6 +9736,11 @@ export type UpdateContentMutation = {
|
|
8774
9736
|
fileType?: FileTypes | null;
|
8775
9737
|
mimeType?: string | null;
|
8776
9738
|
uri?: any | null;
|
9739
|
+
collections?: Array<{
|
9740
|
+
__typename?: 'Collection';
|
9741
|
+
id: string;
|
9742
|
+
name: string;
|
9743
|
+
} | null> | null;
|
8777
9744
|
} | null;
|
8778
9745
|
};
|
8779
9746
|
export type ClearConversationMutationVariables = Exact<{
|
@@ -8802,6 +9769,16 @@ export type CloseConversationMutation = {
|
|
8802
9769
|
type?: ConversationTypes | null;
|
8803
9770
|
} | null;
|
8804
9771
|
};
|
9772
|
+
export type CountConversationsQueryVariables = Exact<{
|
9773
|
+
filter?: InputMaybe<ConversationFilter>;
|
9774
|
+
}>;
|
9775
|
+
export type CountConversationsQuery = {
|
9776
|
+
__typename?: 'Query';
|
9777
|
+
countConversations?: {
|
9778
|
+
__typename?: 'CountResult';
|
9779
|
+
count?: any | null;
|
9780
|
+
} | null;
|
9781
|
+
};
|
8805
9782
|
export type CreateConversationMutationVariables = Exact<{
|
8806
9783
|
conversation: ConversationInput;
|
8807
9784
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -8817,7 +9794,9 @@ export type CreateConversationMutation = {
|
|
8817
9794
|
} | null;
|
8818
9795
|
};
|
8819
9796
|
export type DeleteAllConversationsMutationVariables = Exact<{
|
8820
|
-
|
9797
|
+
filter?: InputMaybe<ConversationFilter>;
|
9798
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9799
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8821
9800
|
}>;
|
8822
9801
|
export type DeleteAllConversationsMutation = {
|
8823
9802
|
__typename?: 'Mutation';
|
@@ -8840,6 +9819,7 @@ export type DeleteConversationMutation = {
|
|
8840
9819
|
};
|
8841
9820
|
export type DeleteConversationsMutationVariables = Exact<{
|
8842
9821
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9822
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8843
9823
|
}>;
|
8844
9824
|
export type DeleteConversationsMutation = {
|
8845
9825
|
__typename?: 'Mutation';
|
@@ -8888,6 +9868,13 @@ export type GetConversationQuery = {
|
|
8888
9868
|
content?: {
|
8889
9869
|
__typename?: 'Content';
|
8890
9870
|
id: string;
|
9871
|
+
name: string;
|
9872
|
+
state: EntityState;
|
9873
|
+
type?: ContentTypes | null;
|
9874
|
+
fileType?: FileTypes | null;
|
9875
|
+
fileName?: string | null;
|
9876
|
+
originalDate?: any | null;
|
9877
|
+
uri?: any | null;
|
8891
9878
|
} | null;
|
8892
9879
|
} | null> | null;
|
8893
9880
|
} | null> | null;
|
@@ -8975,9 +9962,12 @@ export type PromptConversationMutation = {
|
|
8975
9962
|
__typename?: 'Content';
|
8976
9963
|
id: string;
|
8977
9964
|
name: string;
|
9965
|
+
state: EntityState;
|
8978
9966
|
type?: ContentTypes | null;
|
8979
9967
|
fileType?: FileTypes | null;
|
8980
9968
|
fileName?: string | null;
|
9969
|
+
originalDate?: any | null;
|
9970
|
+
uri?: any | null;
|
8981
9971
|
} | null;
|
8982
9972
|
} | null> | null;
|
8983
9973
|
} | null;
|
@@ -9008,6 +9998,7 @@ export type PublishConversationMutationVariables = Exact<{
|
|
9008
9998
|
id: Scalars['ID']['input'];
|
9009
9999
|
connector: ContentPublishingConnectorInput;
|
9010
10000
|
name?: InputMaybe<Scalars['String']['input']>;
|
10001
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9011
10002
|
workflow?: InputMaybe<EntityReferenceInput>;
|
9012
10003
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9013
10004
|
}>;
|
@@ -9025,6 +10016,11 @@ export type PublishConversationMutation = {
|
|
9025
10016
|
textUri?: any | null;
|
9026
10017
|
audioUri?: any | null;
|
9027
10018
|
markdown?: string | null;
|
10019
|
+
collections?: Array<{
|
10020
|
+
__typename?: 'Collection';
|
10021
|
+
id: string;
|
10022
|
+
name: string;
|
10023
|
+
} | null> | null;
|
9028
10024
|
} | null;
|
9029
10025
|
};
|
9030
10026
|
export type QueryConversationsQueryVariables = Exact<{
|
@@ -9068,6 +10064,13 @@ export type QueryConversationsQuery = {
|
|
9068
10064
|
content?: {
|
9069
10065
|
__typename?: 'Content';
|
9070
10066
|
id: string;
|
10067
|
+
name: string;
|
10068
|
+
state: EntityState;
|
10069
|
+
type?: ContentTypes | null;
|
10070
|
+
fileType?: FileTypes | null;
|
10071
|
+
fileName?: string | null;
|
10072
|
+
originalDate?: any | null;
|
10073
|
+
uri?: any | null;
|
9071
10074
|
} | null;
|
9072
10075
|
} | null> | null;
|
9073
10076
|
} | null> | null;
|
@@ -9144,6 +10147,16 @@ export type UpdateConversationMutation = {
|
|
9144
10147
|
type?: ConversationTypes | null;
|
9145
10148
|
} | null;
|
9146
10149
|
};
|
10150
|
+
export type CountEventsQueryVariables = Exact<{
|
10151
|
+
filter?: InputMaybe<EventFilter>;
|
10152
|
+
}>;
|
10153
|
+
export type CountEventsQuery = {
|
10154
|
+
__typename?: 'Query';
|
10155
|
+
countEvents?: {
|
10156
|
+
__typename?: 'CountResult';
|
10157
|
+
count?: any | null;
|
10158
|
+
} | null;
|
10159
|
+
};
|
9147
10160
|
export type CreateEventMutationVariables = Exact<{
|
9148
10161
|
event: EventInput;
|
9149
10162
|
}>;
|
@@ -9156,7 +10169,9 @@ export type CreateEventMutation = {
|
|
9156
10169
|
} | null;
|
9157
10170
|
};
|
9158
10171
|
export type DeleteAllEventsMutationVariables = Exact<{
|
9159
|
-
filter
|
10172
|
+
filter?: InputMaybe<EventFilter>;
|
10173
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10174
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9160
10175
|
}>;
|
9161
10176
|
export type DeleteAllEventsMutation = {
|
9162
10177
|
__typename?: 'Mutation';
|
@@ -9179,6 +10194,7 @@ export type DeleteEventMutation = {
|
|
9179
10194
|
};
|
9180
10195
|
export type DeleteEventsMutationVariables = Exact<{
|
9181
10196
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10197
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9182
10198
|
}>;
|
9183
10199
|
export type DeleteEventsMutation = {
|
9184
10200
|
__typename?: 'Mutation';
|
@@ -9220,7 +10236,7 @@ export type GetEventQuery = {
|
|
9220
10236
|
} | null;
|
9221
10237
|
};
|
9222
10238
|
export type QueryEventsQueryVariables = Exact<{
|
9223
|
-
filter
|
10239
|
+
filter?: InputMaybe<EventFilter>;
|
9224
10240
|
}>;
|
9225
10241
|
export type QueryEventsQuery = {
|
9226
10242
|
__typename?: 'Query';
|
@@ -9264,6 +10280,16 @@ export type UpdateEventMutation = {
|
|
9264
10280
|
name: string;
|
9265
10281
|
} | null;
|
9266
10282
|
};
|
10283
|
+
export type CountFeedsQueryVariables = Exact<{
|
10284
|
+
filter?: InputMaybe<FeedFilter>;
|
10285
|
+
}>;
|
10286
|
+
export type CountFeedsQuery = {
|
10287
|
+
__typename?: 'Query';
|
10288
|
+
countFeeds?: {
|
10289
|
+
__typename?: 'CountResult';
|
10290
|
+
count?: any | null;
|
10291
|
+
} | null;
|
10292
|
+
};
|
9267
10293
|
export type CreateFeedMutationVariables = Exact<{
|
9268
10294
|
feed: FeedInput;
|
9269
10295
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -9279,7 +10305,9 @@ export type CreateFeedMutation = {
|
|
9279
10305
|
} | null;
|
9280
10306
|
};
|
9281
10307
|
export type DeleteAllFeedsMutationVariables = Exact<{
|
9282
|
-
|
10308
|
+
filter?: InputMaybe<FeedFilter>;
|
10309
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10310
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9283
10311
|
}>;
|
9284
10312
|
export type DeleteAllFeedsMutation = {
|
9285
10313
|
__typename?: 'Mutation';
|
@@ -9302,6 +10330,7 @@ export type DeleteFeedMutation = {
|
|
9302
10330
|
};
|
9303
10331
|
export type DeleteFeedsMutationVariables = Exact<{
|
9304
10332
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10333
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9305
10334
|
}>;
|
9306
10335
|
export type DeleteFeedsMutation = {
|
9307
10336
|
__typename?: 'Mutation';
|
@@ -9419,7 +10448,7 @@ export type GetFeedQuery = {
|
|
9419
10448
|
__typename?: 'MicrosoftEmailFeedProperties';
|
9420
10449
|
type?: EmailListingTypes | null;
|
9421
10450
|
tenantId?: string | null;
|
9422
|
-
refreshToken
|
10451
|
+
refreshToken: string;
|
9423
10452
|
} | null;
|
9424
10453
|
} | null;
|
9425
10454
|
issue?: {
|
@@ -9605,7 +10634,7 @@ export type QueryFeedsQuery = {
|
|
9605
10634
|
__typename?: 'MicrosoftEmailFeedProperties';
|
9606
10635
|
type?: EmailListingTypes | null;
|
9607
10636
|
tenantId?: string | null;
|
9608
|
-
refreshToken
|
10637
|
+
refreshToken: string;
|
9609
10638
|
} | null;
|
9610
10639
|
} | null;
|
9611
10640
|
issue?: {
|
@@ -9707,6 +10736,16 @@ export type UpdateFeedMutation = {
|
|
9707
10736
|
type: FeedTypes;
|
9708
10737
|
} | null;
|
9709
10738
|
};
|
10739
|
+
export type CountLabelsQueryVariables = Exact<{
|
10740
|
+
filter?: InputMaybe<LabelFilter>;
|
10741
|
+
}>;
|
10742
|
+
export type CountLabelsQuery = {
|
10743
|
+
__typename?: 'Query';
|
10744
|
+
countLabels?: {
|
10745
|
+
__typename?: 'CountResult';
|
10746
|
+
count?: any | null;
|
10747
|
+
} | null;
|
10748
|
+
};
|
9710
10749
|
export type CreateLabelMutationVariables = Exact<{
|
9711
10750
|
label: LabelInput;
|
9712
10751
|
}>;
|
@@ -9719,7 +10758,9 @@ export type CreateLabelMutation = {
|
|
9719
10758
|
} | null;
|
9720
10759
|
};
|
9721
10760
|
export type DeleteAllLabelsMutationVariables = Exact<{
|
9722
|
-
filter
|
10761
|
+
filter?: InputMaybe<LabelFilter>;
|
10762
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10763
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9723
10764
|
}>;
|
9724
10765
|
export type DeleteAllLabelsMutation = {
|
9725
10766
|
__typename?: 'Mutation';
|
@@ -9742,6 +10783,7 @@ export type DeleteLabelMutation = {
|
|
9742
10783
|
};
|
9743
10784
|
export type DeleteLabelsMutationVariables = Exact<{
|
9744
10785
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10786
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9745
10787
|
}>;
|
9746
10788
|
export type DeleteLabelsMutation = {
|
9747
10789
|
__typename?: 'Mutation';
|
@@ -9765,7 +10807,7 @@ export type GetLabelQuery = {
|
|
9765
10807
|
} | null;
|
9766
10808
|
};
|
9767
10809
|
export type QueryLabelsQueryVariables = Exact<{
|
9768
|
-
filter
|
10810
|
+
filter?: InputMaybe<LabelFilter>;
|
9769
10811
|
}>;
|
9770
10812
|
export type QueryLabelsQuery = {
|
9771
10813
|
__typename?: 'Query';
|
@@ -9824,6 +10866,16 @@ export type UpdateObservationMutation = {
|
|
9824
10866
|
state: EntityState;
|
9825
10867
|
} | null;
|
9826
10868
|
};
|
10869
|
+
export type CountOrganizationsQueryVariables = Exact<{
|
10870
|
+
filter?: InputMaybe<OrganizationFilter>;
|
10871
|
+
}>;
|
10872
|
+
export type CountOrganizationsQuery = {
|
10873
|
+
__typename?: 'Query';
|
10874
|
+
countOrganizations?: {
|
10875
|
+
__typename?: 'CountResult';
|
10876
|
+
count?: any | null;
|
10877
|
+
} | null;
|
10878
|
+
};
|
9827
10879
|
export type CreateOrganizationMutationVariables = Exact<{
|
9828
10880
|
organization: OrganizationInput;
|
9829
10881
|
}>;
|
@@ -9836,7 +10888,9 @@ export type CreateOrganizationMutation = {
|
|
9836
10888
|
} | null;
|
9837
10889
|
};
|
9838
10890
|
export type DeleteAllOrganizationsMutationVariables = Exact<{
|
9839
|
-
filter
|
10891
|
+
filter?: InputMaybe<OrganizationFilter>;
|
10892
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10893
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9840
10894
|
}>;
|
9841
10895
|
export type DeleteAllOrganizationsMutation = {
|
9842
10896
|
__typename?: 'Mutation';
|
@@ -9859,6 +10913,7 @@ export type DeleteOrganizationMutation = {
|
|
9859
10913
|
};
|
9860
10914
|
export type DeleteOrganizationsMutationVariables = Exact<{
|
9861
10915
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10916
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9862
10917
|
}>;
|
9863
10918
|
export type DeleteOrganizationsMutation = {
|
9864
10919
|
__typename?: 'Mutation';
|
@@ -9896,7 +10951,7 @@ export type GetOrganizationQuery = {
|
|
9896
10951
|
} | null;
|
9897
10952
|
};
|
9898
10953
|
export type QueryOrganizationsQueryVariables = Exact<{
|
9899
|
-
filter
|
10954
|
+
filter?: InputMaybe<OrganizationFilter>;
|
9900
10955
|
}>;
|
9901
10956
|
export type QueryOrganizationsQuery = {
|
9902
10957
|
__typename?: 'Query';
|
@@ -9936,6 +10991,16 @@ export type UpdateOrganizationMutation = {
|
|
9936
10991
|
name: string;
|
9937
10992
|
} | null;
|
9938
10993
|
};
|
10994
|
+
export type CountPersonsQueryVariables = Exact<{
|
10995
|
+
filter?: InputMaybe<PersonFilter>;
|
10996
|
+
}>;
|
10997
|
+
export type CountPersonsQuery = {
|
10998
|
+
__typename?: 'Query';
|
10999
|
+
countPersons?: {
|
11000
|
+
__typename?: 'CountResult';
|
11001
|
+
count?: any | null;
|
11002
|
+
} | null;
|
11003
|
+
};
|
9939
11004
|
export type CreatePersonMutationVariables = Exact<{
|
9940
11005
|
person: PersonInput;
|
9941
11006
|
}>;
|
@@ -9948,7 +11013,9 @@ export type CreatePersonMutation = {
|
|
9948
11013
|
} | null;
|
9949
11014
|
};
|
9950
11015
|
export type DeleteAllPersonsMutationVariables = Exact<{
|
9951
|
-
filter
|
11016
|
+
filter?: InputMaybe<PersonFilter>;
|
11017
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11018
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9952
11019
|
}>;
|
9953
11020
|
export type DeleteAllPersonsMutation = {
|
9954
11021
|
__typename?: 'Mutation';
|
@@ -9971,6 +11038,7 @@ export type DeletePersonMutation = {
|
|
9971
11038
|
};
|
9972
11039
|
export type DeletePersonsMutationVariables = Exact<{
|
9973
11040
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11041
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9974
11042
|
}>;
|
9975
11043
|
export type DeletePersonsMutation = {
|
9976
11044
|
__typename?: 'Mutation';
|
@@ -10010,7 +11078,7 @@ export type GetPersonQuery = {
|
|
10010
11078
|
} | null;
|
10011
11079
|
};
|
10012
11080
|
export type QueryPersonsQueryVariables = Exact<{
|
10013
|
-
filter
|
11081
|
+
filter?: InputMaybe<PersonFilter>;
|
10014
11082
|
}>;
|
10015
11083
|
export type QueryPersonsQuery = {
|
10016
11084
|
__typename?: 'Query';
|
@@ -10052,6 +11120,16 @@ export type UpdatePersonMutation = {
|
|
10052
11120
|
name: string;
|
10053
11121
|
} | null;
|
10054
11122
|
};
|
11123
|
+
export type CountPlacesQueryVariables = Exact<{
|
11124
|
+
filter?: InputMaybe<PlaceFilter>;
|
11125
|
+
}>;
|
11126
|
+
export type CountPlacesQuery = {
|
11127
|
+
__typename?: 'Query';
|
11128
|
+
countPlaces?: {
|
11129
|
+
__typename?: 'CountResult';
|
11130
|
+
count?: any | null;
|
11131
|
+
} | null;
|
11132
|
+
};
|
10055
11133
|
export type CreatePlaceMutationVariables = Exact<{
|
10056
11134
|
place: PlaceInput;
|
10057
11135
|
}>;
|
@@ -10064,7 +11142,9 @@ export type CreatePlaceMutation = {
|
|
10064
11142
|
} | null;
|
10065
11143
|
};
|
10066
11144
|
export type DeleteAllPlacesMutationVariables = Exact<{
|
10067
|
-
filter
|
11145
|
+
filter?: InputMaybe<PlaceFilter>;
|
11146
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11147
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10068
11148
|
}>;
|
10069
11149
|
export type DeleteAllPlacesMutation = {
|
10070
11150
|
__typename?: 'Mutation';
|
@@ -10087,6 +11167,7 @@ export type DeletePlaceMutation = {
|
|
10087
11167
|
};
|
10088
11168
|
export type DeletePlacesMutationVariables = Exact<{
|
10089
11169
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11170
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10090
11171
|
}>;
|
10091
11172
|
export type DeletePlacesMutation = {
|
10092
11173
|
__typename?: 'Mutation';
|
@@ -10118,7 +11199,7 @@ export type GetPlaceQuery = {
|
|
10118
11199
|
} | null;
|
10119
11200
|
};
|
10120
11201
|
export type QueryPlacesQueryVariables = Exact<{
|
10121
|
-
filter
|
11202
|
+
filter?: InputMaybe<PlaceFilter>;
|
10122
11203
|
}>;
|
10123
11204
|
export type QueryPlacesQuery = {
|
10124
11205
|
__typename?: 'Query';
|
@@ -10152,6 +11233,16 @@ export type UpdatePlaceMutation = {
|
|
10152
11233
|
name: string;
|
10153
11234
|
} | null;
|
10154
11235
|
};
|
11236
|
+
export type CountProductsQueryVariables = Exact<{
|
11237
|
+
filter?: InputMaybe<ProductFilter>;
|
11238
|
+
}>;
|
11239
|
+
export type CountProductsQuery = {
|
11240
|
+
__typename?: 'Query';
|
11241
|
+
countProducts?: {
|
11242
|
+
__typename?: 'CountResult';
|
11243
|
+
count?: any | null;
|
11244
|
+
} | null;
|
11245
|
+
};
|
10155
11246
|
export type CreateProductMutationVariables = Exact<{
|
10156
11247
|
product: ProductInput;
|
10157
11248
|
}>;
|
@@ -10164,7 +11255,9 @@ export type CreateProductMutation = {
|
|
10164
11255
|
} | null;
|
10165
11256
|
};
|
10166
11257
|
export type DeleteAllProductsMutationVariables = Exact<{
|
10167
|
-
filter
|
11258
|
+
filter?: InputMaybe<ProductFilter>;
|
11259
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11260
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10168
11261
|
}>;
|
10169
11262
|
export type DeleteAllProductsMutation = {
|
10170
11263
|
__typename?: 'Mutation';
|
@@ -10187,6 +11280,7 @@ export type DeleteProductMutation = {
|
|
10187
11280
|
};
|
10188
11281
|
export type DeleteProductsMutationVariables = Exact<{
|
10189
11282
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11283
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10190
11284
|
}>;
|
10191
11285
|
export type DeleteProductsMutation = {
|
10192
11286
|
__typename?: 'Mutation';
|
@@ -10225,7 +11319,7 @@ export type GetProductQuery = {
|
|
10225
11319
|
} | null;
|
10226
11320
|
};
|
10227
11321
|
export type QueryProductsQueryVariables = Exact<{
|
10228
|
-
filter
|
11322
|
+
filter?: InputMaybe<ProductFilter>;
|
10229
11323
|
}>;
|
10230
11324
|
export type QueryProductsQuery = {
|
10231
11325
|
__typename?: 'Query';
|
@@ -10266,27 +11360,6 @@ export type UpdateProductMutation = {
|
|
10266
11360
|
name: string;
|
10267
11361
|
} | null;
|
10268
11362
|
};
|
10269
|
-
export type CreditsQueryVariables = Exact<{
|
10270
|
-
startDate: Scalars['DateTime']['input'];
|
10271
|
-
duration: Scalars['TimeSpan']['input'];
|
10272
|
-
}>;
|
10273
|
-
export type CreditsQuery = {
|
10274
|
-
__typename?: 'Query';
|
10275
|
-
credits?: Array<{
|
10276
|
-
__typename?: 'ProjectCredits';
|
10277
|
-
correlationId?: string | null;
|
10278
|
-
ownerId?: string | null;
|
10279
|
-
credits?: any | null;
|
10280
|
-
storageRatio?: any | null;
|
10281
|
-
computeRatio?: any | null;
|
10282
|
-
preparationRatio?: any | null;
|
10283
|
-
extractionRatio?: any | null;
|
10284
|
-
enrichmentRatio?: any | null;
|
10285
|
-
publishingRatio?: any | null;
|
10286
|
-
searchRatio?: any | null;
|
10287
|
-
conversationRatio?: any | null;
|
10288
|
-
} | null> | null;
|
10289
|
-
};
|
10290
11363
|
export type GetProjectQueryVariables = Exact<{
|
10291
11364
|
[key: string]: never;
|
10292
11365
|
}>;
|
@@ -10379,22 +11452,32 @@ export type LookupUsageQuery = {
|
|
10379
11452
|
response?: string | null;
|
10380
11453
|
} | null> | null;
|
10381
11454
|
};
|
10382
|
-
export type
|
10383
|
-
|
11455
|
+
export type QueryCreditsQueryVariables = Exact<{
|
11456
|
+
startDate: Scalars['DateTime']['input'];
|
11457
|
+
duration: Scalars['TimeSpan']['input'];
|
10384
11458
|
}>;
|
10385
|
-
export type
|
10386
|
-
__typename?: '
|
10387
|
-
|
10388
|
-
__typename?: '
|
10389
|
-
|
10390
|
-
|
10391
|
-
|
11459
|
+
export type QueryCreditsQuery = {
|
11460
|
+
__typename?: 'Query';
|
11461
|
+
credits?: Array<{
|
11462
|
+
__typename?: 'ProjectCredits';
|
11463
|
+
correlationId?: string | null;
|
11464
|
+
ownerId?: string | null;
|
11465
|
+
credits?: any | null;
|
11466
|
+
storageRatio?: any | null;
|
11467
|
+
computeRatio?: any | null;
|
11468
|
+
preparationRatio?: any | null;
|
11469
|
+
extractionRatio?: any | null;
|
11470
|
+
enrichmentRatio?: any | null;
|
11471
|
+
publishingRatio?: any | null;
|
11472
|
+
searchRatio?: any | null;
|
11473
|
+
conversationRatio?: any | null;
|
11474
|
+
} | null> | null;
|
10392
11475
|
};
|
10393
|
-
export type
|
11476
|
+
export type QueryUsageQueryVariables = Exact<{
|
10394
11477
|
startDate: Scalars['DateTime']['input'];
|
10395
11478
|
duration: Scalars['TimeSpan']['input'];
|
10396
11479
|
}>;
|
10397
|
-
export type
|
11480
|
+
export type QueryUsageQuery = {
|
10398
11481
|
__typename?: 'Query';
|
10399
11482
|
usage?: Array<{
|
10400
11483
|
__typename?: 'ProjectUsageRecord';
|
@@ -10427,6 +11510,27 @@ export type UsageQuery = {
|
|
10427
11510
|
response?: string | null;
|
10428
11511
|
} | null> | null;
|
10429
11512
|
};
|
11513
|
+
export type UpdateProjectMutationVariables = Exact<{
|
11514
|
+
project: ProjectUpdateInput;
|
11515
|
+
}>;
|
11516
|
+
export type UpdateProjectMutation = {
|
11517
|
+
__typename?: 'Mutation';
|
11518
|
+
updateProject?: {
|
11519
|
+
__typename?: 'Project';
|
11520
|
+
id: string;
|
11521
|
+
name: string;
|
11522
|
+
} | null;
|
11523
|
+
};
|
11524
|
+
export type CountReposQueryVariables = Exact<{
|
11525
|
+
filter?: InputMaybe<RepoFilter>;
|
11526
|
+
}>;
|
11527
|
+
export type CountReposQuery = {
|
11528
|
+
__typename?: 'Query';
|
11529
|
+
countRepos?: {
|
11530
|
+
__typename?: 'CountResult';
|
11531
|
+
count?: any | null;
|
11532
|
+
} | null;
|
11533
|
+
};
|
10430
11534
|
export type CreateRepoMutationVariables = Exact<{
|
10431
11535
|
repo: RepoInput;
|
10432
11536
|
}>;
|
@@ -10439,7 +11543,9 @@ export type CreateRepoMutation = {
|
|
10439
11543
|
} | null;
|
10440
11544
|
};
|
10441
11545
|
export type DeleteAllReposMutationVariables = Exact<{
|
10442
|
-
filter
|
11546
|
+
filter?: InputMaybe<RepoFilter>;
|
11547
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11548
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10443
11549
|
}>;
|
10444
11550
|
export type DeleteAllReposMutation = {
|
10445
11551
|
__typename?: 'Mutation';
|
@@ -10462,6 +11568,7 @@ export type DeleteRepoMutation = {
|
|
10462
11568
|
};
|
10463
11569
|
export type DeleteReposMutationVariables = Exact<{
|
10464
11570
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11571
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10465
11572
|
}>;
|
10466
11573
|
export type DeleteReposMutation = {
|
10467
11574
|
__typename?: 'Mutation';
|
@@ -10485,7 +11592,7 @@ export type GetRepoQuery = {
|
|
10485
11592
|
} | null;
|
10486
11593
|
};
|
10487
11594
|
export type QueryReposQueryVariables = Exact<{
|
10488
|
-
filter
|
11595
|
+
filter?: InputMaybe<RepoFilter>;
|
10489
11596
|
}>;
|
10490
11597
|
export type QueryReposQuery = {
|
10491
11598
|
__typename?: 'Query';
|
@@ -10511,6 +11618,16 @@ export type UpdateRepoMutation = {
|
|
10511
11618
|
name: string;
|
10512
11619
|
} | null;
|
10513
11620
|
};
|
11621
|
+
export type CountSoftwaresQueryVariables = Exact<{
|
11622
|
+
filter?: InputMaybe<SoftwareFilter>;
|
11623
|
+
}>;
|
11624
|
+
export type CountSoftwaresQuery = {
|
11625
|
+
__typename?: 'Query';
|
11626
|
+
countSoftwares?: {
|
11627
|
+
__typename?: 'CountResult';
|
11628
|
+
count?: any | null;
|
11629
|
+
} | null;
|
11630
|
+
};
|
10514
11631
|
export type CreateSoftwareMutationVariables = Exact<{
|
10515
11632
|
software: SoftwareInput;
|
10516
11633
|
}>;
|
@@ -10523,7 +11640,9 @@ export type CreateSoftwareMutation = {
|
|
10523
11640
|
} | null;
|
10524
11641
|
};
|
10525
11642
|
export type DeleteAllSoftwaresMutationVariables = Exact<{
|
10526
|
-
filter
|
11643
|
+
filter?: InputMaybe<SoftwareFilter>;
|
11644
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11645
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10527
11646
|
}>;
|
10528
11647
|
export type DeleteAllSoftwaresMutation = {
|
10529
11648
|
__typename?: 'Mutation';
|
@@ -10546,6 +11665,7 @@ export type DeleteSoftwareMutation = {
|
|
10546
11665
|
};
|
10547
11666
|
export type DeleteSoftwaresMutationVariables = Exact<{
|
10548
11667
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11668
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10549
11669
|
}>;
|
10550
11670
|
export type DeleteSoftwaresMutation = {
|
10551
11671
|
__typename?: 'Mutation';
|
@@ -10571,7 +11691,7 @@ export type GetSoftwareQuery = {
|
|
10571
11691
|
} | null;
|
10572
11692
|
};
|
10573
11693
|
export type QuerySoftwaresQueryVariables = Exact<{
|
10574
|
-
filter
|
11694
|
+
filter?: InputMaybe<SoftwareFilter>;
|
10575
11695
|
}>;
|
10576
11696
|
export type QuerySoftwaresQuery = {
|
10577
11697
|
__typename?: 'Query';
|
@@ -10599,6 +11719,16 @@ export type UpdateSoftwareMutation = {
|
|
10599
11719
|
name: string;
|
10600
11720
|
} | null;
|
10601
11721
|
};
|
11722
|
+
export type CountSpecificationsQueryVariables = Exact<{
|
11723
|
+
filter?: InputMaybe<SpecificationFilter>;
|
11724
|
+
}>;
|
11725
|
+
export type CountSpecificationsQuery = {
|
11726
|
+
__typename?: 'Query';
|
11727
|
+
countSpecifications?: {
|
11728
|
+
__typename?: 'CountResult';
|
11729
|
+
count?: any | null;
|
11730
|
+
} | null;
|
11731
|
+
};
|
10602
11732
|
export type CreateSpecificationMutationVariables = Exact<{
|
10603
11733
|
specification: SpecificationInput;
|
10604
11734
|
}>;
|
@@ -10613,6 +11743,19 @@ export type CreateSpecificationMutation = {
|
|
10613
11743
|
serviceType?: ModelServiceTypes | null;
|
10614
11744
|
} | null;
|
10615
11745
|
};
|
11746
|
+
export type DeleteAllSpecificationsMutationVariables = Exact<{
|
11747
|
+
filter?: InputMaybe<SpecificationFilter>;
|
11748
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11749
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11750
|
+
}>;
|
11751
|
+
export type DeleteAllSpecificationsMutation = {
|
11752
|
+
__typename?: 'Mutation';
|
11753
|
+
deleteAllSpecifications?: Array<{
|
11754
|
+
__typename?: 'Specification';
|
11755
|
+
id: string;
|
11756
|
+
state: EntityState;
|
11757
|
+
} | null> | null;
|
11758
|
+
};
|
10616
11759
|
export type DeleteSpecificationMutationVariables = Exact<{
|
10617
11760
|
id: Scalars['ID']['input'];
|
10618
11761
|
}>;
|
@@ -10624,6 +11767,18 @@ export type DeleteSpecificationMutation = {
|
|
10624
11767
|
state: EntityState;
|
10625
11768
|
} | null;
|
10626
11769
|
};
|
11770
|
+
export type DeleteSpecificationsMutationVariables = Exact<{
|
11771
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11772
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11773
|
+
}>;
|
11774
|
+
export type DeleteSpecificationsMutation = {
|
11775
|
+
__typename?: 'Mutation';
|
11776
|
+
deleteSpecifications?: Array<{
|
11777
|
+
__typename?: 'Specification';
|
11778
|
+
id: string;
|
11779
|
+
state: EntityState;
|
11780
|
+
} | null> | null;
|
11781
|
+
};
|
10627
11782
|
export type GetSpecificationQueryVariables = Exact<{
|
10628
11783
|
id: Scalars['ID']['input'];
|
10629
11784
|
}>;
|
@@ -10639,6 +11794,9 @@ export type GetSpecificationQuery = {
|
|
10639
11794
|
serviceType?: ModelServiceTypes | null;
|
10640
11795
|
systemPrompt?: string | null;
|
10641
11796
|
customGuidance?: string | null;
|
11797
|
+
customInstructions?: string | null;
|
11798
|
+
searchType?: ConversationSearchTypes | null;
|
11799
|
+
numberSimilar?: number | null;
|
10642
11800
|
owner: {
|
10643
11801
|
__typename?: 'Owner';
|
10644
11802
|
id: string;
|
@@ -10686,6 +11844,16 @@ export type GetSpecificationQuery = {
|
|
10686
11844
|
temperature?: number | null;
|
10687
11845
|
probability?: number | null;
|
10688
11846
|
} | null;
|
11847
|
+
cohere?: {
|
11848
|
+
__typename?: 'CohereModelProperties';
|
11849
|
+
tokenLimit?: number | null;
|
11850
|
+
completionTokenLimit?: number | null;
|
11851
|
+
model: CohereModels;
|
11852
|
+
key?: string | null;
|
11853
|
+
modelName?: string | null;
|
11854
|
+
temperature?: number | null;
|
11855
|
+
probability?: number | null;
|
11856
|
+
} | null;
|
10689
11857
|
anthropic?: {
|
10690
11858
|
__typename?: 'AnthropicModelProperties';
|
10691
11859
|
tokenLimit?: number | null;
|
@@ -10750,6 +11918,13 @@ export type PromptSpecificationsMutation = {
|
|
10750
11918
|
content?: {
|
10751
11919
|
__typename?: 'Content';
|
10752
11920
|
id: string;
|
11921
|
+
name: string;
|
11922
|
+
state: EntityState;
|
11923
|
+
type?: ContentTypes | null;
|
11924
|
+
fileType?: FileTypes | null;
|
11925
|
+
fileName?: string | null;
|
11926
|
+
originalDate?: any | null;
|
11927
|
+
uri?: any | null;
|
10753
11928
|
} | null;
|
10754
11929
|
} | null> | null;
|
10755
11930
|
} | null> | null;
|
@@ -10772,6 +11947,9 @@ export type QuerySpecificationsQuery = {
|
|
10772
11947
|
serviceType?: ModelServiceTypes | null;
|
10773
11948
|
systemPrompt?: string | null;
|
10774
11949
|
customGuidance?: string | null;
|
11950
|
+
customInstructions?: string | null;
|
11951
|
+
searchType?: ConversationSearchTypes | null;
|
11952
|
+
numberSimilar?: number | null;
|
10775
11953
|
owner: {
|
10776
11954
|
__typename?: 'Owner';
|
10777
11955
|
id: string;
|
@@ -10819,6 +11997,16 @@ export type QuerySpecificationsQuery = {
|
|
10819
11997
|
temperature?: number | null;
|
10820
11998
|
probability?: number | null;
|
10821
11999
|
} | null;
|
12000
|
+
cohere?: {
|
12001
|
+
__typename?: 'CohereModelProperties';
|
12002
|
+
tokenLimit?: number | null;
|
12003
|
+
completionTokenLimit?: number | null;
|
12004
|
+
model: CohereModels;
|
12005
|
+
key?: string | null;
|
12006
|
+
modelName?: string | null;
|
12007
|
+
temperature?: number | null;
|
12008
|
+
probability?: number | null;
|
12009
|
+
} | null;
|
10822
12010
|
anthropic?: {
|
10823
12011
|
__typename?: 'AnthropicModelProperties';
|
10824
12012
|
tokenLimit?: number | null;
|
@@ -10863,6 +12051,16 @@ export type UpdateSpecificationMutation = {
|
|
10863
12051
|
serviceType?: ModelServiceTypes | null;
|
10864
12052
|
} | null;
|
10865
12053
|
};
|
12054
|
+
export type CountWorkflowsQueryVariables = Exact<{
|
12055
|
+
filter?: InputMaybe<WorkflowFilter>;
|
12056
|
+
}>;
|
12057
|
+
export type CountWorkflowsQuery = {
|
12058
|
+
__typename?: 'Query';
|
12059
|
+
countWorkflows?: {
|
12060
|
+
__typename?: 'CountResult';
|
12061
|
+
count?: any | null;
|
12062
|
+
} | null;
|
12063
|
+
};
|
10866
12064
|
export type CreateWorkflowMutationVariables = Exact<{
|
10867
12065
|
workflow: WorkflowInput;
|
10868
12066
|
}>;
|
@@ -10949,6 +12147,7 @@ export type CreateWorkflowMutation = {
|
|
10949
12147
|
__typename?: 'OpenAIImageExtractionProperties';
|
10950
12148
|
confidenceThreshold?: number | null;
|
10951
12149
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12150
|
+
customInstructions?: string | null;
|
10952
12151
|
} | null;
|
10953
12152
|
modelText?: {
|
10954
12153
|
__typename?: 'ModelTextExtractionProperties';
|
@@ -10999,7 +12198,9 @@ export type CreateWorkflowMutation = {
|
|
10999
12198
|
} | null;
|
11000
12199
|
};
|
11001
12200
|
export type DeleteAllWorkflowsMutationVariables = Exact<{
|
11002
|
-
|
12201
|
+
filter?: InputMaybe<WorkflowFilter>;
|
12202
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
12203
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11003
12204
|
}>;
|
11004
12205
|
export type DeleteAllWorkflowsMutation = {
|
11005
12206
|
__typename?: 'Mutation';
|
@@ -11022,6 +12223,7 @@ export type DeleteWorkflowMutation = {
|
|
11022
12223
|
};
|
11023
12224
|
export type DeleteWorkflowsMutationVariables = Exact<{
|
11024
12225
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
12226
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11025
12227
|
}>;
|
11026
12228
|
export type DeleteWorkflowsMutation = {
|
11027
12229
|
__typename?: 'Mutation';
|
@@ -11122,6 +12324,7 @@ export type GetWorkflowQuery = {
|
|
11122
12324
|
__typename?: 'OpenAIImageExtractionProperties';
|
11123
12325
|
confidenceThreshold?: number | null;
|
11124
12326
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12327
|
+
customInstructions?: string | null;
|
11125
12328
|
} | null;
|
11126
12329
|
modelText?: {
|
11127
12330
|
__typename?: 'ModelTextExtractionProperties';
|
@@ -11264,6 +12467,7 @@ export type QueryWorkflowsQuery = {
|
|
11264
12467
|
__typename?: 'OpenAIImageExtractionProperties';
|
11265
12468
|
confidenceThreshold?: number | null;
|
11266
12469
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12470
|
+
customInstructions?: string | null;
|
11267
12471
|
} | null;
|
11268
12472
|
modelText?: {
|
11269
12473
|
__typename?: 'ModelTextExtractionProperties';
|
@@ -11400,6 +12604,7 @@ export type UpdateWorkflowMutation = {
|
|
11400
12604
|
__typename?: 'OpenAIImageExtractionProperties';
|
11401
12605
|
confidenceThreshold?: number | null;
|
11402
12606
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12607
|
+
customInstructions?: string | null;
|
11403
12608
|
} | null;
|
11404
12609
|
modelText?: {
|
11405
12610
|
__typename?: 'ModelTextExtractionProperties';
|