graphlit-client 1.0.20240426001 → 1.0.20240505001
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 +159 -132
- package/dist/generated/graphql-documents.js +962 -219
- package/dist/generated/graphql-types.d.ts +1650 -228
- 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 */
|
@@ -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';
|
@@ -3780,14 +4124,34 @@ export type Mutation = {
|
|
3780
4124
|
deleteAlerts?: Maybe<Array<Maybe<Alert>>>;
|
3781
4125
|
/** Bulk deletes alerts based on the provided filter criteria. */
|
3782
4126
|
deleteAllAlerts?: Maybe<Array<Maybe<Alert>>>;
|
4127
|
+
/** Bulk deletes categories based on the provided filter criteria. */
|
4128
|
+
deleteAllCategories?: Maybe<Array<Maybe<Category>>>;
|
3783
4129
|
/** Bulk deletes collections based on the provided filter criteria. */
|
3784
4130
|
deleteAllCollections?: Maybe<Array<Maybe<Collection>>>;
|
3785
4131
|
/** Bulk deletes content based on the provided filter criteria. */
|
3786
4132
|
deleteAllContents?: Maybe<Array<Maybe<Content>>>;
|
3787
4133
|
/** Bulk deletes conversations based on the provided filter criteria. */
|
3788
4134
|
deleteAllConversations?: Maybe<Array<Maybe<Conversation>>>;
|
4135
|
+
/** Bulk deletes events based on the provided filter criteria. */
|
4136
|
+
deleteAllEvents?: Maybe<Array<Maybe<Event>>>;
|
3789
4137
|
/** Bulk deletes feeds based on the provided filter criteria. */
|
3790
4138
|
deleteAllFeeds?: Maybe<Array<Maybe<Feed>>>;
|
4139
|
+
/** Bulk deletes labels based on the provided filter criteria. */
|
4140
|
+
deleteAllLabels?: Maybe<Array<Maybe<Label>>>;
|
4141
|
+
/** Bulk deletes organizations based on the provided filter criteria. */
|
4142
|
+
deleteAllOrganizations?: Maybe<Array<Maybe<Organization>>>;
|
4143
|
+
/** Bulk deletes persons based on the provided filter criteria. */
|
4144
|
+
deleteAllPersons?: Maybe<Array<Maybe<Person>>>;
|
4145
|
+
/** Bulk deletes places based on the provided filter criteria. */
|
4146
|
+
deleteAllPlaces?: Maybe<Array<Maybe<Place>>>;
|
4147
|
+
/** Bulk deletes products based on the provided filter criteria. */
|
4148
|
+
deleteAllProducts?: Maybe<Array<Maybe<Product>>>;
|
4149
|
+
/** Bulk deletes repos based on the provided filter criteria. */
|
4150
|
+
deleteAllRepos?: Maybe<Array<Maybe<Repo>>>;
|
4151
|
+
/** Bulk deletes software based on the provided filter criteria. */
|
4152
|
+
deleteAllSoftwares?: Maybe<Array<Maybe<Software>>>;
|
4153
|
+
/** Bulk deletes specifications based on the provided filter criteria. */
|
4154
|
+
deleteAllSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
3791
4155
|
/** Bulk deletes workflows based on the provided filter criteria. */
|
3792
4156
|
deleteAllWorkflows?: Maybe<Array<Maybe<Workflow>>>;
|
3793
4157
|
/** Bulk deletes categories. */
|
@@ -3846,6 +4210,8 @@ export type Mutation = {
|
|
3846
4210
|
deleteSoftwares?: Maybe<Array<Maybe<Software>>>;
|
3847
4211
|
/** Deletes a LLM specification. */
|
3848
4212
|
deleteSpecification?: Maybe<Specification>;
|
4213
|
+
/** Deletes multiple specifications given their IDs. */
|
4214
|
+
deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
3849
4215
|
/** Deletes a content workflow. */
|
3850
4216
|
deleteWorkflow?: Maybe<Workflow>;
|
3851
4217
|
/** Deletes multiple workflows given their IDs. */
|
@@ -4017,31 +4383,91 @@ export type MutationDeleteAlertArgs = {
|
|
4017
4383
|
};
|
4018
4384
|
export type MutationDeleteAlertsArgs = {
|
4019
4385
|
ids: Array<Scalars['ID']['input']>;
|
4386
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4020
4387
|
};
|
4021
4388
|
export type MutationDeleteAllAlertsArgs = {
|
4389
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4022
4390
|
filter?: InputMaybe<AlertFilter>;
|
4391
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4392
|
+
};
|
4393
|
+
export type MutationDeleteAllCategoriesArgs = {
|
4394
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4395
|
+
filter?: InputMaybe<CategoryFilter>;
|
4396
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4023
4397
|
};
|
4024
4398
|
export type MutationDeleteAllCollectionsArgs = {
|
4025
4399
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4026
4400
|
filter?: InputMaybe<CollectionFilter>;
|
4401
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4027
4402
|
};
|
4028
4403
|
export type MutationDeleteAllContentsArgs = {
|
4029
4404
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4030
4405
|
filter?: InputMaybe<ContentFilter>;
|
4406
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4031
4407
|
};
|
4032
4408
|
export type MutationDeleteAllConversationsArgs = {
|
4033
4409
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4034
4410
|
filter?: InputMaybe<ConversationFilter>;
|
4411
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4412
|
+
};
|
4413
|
+
export type MutationDeleteAllEventsArgs = {
|
4414
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4415
|
+
filter?: InputMaybe<EventFilter>;
|
4416
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4035
4417
|
};
|
4036
4418
|
export type MutationDeleteAllFeedsArgs = {
|
4419
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4037
4420
|
filter?: InputMaybe<FeedFilter>;
|
4421
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4422
|
+
};
|
4423
|
+
export type MutationDeleteAllLabelsArgs = {
|
4424
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4425
|
+
filter?: InputMaybe<LabelFilter>;
|
4426
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4427
|
+
};
|
4428
|
+
export type MutationDeleteAllOrganizationsArgs = {
|
4429
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4430
|
+
filter?: InputMaybe<OrganizationFilter>;
|
4431
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4432
|
+
};
|
4433
|
+
export type MutationDeleteAllPersonsArgs = {
|
4434
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4435
|
+
filter?: InputMaybe<PersonFilter>;
|
4436
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4437
|
+
};
|
4438
|
+
export type MutationDeleteAllPlacesArgs = {
|
4439
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4440
|
+
filter?: InputMaybe<PlaceFilter>;
|
4441
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4442
|
+
};
|
4443
|
+
export type MutationDeleteAllProductsArgs = {
|
4444
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4445
|
+
filter?: InputMaybe<ProductFilter>;
|
4446
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4447
|
+
};
|
4448
|
+
export type MutationDeleteAllReposArgs = {
|
4449
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4450
|
+
filter?: InputMaybe<RepoFilter>;
|
4451
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4452
|
+
};
|
4453
|
+
export type MutationDeleteAllSoftwaresArgs = {
|
4454
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
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']>;
|
4038
4462
|
};
|
4039
4463
|
export type MutationDeleteAllWorkflowsArgs = {
|
4040
4464
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4041
4465
|
filter?: InputMaybe<WorkflowFilter>;
|
4466
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4042
4467
|
};
|
4043
4468
|
export type MutationDeleteCategoriesArgs = {
|
4044
4469
|
ids: Array<Scalars['ID']['input']>;
|
4470
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4045
4471
|
};
|
4046
4472
|
export type MutationDeleteCategoryArgs = {
|
4047
4473
|
id: Scalars['ID']['input'];
|
@@ -4051,36 +4477,42 @@ export type MutationDeleteCollectionArgs = {
|
|
4051
4477
|
};
|
4052
4478
|
export type MutationDeleteCollectionsArgs = {
|
4053
4479
|
ids: Array<Scalars['ID']['input']>;
|
4480
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4054
4481
|
};
|
4055
4482
|
export type MutationDeleteContentArgs = {
|
4056
4483
|
id: Scalars['ID']['input'];
|
4057
4484
|
};
|
4058
4485
|
export type MutationDeleteContentsArgs = {
|
4059
4486
|
ids: Array<Scalars['ID']['input']>;
|
4487
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4060
4488
|
};
|
4061
4489
|
export type MutationDeleteConversationArgs = {
|
4062
4490
|
id: Scalars['ID']['input'];
|
4063
4491
|
};
|
4064
4492
|
export type MutationDeleteConversationsArgs = {
|
4065
4493
|
ids: Array<Scalars['ID']['input']>;
|
4494
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4066
4495
|
};
|
4067
4496
|
export type MutationDeleteEventArgs = {
|
4068
4497
|
id: Scalars['ID']['input'];
|
4069
4498
|
};
|
4070
4499
|
export type MutationDeleteEventsArgs = {
|
4071
4500
|
ids: Array<Scalars['ID']['input']>;
|
4501
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4072
4502
|
};
|
4073
4503
|
export type MutationDeleteFeedArgs = {
|
4074
4504
|
id: Scalars['ID']['input'];
|
4075
4505
|
};
|
4076
4506
|
export type MutationDeleteFeedsArgs = {
|
4077
4507
|
ids: Array<Scalars['ID']['input']>;
|
4508
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4078
4509
|
};
|
4079
4510
|
export type MutationDeleteLabelArgs = {
|
4080
4511
|
id: Scalars['ID']['input'];
|
4081
4512
|
};
|
4082
4513
|
export type MutationDeleteLabelsArgs = {
|
4083
4514
|
ids: Array<Scalars['ID']['input']>;
|
4515
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4084
4516
|
};
|
4085
4517
|
export type MutationDeleteObservationArgs = {
|
4086
4518
|
id: Scalars['ID']['input'];
|
@@ -4090,45 +4522,56 @@ export type MutationDeleteOrganizationArgs = {
|
|
4090
4522
|
};
|
4091
4523
|
export type MutationDeleteOrganizationsArgs = {
|
4092
4524
|
ids: Array<Scalars['ID']['input']>;
|
4525
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4093
4526
|
};
|
4094
4527
|
export type MutationDeletePersonArgs = {
|
4095
4528
|
id: Scalars['ID']['input'];
|
4096
4529
|
};
|
4097
4530
|
export type MutationDeletePersonsArgs = {
|
4098
4531
|
ids: Array<Scalars['ID']['input']>;
|
4532
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4099
4533
|
};
|
4100
4534
|
export type MutationDeletePlaceArgs = {
|
4101
4535
|
id: Scalars['ID']['input'];
|
4102
4536
|
};
|
4103
4537
|
export type MutationDeletePlacesArgs = {
|
4104
4538
|
ids: Array<Scalars['ID']['input']>;
|
4539
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4105
4540
|
};
|
4106
4541
|
export type MutationDeleteProductArgs = {
|
4107
4542
|
id: Scalars['ID']['input'];
|
4108
4543
|
};
|
4109
4544
|
export type MutationDeleteProductsArgs = {
|
4110
4545
|
ids: Array<Scalars['ID']['input']>;
|
4546
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4111
4547
|
};
|
4112
4548
|
export type MutationDeleteRepoArgs = {
|
4113
4549
|
id: Scalars['ID']['input'];
|
4114
4550
|
};
|
4115
4551
|
export type MutationDeleteReposArgs = {
|
4116
4552
|
ids: Array<Scalars['ID']['input']>;
|
4553
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4117
4554
|
};
|
4118
4555
|
export type MutationDeleteSoftwareArgs = {
|
4119
4556
|
id: Scalars['ID']['input'];
|
4120
4557
|
};
|
4121
4558
|
export type MutationDeleteSoftwaresArgs = {
|
4122
4559
|
ids: Array<Scalars['ID']['input']>;
|
4560
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4123
4561
|
};
|
4124
4562
|
export type MutationDeleteSpecificationArgs = {
|
4125
4563
|
id: Scalars['ID']['input'];
|
4126
4564
|
};
|
4565
|
+
export type MutationDeleteSpecificationsArgs = {
|
4566
|
+
ids: Array<Scalars['ID']['input']>;
|
4567
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4568
|
+
};
|
4127
4569
|
export type MutationDeleteWorkflowArgs = {
|
4128
4570
|
id: Scalars['ID']['input'];
|
4129
4571
|
};
|
4130
4572
|
export type MutationDeleteWorkflowsArgs = {
|
4131
4573
|
ids: Array<Scalars['ID']['input']>;
|
4574
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4132
4575
|
};
|
4133
4576
|
export type MutationDisableAlertArgs = {
|
4134
4577
|
id: Scalars['ID']['input'];
|
@@ -4228,6 +4671,7 @@ export type MutationPublishConversationArgs = {
|
|
4228
4671
|
connector: ContentPublishingConnectorInput;
|
4229
4672
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
4230
4673
|
id: Scalars['ID']['input'];
|
4674
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
4231
4675
|
name?: InputMaybe<Scalars['String']['input']>;
|
4232
4676
|
workflow?: InputMaybe<EntityReferenceInput>;
|
4233
4677
|
};
|
@@ -4889,6 +5333,19 @@ export type PackageMetadata = {
|
|
4889
5333
|
/** Whether the package is encrypted or not. */
|
4890
5334
|
isEncrypted?: Maybe<Scalars['Boolean']['output']>;
|
4891
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
|
+
};
|
4892
5349
|
/** Represents a person. */
|
4893
5350
|
export type Person = {
|
4894
5351
|
__typename?: 'Person';
|
@@ -5251,6 +5708,23 @@ export type PointCloudMetadata = {
|
|
5251
5708
|
/** The point cloud device software. */
|
5252
5709
|
software?: Maybe<Scalars['String']['output']>;
|
5253
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
|
+
};
|
5254
5728
|
/** Filter by geospatial point (i.e. latitude, longitude) and distance radius. */
|
5255
5729
|
export type PointFilter = {
|
5256
5730
|
/** The distance radius (in meters). */
|
@@ -5843,7 +6317,9 @@ export declare enum PromptStrategyTypes {
|
|
5843
6317
|
/** Rewrite prompt */
|
5844
6318
|
Rewrite = "REWRITE",
|
5845
6319
|
/** Rewrite prompt as multiple sub-prompts */
|
5846
|
-
RewriteMultiple = "REWRITE_MULTIPLE"
|
6320
|
+
RewriteMultiple = "REWRITE_MULTIPLE",
|
6321
|
+
/** Rewrite prompt as question requiring detailed response with example */
|
6322
|
+
RewriteQuestion = "REWRITE_QUESTION"
|
5847
6323
|
}
|
5848
6324
|
/** Represents a prompt strategy. */
|
5849
6325
|
export type PromptStrategyUpdateInput = {
|
@@ -5892,12 +6368,20 @@ export type Query = {
|
|
5892
6368
|
conversation?: Maybe<Conversation>;
|
5893
6369
|
/** Retrieves conversations based on the provided filter criteria. */
|
5894
6370
|
conversations?: Maybe<ConversationResults>;
|
6371
|
+
/** Counts alerts based on the provided filter criteria. */
|
6372
|
+
countAlerts?: Maybe<CountResult>;
|
5895
6373
|
/** Counts categories based on the provided filter criteria. */
|
5896
6374
|
countCategories?: Maybe<CountResult>;
|
6375
|
+
/** Counts collections based on the provided filter criteria. */
|
6376
|
+
countCollections?: Maybe<CountResult>;
|
5897
6377
|
/** Counts contents based on the provided filter criteria. */
|
5898
6378
|
countContents?: Maybe<CountResult>;
|
6379
|
+
/** Counts conversations based on the provided filter criteria. */
|
6380
|
+
countConversations?: Maybe<CountResult>;
|
5899
6381
|
/** Counts events based on the provided filter criteria. */
|
5900
6382
|
countEvents?: Maybe<CountResult>;
|
6383
|
+
/** Counts feeds based on the provided filter criteria. */
|
6384
|
+
countFeeds?: Maybe<CountResult>;
|
5901
6385
|
/** Counts labels based on the provided filter criteria. */
|
5902
6386
|
countLabels?: Maybe<CountResult>;
|
5903
6387
|
/** Counts organizations based on the provided filter criteria. */
|
@@ -5911,7 +6395,11 @@ export type Query = {
|
|
5911
6395
|
/** Counts repos based on the provided filter criteria. */
|
5912
6396
|
countRepos?: Maybe<CountResult>;
|
5913
6397
|
/** Counts software based on the provided filter criteria. */
|
5914
|
-
|
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>;
|
5915
6403
|
/** Retrieves correlated project credits. */
|
5916
6404
|
credits?: Maybe<Array<Maybe<ProjectCredits>>>;
|
5917
6405
|
/** Lookup an event given its ID. */
|
@@ -5936,6 +6424,8 @@ export type Query = {
|
|
5936
6424
|
lookupCredits?: Maybe<ProjectCredits>;
|
5937
6425
|
/** Lookup usage records given tenant correlation identifier. */
|
5938
6426
|
lookupUsage?: Maybe<Array<Maybe<ProjectUsageRecord>>>;
|
6427
|
+
/** Retrieves Microsoft Graph consent URI. Visit URI to provide administrator consent for feeds which use the Microsoft Graph API, such as SharePoint and Microsoft Teams. */
|
6428
|
+
microsoftGraphConsentUri?: Maybe<UriResult>;
|
5939
6429
|
/** Lookup a observation given its ID. */
|
5940
6430
|
observation?: Maybe<Observation>;
|
5941
6431
|
/** Lookup an organization given its ID. */
|
@@ -5962,8 +6452,6 @@ export type Query = {
|
|
5962
6452
|
repo?: Maybe<Repo>;
|
5963
6453
|
/** Retrieves code repositories based on the provided filter criteria. */
|
5964
6454
|
repos?: Maybe<RepoResults>;
|
5965
|
-
/** Retrieves SharePoint consent URI. Visit URI to provide administrator consent for SharePoint feed. */
|
5966
|
-
sharePointConsentUri?: Maybe<UriResult>;
|
5967
6455
|
/** Retrieves available SharePoint document libraries. */
|
5968
6456
|
sharePointLibraries?: Maybe<SharePointLibraryResults>;
|
5969
6457
|
/** Lookup software given its ID. */
|
@@ -6014,6 +6502,7 @@ export type QueryContentsArgs = {
|
|
6014
6502
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6015
6503
|
facets?: InputMaybe<Array<ContentFacetInput>>;
|
6016
6504
|
filter?: InputMaybe<ContentFilter>;
|
6505
|
+
graph?: InputMaybe<ContentGraphInput>;
|
6017
6506
|
};
|
6018
6507
|
export type QueryConversationArgs = {
|
6019
6508
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -6023,18 +6512,34 @@ export type QueryConversationsArgs = {
|
|
6023
6512
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6024
6513
|
filter?: InputMaybe<ConversationFilter>;
|
6025
6514
|
};
|
6515
|
+
export type QueryCountAlertsArgs = {
|
6516
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6517
|
+
filter?: InputMaybe<AlertFilter>;
|
6518
|
+
};
|
6026
6519
|
export type QueryCountCategoriesArgs = {
|
6027
6520
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6028
6521
|
filter?: InputMaybe<CategoryFilter>;
|
6029
6522
|
};
|
6523
|
+
export type QueryCountCollectionsArgs = {
|
6524
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6525
|
+
filter?: InputMaybe<CollectionFilter>;
|
6526
|
+
};
|
6030
6527
|
export type QueryCountContentsArgs = {
|
6031
6528
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6032
6529
|
filter?: InputMaybe<ContentFilter>;
|
6033
6530
|
};
|
6531
|
+
export type QueryCountConversationsArgs = {
|
6532
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6533
|
+
filter?: InputMaybe<ConversationFilter>;
|
6534
|
+
};
|
6034
6535
|
export type QueryCountEventsArgs = {
|
6035
6536
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6036
6537
|
filter?: InputMaybe<EventFilter>;
|
6037
6538
|
};
|
6539
|
+
export type QueryCountFeedsArgs = {
|
6540
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6541
|
+
filter?: InputMaybe<FeedFilter>;
|
6542
|
+
};
|
6038
6543
|
export type QueryCountLabelsArgs = {
|
6039
6544
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6040
6545
|
filter?: InputMaybe<LabelFilter>;
|
@@ -6059,15 +6564,23 @@ export type QueryCountReposArgs = {
|
|
6059
6564
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6060
6565
|
filter?: InputMaybe<RepoFilter>;
|
6061
6566
|
};
|
6062
|
-
export type
|
6567
|
+
export type QueryCountSoftwaresArgs = {
|
6063
6568
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6064
6569
|
filter?: InputMaybe<SoftwareFilter>;
|
6065
6570
|
};
|
6066
|
-
export type
|
6067
|
-
|
6068
|
-
|
6069
|
-
};
|
6070
|
-
export type
|
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
|
+
};
|
6579
|
+
export type QueryCreditsArgs = {
|
6580
|
+
duration: Scalars['TimeSpan']['input'];
|
6581
|
+
startDate: Scalars['DateTime']['input'];
|
6582
|
+
};
|
6583
|
+
export type QueryEventArgs = {
|
6071
6584
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6072
6585
|
id: Scalars['ID']['input'];
|
6073
6586
|
};
|
@@ -6111,6 +6624,9 @@ export type QueryLookupCreditsArgs = {
|
|
6111
6624
|
export type QueryLookupUsageArgs = {
|
6112
6625
|
correlationId: Scalars['String']['input'];
|
6113
6626
|
};
|
6627
|
+
export type QueryMicrosoftGraphConsentUriArgs = {
|
6628
|
+
tenantId: Scalars['ID']['input'];
|
6629
|
+
};
|
6114
6630
|
export type QueryObservationArgs = {
|
6115
6631
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6116
6632
|
id: Scalars['ID']['input'];
|
@@ -6167,9 +6683,6 @@ export type QueryReposArgs = {
|
|
6167
6683
|
facets?: InputMaybe<Array<RepoFacetInput>>;
|
6168
6684
|
filter?: InputMaybe<RepoFilter>;
|
6169
6685
|
};
|
6170
|
-
export type QuerySharePointConsentUriArgs = {
|
6171
|
-
tenantId: Scalars['ID']['input'];
|
6172
|
-
};
|
6173
6686
|
export type QuerySharePointLibrariesArgs = {
|
6174
6687
|
properties: SharePointLibrariesInput;
|
6175
6688
|
};
|
@@ -6484,7 +6997,9 @@ export declare enum RerankingModelServiceTypes {
|
|
6484
6997
|
/** Cohere */
|
6485
6998
|
Cohere = "COHERE",
|
6486
6999
|
/** Jina */
|
6487
|
-
Jina = "JINA"
|
7000
|
+
Jina = "JINA",
|
7001
|
+
/** Pongo */
|
7002
|
+
Pongo = "PONGO"
|
6488
7003
|
}
|
6489
7004
|
/** Represents a reranking strategy. */
|
6490
7005
|
export type RerankingStrategy = {
|
@@ -6570,6 +7085,19 @@ export type ShapeMetadata = {
|
|
6570
7085
|
/** The shape WKT (well-known text) specification. */
|
6571
7086
|
wkt?: Maybe<Scalars['String']['output']>;
|
6572
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
|
+
};
|
6573
7101
|
export declare enum SharePointAuthenticationTypes {
|
6574
7102
|
Application = "APPLICATION",
|
6575
7103
|
User = "USER"
|
@@ -7376,19 +7904,48 @@ export type UriResult = {
|
|
7376
7904
|
/** Represents video metadata. */
|
7377
7905
|
export type VideoMetadata = {
|
7378
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']>;
|
7379
7911
|
/** The video duration. */
|
7380
7912
|
duration?: Maybe<Scalars['String']['output']>;
|
7381
7913
|
/** The video height. */
|
7382
7914
|
height?: Maybe<Scalars['Int']['output']>;
|
7915
|
+
/** The episode keywords, if podcast episode. */
|
7916
|
+
keywords?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
7383
7917
|
/** The video device make. */
|
7384
7918
|
make?: Maybe<Scalars['String']['output']>;
|
7385
7919
|
/** The video device model. */
|
7386
7920
|
model?: Maybe<Scalars['String']['output']>;
|
7387
7921
|
/** The video device software. */
|
7388
7922
|
software?: Maybe<Scalars['String']['output']>;
|
7923
|
+
/** The audio title. */
|
7924
|
+
title?: Maybe<Scalars['String']['output']>;
|
7389
7925
|
/** The video width. */
|
7390
7926
|
width?: Maybe<Scalars['Int']['output']>;
|
7391
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
|
+
};
|
7392
7949
|
/** Represents web feed properties. */
|
7393
7950
|
export type WebFeedProperties = {
|
7394
7951
|
__typename?: 'WebFeedProperties';
|
@@ -7569,6 +8126,16 @@ export declare enum YouTubeTypes {
|
|
7569
8126
|
/** YouTube Videos */
|
7570
8127
|
Videos = "VIDEOS"
|
7571
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
|
+
};
|
7572
8139
|
export type CreateAlertMutationVariables = Exact<{
|
7573
8140
|
alert: AlertInput;
|
7574
8141
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -7596,6 +8163,7 @@ export type DeleteAlertMutation = {
|
|
7596
8163
|
};
|
7597
8164
|
export type DeleteAlertsMutationVariables = Exact<{
|
7598
8165
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8166
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7599
8167
|
}>;
|
7600
8168
|
export type DeleteAlertsMutation = {
|
7601
8169
|
__typename?: 'Mutation';
|
@@ -7606,7 +8174,9 @@ export type DeleteAlertsMutation = {
|
|
7606
8174
|
} | null> | null;
|
7607
8175
|
};
|
7608
8176
|
export type DeleteAllAlertsMutationVariables = Exact<{
|
7609
|
-
|
8177
|
+
filter?: InputMaybe<AlertFilter>;
|
8178
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8179
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7610
8180
|
}>;
|
7611
8181
|
export type DeleteAllAlertsMutation = {
|
7612
8182
|
__typename?: 'Mutation';
|
@@ -7832,6 +8402,16 @@ export type UpdateAlertMutation = {
|
|
7832
8402
|
type: AlertTypes;
|
7833
8403
|
} | null;
|
7834
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
|
+
};
|
7835
8415
|
export type CreateCategoryMutationVariables = Exact<{
|
7836
8416
|
category: CategoryInput;
|
7837
8417
|
}>;
|
@@ -7843,8 +8423,22 @@ export type CreateCategoryMutation = {
|
|
7843
8423
|
name: string;
|
7844
8424
|
} | null;
|
7845
8425
|
};
|
8426
|
+
export type DeleteAllCategoriesMutationVariables = Exact<{
|
8427
|
+
filter?: InputMaybe<CategoryFilter>;
|
8428
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8429
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8430
|
+
}>;
|
8431
|
+
export type DeleteAllCategoriesMutation = {
|
8432
|
+
__typename?: 'Mutation';
|
8433
|
+
deleteAllCategories?: Array<{
|
8434
|
+
__typename?: 'Category';
|
8435
|
+
id: string;
|
8436
|
+
state: EntityState;
|
8437
|
+
} | null> | null;
|
8438
|
+
};
|
7846
8439
|
export type DeleteCategoriesMutationVariables = Exact<{
|
7847
8440
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8441
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7848
8442
|
}>;
|
7849
8443
|
export type DeleteCategoriesMutation = {
|
7850
8444
|
__typename?: 'Mutation';
|
@@ -7874,10 +8468,12 @@ export type GetCategoryQuery = {
|
|
7874
8468
|
__typename?: 'Category';
|
7875
8469
|
id: string;
|
7876
8470
|
name: string;
|
8471
|
+
description?: string | null;
|
8472
|
+
creationDate: any;
|
7877
8473
|
} | null;
|
7878
8474
|
};
|
7879
8475
|
export type QueryCategoriesQueryVariables = Exact<{
|
7880
|
-
filter
|
8476
|
+
filter?: InputMaybe<CategoryFilter>;
|
7881
8477
|
}>;
|
7882
8478
|
export type QueryCategoriesQuery = {
|
7883
8479
|
__typename?: 'Query';
|
@@ -7887,6 +8483,8 @@ export type QueryCategoriesQuery = {
|
|
7887
8483
|
__typename?: 'Category';
|
7888
8484
|
id: string;
|
7889
8485
|
name: string;
|
8486
|
+
description?: string | null;
|
8487
|
+
creationDate: any;
|
7890
8488
|
} | null> | null;
|
7891
8489
|
} | null;
|
7892
8490
|
};
|
@@ -7920,6 +8518,16 @@ export type AddContentsToCollectionsMutation = {
|
|
7920
8518
|
} | null> | null;
|
7921
8519
|
} | null> | null;
|
7922
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
|
+
};
|
7923
8531
|
export type CreateCollectionMutationVariables = Exact<{
|
7924
8532
|
collection: CollectionInput;
|
7925
8533
|
}>;
|
@@ -7934,7 +8542,9 @@ export type CreateCollectionMutation = {
|
|
7934
8542
|
} | null;
|
7935
8543
|
};
|
7936
8544
|
export type DeleteAllCollectionsMutationVariables = Exact<{
|
7937
|
-
|
8545
|
+
filter?: InputMaybe<CollectionFilter>;
|
8546
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8547
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7938
8548
|
}>;
|
7939
8549
|
export type DeleteAllCollectionsMutation = {
|
7940
8550
|
__typename?: 'Mutation';
|
@@ -7957,6 +8567,7 @@ export type DeleteCollectionMutation = {
|
|
7957
8567
|
};
|
7958
8568
|
export type DeleteCollectionsMutationVariables = Exact<{
|
7959
8569
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8570
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7960
8571
|
}>;
|
7961
8572
|
export type DeleteCollectionsMutation = {
|
7962
8573
|
__typename?: 'Mutation';
|
@@ -8047,8 +8658,20 @@ export type UpdateCollectionMutation = {
|
|
8047
8658
|
type?: CollectionTypes | null;
|
8048
8659
|
} | null;
|
8049
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
|
+
};
|
8050
8671
|
export type DeleteAllContentsMutationVariables = Exact<{
|
8051
|
-
|
8672
|
+
filter?: InputMaybe<ContentFilter>;
|
8673
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8674
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8052
8675
|
}>;
|
8053
8676
|
export type DeleteAllContentsMutation = {
|
8054
8677
|
__typename?: 'Mutation';
|
@@ -8071,6 +8694,7 @@ export type DeleteContentMutation = {
|
|
8071
8694
|
};
|
8072
8695
|
export type DeleteContentsMutationVariables = Exact<{
|
8073
8696
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
8697
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8074
8698
|
}>;
|
8075
8699
|
export type DeleteContentsMutation = {
|
8076
8700
|
__typename?: 'Mutation';
|
@@ -8114,13 +8738,14 @@ export type GetContentQuery = {
|
|
8114
8738
|
__typename?: 'Content';
|
8115
8739
|
id: string;
|
8116
8740
|
name: string;
|
8117
|
-
description?: string | null;
|
8118
8741
|
creationDate: any;
|
8119
8742
|
state: EntityState;
|
8120
8743
|
originalDate?: any | null;
|
8121
8744
|
finishedDate?: any | null;
|
8122
8745
|
workflowDuration?: any | null;
|
8123
8746
|
uri?: any | null;
|
8747
|
+
description?: string | null;
|
8748
|
+
markdown?: string | null;
|
8124
8749
|
type?: ContentTypes | null;
|
8125
8750
|
fileType?: FileTypes | null;
|
8126
8751
|
mimeType?: string | null;
|
@@ -8131,20 +8756,36 @@ export type GetContentQuery = {
|
|
8131
8756
|
textUri?: any | null;
|
8132
8757
|
audioUri?: any | null;
|
8133
8758
|
transcriptUri?: any | null;
|
8134
|
-
markdown?: string | null;
|
8135
8759
|
error?: string | null;
|
8136
8760
|
owner: {
|
8137
8761
|
__typename?: 'Owner';
|
8138
8762
|
id: string;
|
8139
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;
|
8140
8777
|
video?: {
|
8141
8778
|
__typename?: 'VideoMetadata';
|
8142
8779
|
width?: number | null;
|
8143
8780
|
height?: number | null;
|
8144
8781
|
duration?: string | null;
|
8145
|
-
software?: string | null;
|
8146
8782
|
make?: string | null;
|
8147
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;
|
8148
8789
|
} | null;
|
8149
8790
|
audio?: {
|
8150
8791
|
__typename?: 'AudioMetadata';
|
@@ -8159,6 +8800,7 @@ export type GetContentQuery = {
|
|
8159
8800
|
language?: string | null;
|
8160
8801
|
genre?: string | null;
|
8161
8802
|
title?: string | null;
|
8803
|
+
description?: string | null;
|
8162
8804
|
bitrate?: number | null;
|
8163
8805
|
channels?: number | null;
|
8164
8806
|
sampleRate?: number | null;
|
@@ -8169,21 +8811,32 @@ export type GetContentQuery = {
|
|
8169
8811
|
__typename?: 'ImageMetadata';
|
8170
8812
|
width?: number | null;
|
8171
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;
|
8172
8820
|
description?: string | null;
|
8173
|
-
software?: string | null;
|
8174
|
-
identifier?: string | null;
|
8175
8821
|
make?: string | null;
|
8176
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;
|
8177
8831
|
} | null;
|
8178
8832
|
document?: {
|
8179
8833
|
__typename?: 'DocumentMetadata';
|
8180
8834
|
title?: string | null;
|
8181
8835
|
subject?: string | null;
|
8836
|
+
summary?: string | null;
|
8182
8837
|
author?: string | null;
|
8183
|
-
software?: string | null;
|
8184
8838
|
publisher?: string | null;
|
8185
8839
|
description?: string | null;
|
8186
|
-
summary?: string | null;
|
8187
8840
|
keywords?: Array<string | null> | null;
|
8188
8841
|
pageCount?: number | null;
|
8189
8842
|
worksheetCount?: number | null;
|
@@ -8191,61 +8844,93 @@ export type GetContentQuery = {
|
|
8191
8844
|
wordCount?: number | null;
|
8192
8845
|
lineCount?: number | null;
|
8193
8846
|
paragraphCount?: number | null;
|
8194
|
-
characterCount?: number | null;
|
8195
8847
|
isEncrypted?: boolean | null;
|
8196
8848
|
hasDigitalSignature?: boolean | null;
|
8197
8849
|
} | null;
|
8198
8850
|
email?: {
|
8199
8851
|
__typename?: 'EmailMetadata';
|
8200
|
-
subject?: string | null;
|
8201
8852
|
identifier?: string | null;
|
8853
|
+
subject?: string | null;
|
8854
|
+
labels?: Array<string | null> | null;
|
8202
8855
|
sensitivity?: MailSensitivity | null;
|
8203
8856
|
priority?: MailPriority | null;
|
8204
8857
|
importance?: MailImportance | null;
|
8205
|
-
labels?: Array<string | null> | null;
|
8206
8858
|
from?: Array<{
|
8207
8859
|
__typename?: 'PersonReference';
|
8208
8860
|
name?: string | null;
|
8209
|
-
familyName?: string | null;
|
8210
|
-
givenName?: string | null;
|
8211
8861
|
email?: string | null;
|
8862
|
+
givenName?: string | null;
|
8863
|
+
familyName?: string | null;
|
8212
8864
|
} | null> | null;
|
8213
8865
|
to?: Array<{
|
8214
8866
|
__typename?: 'PersonReference';
|
8215
8867
|
name?: string | null;
|
8216
|
-
familyName?: string | null;
|
8217
|
-
givenName?: string | null;
|
8218
8868
|
email?: string | null;
|
8869
|
+
givenName?: string | null;
|
8870
|
+
familyName?: string | null;
|
8219
8871
|
} | null> | null;
|
8220
8872
|
cc?: Array<{
|
8221
8873
|
__typename?: 'PersonReference';
|
8222
8874
|
name?: string | null;
|
8223
|
-
familyName?: string | null;
|
8224
|
-
givenName?: string | null;
|
8225
8875
|
email?: string | null;
|
8876
|
+
givenName?: string | null;
|
8877
|
+
familyName?: string | null;
|
8226
8878
|
} | null> | null;
|
8227
8879
|
bcc?: Array<{
|
8228
8880
|
__typename?: 'PersonReference';
|
8229
8881
|
name?: string | null;
|
8230
|
-
familyName?: string | null;
|
8231
|
-
givenName?: string | null;
|
8232
8882
|
email?: string | null;
|
8883
|
+
givenName?: string | null;
|
8884
|
+
familyName?: string | null;
|
8233
8885
|
} | null> | null;
|
8234
8886
|
} | null;
|
8235
8887
|
issue?: {
|
8236
8888
|
__typename?: 'IssueMetadata';
|
8889
|
+
identifier?: string | null;
|
8237
8890
|
title?: string | null;
|
8238
8891
|
project?: string | null;
|
8239
8892
|
team?: string | null;
|
8240
8893
|
status?: string | null;
|
8241
8894
|
priority?: string | null;
|
8242
8895
|
type?: string | null;
|
8243
|
-
identifier?: string | null;
|
8244
8896
|
labels?: Array<string | null> | null;
|
8245
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;
|
8246
8929
|
observations?: Array<{
|
8247
8930
|
__typename?: 'Observation';
|
8931
|
+
id: string;
|
8248
8932
|
type: ObservableTypes;
|
8933
|
+
state: EntityState;
|
8249
8934
|
observable: {
|
8250
8935
|
__typename?: 'NamedEntityReference';
|
8251
8936
|
id: string;
|
@@ -8255,9 +8940,9 @@ export type GetContentQuery = {
|
|
8255
8940
|
__typename?: 'ObservationOccurrence';
|
8256
8941
|
type?: OccurrenceTypes | null;
|
8257
8942
|
confidence?: number | null;
|
8258
|
-
pageIndex?: number | null;
|
8259
8943
|
startTime?: any | null;
|
8260
8944
|
endTime?: any | null;
|
8945
|
+
pageIndex?: number | null;
|
8261
8946
|
boundingBox?: {
|
8262
8947
|
__typename?: 'BoundingBox';
|
8263
8948
|
left?: number | null;
|
@@ -8267,30 +8952,32 @@ export type GetContentQuery = {
|
|
8267
8952
|
} | null;
|
8268
8953
|
} | null> | null;
|
8269
8954
|
} | null> | null;
|
8270
|
-
parent?: {
|
8271
|
-
__typename?: 'Content';
|
8272
|
-
id: string;
|
8273
|
-
} | null;
|
8274
|
-
children?: Array<{
|
8275
|
-
__typename?: 'Content';
|
8276
|
-
id: string;
|
8277
|
-
} | null> | null;
|
8278
|
-
collections?: Array<{
|
8279
|
-
__typename?: 'Collection';
|
8280
|
-
id: string;
|
8281
|
-
} | null> | null;
|
8282
|
-
feed?: {
|
8283
|
-
__typename?: 'Feed';
|
8284
|
-
id: string;
|
8285
|
-
} | null;
|
8286
8955
|
workflow?: {
|
8287
8956
|
__typename?: 'Workflow';
|
8288
8957
|
id: string;
|
8958
|
+
name: string;
|
8289
8959
|
} | null;
|
8290
|
-
|
8291
|
-
__typename?: '
|
8292
|
-
|
8293
|
-
|
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;
|
8294
8981
|
}> | null;
|
8295
8982
|
} | null;
|
8296
8983
|
};
|
@@ -8315,6 +9002,11 @@ export type IngestEncodedFileMutation = {
|
|
8315
9002
|
fileType?: FileTypes | null;
|
8316
9003
|
mimeType?: string | null;
|
8317
9004
|
uri?: any | null;
|
9005
|
+
collections?: Array<{
|
9006
|
+
__typename?: 'Collection';
|
9007
|
+
id: string;
|
9008
|
+
name: string;
|
9009
|
+
} | null> | null;
|
8318
9010
|
} | null;
|
8319
9011
|
};
|
8320
9012
|
export type IngestTextMutationVariables = Exact<{
|
@@ -8324,8 +9016,8 @@ export type IngestTextMutationVariables = Exact<{
|
|
8324
9016
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
8325
9017
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8326
9018
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8327
|
-
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8328
9019
|
workflow?: InputMaybe<EntityReferenceInput>;
|
9020
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8329
9021
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8330
9022
|
}>;
|
8331
9023
|
export type IngestTextMutation = {
|
@@ -8339,6 +9031,11 @@ export type IngestTextMutation = {
|
|
8339
9031
|
fileType?: FileTypes | null;
|
8340
9032
|
mimeType?: string | null;
|
8341
9033
|
uri?: any | null;
|
9034
|
+
collections?: Array<{
|
9035
|
+
__typename?: 'Collection';
|
9036
|
+
id: string;
|
9037
|
+
name: string;
|
9038
|
+
} | null> | null;
|
8342
9039
|
} | null;
|
8343
9040
|
};
|
8344
9041
|
export type IngestUriMutationVariables = Exact<{
|
@@ -8346,8 +9043,8 @@ export type IngestUriMutationVariables = Exact<{
|
|
8346
9043
|
uri: Scalars['URL']['input'];
|
8347
9044
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8348
9045
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8349
|
-
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8350
9046
|
workflow?: InputMaybe<EntityReferenceInput>;
|
9047
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
8351
9048
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8352
9049
|
}>;
|
8353
9050
|
export type IngestUriMutation = {
|
@@ -8361,6 +9058,11 @@ export type IngestUriMutation = {
|
|
8361
9058
|
fileType?: FileTypes | null;
|
8362
9059
|
mimeType?: string | null;
|
8363
9060
|
uri?: any | null;
|
9061
|
+
collections?: Array<{
|
9062
|
+
__typename?: 'Collection';
|
9063
|
+
id: string;
|
9064
|
+
name: string;
|
9065
|
+
} | null> | null;
|
8364
9066
|
} | null;
|
8365
9067
|
};
|
8366
9068
|
export type IsContentDoneQueryVariables = Exact<{
|
@@ -8378,12 +9080,12 @@ export type PublishContentsMutationVariables = Exact<{
|
|
8378
9080
|
publishPrompt: Scalars['String']['input'];
|
8379
9081
|
connector: ContentPublishingConnectorInput;
|
8380
9082
|
filter?: InputMaybe<ContentFilter>;
|
9083
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8381
9084
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8382
9085
|
name?: InputMaybe<Scalars['String']['input']>;
|
8383
9086
|
summarySpecification?: InputMaybe<EntityReferenceInput>;
|
8384
9087
|
publishSpecification?: InputMaybe<EntityReferenceInput>;
|
8385
9088
|
workflow?: InputMaybe<EntityReferenceInput>;
|
8386
|
-
isSynchronous: Scalars['Boolean']['input'];
|
8387
9089
|
}>;
|
8388
9090
|
export type PublishContentsMutation = {
|
8389
9091
|
__typename?: 'Mutation';
|
@@ -8399,16 +9101,21 @@ export type PublishContentsMutation = {
|
|
8399
9101
|
textUri?: any | null;
|
8400
9102
|
audioUri?: any | null;
|
8401
9103
|
markdown?: string | null;
|
9104
|
+
collections?: Array<{
|
9105
|
+
__typename?: 'Collection';
|
9106
|
+
id: string;
|
9107
|
+
name: string;
|
9108
|
+
} | null> | null;
|
8402
9109
|
} | null;
|
8403
9110
|
};
|
8404
9111
|
export type PublishTextMutationVariables = Exact<{
|
8405
9112
|
text: Scalars['String']['input'];
|
8406
9113
|
textType?: InputMaybe<TextTypes>;
|
8407
9114
|
connector: ContentPublishingConnectorInput;
|
9115
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8408
9116
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8409
9117
|
name?: InputMaybe<Scalars['String']['input']>;
|
8410
9118
|
workflow?: InputMaybe<EntityReferenceInput>;
|
8411
|
-
isSynchronous: Scalars['Boolean']['input'];
|
8412
9119
|
}>;
|
8413
9120
|
export type PublishTextMutation = {
|
8414
9121
|
__typename?: 'Mutation';
|
@@ -8424,35 +9131,15 @@ export type PublishTextMutation = {
|
|
8424
9131
|
textUri?: any | null;
|
8425
9132
|
audioUri?: any | null;
|
8426
9133
|
markdown?: string | null;
|
8427
|
-
|
8428
|
-
|
8429
|
-
|
8430
|
-
|
8431
|
-
facets?: InputMaybe<Array<ContentFacetInput> | ContentFacetInput>;
|
8432
|
-
}>;
|
8433
|
-
export type QueryContentFacetsQuery = {
|
8434
|
-
__typename?: 'Query';
|
8435
|
-
contents?: {
|
8436
|
-
__typename?: 'ContentResults';
|
8437
|
-
facets?: Array<{
|
8438
|
-
__typename?: 'ContentFacet';
|
8439
|
-
facet?: ContentFacetTypes | null;
|
8440
|
-
type?: FacetValueTypes | null;
|
8441
|
-
count?: any | null;
|
8442
|
-
observable?: {
|
8443
|
-
__typename?: 'ObservableFacet';
|
8444
|
-
type?: ObservableTypes | null;
|
8445
|
-
observable?: {
|
8446
|
-
__typename?: 'NamedEntityReference';
|
8447
|
-
id: string;
|
8448
|
-
name?: string | null;
|
8449
|
-
} | null;
|
8450
|
-
} | null;
|
9134
|
+
collections?: Array<{
|
9135
|
+
__typename?: 'Collection';
|
9136
|
+
id: string;
|
9137
|
+
name: string;
|
8451
9138
|
} | null> | null;
|
8452
9139
|
} | null;
|
8453
9140
|
};
|
8454
9141
|
export type QueryContentsQueryVariables = Exact<{
|
8455
|
-
filter
|
9142
|
+
filter: ContentFilter;
|
8456
9143
|
}>;
|
8457
9144
|
export type QueryContentsQuery = {
|
8458
9145
|
__typename?: 'Query';
|
@@ -8468,6 +9155,8 @@ export type QueryContentsQuery = {
|
|
8468
9155
|
finishedDate?: any | null;
|
8469
9156
|
workflowDuration?: any | null;
|
8470
9157
|
uri?: any | null;
|
9158
|
+
description?: string | null;
|
9159
|
+
markdown?: string | null;
|
8471
9160
|
type?: ContentTypes | null;
|
8472
9161
|
fileType?: FileTypes | null;
|
8473
9162
|
mimeType?: string | null;
|
@@ -8478,42 +9167,36 @@ export type QueryContentsQuery = {
|
|
8478
9167
|
textUri?: any | null;
|
8479
9168
|
audioUri?: any | null;
|
8480
9169
|
transcriptUri?: any | null;
|
8481
|
-
markdown?: string | null;
|
8482
9170
|
error?: string | null;
|
8483
9171
|
owner: {
|
8484
9172
|
__typename?: 'Owner';
|
8485
9173
|
id: string;
|
8486
9174
|
};
|
8487
|
-
|
8488
|
-
__typename?: '
|
8489
|
-
|
8490
|
-
|
8491
|
-
|
8492
|
-
|
8493
|
-
|
8494
|
-
|
8495
|
-
|
8496
|
-
|
8497
|
-
|
8498
|
-
|
8499
|
-
|
8500
|
-
} | null> | null;
|
8501
|
-
}> | null;
|
8502
|
-
segments?: Array<{
|
8503
|
-
__typename?: 'TextSegment';
|
8504
|
-
startTime?: any | null;
|
8505
|
-
endTime?: any | null;
|
8506
|
-
text?: string | null;
|
8507
|
-
relevance?: number | null;
|
8508
|
-
}> | 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;
|
8509
9188
|
video?: {
|
8510
9189
|
__typename?: 'VideoMetadata';
|
8511
9190
|
width?: number | null;
|
8512
9191
|
height?: number | null;
|
8513
9192
|
duration?: string | null;
|
8514
|
-
software?: string | null;
|
8515
9193
|
make?: string | null;
|
8516
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;
|
8517
9200
|
} | null;
|
8518
9201
|
audio?: {
|
8519
9202
|
__typename?: 'AudioMetadata';
|
@@ -8528,6 +9211,7 @@ export type QueryContentsQuery = {
|
|
8528
9211
|
language?: string | null;
|
8529
9212
|
genre?: string | null;
|
8530
9213
|
title?: string | null;
|
9214
|
+
description?: string | null;
|
8531
9215
|
bitrate?: number | null;
|
8532
9216
|
channels?: number | null;
|
8533
9217
|
sampleRate?: number | null;
|
@@ -8538,21 +9222,32 @@ export type QueryContentsQuery = {
|
|
8538
9222
|
__typename?: 'ImageMetadata';
|
8539
9223
|
width?: number | null;
|
8540
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;
|
8541
9231
|
description?: string | null;
|
8542
|
-
software?: string | null;
|
8543
|
-
identifier?: string | null;
|
8544
9232
|
make?: string | null;
|
8545
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;
|
8546
9242
|
} | null;
|
8547
9243
|
document?: {
|
8548
9244
|
__typename?: 'DocumentMetadata';
|
8549
9245
|
title?: string | null;
|
8550
9246
|
subject?: string | null;
|
9247
|
+
summary?: string | null;
|
8551
9248
|
author?: string | null;
|
8552
|
-
software?: string | null;
|
8553
9249
|
publisher?: string | null;
|
8554
9250
|
description?: string | null;
|
8555
|
-
summary?: string | null;
|
8556
9251
|
keywords?: Array<string | null> | null;
|
8557
9252
|
pageCount?: number | null;
|
8558
9253
|
worksheetCount?: number | null;
|
@@ -8560,61 +9255,93 @@ export type QueryContentsQuery = {
|
|
8560
9255
|
wordCount?: number | null;
|
8561
9256
|
lineCount?: number | null;
|
8562
9257
|
paragraphCount?: number | null;
|
8563
|
-
characterCount?: number | null;
|
8564
9258
|
isEncrypted?: boolean | null;
|
8565
9259
|
hasDigitalSignature?: boolean | null;
|
8566
9260
|
} | null;
|
8567
9261
|
email?: {
|
8568
9262
|
__typename?: 'EmailMetadata';
|
8569
|
-
subject?: string | null;
|
8570
9263
|
identifier?: string | null;
|
9264
|
+
subject?: string | null;
|
9265
|
+
labels?: Array<string | null> | null;
|
8571
9266
|
sensitivity?: MailSensitivity | null;
|
8572
9267
|
priority?: MailPriority | null;
|
8573
9268
|
importance?: MailImportance | null;
|
8574
|
-
labels?: Array<string | null> | null;
|
8575
9269
|
from?: Array<{
|
8576
9270
|
__typename?: 'PersonReference';
|
8577
9271
|
name?: string | null;
|
8578
|
-
familyName?: string | null;
|
8579
|
-
givenName?: string | null;
|
8580
9272
|
email?: string | null;
|
9273
|
+
givenName?: string | null;
|
9274
|
+
familyName?: string | null;
|
8581
9275
|
} | null> | null;
|
8582
9276
|
to?: Array<{
|
8583
9277
|
__typename?: 'PersonReference';
|
8584
9278
|
name?: string | null;
|
8585
|
-
familyName?: string | null;
|
8586
|
-
givenName?: string | null;
|
8587
9279
|
email?: string | null;
|
9280
|
+
givenName?: string | null;
|
9281
|
+
familyName?: string | null;
|
8588
9282
|
} | null> | null;
|
8589
9283
|
cc?: Array<{
|
8590
9284
|
__typename?: 'PersonReference';
|
8591
9285
|
name?: string | null;
|
8592
|
-
familyName?: string | null;
|
8593
|
-
givenName?: string | null;
|
8594
9286
|
email?: string | null;
|
9287
|
+
givenName?: string | null;
|
9288
|
+
familyName?: string | null;
|
8595
9289
|
} | null> | null;
|
8596
9290
|
bcc?: Array<{
|
8597
9291
|
__typename?: 'PersonReference';
|
8598
9292
|
name?: string | null;
|
8599
|
-
familyName?: string | null;
|
8600
|
-
givenName?: string | null;
|
8601
9293
|
email?: string | null;
|
9294
|
+
givenName?: string | null;
|
9295
|
+
familyName?: string | null;
|
8602
9296
|
} | null> | null;
|
8603
9297
|
} | null;
|
8604
9298
|
issue?: {
|
8605
9299
|
__typename?: 'IssueMetadata';
|
9300
|
+
identifier?: string | null;
|
8606
9301
|
title?: string | null;
|
8607
9302
|
project?: string | null;
|
8608
9303
|
team?: string | null;
|
8609
9304
|
status?: string | null;
|
8610
9305
|
priority?: string | null;
|
8611
9306
|
type?: string | null;
|
8612
|
-
identifier?: string | null;
|
8613
9307
|
labels?: Array<string | null> | null;
|
8614
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;
|
8615
9340
|
observations?: Array<{
|
8616
9341
|
__typename?: 'Observation';
|
9342
|
+
id: string;
|
8617
9343
|
type: ObservableTypes;
|
9344
|
+
state: EntityState;
|
8618
9345
|
observable: {
|
8619
9346
|
__typename?: 'NamedEntityReference';
|
8620
9347
|
id: string;
|
@@ -8624,9 +9351,9 @@ export type QueryContentsQuery = {
|
|
8624
9351
|
__typename?: 'ObservationOccurrence';
|
8625
9352
|
type?: OccurrenceTypes | null;
|
8626
9353
|
confidence?: number | null;
|
8627
|
-
pageIndex?: number | null;
|
8628
9354
|
startTime?: any | null;
|
8629
9355
|
endTime?: any | null;
|
9356
|
+
pageIndex?: number | null;
|
8630
9357
|
boundingBox?: {
|
8631
9358
|
__typename?: 'BoundingBox';
|
8632
9359
|
left?: number | null;
|
@@ -8636,32 +9363,336 @@ export type QueryContentsQuery = {
|
|
8636
9363
|
} | null;
|
8637
9364
|
} | null> | null;
|
8638
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;
|
8639
9571
|
parent?: {
|
8640
9572
|
__typename?: 'Content';
|
8641
9573
|
id: string;
|
9574
|
+
name: string;
|
8642
9575
|
} | null;
|
8643
9576
|
children?: Array<{
|
8644
9577
|
__typename?: 'Content';
|
8645
9578
|
id: string;
|
8646
|
-
|
8647
|
-
collections?: Array<{
|
8648
|
-
__typename?: 'Collection';
|
8649
|
-
id: string;
|
9579
|
+
name: string;
|
8650
9580
|
} | null> | null;
|
8651
9581
|
feed?: {
|
8652
9582
|
__typename?: 'Feed';
|
8653
9583
|
id: string;
|
9584
|
+
name: string;
|
8654
9585
|
} | null;
|
8655
|
-
|
8656
|
-
__typename?: '
|
9586
|
+
collections?: Array<{
|
9587
|
+
__typename?: 'Collection';
|
8657
9588
|
id: string;
|
8658
|
-
|
9589
|
+
name: string;
|
9590
|
+
} | null> | null;
|
8659
9591
|
links?: Array<{
|
8660
9592
|
__typename?: 'LinkReferenceType';
|
8661
9593
|
uri?: any | null;
|
8662
9594
|
linkType?: LinkTypes | null;
|
8663
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;
|
8664
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;
|
9689
|
+
} | null> | null;
|
9690
|
+
edges?: Array<{
|
9691
|
+
__typename?: 'GraphEdge';
|
9692
|
+
from: string;
|
9693
|
+
to: string;
|
9694
|
+
} | null> | null;
|
9695
|
+
} | null;
|
8665
9696
|
} | null;
|
8666
9697
|
};
|
8667
9698
|
export type SummarizeContentsMutationVariables = Exact<{
|
@@ -8705,6 +9736,11 @@ export type UpdateContentMutation = {
|
|
8705
9736
|
fileType?: FileTypes | null;
|
8706
9737
|
mimeType?: string | null;
|
8707
9738
|
uri?: any | null;
|
9739
|
+
collections?: Array<{
|
9740
|
+
__typename?: 'Collection';
|
9741
|
+
id: string;
|
9742
|
+
name: string;
|
9743
|
+
} | null> | null;
|
8708
9744
|
} | null;
|
8709
9745
|
};
|
8710
9746
|
export type ClearConversationMutationVariables = Exact<{
|
@@ -8733,6 +9769,16 @@ export type CloseConversationMutation = {
|
|
8733
9769
|
type?: ConversationTypes | null;
|
8734
9770
|
} | null;
|
8735
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
|
+
};
|
8736
9782
|
export type CreateConversationMutationVariables = Exact<{
|
8737
9783
|
conversation: ConversationInput;
|
8738
9784
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -8748,7 +9794,9 @@ export type CreateConversationMutation = {
|
|
8748
9794
|
} | null;
|
8749
9795
|
};
|
8750
9796
|
export type DeleteAllConversationsMutationVariables = Exact<{
|
8751
|
-
|
9797
|
+
filter?: InputMaybe<ConversationFilter>;
|
9798
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9799
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8752
9800
|
}>;
|
8753
9801
|
export type DeleteAllConversationsMutation = {
|
8754
9802
|
__typename?: 'Mutation';
|
@@ -8771,6 +9819,7 @@ export type DeleteConversationMutation = {
|
|
8771
9819
|
};
|
8772
9820
|
export type DeleteConversationsMutationVariables = Exact<{
|
8773
9821
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9822
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8774
9823
|
}>;
|
8775
9824
|
export type DeleteConversationsMutation = {
|
8776
9825
|
__typename?: 'Mutation';
|
@@ -8819,6 +9868,13 @@ export type GetConversationQuery = {
|
|
8819
9868
|
content?: {
|
8820
9869
|
__typename?: 'Content';
|
8821
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;
|
8822
9878
|
} | null;
|
8823
9879
|
} | null> | null;
|
8824
9880
|
} | null> | null;
|
@@ -8906,9 +9962,12 @@ export type PromptConversationMutation = {
|
|
8906
9962
|
__typename?: 'Content';
|
8907
9963
|
id: string;
|
8908
9964
|
name: string;
|
9965
|
+
state: EntityState;
|
8909
9966
|
type?: ContentTypes | null;
|
8910
9967
|
fileType?: FileTypes | null;
|
8911
9968
|
fileName?: string | null;
|
9969
|
+
originalDate?: any | null;
|
9970
|
+
uri?: any | null;
|
8912
9971
|
} | null;
|
8913
9972
|
} | null> | null;
|
8914
9973
|
} | null;
|
@@ -8939,6 +9998,7 @@ export type PublishConversationMutationVariables = Exact<{
|
|
8939
9998
|
id: Scalars['ID']['input'];
|
8940
9999
|
connector: ContentPublishingConnectorInput;
|
8941
10000
|
name?: InputMaybe<Scalars['String']['input']>;
|
10001
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
8942
10002
|
workflow?: InputMaybe<EntityReferenceInput>;
|
8943
10003
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8944
10004
|
}>;
|
@@ -8956,6 +10016,11 @@ export type PublishConversationMutation = {
|
|
8956
10016
|
textUri?: any | null;
|
8957
10017
|
audioUri?: any | null;
|
8958
10018
|
markdown?: string | null;
|
10019
|
+
collections?: Array<{
|
10020
|
+
__typename?: 'Collection';
|
10021
|
+
id: string;
|
10022
|
+
name: string;
|
10023
|
+
} | null> | null;
|
8959
10024
|
} | null;
|
8960
10025
|
};
|
8961
10026
|
export type QueryConversationsQueryVariables = Exact<{
|
@@ -8999,6 +10064,13 @@ export type QueryConversationsQuery = {
|
|
8999
10064
|
content?: {
|
9000
10065
|
__typename?: 'Content';
|
9001
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;
|
9002
10074
|
} | null;
|
9003
10075
|
} | null> | null;
|
9004
10076
|
} | null> | null;
|
@@ -9075,6 +10147,16 @@ export type UpdateConversationMutation = {
|
|
9075
10147
|
type?: ConversationTypes | null;
|
9076
10148
|
} | null;
|
9077
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
|
+
};
|
9078
10160
|
export type CreateEventMutationVariables = Exact<{
|
9079
10161
|
event: EventInput;
|
9080
10162
|
}>;
|
@@ -9086,6 +10168,19 @@ export type CreateEventMutation = {
|
|
9086
10168
|
name: string;
|
9087
10169
|
} | null;
|
9088
10170
|
};
|
10171
|
+
export type DeleteAllEventsMutationVariables = Exact<{
|
10172
|
+
filter?: InputMaybe<EventFilter>;
|
10173
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10174
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10175
|
+
}>;
|
10176
|
+
export type DeleteAllEventsMutation = {
|
10177
|
+
__typename?: 'Mutation';
|
10178
|
+
deleteAllEvents?: Array<{
|
10179
|
+
__typename?: 'Event';
|
10180
|
+
id: string;
|
10181
|
+
state: EntityState;
|
10182
|
+
} | null> | null;
|
10183
|
+
};
|
9089
10184
|
export type DeleteEventMutationVariables = Exact<{
|
9090
10185
|
id: Scalars['ID']['input'];
|
9091
10186
|
}>;
|
@@ -9099,6 +10194,7 @@ export type DeleteEventMutation = {
|
|
9099
10194
|
};
|
9100
10195
|
export type DeleteEventsMutationVariables = Exact<{
|
9101
10196
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10197
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9102
10198
|
}>;
|
9103
10199
|
export type DeleteEventsMutation = {
|
9104
10200
|
__typename?: 'Mutation';
|
@@ -9121,11 +10217,26 @@ export type GetEventQuery = {
|
|
9121
10217
|
creationDate: any;
|
9122
10218
|
startDate?: any | null;
|
9123
10219
|
endDate?: any | null;
|
10220
|
+
availabilityStartDate?: any | null;
|
10221
|
+
availabilityEndDate?: any | null;
|
9124
10222
|
price?: any | null;
|
10223
|
+
minPrice?: any | null;
|
10224
|
+
maxPrice?: any | null;
|
10225
|
+
priceCurrency?: string | null;
|
10226
|
+
isAccessibleForFree?: boolean | null;
|
10227
|
+
typicalAgeRange?: string | null;
|
10228
|
+
address?: {
|
10229
|
+
__typename?: 'Address';
|
10230
|
+
streetAddress?: string | null;
|
10231
|
+
city?: string | null;
|
10232
|
+
region?: string | null;
|
10233
|
+
country?: string | null;
|
10234
|
+
postalCode?: string | null;
|
10235
|
+
} | null;
|
9125
10236
|
} | null;
|
9126
10237
|
};
|
9127
10238
|
export type QueryEventsQueryVariables = Exact<{
|
9128
|
-
filter
|
10239
|
+
filter?: InputMaybe<EventFilter>;
|
9129
10240
|
}>;
|
9130
10241
|
export type QueryEventsQuery = {
|
9131
10242
|
__typename?: 'Query';
|
@@ -9139,7 +10250,22 @@ export type QueryEventsQuery = {
|
|
9139
10250
|
creationDate: any;
|
9140
10251
|
startDate?: any | null;
|
9141
10252
|
endDate?: any | null;
|
10253
|
+
availabilityStartDate?: any | null;
|
10254
|
+
availabilityEndDate?: any | null;
|
9142
10255
|
price?: any | null;
|
10256
|
+
minPrice?: any | null;
|
10257
|
+
maxPrice?: any | null;
|
10258
|
+
priceCurrency?: string | null;
|
10259
|
+
isAccessibleForFree?: boolean | null;
|
10260
|
+
typicalAgeRange?: string | null;
|
10261
|
+
address?: {
|
10262
|
+
__typename?: 'Address';
|
10263
|
+
streetAddress?: string | null;
|
10264
|
+
city?: string | null;
|
10265
|
+
region?: string | null;
|
10266
|
+
country?: string | null;
|
10267
|
+
postalCode?: string | null;
|
10268
|
+
} | null;
|
9143
10269
|
} | null> | null;
|
9144
10270
|
} | null;
|
9145
10271
|
};
|
@@ -9154,6 +10280,16 @@ export type UpdateEventMutation = {
|
|
9154
10280
|
name: string;
|
9155
10281
|
} | null;
|
9156
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
|
+
};
|
9157
10293
|
export type CreateFeedMutationVariables = Exact<{
|
9158
10294
|
feed: FeedInput;
|
9159
10295
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -9169,7 +10305,9 @@ export type CreateFeedMutation = {
|
|
9169
10305
|
} | null;
|
9170
10306
|
};
|
9171
10307
|
export type DeleteAllFeedsMutationVariables = Exact<{
|
9172
|
-
|
10308
|
+
filter?: InputMaybe<FeedFilter>;
|
10309
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10310
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9173
10311
|
}>;
|
9174
10312
|
export type DeleteAllFeedsMutation = {
|
9175
10313
|
__typename?: 'Mutation';
|
@@ -9192,6 +10330,7 @@ export type DeleteFeedMutation = {
|
|
9192
10330
|
};
|
9193
10331
|
export type DeleteFeedsMutationVariables = Exact<{
|
9194
10332
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10333
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9195
10334
|
}>;
|
9196
10335
|
export type DeleteFeedsMutation = {
|
9197
10336
|
__typename?: 'Mutation';
|
@@ -9597,6 +10736,16 @@ export type UpdateFeedMutation = {
|
|
9597
10736
|
type: FeedTypes;
|
9598
10737
|
} | null;
|
9599
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
|
+
};
|
9600
10749
|
export type CreateLabelMutationVariables = Exact<{
|
9601
10750
|
label: LabelInput;
|
9602
10751
|
}>;
|
@@ -9608,6 +10757,19 @@ export type CreateLabelMutation = {
|
|
9608
10757
|
name: string;
|
9609
10758
|
} | null;
|
9610
10759
|
};
|
10760
|
+
export type DeleteAllLabelsMutationVariables = Exact<{
|
10761
|
+
filter?: InputMaybe<LabelFilter>;
|
10762
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10763
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10764
|
+
}>;
|
10765
|
+
export type DeleteAllLabelsMutation = {
|
10766
|
+
__typename?: 'Mutation';
|
10767
|
+
deleteAllLabels?: Array<{
|
10768
|
+
__typename?: 'Label';
|
10769
|
+
id: string;
|
10770
|
+
state: EntityState;
|
10771
|
+
} | null> | null;
|
10772
|
+
};
|
9611
10773
|
export type DeleteLabelMutationVariables = Exact<{
|
9612
10774
|
id: Scalars['ID']['input'];
|
9613
10775
|
}>;
|
@@ -9621,6 +10783,7 @@ export type DeleteLabelMutation = {
|
|
9621
10783
|
};
|
9622
10784
|
export type DeleteLabelsMutationVariables = Exact<{
|
9623
10785
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10786
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9624
10787
|
}>;
|
9625
10788
|
export type DeleteLabelsMutation = {
|
9626
10789
|
__typename?: 'Mutation';
|
@@ -9639,10 +10802,12 @@ export type GetLabelQuery = {
|
|
9639
10802
|
__typename?: 'Label';
|
9640
10803
|
id: string;
|
9641
10804
|
name: string;
|
10805
|
+
description?: string | null;
|
10806
|
+
creationDate: any;
|
9642
10807
|
} | null;
|
9643
10808
|
};
|
9644
10809
|
export type QueryLabelsQueryVariables = Exact<{
|
9645
|
-
filter
|
10810
|
+
filter?: InputMaybe<LabelFilter>;
|
9646
10811
|
}>;
|
9647
10812
|
export type QueryLabelsQuery = {
|
9648
10813
|
__typename?: 'Query';
|
@@ -9652,6 +10817,8 @@ export type QueryLabelsQuery = {
|
|
9652
10817
|
__typename?: 'Label';
|
9653
10818
|
id: string;
|
9654
10819
|
name: string;
|
10820
|
+
description?: string | null;
|
10821
|
+
creationDate: any;
|
9655
10822
|
} | null> | null;
|
9656
10823
|
} | null;
|
9657
10824
|
};
|
@@ -9699,6 +10866,16 @@ export type UpdateObservationMutation = {
|
|
9699
10866
|
state: EntityState;
|
9700
10867
|
} | null;
|
9701
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
|
+
};
|
9702
10879
|
export type CreateOrganizationMutationVariables = Exact<{
|
9703
10880
|
organization: OrganizationInput;
|
9704
10881
|
}>;
|
@@ -9708,14 +10885,21 @@ export type CreateOrganizationMutation = {
|
|
9708
10885
|
__typename?: 'Organization';
|
9709
10886
|
id: string;
|
9710
10887
|
name: string;
|
9711
|
-
foundingDate?: any | null;
|
9712
|
-
industries?: Array<string | null> | null;
|
9713
|
-
revenue?: any | null;
|
9714
|
-
revenueCurrency?: string | null;
|
9715
|
-
investment?: any | null;
|
9716
|
-
investmentCurrency?: string | null;
|
9717
10888
|
} | null;
|
9718
10889
|
};
|
10890
|
+
export type DeleteAllOrganizationsMutationVariables = Exact<{
|
10891
|
+
filter?: InputMaybe<OrganizationFilter>;
|
10892
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10893
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10894
|
+
}>;
|
10895
|
+
export type DeleteAllOrganizationsMutation = {
|
10896
|
+
__typename?: 'Mutation';
|
10897
|
+
deleteAllOrganizations?: Array<{
|
10898
|
+
__typename?: 'Organization';
|
10899
|
+
id: string;
|
10900
|
+
state: EntityState;
|
10901
|
+
} | null> | null;
|
10902
|
+
};
|
9719
10903
|
export type DeleteOrganizationMutationVariables = Exact<{
|
9720
10904
|
id: Scalars['ID']['input'];
|
9721
10905
|
}>;
|
@@ -9729,6 +10913,7 @@ export type DeleteOrganizationMutation = {
|
|
9729
10913
|
};
|
9730
10914
|
export type DeleteOrganizationsMutationVariables = Exact<{
|
9731
10915
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10916
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9732
10917
|
}>;
|
9733
10918
|
export type DeleteOrganizationsMutation = {
|
9734
10919
|
__typename?: 'Mutation';
|
@@ -9755,10 +10940,18 @@ export type GetOrganizationQuery = {
|
|
9755
10940
|
revenueCurrency?: string | null;
|
9756
10941
|
investment?: any | null;
|
9757
10942
|
investmentCurrency?: string | null;
|
10943
|
+
address?: {
|
10944
|
+
__typename?: 'Address';
|
10945
|
+
streetAddress?: string | null;
|
10946
|
+
city?: string | null;
|
10947
|
+
region?: string | null;
|
10948
|
+
country?: string | null;
|
10949
|
+
postalCode?: string | null;
|
10950
|
+
} | null;
|
9758
10951
|
} | null;
|
9759
10952
|
};
|
9760
10953
|
export type QueryOrganizationsQueryVariables = Exact<{
|
9761
|
-
filter
|
10954
|
+
filter?: InputMaybe<OrganizationFilter>;
|
9762
10955
|
}>;
|
9763
10956
|
export type QueryOrganizationsQuery = {
|
9764
10957
|
__typename?: 'Query';
|
@@ -9776,6 +10969,14 @@ export type QueryOrganizationsQuery = {
|
|
9776
10969
|
revenueCurrency?: string | null;
|
9777
10970
|
investment?: any | null;
|
9778
10971
|
investmentCurrency?: string | null;
|
10972
|
+
address?: {
|
10973
|
+
__typename?: 'Address';
|
10974
|
+
streetAddress?: string | null;
|
10975
|
+
city?: string | null;
|
10976
|
+
region?: string | null;
|
10977
|
+
country?: string | null;
|
10978
|
+
postalCode?: string | null;
|
10979
|
+
} | null;
|
9779
10980
|
} | null> | null;
|
9780
10981
|
} | null;
|
9781
10982
|
};
|
@@ -9788,12 +10989,16 @@ export type UpdateOrganizationMutation = {
|
|
9788
10989
|
__typename?: 'Organization';
|
9789
10990
|
id: string;
|
9790
10991
|
name: string;
|
9791
|
-
|
9792
|
-
|
9793
|
-
|
9794
|
-
|
9795
|
-
|
9796
|
-
|
10992
|
+
} | null;
|
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;
|
9797
11002
|
} | null;
|
9798
11003
|
};
|
9799
11004
|
export type CreatePersonMutationVariables = Exact<{
|
@@ -9807,6 +11012,19 @@ export type CreatePersonMutation = {
|
|
9807
11012
|
name: string;
|
9808
11013
|
} | null;
|
9809
11014
|
};
|
11015
|
+
export type DeleteAllPersonsMutationVariables = Exact<{
|
11016
|
+
filter?: InputMaybe<PersonFilter>;
|
11017
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11018
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11019
|
+
}>;
|
11020
|
+
export type DeleteAllPersonsMutation = {
|
11021
|
+
__typename?: 'Mutation';
|
11022
|
+
deleteAllPersons?: Array<{
|
11023
|
+
__typename?: 'Person';
|
11024
|
+
id: string;
|
11025
|
+
state: EntityState;
|
11026
|
+
} | null> | null;
|
11027
|
+
};
|
9810
11028
|
export type DeletePersonMutationVariables = Exact<{
|
9811
11029
|
id: Scalars['ID']['input'];
|
9812
11030
|
}>;
|
@@ -9820,6 +11038,7 @@ export type DeletePersonMutation = {
|
|
9820
11038
|
};
|
9821
11039
|
export type DeletePersonsMutationVariables = Exact<{
|
9822
11040
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11041
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9823
11042
|
}>;
|
9824
11043
|
export type DeletePersonsMutation = {
|
9825
11044
|
__typename?: 'Mutation';
|
@@ -9843,10 +11062,23 @@ export type GetPersonQuery = {
|
|
9843
11062
|
email?: string | null;
|
9844
11063
|
givenName?: string | null;
|
9845
11064
|
familyName?: string | null;
|
11065
|
+
phoneNumber?: string | null;
|
11066
|
+
birthDate?: any | null;
|
11067
|
+
title?: string | null;
|
11068
|
+
occupation?: string | null;
|
11069
|
+
education?: string | null;
|
11070
|
+
address?: {
|
11071
|
+
__typename?: 'Address';
|
11072
|
+
streetAddress?: string | null;
|
11073
|
+
city?: string | null;
|
11074
|
+
region?: string | null;
|
11075
|
+
country?: string | null;
|
11076
|
+
postalCode?: string | null;
|
11077
|
+
} | null;
|
9846
11078
|
} | null;
|
9847
11079
|
};
|
9848
11080
|
export type QueryPersonsQueryVariables = Exact<{
|
9849
|
-
filter
|
11081
|
+
filter?: InputMaybe<PersonFilter>;
|
9850
11082
|
}>;
|
9851
11083
|
export type QueryPersonsQuery = {
|
9852
11084
|
__typename?: 'Query';
|
@@ -9861,6 +11093,19 @@ export type QueryPersonsQuery = {
|
|
9861
11093
|
email?: string | null;
|
9862
11094
|
givenName?: string | null;
|
9863
11095
|
familyName?: string | null;
|
11096
|
+
phoneNumber?: string | null;
|
11097
|
+
birthDate?: any | null;
|
11098
|
+
title?: string | null;
|
11099
|
+
occupation?: string | null;
|
11100
|
+
education?: string | null;
|
11101
|
+
address?: {
|
11102
|
+
__typename?: 'Address';
|
11103
|
+
streetAddress?: string | null;
|
11104
|
+
city?: string | null;
|
11105
|
+
region?: string | null;
|
11106
|
+
country?: string | null;
|
11107
|
+
postalCode?: string | null;
|
11108
|
+
} | null;
|
9864
11109
|
} | null> | null;
|
9865
11110
|
} | null;
|
9866
11111
|
};
|
@@ -9875,6 +11120,16 @@ export type UpdatePersonMutation = {
|
|
9875
11120
|
name: string;
|
9876
11121
|
} | null;
|
9877
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
|
+
};
|
9878
11133
|
export type CreatePlaceMutationVariables = Exact<{
|
9879
11134
|
place: PlaceInput;
|
9880
11135
|
}>;
|
@@ -9886,6 +11141,19 @@ export type CreatePlaceMutation = {
|
|
9886
11141
|
name: string;
|
9887
11142
|
} | null;
|
9888
11143
|
};
|
11144
|
+
export type DeleteAllPlacesMutationVariables = Exact<{
|
11145
|
+
filter?: InputMaybe<PlaceFilter>;
|
11146
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11147
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11148
|
+
}>;
|
11149
|
+
export type DeleteAllPlacesMutation = {
|
11150
|
+
__typename?: 'Mutation';
|
11151
|
+
deleteAllPlaces?: Array<{
|
11152
|
+
__typename?: 'Place';
|
11153
|
+
id: string;
|
11154
|
+
state: EntityState;
|
11155
|
+
} | null> | null;
|
11156
|
+
};
|
9889
11157
|
export type DeletePlaceMutationVariables = Exact<{
|
9890
11158
|
id: Scalars['ID']['input'];
|
9891
11159
|
}>;
|
@@ -9899,6 +11167,7 @@ export type DeletePlaceMutation = {
|
|
9899
11167
|
};
|
9900
11168
|
export type DeletePlacesMutationVariables = Exact<{
|
9901
11169
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11170
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9902
11171
|
}>;
|
9903
11172
|
export type DeletePlacesMutation = {
|
9904
11173
|
__typename?: 'Mutation';
|
@@ -9919,10 +11188,18 @@ export type GetPlaceQuery = {
|
|
9919
11188
|
name: string;
|
9920
11189
|
alternateNames?: Array<string | null> | null;
|
9921
11190
|
creationDate: any;
|
11191
|
+
address?: {
|
11192
|
+
__typename?: 'Address';
|
11193
|
+
streetAddress?: string | null;
|
11194
|
+
city?: string | null;
|
11195
|
+
region?: string | null;
|
11196
|
+
country?: string | null;
|
11197
|
+
postalCode?: string | null;
|
11198
|
+
} | null;
|
9922
11199
|
} | null;
|
9923
11200
|
};
|
9924
11201
|
export type QueryPlacesQueryVariables = Exact<{
|
9925
|
-
filter
|
11202
|
+
filter?: InputMaybe<PlaceFilter>;
|
9926
11203
|
}>;
|
9927
11204
|
export type QueryPlacesQuery = {
|
9928
11205
|
__typename?: 'Query';
|
@@ -9934,6 +11211,14 @@ export type QueryPlacesQuery = {
|
|
9934
11211
|
name: string;
|
9935
11212
|
alternateNames?: Array<string | null> | null;
|
9936
11213
|
creationDate: any;
|
11214
|
+
address?: {
|
11215
|
+
__typename?: 'Address';
|
11216
|
+
streetAddress?: string | null;
|
11217
|
+
city?: string | null;
|
11218
|
+
region?: string | null;
|
11219
|
+
country?: string | null;
|
11220
|
+
postalCode?: string | null;
|
11221
|
+
} | null;
|
9937
11222
|
} | null> | null;
|
9938
11223
|
} | null;
|
9939
11224
|
};
|
@@ -9948,6 +11233,16 @@ export type UpdatePlaceMutation = {
|
|
9948
11233
|
name: string;
|
9949
11234
|
} | null;
|
9950
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
|
+
};
|
9951
11246
|
export type CreateProductMutationVariables = Exact<{
|
9952
11247
|
product: ProductInput;
|
9953
11248
|
}>;
|
@@ -9959,6 +11254,19 @@ export type CreateProductMutation = {
|
|
9959
11254
|
name: string;
|
9960
11255
|
} | null;
|
9961
11256
|
};
|
11257
|
+
export type DeleteAllProductsMutationVariables = Exact<{
|
11258
|
+
filter?: InputMaybe<ProductFilter>;
|
11259
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11260
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11261
|
+
}>;
|
11262
|
+
export type DeleteAllProductsMutation = {
|
11263
|
+
__typename?: 'Mutation';
|
11264
|
+
deleteAllProducts?: Array<{
|
11265
|
+
__typename?: 'Product';
|
11266
|
+
id: string;
|
11267
|
+
state: EntityState;
|
11268
|
+
} | null> | null;
|
11269
|
+
};
|
9962
11270
|
export type DeleteProductMutationVariables = Exact<{
|
9963
11271
|
id: Scalars['ID']['input'];
|
9964
11272
|
}>;
|
@@ -9972,6 +11280,7 @@ export type DeleteProductMutation = {
|
|
9972
11280
|
};
|
9973
11281
|
export type DeleteProductsMutationVariables = Exact<{
|
9974
11282
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11283
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
9975
11284
|
}>;
|
9976
11285
|
export type DeleteProductsMutation = {
|
9977
11286
|
__typename?: 'Mutation';
|
@@ -9999,10 +11308,18 @@ export type GetProductQuery = {
|
|
9999
11308
|
sku?: string | null;
|
10000
11309
|
releaseDate?: any | null;
|
10001
11310
|
productionDate?: any | null;
|
11311
|
+
address?: {
|
11312
|
+
__typename?: 'Address';
|
11313
|
+
streetAddress?: string | null;
|
11314
|
+
city?: string | null;
|
11315
|
+
region?: string | null;
|
11316
|
+
country?: string | null;
|
11317
|
+
postalCode?: string | null;
|
11318
|
+
} | null;
|
10002
11319
|
} | null;
|
10003
11320
|
};
|
10004
11321
|
export type QueryProductsQueryVariables = Exact<{
|
10005
|
-
filter
|
11322
|
+
filter?: InputMaybe<ProductFilter>;
|
10006
11323
|
}>;
|
10007
11324
|
export type QueryProductsQuery = {
|
10008
11325
|
__typename?: 'Query';
|
@@ -10021,6 +11338,14 @@ export type QueryProductsQuery = {
|
|
10021
11338
|
sku?: string | null;
|
10022
11339
|
releaseDate?: any | null;
|
10023
11340
|
productionDate?: any | null;
|
11341
|
+
address?: {
|
11342
|
+
__typename?: 'Address';
|
11343
|
+
streetAddress?: string | null;
|
11344
|
+
city?: string | null;
|
11345
|
+
region?: string | null;
|
11346
|
+
country?: string | null;
|
11347
|
+
postalCode?: string | null;
|
11348
|
+
} | null;
|
10024
11349
|
} | null> | null;
|
10025
11350
|
} | null;
|
10026
11351
|
};
|
@@ -10035,27 +11360,6 @@ export type UpdateProductMutation = {
|
|
10035
11360
|
name: string;
|
10036
11361
|
} | null;
|
10037
11362
|
};
|
10038
|
-
export type CreditsQueryVariables = Exact<{
|
10039
|
-
startDate: Scalars['DateTime']['input'];
|
10040
|
-
duration: Scalars['TimeSpan']['input'];
|
10041
|
-
}>;
|
10042
|
-
export type CreditsQuery = {
|
10043
|
-
__typename?: 'Query';
|
10044
|
-
credits?: Array<{
|
10045
|
-
__typename?: 'ProjectCredits';
|
10046
|
-
correlationId?: string | null;
|
10047
|
-
ownerId?: string | null;
|
10048
|
-
credits?: any | null;
|
10049
|
-
storageRatio?: any | null;
|
10050
|
-
computeRatio?: any | null;
|
10051
|
-
preparationRatio?: any | null;
|
10052
|
-
extractionRatio?: any | null;
|
10053
|
-
enrichmentRatio?: any | null;
|
10054
|
-
publishingRatio?: any | null;
|
10055
|
-
searchRatio?: any | null;
|
10056
|
-
conversationRatio?: any | null;
|
10057
|
-
} | null> | null;
|
10058
|
-
};
|
10059
11363
|
export type GetProjectQueryVariables = Exact<{
|
10060
11364
|
[key: string]: never;
|
10061
11365
|
}>;
|
@@ -10148,58 +11452,32 @@ export type LookupUsageQuery = {
|
|
10148
11452
|
response?: string | null;
|
10149
11453
|
} | null> | null;
|
10150
11454
|
};
|
10151
|
-
export type
|
10152
|
-
|
11455
|
+
export type QueryCreditsQueryVariables = Exact<{
|
11456
|
+
startDate: Scalars['DateTime']['input'];
|
11457
|
+
duration: Scalars['TimeSpan']['input'];
|
10153
11458
|
}>;
|
10154
|
-
export type
|
11459
|
+
export type QueryCreditsQuery = {
|
10155
11460
|
__typename?: 'Query';
|
10156
|
-
|
10157
|
-
__typename?: '
|
10158
|
-
|
10159
|
-
|
10160
|
-
|
10161
|
-
|
10162
|
-
|
10163
|
-
|
10164
|
-
|
10165
|
-
|
10166
|
-
|
10167
|
-
|
10168
|
-
|
10169
|
-
|
10170
|
-
name: string;
|
10171
|
-
} | null;
|
10172
|
-
specification?: {
|
10173
|
-
__typename?: 'Specification';
|
10174
|
-
id: string;
|
10175
|
-
name: string;
|
10176
|
-
} | null;
|
10177
|
-
quota?: {
|
10178
|
-
__typename?: 'ProjectQuota';
|
10179
|
-
storage?: number | null;
|
10180
|
-
contents?: number | null;
|
10181
|
-
feeds?: number | null;
|
10182
|
-
posts?: number | null;
|
10183
|
-
conversations?: number | null;
|
10184
|
-
} | null;
|
10185
|
-
} | null;
|
10186
|
-
};
|
10187
|
-
export type UpdateProjectMutationVariables = Exact<{
|
10188
|
-
project: ProjectUpdateInput;
|
10189
|
-
}>;
|
10190
|
-
export type UpdateProjectMutation = {
|
10191
|
-
__typename?: 'Mutation';
|
10192
|
-
updateProject?: {
|
10193
|
-
__typename?: 'Project';
|
10194
|
-
id: string;
|
10195
|
-
name: string;
|
10196
|
-
} | null;
|
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;
|
10197
11475
|
};
|
10198
|
-
export type
|
11476
|
+
export type QueryUsageQueryVariables = Exact<{
|
10199
11477
|
startDate: Scalars['DateTime']['input'];
|
10200
11478
|
duration: Scalars['TimeSpan']['input'];
|
10201
11479
|
}>;
|
10202
|
-
export type
|
11480
|
+
export type QueryUsageQuery = {
|
10203
11481
|
__typename?: 'Query';
|
10204
11482
|
usage?: Array<{
|
10205
11483
|
__typename?: 'ProjectUsageRecord';
|
@@ -10232,6 +11510,27 @@ export type UsageQuery = {
|
|
10232
11510
|
response?: string | null;
|
10233
11511
|
} | null> | null;
|
10234
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
|
+
};
|
10235
11534
|
export type CreateRepoMutationVariables = Exact<{
|
10236
11535
|
repo: RepoInput;
|
10237
11536
|
}>;
|
@@ -10243,6 +11542,19 @@ export type CreateRepoMutation = {
|
|
10243
11542
|
name: string;
|
10244
11543
|
} | null;
|
10245
11544
|
};
|
11545
|
+
export type DeleteAllReposMutationVariables = Exact<{
|
11546
|
+
filter?: InputMaybe<RepoFilter>;
|
11547
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11548
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11549
|
+
}>;
|
11550
|
+
export type DeleteAllReposMutation = {
|
11551
|
+
__typename?: 'Mutation';
|
11552
|
+
deleteAllRepos?: Array<{
|
11553
|
+
__typename?: 'Repo';
|
11554
|
+
id: string;
|
11555
|
+
state: EntityState;
|
11556
|
+
} | null> | null;
|
11557
|
+
};
|
10246
11558
|
export type DeleteRepoMutationVariables = Exact<{
|
10247
11559
|
id: Scalars['ID']['input'];
|
10248
11560
|
}>;
|
@@ -10256,6 +11568,7 @@ export type DeleteRepoMutation = {
|
|
10256
11568
|
};
|
10257
11569
|
export type DeleteReposMutationVariables = Exact<{
|
10258
11570
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11571
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10259
11572
|
}>;
|
10260
11573
|
export type DeleteReposMutation = {
|
10261
11574
|
__typename?: 'Mutation';
|
@@ -10279,7 +11592,7 @@ export type GetRepoQuery = {
|
|
10279
11592
|
} | null;
|
10280
11593
|
};
|
10281
11594
|
export type QueryReposQueryVariables = Exact<{
|
10282
|
-
filter
|
11595
|
+
filter?: InputMaybe<RepoFilter>;
|
10283
11596
|
}>;
|
10284
11597
|
export type QueryReposQuery = {
|
10285
11598
|
__typename?: 'Query';
|
@@ -10305,6 +11618,16 @@ export type UpdateRepoMutation = {
|
|
10305
11618
|
name: string;
|
10306
11619
|
} | null;
|
10307
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
|
+
};
|
10308
11631
|
export type CreateSoftwareMutationVariables = Exact<{
|
10309
11632
|
software: SoftwareInput;
|
10310
11633
|
}>;
|
@@ -10316,6 +11639,19 @@ export type CreateSoftwareMutation = {
|
|
10316
11639
|
name: string;
|
10317
11640
|
} | null;
|
10318
11641
|
};
|
11642
|
+
export type DeleteAllSoftwaresMutationVariables = Exact<{
|
11643
|
+
filter?: InputMaybe<SoftwareFilter>;
|
11644
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
11645
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
11646
|
+
}>;
|
11647
|
+
export type DeleteAllSoftwaresMutation = {
|
11648
|
+
__typename?: 'Mutation';
|
11649
|
+
deleteAllSoftwares?: Array<{
|
11650
|
+
__typename?: 'Software';
|
11651
|
+
id: string;
|
11652
|
+
state: EntityState;
|
11653
|
+
} | null> | null;
|
11654
|
+
};
|
10319
11655
|
export type DeleteSoftwareMutationVariables = Exact<{
|
10320
11656
|
id: Scalars['ID']['input'];
|
10321
11657
|
}>;
|
@@ -10329,6 +11665,7 @@ export type DeleteSoftwareMutation = {
|
|
10329
11665
|
};
|
10330
11666
|
export type DeleteSoftwaresMutationVariables = Exact<{
|
10331
11667
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
11668
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10332
11669
|
}>;
|
10333
11670
|
export type DeleteSoftwaresMutation = {
|
10334
11671
|
__typename?: 'Mutation';
|
@@ -10353,10 +11690,10 @@ export type GetSoftwareQuery = {
|
|
10353
11690
|
developer?: string | null;
|
10354
11691
|
} | null;
|
10355
11692
|
};
|
10356
|
-
export type
|
10357
|
-
filter
|
11693
|
+
export type QuerySoftwaresQueryVariables = Exact<{
|
11694
|
+
filter?: InputMaybe<SoftwareFilter>;
|
10358
11695
|
}>;
|
10359
|
-
export type
|
11696
|
+
export type QuerySoftwaresQuery = {
|
10360
11697
|
__typename?: 'Query';
|
10361
11698
|
softwares?: {
|
10362
11699
|
__typename?: 'SoftwareResults';
|
@@ -10382,6 +11719,16 @@ export type UpdateSoftwareMutation = {
|
|
10382
11719
|
name: string;
|
10383
11720
|
} | null;
|
10384
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
|
+
};
|
10385
11732
|
export type CreateSpecificationMutationVariables = Exact<{
|
10386
11733
|
specification: SpecificationInput;
|
10387
11734
|
}>;
|
@@ -10396,6 +11743,19 @@ export type CreateSpecificationMutation = {
|
|
10396
11743
|
serviceType?: ModelServiceTypes | null;
|
10397
11744
|
} | null;
|
10398
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
|
+
};
|
10399
11759
|
export type DeleteSpecificationMutationVariables = Exact<{
|
10400
11760
|
id: Scalars['ID']['input'];
|
10401
11761
|
}>;
|
@@ -10407,6 +11767,18 @@ export type DeleteSpecificationMutation = {
|
|
10407
11767
|
state: EntityState;
|
10408
11768
|
} | null;
|
10409
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
|
+
};
|
10410
11782
|
export type GetSpecificationQueryVariables = Exact<{
|
10411
11783
|
id: Scalars['ID']['input'];
|
10412
11784
|
}>;
|
@@ -10422,6 +11794,9 @@ export type GetSpecificationQuery = {
|
|
10422
11794
|
serviceType?: ModelServiceTypes | null;
|
10423
11795
|
systemPrompt?: string | null;
|
10424
11796
|
customGuidance?: string | null;
|
11797
|
+
customInstructions?: string | null;
|
11798
|
+
searchType?: ConversationSearchTypes | null;
|
11799
|
+
numberSimilar?: number | null;
|
10425
11800
|
owner: {
|
10426
11801
|
__typename?: 'Owner';
|
10427
11802
|
id: string;
|
@@ -10469,6 +11844,16 @@ export type GetSpecificationQuery = {
|
|
10469
11844
|
temperature?: number | null;
|
10470
11845
|
probability?: number | null;
|
10471
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;
|
10472
11857
|
anthropic?: {
|
10473
11858
|
__typename?: 'AnthropicModelProperties';
|
10474
11859
|
tokenLimit?: number | null;
|
@@ -10533,6 +11918,13 @@ export type PromptSpecificationsMutation = {
|
|
10533
11918
|
content?: {
|
10534
11919
|
__typename?: 'Content';
|
10535
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;
|
10536
11928
|
} | null;
|
10537
11929
|
} | null> | null;
|
10538
11930
|
} | null> | null;
|
@@ -10555,6 +11947,9 @@ export type QuerySpecificationsQuery = {
|
|
10555
11947
|
serviceType?: ModelServiceTypes | null;
|
10556
11948
|
systemPrompt?: string | null;
|
10557
11949
|
customGuidance?: string | null;
|
11950
|
+
customInstructions?: string | null;
|
11951
|
+
searchType?: ConversationSearchTypes | null;
|
11952
|
+
numberSimilar?: number | null;
|
10558
11953
|
owner: {
|
10559
11954
|
__typename?: 'Owner';
|
10560
11955
|
id: string;
|
@@ -10602,6 +11997,16 @@ export type QuerySpecificationsQuery = {
|
|
10602
11997
|
temperature?: number | null;
|
10603
11998
|
probability?: number | null;
|
10604
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;
|
10605
12010
|
anthropic?: {
|
10606
12011
|
__typename?: 'AnthropicModelProperties';
|
10607
12012
|
tokenLimit?: number | null;
|
@@ -10646,6 +12051,16 @@ export type UpdateSpecificationMutation = {
|
|
10646
12051
|
serviceType?: ModelServiceTypes | null;
|
10647
12052
|
} | null;
|
10648
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
|
+
};
|
10649
12064
|
export type CreateWorkflowMutationVariables = Exact<{
|
10650
12065
|
workflow: WorkflowInput;
|
10651
12066
|
}>;
|
@@ -10732,6 +12147,7 @@ export type CreateWorkflowMutation = {
|
|
10732
12147
|
__typename?: 'OpenAIImageExtractionProperties';
|
10733
12148
|
confidenceThreshold?: number | null;
|
10734
12149
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12150
|
+
customInstructions?: string | null;
|
10735
12151
|
} | null;
|
10736
12152
|
modelText?: {
|
10737
12153
|
__typename?: 'ModelTextExtractionProperties';
|
@@ -10782,7 +12198,9 @@ export type CreateWorkflowMutation = {
|
|
10782
12198
|
} | null;
|
10783
12199
|
};
|
10784
12200
|
export type DeleteAllWorkflowsMutationVariables = Exact<{
|
10785
|
-
|
12201
|
+
filter?: InputMaybe<WorkflowFilter>;
|
12202
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
12203
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10786
12204
|
}>;
|
10787
12205
|
export type DeleteAllWorkflowsMutation = {
|
10788
12206
|
__typename?: 'Mutation';
|
@@ -10805,6 +12223,7 @@ export type DeleteWorkflowMutation = {
|
|
10805
12223
|
};
|
10806
12224
|
export type DeleteWorkflowsMutationVariables = Exact<{
|
10807
12225
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
12226
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
10808
12227
|
}>;
|
10809
12228
|
export type DeleteWorkflowsMutation = {
|
10810
12229
|
__typename?: 'Mutation';
|
@@ -10905,6 +12324,7 @@ export type GetWorkflowQuery = {
|
|
10905
12324
|
__typename?: 'OpenAIImageExtractionProperties';
|
10906
12325
|
confidenceThreshold?: number | null;
|
10907
12326
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12327
|
+
customInstructions?: string | null;
|
10908
12328
|
} | null;
|
10909
12329
|
modelText?: {
|
10910
12330
|
__typename?: 'ModelTextExtractionProperties';
|
@@ -11047,6 +12467,7 @@ export type QueryWorkflowsQuery = {
|
|
11047
12467
|
__typename?: 'OpenAIImageExtractionProperties';
|
11048
12468
|
confidenceThreshold?: number | null;
|
11049
12469
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12470
|
+
customInstructions?: string | null;
|
11050
12471
|
} | null;
|
11051
12472
|
modelText?: {
|
11052
12473
|
__typename?: 'ModelTextExtractionProperties';
|
@@ -11183,6 +12604,7 @@ export type UpdateWorkflowMutation = {
|
|
11183
12604
|
__typename?: 'OpenAIImageExtractionProperties';
|
11184
12605
|
confidenceThreshold?: number | null;
|
11185
12606
|
detailLevel?: OpenAiVisionDetailLevels | null;
|
12607
|
+
customInstructions?: string | null;
|
11186
12608
|
} | null;
|
11187
12609
|
modelText?: {
|
11188
12610
|
__typename?: 'ModelTextExtractionProperties';
|