graphlit-client 1.0.20240609001 → 1.0.20240704001
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.
@@ -359,6 +359,8 @@ export declare enum AnthropicModels {
|
|
359
359
|
Claude_2_0 = "CLAUDE_2_0",
|
360
360
|
/** Claude 2.1 */
|
361
361
|
Claude_2_1 = "CLAUDE_2_1",
|
362
|
+
/** Claude 3.5 Sonnet (Latest) */
|
363
|
+
Claude_3_5Sonnet = "CLAUDE_3_5_SONNET",
|
362
364
|
/** Claude 3 Haiku (Latest) */
|
363
365
|
Claude_3Haiku = "CLAUDE_3_HAIKU",
|
364
366
|
/** Claude 3 Opus (Latest) */
|
@@ -885,11 +887,7 @@ export declare enum CohereModels {
|
|
885
887
|
/** Command R+ */
|
886
888
|
CommandRPlus = "COMMAND_R_PLUS",
|
887
889
|
/** Developer-specified model */
|
888
|
-
Custom = "CUSTOM"
|
889
|
-
/** Embed English 3.0 */
|
890
|
-
EmbedEnglish_3_0 = "EMBED_ENGLISH_3_0",
|
891
|
-
/** Embed Multilingual 3.0 */
|
892
|
-
EmbedMultilingual_3_0 = "EMBED_MULTILINGUAL_3_0"
|
890
|
+
Custom = "CUSTOM"
|
893
891
|
}
|
894
892
|
/** Represents a collection. */
|
895
893
|
export type Collection = {
|
@@ -998,6 +996,8 @@ export type Content = {
|
|
998
996
|
correlationId?: Maybe<Scalars['String']['output']>;
|
999
997
|
/** The creation date of the content. */
|
1000
998
|
creationDate: Scalars['DateTime']['output'];
|
999
|
+
/** The custom content summary. */
|
1000
|
+
customSummary?: Maybe<Scalars['String']['output']>;
|
1001
1001
|
/** The content description. */
|
1002
1002
|
description?: Maybe<Scalars['String']['output']>;
|
1003
1003
|
/** The content file device type. */
|
@@ -1044,6 +1044,8 @@ export type Content = {
|
|
1044
1044
|
imageUri?: Maybe<Scalars['URL']['output']>;
|
1045
1045
|
/** The content issue metadata. */
|
1046
1046
|
issue?: Maybe<IssueMetadata>;
|
1047
|
+
/** The summarized content keywords or key phrases. */
|
1048
|
+
keywords?: Maybe<Array<Scalars['String']['output']>>;
|
1047
1049
|
/** The extracted hyperlinks. */
|
1048
1050
|
links?: Maybe<Array<LinkReferenceType>>;
|
1049
1051
|
/** The geo-location of the content. */
|
@@ -2184,6 +2186,17 @@ export type EmailPreparationPropertiesInput = {
|
|
2184
2186
|
/** Whether to extract attachments from emails as ingested content. */
|
2185
2187
|
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
2186
2188
|
};
|
2189
|
+
/** Represents the embeddings strategy. */
|
2190
|
+
export type EmbeddingsStrategy = {
|
2191
|
+
__typename?: 'EmbeddingsStrategy';
|
2192
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
2193
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
2194
|
+
};
|
2195
|
+
/** Represents the embeddings strategy. */
|
2196
|
+
export type EmbeddingsStrategyInput = {
|
2197
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
2198
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
2199
|
+
};
|
2187
2200
|
/** Represents an enrichment workflow job. */
|
2188
2201
|
export type EnrichmentWorkflowJob = {
|
2189
2202
|
__typename?: 'EnrichmentWorkflowJob';
|
@@ -2462,6 +2475,8 @@ export type Event = {
|
|
2462
2475
|
price?: Maybe<Scalars['Decimal']['output']>;
|
2463
2476
|
/** The currency of the event price. */
|
2464
2477
|
priceCurrency?: Maybe<Scalars['String']['output']>;
|
2478
|
+
/** The relevance score of the event. */
|
2479
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
2465
2480
|
/** The event start date. */
|
2466
2481
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
2467
2482
|
/** The state of the event (i.e. created, enabled). */
|
@@ -2517,6 +2532,8 @@ export type EventFilter = {
|
|
2517
2532
|
direction?: InputMaybe<OrderDirectionTypes>;
|
2518
2533
|
/** Filter by event end date range. */
|
2519
2534
|
endDateRange?: InputMaybe<DateRangeFilter>;
|
2535
|
+
/** Filter by similar events. */
|
2536
|
+
events?: InputMaybe<Array<EntityReferenceFilter>>;
|
2520
2537
|
/** Filter by observable H3 index. */
|
2521
2538
|
h3?: InputMaybe<H3Filter>;
|
2522
2539
|
/** Filter event(s) by their unique ID. */
|
@@ -2533,6 +2550,8 @@ export type EventFilter = {
|
|
2533
2550
|
minPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
2534
2551
|
/** Filter event(s) by their name. */
|
2535
2552
|
name?: InputMaybe<Scalars['String']['input']>;
|
2553
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
2554
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
2536
2555
|
/** Skip the specified number of event(s) from the beginning of the result set. */
|
2537
2556
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
2538
2557
|
/** The sort order for query results. */
|
@@ -2541,8 +2560,12 @@ export type EventFilter = {
|
|
2541
2560
|
price?: InputMaybe<Scalars['Decimal']['input']>;
|
2542
2561
|
/** Filter by the currency of the event price. */
|
2543
2562
|
priceCurrency?: InputMaybe<Scalars['String']['input']>;
|
2563
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
2564
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
2544
2565
|
/** Filter event(s) by searching for specific text. */
|
2545
2566
|
search?: InputMaybe<Scalars['String']['input']>;
|
2567
|
+
/** The type of search to be used. Defaults to Vector. */
|
2568
|
+
searchType?: InputMaybe<SearchTypes>;
|
2546
2569
|
/** Filter by event start date range. */
|
2547
2570
|
startDateRange?: InputMaybe<DateRangeFilter>;
|
2548
2571
|
/** Filter event(s) by their states. */
|
@@ -3081,28 +3104,44 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
|
|
3081
3104
|
/** Represents Google Drive properties. */
|
3082
3105
|
export type GoogleDriveFeedProperties = {
|
3083
3106
|
__typename?: 'GoogleDriveFeedProperties';
|
3107
|
+
/** Google client identifier. */
|
3108
|
+
clientId: Scalars['String']['output'];
|
3109
|
+
/** Google client secret. */
|
3110
|
+
clientSecret: Scalars['String']['output'];
|
3084
3111
|
/** Google Drive folder identifier. */
|
3085
3112
|
folderId?: Maybe<Scalars['String']['output']>;
|
3086
|
-
/** Google
|
3113
|
+
/** Google refresh token. */
|
3087
3114
|
refreshToken: Scalars['String']['output'];
|
3088
3115
|
};
|
3089
3116
|
/** Represents Google Drive properties. */
|
3090
3117
|
export type GoogleDriveFeedPropertiesInput = {
|
3118
|
+
/** Google client identifier. */
|
3119
|
+
clientId: Scalars['String']['input'];
|
3120
|
+
/** Google client secret. */
|
3121
|
+
clientSecret: Scalars['String']['input'];
|
3091
3122
|
/** Google Drive folder identifier. */
|
3092
3123
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
3093
|
-
/** Google
|
3124
|
+
/** Google refresh token. */
|
3094
3125
|
refreshToken: Scalars['String']['input'];
|
3095
3126
|
};
|
3096
3127
|
/** Represents Google Drive properties. */
|
3097
3128
|
export type GoogleDriveFeedPropertiesUpdateInput = {
|
3129
|
+
/** Google client identifier. */
|
3130
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
3131
|
+
/** Google client secret. */
|
3132
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3098
3133
|
/** Google Drive folder identifier. */
|
3099
3134
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
3100
|
-
/** Google
|
3135
|
+
/** Google refresh token. */
|
3101
3136
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3102
3137
|
};
|
3103
3138
|
/** Represents Google Email feed properties. */
|
3104
3139
|
export type GoogleEmailFeedProperties = {
|
3105
3140
|
__typename?: 'GoogleEmailFeedProperties';
|
3141
|
+
/** Google client identifier. */
|
3142
|
+
clientId: Scalars['String']['output'];
|
3143
|
+
/** Google client secret. */
|
3144
|
+
clientSecret: Scalars['String']['output'];
|
3106
3145
|
/** Google refresh token. */
|
3107
3146
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
3108
3147
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3110,13 +3149,21 @@ export type GoogleEmailFeedProperties = {
|
|
3110
3149
|
};
|
3111
3150
|
/** Represents Google Email feed properties. */
|
3112
3151
|
export type GoogleEmailFeedPropertiesInput = {
|
3152
|
+
/** Google client identifier. */
|
3153
|
+
clientId: Scalars['String']['input'];
|
3154
|
+
/** Google client secret. */
|
3155
|
+
clientSecret: Scalars['String']['input'];
|
3113
3156
|
/** Google refresh token. */
|
3114
|
-
refreshToken
|
3157
|
+
refreshToken: Scalars['String']['input'];
|
3115
3158
|
/** Email listing type, i.e. past or new emails. */
|
3116
3159
|
type?: InputMaybe<EmailListingTypes>;
|
3117
3160
|
};
|
3118
3161
|
/** Represents Google Email feed properties. */
|
3119
3162
|
export type GoogleEmailFeedPropertiesUpdateInput = {
|
3163
|
+
/** Google client identifier. */
|
3164
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
3165
|
+
/** Google client secret. */
|
3166
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3120
3167
|
/** Google refresh token. */
|
3121
3168
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3122
3169
|
/** Email listing type, i.e. past or new emails. */
|
@@ -5402,6 +5449,8 @@ export type Organization = {
|
|
5402
5449
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
5403
5450
|
/** The name of the organization. */
|
5404
5451
|
name: Scalars['String']['output'];
|
5452
|
+
/** The relevance score of the organization. */
|
5453
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5405
5454
|
/** The revenue of the organization. */
|
5406
5455
|
revenue?: Maybe<Scalars['Decimal']['output']>;
|
5407
5456
|
/** The currency of the revenue of the organization. */
|
@@ -5461,12 +5510,20 @@ export type OrganizationFilter = {
|
|
5461
5510
|
location?: InputMaybe<PointFilter>;
|
5462
5511
|
/** Filter organization(s) by their name. */
|
5463
5512
|
name?: InputMaybe<Scalars['String']['input']>;
|
5513
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
5514
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5464
5515
|
/** Skip the specified number of organization(s) from the beginning of the result set. */
|
5465
5516
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
5466
5517
|
/** The sort order for query results. */
|
5467
5518
|
orderBy?: InputMaybe<OrderByTypes>;
|
5519
|
+
/** Filter by similar organizations. */
|
5520
|
+
organizations?: InputMaybe<Array<EntityReferenceFilter>>;
|
5521
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
5522
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
5468
5523
|
/** Filter organization(s) by searching for specific text. */
|
5469
5524
|
search?: InputMaybe<Scalars['String']['input']>;
|
5525
|
+
/** The type of search to be used. Defaults to Vector. */
|
5526
|
+
searchType?: InputMaybe<SearchTypes>;
|
5470
5527
|
/** Filter organization(s) by their states. */
|
5471
5528
|
states?: InputMaybe<Array<EntityState>>;
|
5472
5529
|
};
|
@@ -5631,6 +5688,8 @@ export type Person = {
|
|
5631
5688
|
occupation?: Maybe<Scalars['String']['output']>;
|
5632
5689
|
/** The phone number of the person. */
|
5633
5690
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
5691
|
+
/** The relevance score of the person. */
|
5692
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5634
5693
|
/** The state of the person (i.e. created, enabled). */
|
5635
5694
|
state: EntityState;
|
5636
5695
|
/** The JSON-LD value of the person. */
|
@@ -5694,14 +5753,22 @@ export type PersonFilter = {
|
|
5694
5753
|
location?: InputMaybe<PointFilter>;
|
5695
5754
|
/** Filter person(s) by their name. */
|
5696
5755
|
name?: InputMaybe<Scalars['String']['input']>;
|
5756
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
5757
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5697
5758
|
/** Skip the specified number of person(s) from the beginning of the result set. */
|
5698
5759
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
5699
5760
|
/** The sort order for query results. */
|
5700
5761
|
orderBy?: InputMaybe<OrderByTypes>;
|
5762
|
+
/** Filter by similar persons. */
|
5763
|
+
persons?: InputMaybe<Array<EntityReferenceFilter>>;
|
5701
5764
|
/** Filter by the phone number of the person. */
|
5702
5765
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
5766
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
5767
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
5703
5768
|
/** Filter person(s) by searching for specific text. */
|
5704
5769
|
search?: InputMaybe<Scalars['String']['input']>;
|
5770
|
+
/** The type of search to be used. Defaults to Vector. */
|
5771
|
+
searchType?: InputMaybe<SearchTypes>;
|
5705
5772
|
/** Filter person(s) by their states. */
|
5706
5773
|
states?: InputMaybe<Array<EntityState>>;
|
5707
5774
|
};
|
@@ -5824,6 +5891,8 @@ export type Place = {
|
|
5824
5891
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
5825
5892
|
/** The name of the place. */
|
5826
5893
|
name: Scalars['String']['output'];
|
5894
|
+
/** The relevance score of the place. */
|
5895
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
5827
5896
|
/** The state of the place (i.e. created, enabled). */
|
5828
5897
|
state: EntityState;
|
5829
5898
|
/** The JSON-LD value of the place. */
|
@@ -5879,12 +5948,20 @@ export type PlaceFilter = {
|
|
5879
5948
|
location?: InputMaybe<PointFilter>;
|
5880
5949
|
/** Filter place(s) by their name. */
|
5881
5950
|
name?: InputMaybe<Scalars['String']['input']>;
|
5951
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
5952
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
5882
5953
|
/** Skip the specified number of place(s) from the beginning of the result set. */
|
5883
5954
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
5884
5955
|
/** The sort order for query results. */
|
5885
5956
|
orderBy?: InputMaybe<OrderByTypes>;
|
5957
|
+
/** Filter by similar places. */
|
5958
|
+
places?: InputMaybe<Array<EntityReferenceFilter>>;
|
5959
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
5960
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
5886
5961
|
/** Filter place(s) by searching for specific text. */
|
5887
5962
|
search?: InputMaybe<Scalars['String']['input']>;
|
5963
|
+
/** The type of search to be used. Defaults to Vector. */
|
5964
|
+
searchType?: InputMaybe<SearchTypes>;
|
5888
5965
|
/** Filter place(s) by their states. */
|
5889
5966
|
states?: InputMaybe<Array<EntityState>>;
|
5890
5967
|
};
|
@@ -6065,6 +6142,8 @@ export type Product = {
|
|
6065
6142
|
productionDate?: Maybe<Scalars['DateTime']['output']>;
|
6066
6143
|
/** The product release date. */
|
6067
6144
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
6145
|
+
/** The relevance score of the product. */
|
6146
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
6068
6147
|
/** The product SKU. */
|
6069
6148
|
sku?: Maybe<Scalars['String']['output']>;
|
6070
6149
|
/** The state of the product (i.e. created, enabled). */
|
@@ -6130,16 +6209,24 @@ export type ProductFilter = {
|
|
6130
6209
|
model?: InputMaybe<Scalars['String']['input']>;
|
6131
6210
|
/** Filter product(s) by their name. */
|
6132
6211
|
name?: InputMaybe<Scalars['String']['input']>;
|
6212
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
6213
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
6133
6214
|
/** Skip the specified number of product(s) from the beginning of the result set. */
|
6134
6215
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
6135
6216
|
/** The sort order for query results. */
|
6136
6217
|
orderBy?: InputMaybe<OrderByTypes>;
|
6137
6218
|
/** Filter by production date range. */
|
6138
6219
|
productionDateRange?: InputMaybe<DateRangeFilter>;
|
6220
|
+
/** Filter by similar products. */
|
6221
|
+
products?: InputMaybe<Array<EntityReferenceFilter>>;
|
6222
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
6223
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
6139
6224
|
/** Filter by release date range. */
|
6140
6225
|
releaseDateRange?: InputMaybe<DateRangeFilter>;
|
6141
6226
|
/** Filter product(s) by searching for specific text. */
|
6142
6227
|
search?: InputMaybe<Scalars['String']['input']>;
|
6228
|
+
/** The type of search to be used. Defaults to Vector. */
|
6229
|
+
searchType?: InputMaybe<SearchTypes>;
|
6143
6230
|
/** Filter by product SKU. */
|
6144
6231
|
sku?: InputMaybe<Scalars['String']['input']>;
|
6145
6232
|
/** Filter product(s) by their states. */
|
@@ -6226,12 +6313,16 @@ export type Project = {
|
|
6226
6313
|
callbackUri?: Maybe<Scalars['URL']['output']>;
|
6227
6314
|
/** The creation date of the project. */
|
6228
6315
|
creationDate: Scalars['DateTime']['output'];
|
6316
|
+
/** The project credit usage. */
|
6317
|
+
credits?: Maybe<Scalars['Long']['output']>;
|
6229
6318
|
/** The project environment type. */
|
6230
6319
|
environmentType?: Maybe<EnvironmentTypes>;
|
6231
6320
|
/** The ID of the project. */
|
6232
6321
|
id: Scalars['ID']['output'];
|
6233
6322
|
/** The project JWT signing secret. */
|
6234
6323
|
jwtSecret?: Maybe<Scalars['String']['output']>;
|
6324
|
+
/** The last date that project credit usage was synchronized. */
|
6325
|
+
lastCreditsDate?: Maybe<Scalars['DateTime']['output']>;
|
6235
6326
|
/** The modified date of the project. */
|
6236
6327
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
6237
6328
|
/** The name of the project. */
|
@@ -6326,6 +6417,8 @@ export type ProjectQuota = {
|
|
6326
6417
|
contents?: Maybe<Scalars['Int']['output']>;
|
6327
6418
|
/** The maximum number of conversations which can be created. */
|
6328
6419
|
conversations?: Maybe<Scalars['Int']['output']>;
|
6420
|
+
/** The maximum number of credits which can be accrued. */
|
6421
|
+
credits?: Maybe<Scalars['Int']['output']>;
|
6329
6422
|
/** The maximum number of feeds which can be created. */
|
6330
6423
|
feeds?: Maybe<Scalars['Int']['output']>;
|
6331
6424
|
/** The maximum number of posts which can be read by feeds. */
|
@@ -6652,8 +6745,8 @@ export type Query = {
|
|
6652
6745
|
countSpecifications?: Maybe<CountResult>;
|
6653
6746
|
/** Counts workflows based on the provided filter criteria. */
|
6654
6747
|
countWorkflows?: Maybe<CountResult>;
|
6655
|
-
/** Retrieves
|
6656
|
-
credits?: Maybe<
|
6748
|
+
/** Retrieves project credits. */
|
6749
|
+
credits?: Maybe<ProjectCredits>;
|
6657
6750
|
/** Lookup an event given its ID. */
|
6658
6751
|
event?: Maybe<Event>;
|
6659
6752
|
/** Retrieves events based on the provided filter criteria. */
|
@@ -6714,6 +6807,8 @@ export type Query = {
|
|
6714
6807
|
sharePointFolders?: Maybe<SharePointFolderResults>;
|
6715
6808
|
/** Retrieves available SharePoint document libraries. */
|
6716
6809
|
sharePointLibraries?: Maybe<SharePointLibraryResults>;
|
6810
|
+
/** Retrieves available Slack channels. */
|
6811
|
+
slackChannels?: Maybe<StringResults>;
|
6717
6812
|
/** Lookup software given its ID. */
|
6718
6813
|
software?: Maybe<Software>;
|
6719
6814
|
/** Retrieves software based on the provided filter criteria. */
|
@@ -6838,8 +6933,6 @@ export type QueryCountWorkflowsArgs = {
|
|
6838
6933
|
};
|
6839
6934
|
export type QueryCreditsArgs = {
|
6840
6935
|
duration: Scalars['TimeSpan']['input'];
|
6841
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
6842
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
6843
6936
|
startDate: Scalars['DateTime']['input'];
|
6844
6937
|
};
|
6845
6938
|
export type QueryEventArgs = {
|
@@ -6964,6 +7057,9 @@ export type QuerySharePointFoldersArgs = {
|
|
6964
7057
|
export type QuerySharePointLibrariesArgs = {
|
6965
7058
|
properties: SharePointLibrariesInput;
|
6966
7059
|
};
|
7060
|
+
export type QuerySlackChannelsArgs = {
|
7061
|
+
properties: SlackChannelsInput;
|
7062
|
+
};
|
6967
7063
|
export type QuerySoftwareArgs = {
|
6968
7064
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
6969
7065
|
id: Scalars['ID']['input'];
|
@@ -6984,6 +7080,7 @@ export type QuerySpecificationsArgs = {
|
|
6984
7080
|
export type QueryUsageArgs = {
|
6985
7081
|
duration: Scalars['TimeSpan']['input'];
|
6986
7082
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
7083
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
6987
7084
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
6988
7085
|
startDate: Scalars['DateTime']['input'];
|
6989
7086
|
};
|
@@ -7178,6 +7275,8 @@ export type Repo = {
|
|
7178
7275
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
7179
7276
|
/** The name of the repo. */
|
7180
7277
|
name: Scalars['String']['output'];
|
7278
|
+
/** The relevance score of the repo. */
|
7279
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
7181
7280
|
/** The state of the repo (i.e. created, enabled). */
|
7182
7281
|
state: EntityState;
|
7183
7282
|
/** The JSON-LD value of the repo. */
|
@@ -7233,12 +7332,20 @@ export type RepoFilter = {
|
|
7233
7332
|
location?: InputMaybe<PointFilter>;
|
7234
7333
|
/** Filter repo(s) by their name. */
|
7235
7334
|
name?: InputMaybe<Scalars['String']['input']>;
|
7335
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
7336
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
7236
7337
|
/** Skip the specified number of repo(s) from the beginning of the result set. */
|
7237
7338
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
7238
7339
|
/** The sort order for query results. */
|
7239
7340
|
orderBy?: InputMaybe<OrderByTypes>;
|
7341
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
7342
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
7343
|
+
/** Filter by similar code repositories. */
|
7344
|
+
repos?: InputMaybe<Array<EntityReferenceFilter>>;
|
7240
7345
|
/** Filter repo(s) by searching for specific text. */
|
7241
7346
|
search?: InputMaybe<Scalars['String']['input']>;
|
7347
|
+
/** The type of search to be used. Defaults to Vector. */
|
7348
|
+
searchType?: InputMaybe<SearchTypes>;
|
7242
7349
|
/** Filter repo(s) by their states. */
|
7243
7350
|
states?: InputMaybe<Array<EntityState>>;
|
7244
7351
|
};
|
@@ -7602,6 +7709,11 @@ export declare enum SiteTypes {
|
|
7602
7709
|
/** Watch cloud storage site */
|
7603
7710
|
Watch = "WATCH"
|
7604
7711
|
}
|
7712
|
+
/** Represents Slack channels properties. */
|
7713
|
+
export type SlackChannelsInput = {
|
7714
|
+
/** Slack authentication token. */
|
7715
|
+
token: Scalars['String']['input'];
|
7716
|
+
};
|
7605
7717
|
/** Represents Slack feed properties. */
|
7606
7718
|
export type SlackFeedProperties = {
|
7607
7719
|
__typename?: 'SlackFeedProperties';
|
@@ -7678,6 +7790,8 @@ export type Software = {
|
|
7678
7790
|
name: Scalars['String']['output'];
|
7679
7791
|
/** The software release date. */
|
7680
7792
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
7793
|
+
/** The relevance score of the software. */
|
7794
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
7681
7795
|
/** The state of the software (i.e. created, enabled). */
|
7682
7796
|
state: EntityState;
|
7683
7797
|
/** The JSON-LD value of the software. */
|
@@ -7733,12 +7847,20 @@ export type SoftwareFilter = {
|
|
7733
7847
|
location?: InputMaybe<PointFilter>;
|
7734
7848
|
/** Filter software(s) by their name. */
|
7735
7849
|
name?: InputMaybe<Scalars['String']['input']>;
|
7850
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 10. */
|
7851
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
7736
7852
|
/** Skip the specified number of software(s) from the beginning of the result set. */
|
7737
7853
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
7738
7854
|
/** The sort order for query results. */
|
7739
7855
|
orderBy?: InputMaybe<OrderByTypes>;
|
7856
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
7857
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
7740
7858
|
/** Filter software(s) by searching for specific text. */
|
7741
7859
|
search?: InputMaybe<Scalars['String']['input']>;
|
7860
|
+
/** The type of search to be used. Defaults to Vector. */
|
7861
|
+
searchType?: InputMaybe<SearchTypes>;
|
7862
|
+
/** Filter by similar software. */
|
7863
|
+
softwares?: InputMaybe<Array<EntityReferenceFilter>>;
|
7742
7864
|
/** Filter software(s) by their states. */
|
7743
7865
|
states?: InputMaybe<Array<EntityState>>;
|
7744
7866
|
};
|
@@ -7980,6 +8102,17 @@ export type SpecificationUpdateInput = {
|
|
7980
8102
|
/** The specification type. */
|
7981
8103
|
type?: InputMaybe<SpecificationTypes>;
|
7982
8104
|
};
|
8105
|
+
/** Represents the storage workflow stage. */
|
8106
|
+
export type StorageWorkflowStage = {
|
8107
|
+
__typename?: 'StorageWorkflowStage';
|
8108
|
+
/** The vector storage embeddings strategy. */
|
8109
|
+
embeddings?: Maybe<EmbeddingsStrategy>;
|
8110
|
+
};
|
8111
|
+
/** Represents the storage workflow stage. */
|
8112
|
+
export type StorageWorkflowStageInput = {
|
8113
|
+
/** The vector storage embeddings strategy. */
|
8114
|
+
embeddings?: InputMaybe<EmbeddingsStrategyInput>;
|
8115
|
+
};
|
7983
8116
|
/** Represents a range of string values. */
|
7984
8117
|
export type StringRange = {
|
7985
8118
|
__typename?: 'StringRange';
|
@@ -8031,6 +8164,8 @@ export declare enum SummarizationTypes {
|
|
8031
8164
|
Custom = "CUSTOM",
|
8032
8165
|
/** Headlines */
|
8033
8166
|
Headlines = "HEADLINES",
|
8167
|
+
/** Keywords */
|
8168
|
+
Keywords = "KEYWORDS",
|
8034
8169
|
/** Social Media Posts */
|
8035
8170
|
Posts = "POSTS",
|
8036
8171
|
/** Questions */
|
@@ -8383,6 +8518,8 @@ export type Workflow = {
|
|
8383
8518
|
preparation?: Maybe<PreparationWorkflowStage>;
|
8384
8519
|
/** The state of the workflow (i.e. created, finished). */
|
8385
8520
|
state: EntityState;
|
8521
|
+
/** The storage stage of the content workflow. */
|
8522
|
+
storage?: Maybe<StorageWorkflowStage>;
|
8386
8523
|
};
|
8387
8524
|
/** Represents the workflow action. */
|
8388
8525
|
export type WorkflowAction = {
|
@@ -8430,6 +8567,8 @@ export type WorkflowInput = {
|
|
8430
8567
|
name: Scalars['String']['input'];
|
8431
8568
|
/** The preparation stage of the content workflow. */
|
8432
8569
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
8570
|
+
/** The storage stage of the content workflow. */
|
8571
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
8433
8572
|
};
|
8434
8573
|
/** Represents workflow query results. */
|
8435
8574
|
export type WorkflowResults = {
|
@@ -8453,6 +8592,8 @@ export type WorkflowUpdateInput = {
|
|
8453
8592
|
name?: InputMaybe<Scalars['String']['input']>;
|
8454
8593
|
/** The preparation stage of the content workflow. */
|
8455
8594
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
8595
|
+
/** The storage stage of the content workflow. */
|
8596
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
8456
8597
|
};
|
8457
8598
|
/** Represents YouTube feed properties. */
|
8458
8599
|
export type YouTubeFeedProperties = {
|
@@ -9236,6 +9377,14 @@ export type GetContentQuery = {
|
|
9236
9377
|
textUri?: any | null;
|
9237
9378
|
audioUri?: any | null;
|
9238
9379
|
transcriptUri?: any | null;
|
9380
|
+
summary?: string | null;
|
9381
|
+
customSummary?: string | null;
|
9382
|
+
keywords?: Array<string> | null;
|
9383
|
+
bullets?: Array<string> | null;
|
9384
|
+
headlines?: Array<string> | null;
|
9385
|
+
posts?: Array<string> | null;
|
9386
|
+
chapters?: Array<string> | null;
|
9387
|
+
questions?: Array<string> | null;
|
9239
9388
|
error?: string | null;
|
9240
9389
|
owner: {
|
9241
9390
|
__typename?: 'Owner';
|
@@ -9654,6 +9803,14 @@ export type QueryContentsQuery = {
|
|
9654
9803
|
textUri?: any | null;
|
9655
9804
|
audioUri?: any | null;
|
9656
9805
|
transcriptUri?: any | null;
|
9806
|
+
summary?: string | null;
|
9807
|
+
customSummary?: string | null;
|
9808
|
+
keywords?: Array<string> | null;
|
9809
|
+
bullets?: Array<string> | null;
|
9810
|
+
headlines?: Array<string> | null;
|
9811
|
+
posts?: Array<string> | null;
|
9812
|
+
chapters?: Array<string> | null;
|
9813
|
+
questions?: Array<string> | null;
|
9657
9814
|
error?: string | null;
|
9658
9815
|
owner: {
|
9659
9816
|
__typename?: 'Owner';
|
@@ -9917,6 +10074,14 @@ export type QueryContentsFacetsQuery = {
|
|
9917
10074
|
textUri?: any | null;
|
9918
10075
|
audioUri?: any | null;
|
9919
10076
|
transcriptUri?: any | null;
|
10077
|
+
summary?: string | null;
|
10078
|
+
customSummary?: string | null;
|
10079
|
+
keywords?: Array<string> | null;
|
10080
|
+
bullets?: Array<string> | null;
|
10081
|
+
headlines?: Array<string> | null;
|
10082
|
+
posts?: Array<string> | null;
|
10083
|
+
chapters?: Array<string> | null;
|
10084
|
+
questions?: Array<string> | null;
|
9920
10085
|
error?: string | null;
|
9921
10086
|
owner: {
|
9922
10087
|
__typename?: 'Owner';
|
@@ -10372,11 +10537,102 @@ export type GetConversationQuery = {
|
|
10372
10537
|
id: string;
|
10373
10538
|
name: string;
|
10374
10539
|
state: EntityState;
|
10540
|
+
originalDate?: any | null;
|
10541
|
+
uri?: any | null;
|
10375
10542
|
type?: ContentTypes | null;
|
10376
10543
|
fileType?: FileTypes | null;
|
10544
|
+
mimeType?: string | null;
|
10545
|
+
format?: string | null;
|
10546
|
+
formatName?: string | null;
|
10547
|
+
fileExtension?: string | null;
|
10377
10548
|
fileName?: string | null;
|
10378
|
-
|
10379
|
-
|
10549
|
+
fileSize?: any | null;
|
10550
|
+
masterUri?: any | null;
|
10551
|
+
imageUri?: any | null;
|
10552
|
+
textUri?: any | null;
|
10553
|
+
audioUri?: any | null;
|
10554
|
+
transcriptUri?: any | null;
|
10555
|
+
summary?: string | null;
|
10556
|
+
customSummary?: string | null;
|
10557
|
+
keywords?: Array<string> | null;
|
10558
|
+
bullets?: Array<string> | null;
|
10559
|
+
headlines?: Array<string> | null;
|
10560
|
+
posts?: Array<string> | null;
|
10561
|
+
chapters?: Array<string> | null;
|
10562
|
+
questions?: Array<string> | null;
|
10563
|
+
video?: {
|
10564
|
+
__typename?: 'VideoMetadata';
|
10565
|
+
width?: number | null;
|
10566
|
+
height?: number | null;
|
10567
|
+
duration?: string | null;
|
10568
|
+
make?: string | null;
|
10569
|
+
model?: string | null;
|
10570
|
+
software?: string | null;
|
10571
|
+
title?: string | null;
|
10572
|
+
description?: string | null;
|
10573
|
+
keywords?: Array<string | null> | null;
|
10574
|
+
author?: string | null;
|
10575
|
+
} | null;
|
10576
|
+
audio?: {
|
10577
|
+
__typename?: 'AudioMetadata';
|
10578
|
+
keywords?: Array<string | null> | null;
|
10579
|
+
author?: string | null;
|
10580
|
+
series?: string | null;
|
10581
|
+
episode?: string | null;
|
10582
|
+
episodeType?: string | null;
|
10583
|
+
season?: string | null;
|
10584
|
+
publisher?: string | null;
|
10585
|
+
copyright?: string | null;
|
10586
|
+
language?: string | null;
|
10587
|
+
genre?: string | null;
|
10588
|
+
title?: string | null;
|
10589
|
+
description?: string | null;
|
10590
|
+
bitrate?: number | null;
|
10591
|
+
channels?: number | null;
|
10592
|
+
sampleRate?: number | null;
|
10593
|
+
bitsPerSample?: number | null;
|
10594
|
+
duration?: string | null;
|
10595
|
+
} | null;
|
10596
|
+
image?: {
|
10597
|
+
__typename?: 'ImageMetadata';
|
10598
|
+
width?: number | null;
|
10599
|
+
height?: number | null;
|
10600
|
+
resolutionX?: number | null;
|
10601
|
+
resolutionY?: number | null;
|
10602
|
+
bitsPerComponent?: number | null;
|
10603
|
+
components?: number | null;
|
10604
|
+
projectionType?: ImageProjectionTypes | null;
|
10605
|
+
orientation?: OrientationTypes | null;
|
10606
|
+
description?: string | null;
|
10607
|
+
make?: string | null;
|
10608
|
+
model?: string | null;
|
10609
|
+
software?: string | null;
|
10610
|
+
lens?: string | null;
|
10611
|
+
focalLength?: number | null;
|
10612
|
+
exposureTime?: string | null;
|
10613
|
+
fNumber?: string | null;
|
10614
|
+
iso?: string | null;
|
10615
|
+
heading?: number | null;
|
10616
|
+
pitch?: number | null;
|
10617
|
+
} | null;
|
10618
|
+
document?: {
|
10619
|
+
__typename?: 'DocumentMetadata';
|
10620
|
+
title?: string | null;
|
10621
|
+
subject?: string | null;
|
10622
|
+
summary?: string | null;
|
10623
|
+
author?: string | null;
|
10624
|
+
publisher?: string | null;
|
10625
|
+
description?: string | null;
|
10626
|
+
keywords?: Array<string | null> | null;
|
10627
|
+
pageCount?: number | null;
|
10628
|
+
worksheetCount?: number | null;
|
10629
|
+
slideCount?: number | null;
|
10630
|
+
wordCount?: number | null;
|
10631
|
+
lineCount?: number | null;
|
10632
|
+
paragraphCount?: number | null;
|
10633
|
+
isEncrypted?: boolean | null;
|
10634
|
+
hasDigitalSignature?: boolean | null;
|
10635
|
+
} | null;
|
10380
10636
|
} | null;
|
10381
10637
|
} | null> | null;
|
10382
10638
|
} | null> | null;
|
@@ -10513,11 +10769,102 @@ export type PromptConversationMutation = {
|
|
10513
10769
|
id: string;
|
10514
10770
|
name: string;
|
10515
10771
|
state: EntityState;
|
10772
|
+
originalDate?: any | null;
|
10773
|
+
uri?: any | null;
|
10516
10774
|
type?: ContentTypes | null;
|
10517
10775
|
fileType?: FileTypes | null;
|
10776
|
+
mimeType?: string | null;
|
10777
|
+
format?: string | null;
|
10778
|
+
formatName?: string | null;
|
10779
|
+
fileExtension?: string | null;
|
10518
10780
|
fileName?: string | null;
|
10519
|
-
|
10520
|
-
|
10781
|
+
fileSize?: any | null;
|
10782
|
+
masterUri?: any | null;
|
10783
|
+
imageUri?: any | null;
|
10784
|
+
textUri?: any | null;
|
10785
|
+
audioUri?: any | null;
|
10786
|
+
transcriptUri?: any | null;
|
10787
|
+
summary?: string | null;
|
10788
|
+
customSummary?: string | null;
|
10789
|
+
keywords?: Array<string> | null;
|
10790
|
+
bullets?: Array<string> | null;
|
10791
|
+
headlines?: Array<string> | null;
|
10792
|
+
posts?: Array<string> | null;
|
10793
|
+
chapters?: Array<string> | null;
|
10794
|
+
questions?: Array<string> | null;
|
10795
|
+
video?: {
|
10796
|
+
__typename?: 'VideoMetadata';
|
10797
|
+
width?: number | null;
|
10798
|
+
height?: number | null;
|
10799
|
+
duration?: string | null;
|
10800
|
+
make?: string | null;
|
10801
|
+
model?: string | null;
|
10802
|
+
software?: string | null;
|
10803
|
+
title?: string | null;
|
10804
|
+
description?: string | null;
|
10805
|
+
keywords?: Array<string | null> | null;
|
10806
|
+
author?: string | null;
|
10807
|
+
} | null;
|
10808
|
+
audio?: {
|
10809
|
+
__typename?: 'AudioMetadata';
|
10810
|
+
keywords?: Array<string | null> | null;
|
10811
|
+
author?: string | null;
|
10812
|
+
series?: string | null;
|
10813
|
+
episode?: string | null;
|
10814
|
+
episodeType?: string | null;
|
10815
|
+
season?: string | null;
|
10816
|
+
publisher?: string | null;
|
10817
|
+
copyright?: string | null;
|
10818
|
+
language?: string | null;
|
10819
|
+
genre?: string | null;
|
10820
|
+
title?: string | null;
|
10821
|
+
description?: string | null;
|
10822
|
+
bitrate?: number | null;
|
10823
|
+
channels?: number | null;
|
10824
|
+
sampleRate?: number | null;
|
10825
|
+
bitsPerSample?: number | null;
|
10826
|
+
duration?: string | null;
|
10827
|
+
} | null;
|
10828
|
+
image?: {
|
10829
|
+
__typename?: 'ImageMetadata';
|
10830
|
+
width?: number | null;
|
10831
|
+
height?: number | null;
|
10832
|
+
resolutionX?: number | null;
|
10833
|
+
resolutionY?: number | null;
|
10834
|
+
bitsPerComponent?: number | null;
|
10835
|
+
components?: number | null;
|
10836
|
+
projectionType?: ImageProjectionTypes | null;
|
10837
|
+
orientation?: OrientationTypes | null;
|
10838
|
+
description?: string | null;
|
10839
|
+
make?: string | null;
|
10840
|
+
model?: string | null;
|
10841
|
+
software?: string | null;
|
10842
|
+
lens?: string | null;
|
10843
|
+
focalLength?: number | null;
|
10844
|
+
exposureTime?: string | null;
|
10845
|
+
fNumber?: string | null;
|
10846
|
+
iso?: string | null;
|
10847
|
+
heading?: number | null;
|
10848
|
+
pitch?: number | null;
|
10849
|
+
} | null;
|
10850
|
+
document?: {
|
10851
|
+
__typename?: 'DocumentMetadata';
|
10852
|
+
title?: string | null;
|
10853
|
+
subject?: string | null;
|
10854
|
+
summary?: string | null;
|
10855
|
+
author?: string | null;
|
10856
|
+
publisher?: string | null;
|
10857
|
+
description?: string | null;
|
10858
|
+
keywords?: Array<string | null> | null;
|
10859
|
+
pageCount?: number | null;
|
10860
|
+
worksheetCount?: number | null;
|
10861
|
+
slideCount?: number | null;
|
10862
|
+
wordCount?: number | null;
|
10863
|
+
lineCount?: number | null;
|
10864
|
+
paragraphCount?: number | null;
|
10865
|
+
isEncrypted?: boolean | null;
|
10866
|
+
hasDigitalSignature?: boolean | null;
|
10867
|
+
} | null;
|
10521
10868
|
} | null;
|
10522
10869
|
} | null> | null;
|
10523
10870
|
} | null;
|
@@ -10632,11 +10979,102 @@ export type QueryConversationsQuery = {
|
|
10632
10979
|
id: string;
|
10633
10980
|
name: string;
|
10634
10981
|
state: EntityState;
|
10982
|
+
originalDate?: any | null;
|
10983
|
+
uri?: any | null;
|
10635
10984
|
type?: ContentTypes | null;
|
10636
10985
|
fileType?: FileTypes | null;
|
10986
|
+
mimeType?: string | null;
|
10987
|
+
format?: string | null;
|
10988
|
+
formatName?: string | null;
|
10989
|
+
fileExtension?: string | null;
|
10637
10990
|
fileName?: string | null;
|
10638
|
-
|
10639
|
-
|
10991
|
+
fileSize?: any | null;
|
10992
|
+
masterUri?: any | null;
|
10993
|
+
imageUri?: any | null;
|
10994
|
+
textUri?: any | null;
|
10995
|
+
audioUri?: any | null;
|
10996
|
+
transcriptUri?: any | null;
|
10997
|
+
summary?: string | null;
|
10998
|
+
customSummary?: string | null;
|
10999
|
+
keywords?: Array<string> | null;
|
11000
|
+
bullets?: Array<string> | null;
|
11001
|
+
headlines?: Array<string> | null;
|
11002
|
+
posts?: Array<string> | null;
|
11003
|
+
chapters?: Array<string> | null;
|
11004
|
+
questions?: Array<string> | null;
|
11005
|
+
video?: {
|
11006
|
+
__typename?: 'VideoMetadata';
|
11007
|
+
width?: number | null;
|
11008
|
+
height?: number | null;
|
11009
|
+
duration?: string | null;
|
11010
|
+
make?: string | null;
|
11011
|
+
model?: string | null;
|
11012
|
+
software?: string | null;
|
11013
|
+
title?: string | null;
|
11014
|
+
description?: string | null;
|
11015
|
+
keywords?: Array<string | null> | null;
|
11016
|
+
author?: string | null;
|
11017
|
+
} | null;
|
11018
|
+
audio?: {
|
11019
|
+
__typename?: 'AudioMetadata';
|
11020
|
+
keywords?: Array<string | null> | null;
|
11021
|
+
author?: string | null;
|
11022
|
+
series?: string | null;
|
11023
|
+
episode?: string | null;
|
11024
|
+
episodeType?: string | null;
|
11025
|
+
season?: string | null;
|
11026
|
+
publisher?: string | null;
|
11027
|
+
copyright?: string | null;
|
11028
|
+
language?: string | null;
|
11029
|
+
genre?: string | null;
|
11030
|
+
title?: string | null;
|
11031
|
+
description?: string | null;
|
11032
|
+
bitrate?: number | null;
|
11033
|
+
channels?: number | null;
|
11034
|
+
sampleRate?: number | null;
|
11035
|
+
bitsPerSample?: number | null;
|
11036
|
+
duration?: string | null;
|
11037
|
+
} | null;
|
11038
|
+
image?: {
|
11039
|
+
__typename?: 'ImageMetadata';
|
11040
|
+
width?: number | null;
|
11041
|
+
height?: number | null;
|
11042
|
+
resolutionX?: number | null;
|
11043
|
+
resolutionY?: number | null;
|
11044
|
+
bitsPerComponent?: number | null;
|
11045
|
+
components?: number | null;
|
11046
|
+
projectionType?: ImageProjectionTypes | null;
|
11047
|
+
orientation?: OrientationTypes | null;
|
11048
|
+
description?: string | null;
|
11049
|
+
make?: string | null;
|
11050
|
+
model?: string | null;
|
11051
|
+
software?: string | null;
|
11052
|
+
lens?: string | null;
|
11053
|
+
focalLength?: number | null;
|
11054
|
+
exposureTime?: string | null;
|
11055
|
+
fNumber?: string | null;
|
11056
|
+
iso?: string | null;
|
11057
|
+
heading?: number | null;
|
11058
|
+
pitch?: number | null;
|
11059
|
+
} | null;
|
11060
|
+
document?: {
|
11061
|
+
__typename?: 'DocumentMetadata';
|
11062
|
+
title?: string | null;
|
11063
|
+
subject?: string | null;
|
11064
|
+
summary?: string | null;
|
11065
|
+
author?: string | null;
|
11066
|
+
publisher?: string | null;
|
11067
|
+
description?: string | null;
|
11068
|
+
keywords?: Array<string | null> | null;
|
11069
|
+
pageCount?: number | null;
|
11070
|
+
worksheetCount?: number | null;
|
11071
|
+
slideCount?: number | null;
|
11072
|
+
wordCount?: number | null;
|
11073
|
+
lineCount?: number | null;
|
11074
|
+
paragraphCount?: number | null;
|
11075
|
+
isEncrypted?: boolean | null;
|
11076
|
+
hasDigitalSignature?: boolean | null;
|
11077
|
+
} | null;
|
10640
11078
|
} | null;
|
10641
11079
|
} | null> | null;
|
10642
11080
|
} | null> | null;
|
@@ -10831,6 +11269,7 @@ export type GetEventQuery = {
|
|
10831
11269
|
alternateNames?: Array<string | null> | null;
|
10832
11270
|
creationDate: any;
|
10833
11271
|
thing?: string | null;
|
11272
|
+
relevance?: number | null;
|
10834
11273
|
startDate?: any | null;
|
10835
11274
|
endDate?: any | null;
|
10836
11275
|
availabilityStartDate?: any | null;
|
@@ -10865,6 +11304,7 @@ export type QueryEventsQuery = {
|
|
10865
11304
|
alternateNames?: Array<string | null> | null;
|
10866
11305
|
creationDate: any;
|
10867
11306
|
thing?: string | null;
|
11307
|
+
relevance?: number | null;
|
10868
11308
|
startDate?: any | null;
|
10869
11309
|
endDate?: any | null;
|
10870
11310
|
availabilityStartDate?: any | null;
|
@@ -11051,6 +11491,8 @@ export type GetFeedQuery = {
|
|
11051
11491
|
__typename?: 'GoogleDriveFeedProperties';
|
11052
11492
|
folderId?: string | null;
|
11053
11493
|
refreshToken: string;
|
11494
|
+
clientId: string;
|
11495
|
+
clientSecret: string;
|
11054
11496
|
} | null;
|
11055
11497
|
} | null;
|
11056
11498
|
email?: {
|
@@ -11061,6 +11503,8 @@ export type GetFeedQuery = {
|
|
11061
11503
|
__typename?: 'GoogleEmailFeedProperties';
|
11062
11504
|
type?: EmailListingTypes | null;
|
11063
11505
|
refreshToken?: string | null;
|
11506
|
+
clientId: string;
|
11507
|
+
clientSecret: string;
|
11064
11508
|
} | null;
|
11065
11509
|
microsoft?: {
|
11066
11510
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -11249,6 +11693,8 @@ export type QueryFeedsQuery = {
|
|
11249
11693
|
__typename?: 'GoogleDriveFeedProperties';
|
11250
11694
|
folderId?: string | null;
|
11251
11695
|
refreshToken: string;
|
11696
|
+
clientId: string;
|
11697
|
+
clientSecret: string;
|
11252
11698
|
} | null;
|
11253
11699
|
} | null;
|
11254
11700
|
email?: {
|
@@ -11259,6 +11705,8 @@ export type QueryFeedsQuery = {
|
|
11259
11705
|
__typename?: 'GoogleEmailFeedProperties';
|
11260
11706
|
type?: EmailListingTypes | null;
|
11261
11707
|
refreshToken?: string | null;
|
11708
|
+
clientId: string;
|
11709
|
+
clientSecret: string;
|
11262
11710
|
} | null;
|
11263
11711
|
microsoft?: {
|
11264
11712
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -11644,6 +12092,7 @@ export type GetOrganizationQuery = {
|
|
11644
12092
|
alternateNames?: Array<string | null> | null;
|
11645
12093
|
creationDate: any;
|
11646
12094
|
thing?: string | null;
|
12095
|
+
relevance?: number | null;
|
11647
12096
|
foundingDate?: any | null;
|
11648
12097
|
industries?: Array<string | null> | null;
|
11649
12098
|
revenue?: any | null;
|
@@ -11674,6 +12123,7 @@ export type QueryOrganizationsQuery = {
|
|
11674
12123
|
alternateNames?: Array<string | null> | null;
|
11675
12124
|
creationDate: any;
|
11676
12125
|
thing?: string | null;
|
12126
|
+
relevance?: number | null;
|
11677
12127
|
foundingDate?: any | null;
|
11678
12128
|
industries?: Array<string | null> | null;
|
11679
12129
|
revenue?: any | null;
|
@@ -11771,6 +12221,7 @@ export type GetPersonQuery = {
|
|
11771
12221
|
alternateNames?: Array<string | null> | null;
|
11772
12222
|
creationDate: any;
|
11773
12223
|
thing?: string | null;
|
12224
|
+
relevance?: number | null;
|
11774
12225
|
email?: string | null;
|
11775
12226
|
givenName?: string | null;
|
11776
12227
|
familyName?: string | null;
|
@@ -11803,6 +12254,7 @@ export type QueryPersonsQuery = {
|
|
11803
12254
|
alternateNames?: Array<string | null> | null;
|
11804
12255
|
creationDate: any;
|
11805
12256
|
thing?: string | null;
|
12257
|
+
relevance?: number | null;
|
11806
12258
|
email?: string | null;
|
11807
12259
|
givenName?: string | null;
|
11808
12260
|
familyName?: string | null;
|
@@ -11902,6 +12354,7 @@ export type GetPlaceQuery = {
|
|
11902
12354
|
alternateNames?: Array<string | null> | null;
|
11903
12355
|
creationDate: any;
|
11904
12356
|
thing?: string | null;
|
12357
|
+
relevance?: number | null;
|
11905
12358
|
address?: {
|
11906
12359
|
__typename?: 'Address';
|
11907
12360
|
streetAddress?: string | null;
|
@@ -11926,6 +12379,7 @@ export type QueryPlacesQuery = {
|
|
11926
12379
|
alternateNames?: Array<string | null> | null;
|
11927
12380
|
creationDate: any;
|
11928
12381
|
thing?: string | null;
|
12382
|
+
relevance?: number | null;
|
11929
12383
|
address?: {
|
11930
12384
|
__typename?: 'Address';
|
11931
12385
|
streetAddress?: string | null;
|
@@ -12017,6 +12471,7 @@ export type GetProductQuery = {
|
|
12017
12471
|
alternateNames?: Array<string | null> | null;
|
12018
12472
|
creationDate: any;
|
12019
12473
|
thing?: string | null;
|
12474
|
+
relevance?: number | null;
|
12020
12475
|
manufacturer?: string | null;
|
12021
12476
|
model?: string | null;
|
12022
12477
|
brand?: string | null;
|
@@ -12048,6 +12503,7 @@ export type QueryProductsQuery = {
|
|
12048
12503
|
alternateNames?: Array<string | null> | null;
|
12049
12504
|
creationDate: any;
|
12050
12505
|
thing?: string | null;
|
12506
|
+
relevance?: number | null;
|
12051
12507
|
manufacturer?: string | null;
|
12052
12508
|
model?: string | null;
|
12053
12509
|
brand?: string | null;
|
@@ -12092,6 +12548,8 @@ export type GetProjectQuery = {
|
|
12092
12548
|
environmentType?: EnvironmentTypes | null;
|
12093
12549
|
platform?: ResourceConnectorTypes | null;
|
12094
12550
|
region?: string | null;
|
12551
|
+
credits?: any | null;
|
12552
|
+
lastCreditsDate?: any | null;
|
12095
12553
|
callbackUri?: any | null;
|
12096
12554
|
workflow?: {
|
12097
12555
|
__typename?: 'Workflow';
|
@@ -12107,6 +12565,7 @@ export type GetProjectQuery = {
|
|
12107
12565
|
__typename?: 'ProjectQuota';
|
12108
12566
|
storage?: number | null;
|
12109
12567
|
contents?: number | null;
|
12568
|
+
credits?: number | null;
|
12110
12569
|
feeds?: number | null;
|
12111
12570
|
posts?: number | null;
|
12112
12571
|
conversations?: number | null;
|
@@ -12178,7 +12637,7 @@ export type QueryCreditsQueryVariables = Exact<{
|
|
12178
12637
|
}>;
|
12179
12638
|
export type QueryCreditsQuery = {
|
12180
12639
|
__typename?: 'Query';
|
12181
|
-
credits?:
|
12640
|
+
credits?: {
|
12182
12641
|
__typename?: 'ProjectCredits';
|
12183
12642
|
correlationId?: string | null;
|
12184
12643
|
ownerId?: string | null;
|
@@ -12191,11 +12650,14 @@ export type QueryCreditsQuery = {
|
|
12191
12650
|
publishingRatio?: any | null;
|
12192
12651
|
searchRatio?: any | null;
|
12193
12652
|
conversationRatio?: any | null;
|
12194
|
-
} | null
|
12653
|
+
} | null;
|
12195
12654
|
};
|
12196
12655
|
export type QueryUsageQueryVariables = Exact<{
|
12197
12656
|
startDate: Scalars['DateTime']['input'];
|
12198
12657
|
duration: Scalars['TimeSpan']['input'];
|
12658
|
+
names?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
12659
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
12660
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
12199
12661
|
}>;
|
12200
12662
|
export type QueryUsageQuery = {
|
12201
12663
|
__typename?: 'Query';
|
@@ -12313,6 +12775,7 @@ export type GetRepoQuery = {
|
|
12313
12775
|
alternateNames?: Array<string | null> | null;
|
12314
12776
|
creationDate: any;
|
12315
12777
|
thing?: string | null;
|
12778
|
+
relevance?: number | null;
|
12316
12779
|
} | null;
|
12317
12780
|
};
|
12318
12781
|
export type QueryReposQueryVariables = Exact<{
|
@@ -12329,6 +12792,7 @@ export type QueryReposQuery = {
|
|
12329
12792
|
alternateNames?: Array<string | null> | null;
|
12330
12793
|
creationDate: any;
|
12331
12794
|
thing?: string | null;
|
12795
|
+
relevance?: number | null;
|
12332
12796
|
} | null> | null;
|
12333
12797
|
} | null;
|
12334
12798
|
};
|
@@ -12412,6 +12876,7 @@ export type GetSoftwareQuery = {
|
|
12412
12876
|
alternateNames?: Array<string | null> | null;
|
12413
12877
|
creationDate: any;
|
12414
12878
|
thing?: string | null;
|
12879
|
+
relevance?: number | null;
|
12415
12880
|
releaseDate?: any | null;
|
12416
12881
|
developer?: string | null;
|
12417
12882
|
} | null;
|
@@ -12430,6 +12895,7 @@ export type QuerySoftwaresQuery = {
|
|
12430
12895
|
alternateNames?: Array<string | null> | null;
|
12431
12896
|
creationDate: any;
|
12432
12897
|
thing?: string | null;
|
12898
|
+
relevance?: number | null;
|
12433
12899
|
releaseDate?: any | null;
|
12434
12900
|
developer?: string | null;
|
12435
12901
|
} | null> | null;
|
@@ -12659,11 +13125,102 @@ export type PromptSpecificationsMutation = {
|
|
12659
13125
|
id: string;
|
12660
13126
|
name: string;
|
12661
13127
|
state: EntityState;
|
13128
|
+
originalDate?: any | null;
|
13129
|
+
uri?: any | null;
|
12662
13130
|
type?: ContentTypes | null;
|
12663
13131
|
fileType?: FileTypes | null;
|
13132
|
+
mimeType?: string | null;
|
13133
|
+
format?: string | null;
|
13134
|
+
formatName?: string | null;
|
13135
|
+
fileExtension?: string | null;
|
12664
13136
|
fileName?: string | null;
|
12665
|
-
|
12666
|
-
|
13137
|
+
fileSize?: any | null;
|
13138
|
+
masterUri?: any | null;
|
13139
|
+
imageUri?: any | null;
|
13140
|
+
textUri?: any | null;
|
13141
|
+
audioUri?: any | null;
|
13142
|
+
transcriptUri?: any | null;
|
13143
|
+
summary?: string | null;
|
13144
|
+
customSummary?: string | null;
|
13145
|
+
keywords?: Array<string> | null;
|
13146
|
+
bullets?: Array<string> | null;
|
13147
|
+
headlines?: Array<string> | null;
|
13148
|
+
posts?: Array<string> | null;
|
13149
|
+
chapters?: Array<string> | null;
|
13150
|
+
questions?: Array<string> | null;
|
13151
|
+
video?: {
|
13152
|
+
__typename?: 'VideoMetadata';
|
13153
|
+
width?: number | null;
|
13154
|
+
height?: number | null;
|
13155
|
+
duration?: string | null;
|
13156
|
+
make?: string | null;
|
13157
|
+
model?: string | null;
|
13158
|
+
software?: string | null;
|
13159
|
+
title?: string | null;
|
13160
|
+
description?: string | null;
|
13161
|
+
keywords?: Array<string | null> | null;
|
13162
|
+
author?: string | null;
|
13163
|
+
} | null;
|
13164
|
+
audio?: {
|
13165
|
+
__typename?: 'AudioMetadata';
|
13166
|
+
keywords?: Array<string | null> | null;
|
13167
|
+
author?: string | null;
|
13168
|
+
series?: string | null;
|
13169
|
+
episode?: string | null;
|
13170
|
+
episodeType?: string | null;
|
13171
|
+
season?: string | null;
|
13172
|
+
publisher?: string | null;
|
13173
|
+
copyright?: string | null;
|
13174
|
+
language?: string | null;
|
13175
|
+
genre?: string | null;
|
13176
|
+
title?: string | null;
|
13177
|
+
description?: string | null;
|
13178
|
+
bitrate?: number | null;
|
13179
|
+
channels?: number | null;
|
13180
|
+
sampleRate?: number | null;
|
13181
|
+
bitsPerSample?: number | null;
|
13182
|
+
duration?: string | null;
|
13183
|
+
} | null;
|
13184
|
+
image?: {
|
13185
|
+
__typename?: 'ImageMetadata';
|
13186
|
+
width?: number | null;
|
13187
|
+
height?: number | null;
|
13188
|
+
resolutionX?: number | null;
|
13189
|
+
resolutionY?: number | null;
|
13190
|
+
bitsPerComponent?: number | null;
|
13191
|
+
components?: number | null;
|
13192
|
+
projectionType?: ImageProjectionTypes | null;
|
13193
|
+
orientation?: OrientationTypes | null;
|
13194
|
+
description?: string | null;
|
13195
|
+
make?: string | null;
|
13196
|
+
model?: string | null;
|
13197
|
+
software?: string | null;
|
13198
|
+
lens?: string | null;
|
13199
|
+
focalLength?: number | null;
|
13200
|
+
exposureTime?: string | null;
|
13201
|
+
fNumber?: string | null;
|
13202
|
+
iso?: string | null;
|
13203
|
+
heading?: number | null;
|
13204
|
+
pitch?: number | null;
|
13205
|
+
} | null;
|
13206
|
+
document?: {
|
13207
|
+
__typename?: 'DocumentMetadata';
|
13208
|
+
title?: string | null;
|
13209
|
+
subject?: string | null;
|
13210
|
+
summary?: string | null;
|
13211
|
+
author?: string | null;
|
13212
|
+
publisher?: string | null;
|
13213
|
+
description?: string | null;
|
13214
|
+
keywords?: Array<string | null> | null;
|
13215
|
+
pageCount?: number | null;
|
13216
|
+
worksheetCount?: number | null;
|
13217
|
+
slideCount?: number | null;
|
13218
|
+
wordCount?: number | null;
|
13219
|
+
lineCount?: number | null;
|
13220
|
+
paragraphCount?: number | null;
|
13221
|
+
isEncrypted?: boolean | null;
|
13222
|
+
hasDigitalSignature?: boolean | null;
|
13223
|
+
} | null;
|
12667
13224
|
} | null;
|
12668
13225
|
} | null> | null;
|
12669
13226
|
} | null> | null;
|
@@ -12938,6 +13495,13 @@ export type CreateWorkflowMutation = {
|
|
12938
13495
|
} | null;
|
12939
13496
|
} | null> | null;
|
12940
13497
|
} | null;
|
13498
|
+
storage?: {
|
13499
|
+
__typename?: 'StorageWorkflowStage';
|
13500
|
+
embeddings?: {
|
13501
|
+
__typename?: 'EmbeddingsStrategy';
|
13502
|
+
chunkTokenLimit?: number | null;
|
13503
|
+
} | null;
|
13504
|
+
} | null;
|
12941
13505
|
actions?: Array<{
|
12942
13506
|
__typename?: 'WorkflowAction';
|
12943
13507
|
connector?: {
|
@@ -13120,6 +13684,13 @@ export type GetWorkflowQuery = {
|
|
13120
13684
|
} | null;
|
13121
13685
|
} | null> | null;
|
13122
13686
|
} | null;
|
13687
|
+
storage?: {
|
13688
|
+
__typename?: 'StorageWorkflowStage';
|
13689
|
+
embeddings?: {
|
13690
|
+
__typename?: 'EmbeddingsStrategy';
|
13691
|
+
chunkTokenLimit?: number | null;
|
13692
|
+
} | null;
|
13693
|
+
} | null;
|
13123
13694
|
actions?: Array<{
|
13124
13695
|
__typename?: 'WorkflowAction';
|
13125
13696
|
connector?: {
|
@@ -13268,6 +13839,13 @@ export type QueryWorkflowsQuery = {
|
|
13268
13839
|
} | null;
|
13269
13840
|
} | null> | null;
|
13270
13841
|
} | null;
|
13842
|
+
storage?: {
|
13843
|
+
__typename?: 'StorageWorkflowStage';
|
13844
|
+
embeddings?: {
|
13845
|
+
__typename?: 'EmbeddingsStrategy';
|
13846
|
+
chunkTokenLimit?: number | null;
|
13847
|
+
} | null;
|
13848
|
+
} | null;
|
13271
13849
|
actions?: Array<{
|
13272
13850
|
__typename?: 'WorkflowAction';
|
13273
13851
|
connector?: {
|
@@ -13410,6 +13988,13 @@ export type UpdateWorkflowMutation = {
|
|
13410
13988
|
} | null;
|
13411
13989
|
} | null> | null;
|
13412
13990
|
} | null;
|
13991
|
+
storage?: {
|
13992
|
+
__typename?: 'StorageWorkflowStage';
|
13993
|
+
embeddings?: {
|
13994
|
+
__typename?: 'EmbeddingsStrategy';
|
13995
|
+
chunkTokenLimit?: number | null;
|
13996
|
+
} | null;
|
13997
|
+
} | null;
|
13413
13998
|
actions?: Array<{
|
13414
13999
|
__typename?: 'WorkflowAction';
|
13415
14000
|
connector?: {
|