graphlit-client 1.0.20240609001 → 1.0.20240621001

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 = {
@@ -2184,6 +2182,17 @@ export type EmailPreparationPropertiesInput = {
2184
2182
  /** Whether to extract attachments from emails as ingested content. */
2185
2183
  includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
2186
2184
  };
2185
+ /** Represents the embeddings strategy. */
2186
+ export type EmbeddingsStrategy = {
2187
+ __typename?: 'EmbeddingsStrategy';
2188
+ /** The limit of tokens per embedded text chunk, defaults to 600. */
2189
+ chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
2190
+ };
2191
+ /** Represents the embeddings strategy. */
2192
+ export type EmbeddingsStrategyInput = {
2193
+ /** The limit of tokens per embedded text chunk, defaults to 600. */
2194
+ chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
2195
+ };
2187
2196
  /** Represents an enrichment workflow job. */
2188
2197
  export type EnrichmentWorkflowJob = {
2189
2198
  __typename?: 'EnrichmentWorkflowJob';
@@ -2462,6 +2471,8 @@ export type Event = {
2462
2471
  price?: Maybe<Scalars['Decimal']['output']>;
2463
2472
  /** The currency of the event price. */
2464
2473
  priceCurrency?: Maybe<Scalars['String']['output']>;
2474
+ /** The relevance score of the event. */
2475
+ relevance?: Maybe<Scalars['Float']['output']>;
2465
2476
  /** The event start date. */
2466
2477
  startDate?: Maybe<Scalars['DateTime']['output']>;
2467
2478
  /** The state of the event (i.e. created, enabled). */
@@ -2517,6 +2528,8 @@ export type EventFilter = {
2517
2528
  direction?: InputMaybe<OrderDirectionTypes>;
2518
2529
  /** Filter by event end date range. */
2519
2530
  endDateRange?: InputMaybe<DateRangeFilter>;
2531
+ /** Filter by similar events. */
2532
+ events?: InputMaybe<Array<EntityReferenceFilter>>;
2520
2533
  /** Filter by observable H3 index. */
2521
2534
  h3?: InputMaybe<H3Filter>;
2522
2535
  /** Filter event(s) by their unique ID. */
@@ -2533,6 +2546,8 @@ export type EventFilter = {
2533
2546
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
2534
2547
  /** Filter event(s) by their name. */
2535
2548
  name?: InputMaybe<Scalars['String']['input']>;
2549
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
2550
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
2536
2551
  /** Skip the specified number of event(s) from the beginning of the result set. */
2537
2552
  offset?: InputMaybe<Scalars['Int']['input']>;
2538
2553
  /** The sort order for query results. */
@@ -2541,8 +2556,12 @@ export type EventFilter = {
2541
2556
  price?: InputMaybe<Scalars['Decimal']['input']>;
2542
2557
  /** Filter by the currency of the event price. */
2543
2558
  priceCurrency?: InputMaybe<Scalars['String']['input']>;
2559
+ /** The query syntax for the search text. Defaults to Simple. */
2560
+ queryType?: InputMaybe<SearchQueryTypes>;
2544
2561
  /** Filter event(s) by searching for specific text. */
2545
2562
  search?: InputMaybe<Scalars['String']['input']>;
2563
+ /** The type of search to be used. Defaults to Vector. */
2564
+ searchType?: InputMaybe<SearchTypes>;
2546
2565
  /** Filter by event start date range. */
2547
2566
  startDateRange?: InputMaybe<DateRangeFilter>;
2548
2567
  /** Filter event(s) by their states. */
@@ -3081,28 +3100,44 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
3081
3100
  /** Represents Google Drive properties. */
3082
3101
  export type GoogleDriveFeedProperties = {
3083
3102
  __typename?: 'GoogleDriveFeedProperties';
3103
+ /** Google client identifier. */
3104
+ clientId: Scalars['String']['output'];
3105
+ /** Google client secret. */
3106
+ clientSecret: Scalars['String']['output'];
3084
3107
  /** Google Drive folder identifier. */
3085
3108
  folderId?: Maybe<Scalars['String']['output']>;
3086
- /** Google Drive refresh token. */
3109
+ /** Google refresh token. */
3087
3110
  refreshToken: Scalars['String']['output'];
3088
3111
  };
3089
3112
  /** Represents Google Drive properties. */
3090
3113
  export type GoogleDriveFeedPropertiesInput = {
3114
+ /** Google client identifier. */
3115
+ clientId: Scalars['String']['input'];
3116
+ /** Google client secret. */
3117
+ clientSecret: Scalars['String']['input'];
3091
3118
  /** Google Drive folder identifier. */
3092
3119
  folderId?: InputMaybe<Scalars['String']['input']>;
3093
- /** Google Drive refresh token. */
3120
+ /** Google refresh token. */
3094
3121
  refreshToken: Scalars['String']['input'];
3095
3122
  };
3096
3123
  /** Represents Google Drive properties. */
3097
3124
  export type GoogleDriveFeedPropertiesUpdateInput = {
3125
+ /** Google client identifier. */
3126
+ clientId?: InputMaybe<Scalars['String']['input']>;
3127
+ /** Google client secret. */
3128
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
3098
3129
  /** Google Drive folder identifier. */
3099
3130
  folderId?: InputMaybe<Scalars['String']['input']>;
3100
- /** Google Drive refresh token. */
3131
+ /** Google refresh token. */
3101
3132
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3102
3133
  };
3103
3134
  /** Represents Google Email feed properties. */
3104
3135
  export type GoogleEmailFeedProperties = {
3105
3136
  __typename?: 'GoogleEmailFeedProperties';
3137
+ /** Google client identifier. */
3138
+ clientId: Scalars['String']['output'];
3139
+ /** Google client secret. */
3140
+ clientSecret: Scalars['String']['output'];
3106
3141
  /** Google refresh token. */
3107
3142
  refreshToken?: Maybe<Scalars['String']['output']>;
3108
3143
  /** Email listing type, i.e. past or new emails. */
@@ -3110,13 +3145,21 @@ export type GoogleEmailFeedProperties = {
3110
3145
  };
3111
3146
  /** Represents Google Email feed properties. */
3112
3147
  export type GoogleEmailFeedPropertiesInput = {
3148
+ /** Google client identifier. */
3149
+ clientId: Scalars['String']['input'];
3150
+ /** Google client secret. */
3151
+ clientSecret: Scalars['String']['input'];
3113
3152
  /** Google refresh token. */
3114
- refreshToken?: InputMaybe<Scalars['String']['input']>;
3153
+ refreshToken: Scalars['String']['input'];
3115
3154
  /** Email listing type, i.e. past or new emails. */
3116
3155
  type?: InputMaybe<EmailListingTypes>;
3117
3156
  };
3118
3157
  /** Represents Google Email feed properties. */
3119
3158
  export type GoogleEmailFeedPropertiesUpdateInput = {
3159
+ /** Google client identifier. */
3160
+ clientId?: InputMaybe<Scalars['String']['input']>;
3161
+ /** Google client secret. */
3162
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
3120
3163
  /** Google refresh token. */
3121
3164
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3122
3165
  /** Email listing type, i.e. past or new emails. */
@@ -5402,6 +5445,8 @@ export type Organization = {
5402
5445
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
5403
5446
  /** The name of the organization. */
5404
5447
  name: Scalars['String']['output'];
5448
+ /** The relevance score of the organization. */
5449
+ relevance?: Maybe<Scalars['Float']['output']>;
5405
5450
  /** The revenue of the organization. */
5406
5451
  revenue?: Maybe<Scalars['Decimal']['output']>;
5407
5452
  /** The currency of the revenue of the organization. */
@@ -5461,12 +5506,20 @@ export type OrganizationFilter = {
5461
5506
  location?: InputMaybe<PointFilter>;
5462
5507
  /** Filter organization(s) by their name. */
5463
5508
  name?: InputMaybe<Scalars['String']['input']>;
5509
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5510
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5464
5511
  /** Skip the specified number of organization(s) from the beginning of the result set. */
5465
5512
  offset?: InputMaybe<Scalars['Int']['input']>;
5466
5513
  /** The sort order for query results. */
5467
5514
  orderBy?: InputMaybe<OrderByTypes>;
5515
+ /** Filter by similar organizations. */
5516
+ organizations?: InputMaybe<Array<EntityReferenceFilter>>;
5517
+ /** The query syntax for the search text. Defaults to Simple. */
5518
+ queryType?: InputMaybe<SearchQueryTypes>;
5468
5519
  /** Filter organization(s) by searching for specific text. */
5469
5520
  search?: InputMaybe<Scalars['String']['input']>;
5521
+ /** The type of search to be used. Defaults to Vector. */
5522
+ searchType?: InputMaybe<SearchTypes>;
5470
5523
  /** Filter organization(s) by their states. */
5471
5524
  states?: InputMaybe<Array<EntityState>>;
5472
5525
  };
@@ -5631,6 +5684,8 @@ export type Person = {
5631
5684
  occupation?: Maybe<Scalars['String']['output']>;
5632
5685
  /** The phone number of the person. */
5633
5686
  phoneNumber?: Maybe<Scalars['String']['output']>;
5687
+ /** The relevance score of the person. */
5688
+ relevance?: Maybe<Scalars['Float']['output']>;
5634
5689
  /** The state of the person (i.e. created, enabled). */
5635
5690
  state: EntityState;
5636
5691
  /** The JSON-LD value of the person. */
@@ -5694,14 +5749,22 @@ export type PersonFilter = {
5694
5749
  location?: InputMaybe<PointFilter>;
5695
5750
  /** Filter person(s) by their name. */
5696
5751
  name?: InputMaybe<Scalars['String']['input']>;
5752
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5753
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5697
5754
  /** Skip the specified number of person(s) from the beginning of the result set. */
5698
5755
  offset?: InputMaybe<Scalars['Int']['input']>;
5699
5756
  /** The sort order for query results. */
5700
5757
  orderBy?: InputMaybe<OrderByTypes>;
5758
+ /** Filter by similar persons. */
5759
+ persons?: InputMaybe<Array<EntityReferenceFilter>>;
5701
5760
  /** Filter by the phone number of the person. */
5702
5761
  phoneNumber?: InputMaybe<Scalars['String']['input']>;
5762
+ /** The query syntax for the search text. Defaults to Simple. */
5763
+ queryType?: InputMaybe<SearchQueryTypes>;
5703
5764
  /** Filter person(s) by searching for specific text. */
5704
5765
  search?: InputMaybe<Scalars['String']['input']>;
5766
+ /** The type of search to be used. Defaults to Vector. */
5767
+ searchType?: InputMaybe<SearchTypes>;
5705
5768
  /** Filter person(s) by their states. */
5706
5769
  states?: InputMaybe<Array<EntityState>>;
5707
5770
  };
@@ -5824,6 +5887,8 @@ export type Place = {
5824
5887
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
5825
5888
  /** The name of the place. */
5826
5889
  name: Scalars['String']['output'];
5890
+ /** The relevance score of the place. */
5891
+ relevance?: Maybe<Scalars['Float']['output']>;
5827
5892
  /** The state of the place (i.e. created, enabled). */
5828
5893
  state: EntityState;
5829
5894
  /** The JSON-LD value of the place. */
@@ -5879,12 +5944,20 @@ export type PlaceFilter = {
5879
5944
  location?: InputMaybe<PointFilter>;
5880
5945
  /** Filter place(s) by their name. */
5881
5946
  name?: InputMaybe<Scalars['String']['input']>;
5947
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
5948
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
5882
5949
  /** Skip the specified number of place(s) from the beginning of the result set. */
5883
5950
  offset?: InputMaybe<Scalars['Int']['input']>;
5884
5951
  /** The sort order for query results. */
5885
5952
  orderBy?: InputMaybe<OrderByTypes>;
5953
+ /** Filter by similar places. */
5954
+ places?: InputMaybe<Array<EntityReferenceFilter>>;
5955
+ /** The query syntax for the search text. Defaults to Simple. */
5956
+ queryType?: InputMaybe<SearchQueryTypes>;
5886
5957
  /** Filter place(s) by searching for specific text. */
5887
5958
  search?: InputMaybe<Scalars['String']['input']>;
5959
+ /** The type of search to be used. Defaults to Vector. */
5960
+ searchType?: InputMaybe<SearchTypes>;
5888
5961
  /** Filter place(s) by their states. */
5889
5962
  states?: InputMaybe<Array<EntityState>>;
5890
5963
  };
@@ -6065,6 +6138,8 @@ export type Product = {
6065
6138
  productionDate?: Maybe<Scalars['DateTime']['output']>;
6066
6139
  /** The product release date. */
6067
6140
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
6141
+ /** The relevance score of the product. */
6142
+ relevance?: Maybe<Scalars['Float']['output']>;
6068
6143
  /** The product SKU. */
6069
6144
  sku?: Maybe<Scalars['String']['output']>;
6070
6145
  /** The state of the product (i.e. created, enabled). */
@@ -6130,16 +6205,24 @@ export type ProductFilter = {
6130
6205
  model?: InputMaybe<Scalars['String']['input']>;
6131
6206
  /** Filter product(s) by their name. */
6132
6207
  name?: InputMaybe<Scalars['String']['input']>;
6208
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
6209
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
6133
6210
  /** Skip the specified number of product(s) from the beginning of the result set. */
6134
6211
  offset?: InputMaybe<Scalars['Int']['input']>;
6135
6212
  /** The sort order for query results. */
6136
6213
  orderBy?: InputMaybe<OrderByTypes>;
6137
6214
  /** Filter by production date range. */
6138
6215
  productionDateRange?: InputMaybe<DateRangeFilter>;
6216
+ /** Filter by similar products. */
6217
+ products?: InputMaybe<Array<EntityReferenceFilter>>;
6218
+ /** The query syntax for the search text. Defaults to Simple. */
6219
+ queryType?: InputMaybe<SearchQueryTypes>;
6139
6220
  /** Filter by release date range. */
6140
6221
  releaseDateRange?: InputMaybe<DateRangeFilter>;
6141
6222
  /** Filter product(s) by searching for specific text. */
6142
6223
  search?: InputMaybe<Scalars['String']['input']>;
6224
+ /** The type of search to be used. Defaults to Vector. */
6225
+ searchType?: InputMaybe<SearchTypes>;
6143
6226
  /** Filter by product SKU. */
6144
6227
  sku?: InputMaybe<Scalars['String']['input']>;
6145
6228
  /** Filter product(s) by their states. */
@@ -6226,12 +6309,16 @@ export type Project = {
6226
6309
  callbackUri?: Maybe<Scalars['URL']['output']>;
6227
6310
  /** The creation date of the project. */
6228
6311
  creationDate: Scalars['DateTime']['output'];
6312
+ /** The project credit usage. */
6313
+ credits?: Maybe<Scalars['Long']['output']>;
6229
6314
  /** The project environment type. */
6230
6315
  environmentType?: Maybe<EnvironmentTypes>;
6231
6316
  /** The ID of the project. */
6232
6317
  id: Scalars['ID']['output'];
6233
6318
  /** The project JWT signing secret. */
6234
6319
  jwtSecret?: Maybe<Scalars['String']['output']>;
6320
+ /** The last date that project credit usage was synchronized. */
6321
+ lastCreditsDate?: Maybe<Scalars['DateTime']['output']>;
6235
6322
  /** The modified date of the project. */
6236
6323
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
6237
6324
  /** The name of the project. */
@@ -6326,6 +6413,8 @@ export type ProjectQuota = {
6326
6413
  contents?: Maybe<Scalars['Int']['output']>;
6327
6414
  /** The maximum number of conversations which can be created. */
6328
6415
  conversations?: Maybe<Scalars['Int']['output']>;
6416
+ /** The maximum number of credits which can be accrued. */
6417
+ credits?: Maybe<Scalars['Int']['output']>;
6329
6418
  /** The maximum number of feeds which can be created. */
6330
6419
  feeds?: Maybe<Scalars['Int']['output']>;
6331
6420
  /** The maximum number of posts which can be read by feeds. */
@@ -7178,6 +7267,8 @@ export type Repo = {
7178
7267
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
7179
7268
  /** The name of the repo. */
7180
7269
  name: Scalars['String']['output'];
7270
+ /** The relevance score of the repo. */
7271
+ relevance?: Maybe<Scalars['Float']['output']>;
7181
7272
  /** The state of the repo (i.e. created, enabled). */
7182
7273
  state: EntityState;
7183
7274
  /** The JSON-LD value of the repo. */
@@ -7233,12 +7324,20 @@ export type RepoFilter = {
7233
7324
  location?: InputMaybe<PointFilter>;
7234
7325
  /** Filter repo(s) by their name. */
7235
7326
  name?: InputMaybe<Scalars['String']['input']>;
7327
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
7328
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
7236
7329
  /** Skip the specified number of repo(s) from the beginning of the result set. */
7237
7330
  offset?: InputMaybe<Scalars['Int']['input']>;
7238
7331
  /** The sort order for query results. */
7239
7332
  orderBy?: InputMaybe<OrderByTypes>;
7333
+ /** The query syntax for the search text. Defaults to Simple. */
7334
+ queryType?: InputMaybe<SearchQueryTypes>;
7335
+ /** Filter by similar code repositories. */
7336
+ repos?: InputMaybe<Array<EntityReferenceFilter>>;
7240
7337
  /** Filter repo(s) by searching for specific text. */
7241
7338
  search?: InputMaybe<Scalars['String']['input']>;
7339
+ /** The type of search to be used. Defaults to Vector. */
7340
+ searchType?: InputMaybe<SearchTypes>;
7242
7341
  /** Filter repo(s) by their states. */
7243
7342
  states?: InputMaybe<Array<EntityState>>;
7244
7343
  };
@@ -7678,6 +7777,8 @@ export type Software = {
7678
7777
  name: Scalars['String']['output'];
7679
7778
  /** The software release date. */
7680
7779
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
7780
+ /** The relevance score of the software. */
7781
+ relevance?: Maybe<Scalars['Float']['output']>;
7681
7782
  /** The state of the software (i.e. created, enabled). */
7682
7783
  state: EntityState;
7683
7784
  /** The JSON-LD value of the software. */
@@ -7733,12 +7834,20 @@ export type SoftwareFilter = {
7733
7834
  location?: InputMaybe<PointFilter>;
7734
7835
  /** Filter software(s) by their name. */
7735
7836
  name?: InputMaybe<Scalars['String']['input']>;
7837
+ /** When using similarity search, the number of similar items to be returned. Defaults to 10. */
7838
+ numberSimilar?: InputMaybe<Scalars['Int']['input']>;
7736
7839
  /** Skip the specified number of software(s) from the beginning of the result set. */
7737
7840
  offset?: InputMaybe<Scalars['Int']['input']>;
7738
7841
  /** The sort order for query results. */
7739
7842
  orderBy?: InputMaybe<OrderByTypes>;
7843
+ /** The query syntax for the search text. Defaults to Simple. */
7844
+ queryType?: InputMaybe<SearchQueryTypes>;
7740
7845
  /** Filter software(s) by searching for specific text. */
7741
7846
  search?: InputMaybe<Scalars['String']['input']>;
7847
+ /** The type of search to be used. Defaults to Vector. */
7848
+ searchType?: InputMaybe<SearchTypes>;
7849
+ /** Filter by similar software. */
7850
+ softwares?: InputMaybe<Array<EntityReferenceFilter>>;
7742
7851
  /** Filter software(s) by their states. */
7743
7852
  states?: InputMaybe<Array<EntityState>>;
7744
7853
  };
@@ -7980,6 +8089,17 @@ export type SpecificationUpdateInput = {
7980
8089
  /** The specification type. */
7981
8090
  type?: InputMaybe<SpecificationTypes>;
7982
8091
  };
8092
+ /** Represents the storage workflow stage. */
8093
+ export type StorageWorkflowStage = {
8094
+ __typename?: 'StorageWorkflowStage';
8095
+ /** The vector storage embeddings strategy. */
8096
+ embeddings?: Maybe<EmbeddingsStrategy>;
8097
+ };
8098
+ /** Represents the storage workflow stage. */
8099
+ export type StorageWorkflowStageInput = {
8100
+ /** The vector storage embeddings strategy. */
8101
+ embeddings?: InputMaybe<EmbeddingsStrategyInput>;
8102
+ };
7983
8103
  /** Represents a range of string values. */
7984
8104
  export type StringRange = {
7985
8105
  __typename?: 'StringRange';
@@ -8383,6 +8503,8 @@ export type Workflow = {
8383
8503
  preparation?: Maybe<PreparationWorkflowStage>;
8384
8504
  /** The state of the workflow (i.e. created, finished). */
8385
8505
  state: EntityState;
8506
+ /** The storage stage of the content workflow. */
8507
+ storage?: Maybe<StorageWorkflowStage>;
8386
8508
  };
8387
8509
  /** Represents the workflow action. */
8388
8510
  export type WorkflowAction = {
@@ -8430,6 +8552,8 @@ export type WorkflowInput = {
8430
8552
  name: Scalars['String']['input'];
8431
8553
  /** The preparation stage of the content workflow. */
8432
8554
  preparation?: InputMaybe<PreparationWorkflowStageInput>;
8555
+ /** The storage stage of the content workflow. */
8556
+ storage?: InputMaybe<StorageWorkflowStageInput>;
8433
8557
  };
8434
8558
  /** Represents workflow query results. */
8435
8559
  export type WorkflowResults = {
@@ -8453,6 +8577,8 @@ export type WorkflowUpdateInput = {
8453
8577
  name?: InputMaybe<Scalars['String']['input']>;
8454
8578
  /** The preparation stage of the content workflow. */
8455
8579
  preparation?: InputMaybe<PreparationWorkflowStageInput>;
8580
+ /** The storage stage of the content workflow. */
8581
+ storage?: InputMaybe<StorageWorkflowStageInput>;
8456
8582
  };
8457
8583
  /** Represents YouTube feed properties. */
8458
8584
  export type YouTubeFeedProperties = {
@@ -10372,11 +10498,94 @@ export type GetConversationQuery = {
10372
10498
  id: string;
10373
10499
  name: string;
10374
10500
  state: EntityState;
10501
+ originalDate?: any | null;
10502
+ uri?: any | null;
10375
10503
  type?: ContentTypes | null;
10376
10504
  fileType?: FileTypes | null;
10505
+ mimeType?: string | null;
10506
+ format?: string | null;
10507
+ formatName?: string | null;
10508
+ fileExtension?: string | null;
10377
10509
  fileName?: string | null;
10378
- originalDate?: any | null;
10379
- uri?: any | null;
10510
+ fileSize?: any | null;
10511
+ masterUri?: any | null;
10512
+ imageUri?: any | null;
10513
+ textUri?: any | null;
10514
+ audioUri?: any | null;
10515
+ transcriptUri?: any | null;
10516
+ video?: {
10517
+ __typename?: 'VideoMetadata';
10518
+ width?: number | null;
10519
+ height?: number | null;
10520
+ duration?: string | null;
10521
+ make?: string | null;
10522
+ model?: string | null;
10523
+ software?: string | null;
10524
+ title?: string | null;
10525
+ description?: string | null;
10526
+ keywords?: Array<string | null> | null;
10527
+ author?: string | null;
10528
+ } | null;
10529
+ audio?: {
10530
+ __typename?: 'AudioMetadata';
10531
+ keywords?: Array<string | null> | null;
10532
+ author?: string | null;
10533
+ series?: string | null;
10534
+ episode?: string | null;
10535
+ episodeType?: string | null;
10536
+ season?: string | null;
10537
+ publisher?: string | null;
10538
+ copyright?: string | null;
10539
+ language?: string | null;
10540
+ genre?: string | null;
10541
+ title?: string | null;
10542
+ description?: string | null;
10543
+ bitrate?: number | null;
10544
+ channels?: number | null;
10545
+ sampleRate?: number | null;
10546
+ bitsPerSample?: number | null;
10547
+ duration?: string | null;
10548
+ } | null;
10549
+ image?: {
10550
+ __typename?: 'ImageMetadata';
10551
+ width?: number | null;
10552
+ height?: number | null;
10553
+ resolutionX?: number | null;
10554
+ resolutionY?: number | null;
10555
+ bitsPerComponent?: number | null;
10556
+ components?: number | null;
10557
+ projectionType?: ImageProjectionTypes | null;
10558
+ orientation?: OrientationTypes | null;
10559
+ description?: string | null;
10560
+ make?: string | null;
10561
+ model?: string | null;
10562
+ software?: string | null;
10563
+ lens?: string | null;
10564
+ focalLength?: number | null;
10565
+ exposureTime?: string | null;
10566
+ fNumber?: string | null;
10567
+ iso?: string | null;
10568
+ heading?: number | null;
10569
+ pitch?: number | null;
10570
+ } | null;
10571
+ document?: {
10572
+ __typename?: 'DocumentMetadata';
10573
+ title?: string | null;
10574
+ subject?: string | null;
10575
+ summary?: string | null;
10576
+ author?: string | null;
10577
+ publisher?: string | null;
10578
+ description?: string | null;
10579
+ keywords?: Array<string | null> | null;
10580
+ pageCount?: number | null;
10581
+ worksheetCount?: number | null;
10582
+ slideCount?: number | null;
10583
+ wordCount?: number | null;
10584
+ lineCount?: number | null;
10585
+ paragraphCount?: number | null;
10586
+ isEncrypted?: boolean | null;
10587
+ hasDigitalSignature?: boolean | null;
10588
+ } | null;
10380
10589
  } | null;
10381
10590
  } | null> | null;
10382
10591
  } | null> | null;
@@ -10513,11 +10722,94 @@ export type PromptConversationMutation = {
10513
10722
  id: string;
10514
10723
  name: string;
10515
10724
  state: EntityState;
10725
+ originalDate?: any | null;
10726
+ uri?: any | null;
10516
10727
  type?: ContentTypes | null;
10517
10728
  fileType?: FileTypes | null;
10729
+ mimeType?: string | null;
10730
+ format?: string | null;
10731
+ formatName?: string | null;
10732
+ fileExtension?: string | null;
10518
10733
  fileName?: string | null;
10519
- originalDate?: any | null;
10520
- uri?: any | null;
10734
+ fileSize?: any | null;
10735
+ masterUri?: any | null;
10736
+ imageUri?: any | null;
10737
+ textUri?: any | null;
10738
+ audioUri?: any | null;
10739
+ transcriptUri?: any | null;
10740
+ video?: {
10741
+ __typename?: 'VideoMetadata';
10742
+ width?: number | null;
10743
+ height?: number | null;
10744
+ duration?: string | null;
10745
+ make?: string | null;
10746
+ model?: string | null;
10747
+ software?: string | null;
10748
+ title?: string | null;
10749
+ description?: string | null;
10750
+ keywords?: Array<string | null> | null;
10751
+ author?: string | null;
10752
+ } | null;
10753
+ audio?: {
10754
+ __typename?: 'AudioMetadata';
10755
+ keywords?: Array<string | null> | null;
10756
+ author?: string | null;
10757
+ series?: string | null;
10758
+ episode?: string | null;
10759
+ episodeType?: string | null;
10760
+ season?: string | null;
10761
+ publisher?: string | null;
10762
+ copyright?: string | null;
10763
+ language?: string | null;
10764
+ genre?: string | null;
10765
+ title?: string | null;
10766
+ description?: string | null;
10767
+ bitrate?: number | null;
10768
+ channels?: number | null;
10769
+ sampleRate?: number | null;
10770
+ bitsPerSample?: number | null;
10771
+ duration?: string | null;
10772
+ } | null;
10773
+ image?: {
10774
+ __typename?: 'ImageMetadata';
10775
+ width?: number | null;
10776
+ height?: number | null;
10777
+ resolutionX?: number | null;
10778
+ resolutionY?: number | null;
10779
+ bitsPerComponent?: number | null;
10780
+ components?: number | null;
10781
+ projectionType?: ImageProjectionTypes | null;
10782
+ orientation?: OrientationTypes | null;
10783
+ description?: string | null;
10784
+ make?: string | null;
10785
+ model?: string | null;
10786
+ software?: string | null;
10787
+ lens?: string | null;
10788
+ focalLength?: number | null;
10789
+ exposureTime?: string | null;
10790
+ fNumber?: string | null;
10791
+ iso?: string | null;
10792
+ heading?: number | null;
10793
+ pitch?: number | null;
10794
+ } | null;
10795
+ document?: {
10796
+ __typename?: 'DocumentMetadata';
10797
+ title?: string | null;
10798
+ subject?: string | null;
10799
+ summary?: string | null;
10800
+ author?: string | null;
10801
+ publisher?: string | null;
10802
+ description?: string | null;
10803
+ keywords?: Array<string | null> | null;
10804
+ pageCount?: number | null;
10805
+ worksheetCount?: number | null;
10806
+ slideCount?: number | null;
10807
+ wordCount?: number | null;
10808
+ lineCount?: number | null;
10809
+ paragraphCount?: number | null;
10810
+ isEncrypted?: boolean | null;
10811
+ hasDigitalSignature?: boolean | null;
10812
+ } | null;
10521
10813
  } | null;
10522
10814
  } | null> | null;
10523
10815
  } | null;
@@ -10632,11 +10924,94 @@ export type QueryConversationsQuery = {
10632
10924
  id: string;
10633
10925
  name: string;
10634
10926
  state: EntityState;
10927
+ originalDate?: any | null;
10928
+ uri?: any | null;
10635
10929
  type?: ContentTypes | null;
10636
10930
  fileType?: FileTypes | null;
10931
+ mimeType?: string | null;
10932
+ format?: string | null;
10933
+ formatName?: string | null;
10934
+ fileExtension?: string | null;
10637
10935
  fileName?: string | null;
10638
- originalDate?: any | null;
10639
- uri?: any | null;
10936
+ fileSize?: any | null;
10937
+ masterUri?: any | null;
10938
+ imageUri?: any | null;
10939
+ textUri?: any | null;
10940
+ audioUri?: any | null;
10941
+ transcriptUri?: any | null;
10942
+ video?: {
10943
+ __typename?: 'VideoMetadata';
10944
+ width?: number | null;
10945
+ height?: number | null;
10946
+ duration?: string | null;
10947
+ make?: string | null;
10948
+ model?: string | null;
10949
+ software?: string | null;
10950
+ title?: string | null;
10951
+ description?: string | null;
10952
+ keywords?: Array<string | null> | null;
10953
+ author?: string | null;
10954
+ } | null;
10955
+ audio?: {
10956
+ __typename?: 'AudioMetadata';
10957
+ keywords?: Array<string | null> | null;
10958
+ author?: string | null;
10959
+ series?: string | null;
10960
+ episode?: string | null;
10961
+ episodeType?: string | null;
10962
+ season?: string | null;
10963
+ publisher?: string | null;
10964
+ copyright?: string | null;
10965
+ language?: string | null;
10966
+ genre?: string | null;
10967
+ title?: string | null;
10968
+ description?: string | null;
10969
+ bitrate?: number | null;
10970
+ channels?: number | null;
10971
+ sampleRate?: number | null;
10972
+ bitsPerSample?: number | null;
10973
+ duration?: string | null;
10974
+ } | null;
10975
+ image?: {
10976
+ __typename?: 'ImageMetadata';
10977
+ width?: number | null;
10978
+ height?: number | null;
10979
+ resolutionX?: number | null;
10980
+ resolutionY?: number | null;
10981
+ bitsPerComponent?: number | null;
10982
+ components?: number | null;
10983
+ projectionType?: ImageProjectionTypes | null;
10984
+ orientation?: OrientationTypes | null;
10985
+ description?: string | null;
10986
+ make?: string | null;
10987
+ model?: string | null;
10988
+ software?: string | null;
10989
+ lens?: string | null;
10990
+ focalLength?: number | null;
10991
+ exposureTime?: string | null;
10992
+ fNumber?: string | null;
10993
+ iso?: string | null;
10994
+ heading?: number | null;
10995
+ pitch?: number | null;
10996
+ } | null;
10997
+ document?: {
10998
+ __typename?: 'DocumentMetadata';
10999
+ title?: string | null;
11000
+ subject?: string | null;
11001
+ summary?: string | null;
11002
+ author?: string | null;
11003
+ publisher?: string | null;
11004
+ description?: string | null;
11005
+ keywords?: Array<string | null> | null;
11006
+ pageCount?: number | null;
11007
+ worksheetCount?: number | null;
11008
+ slideCount?: number | null;
11009
+ wordCount?: number | null;
11010
+ lineCount?: number | null;
11011
+ paragraphCount?: number | null;
11012
+ isEncrypted?: boolean | null;
11013
+ hasDigitalSignature?: boolean | null;
11014
+ } | null;
10640
11015
  } | null;
10641
11016
  } | null> | null;
10642
11017
  } | null> | null;
@@ -10831,6 +11206,7 @@ export type GetEventQuery = {
10831
11206
  alternateNames?: Array<string | null> | null;
10832
11207
  creationDate: any;
10833
11208
  thing?: string | null;
11209
+ relevance?: number | null;
10834
11210
  startDate?: any | null;
10835
11211
  endDate?: any | null;
10836
11212
  availabilityStartDate?: any | null;
@@ -10865,6 +11241,7 @@ export type QueryEventsQuery = {
10865
11241
  alternateNames?: Array<string | null> | null;
10866
11242
  creationDate: any;
10867
11243
  thing?: string | null;
11244
+ relevance?: number | null;
10868
11245
  startDate?: any | null;
10869
11246
  endDate?: any | null;
10870
11247
  availabilityStartDate?: any | null;
@@ -11051,6 +11428,8 @@ export type GetFeedQuery = {
11051
11428
  __typename?: 'GoogleDriveFeedProperties';
11052
11429
  folderId?: string | null;
11053
11430
  refreshToken: string;
11431
+ clientId: string;
11432
+ clientSecret: string;
11054
11433
  } | null;
11055
11434
  } | null;
11056
11435
  email?: {
@@ -11061,6 +11440,8 @@ export type GetFeedQuery = {
11061
11440
  __typename?: 'GoogleEmailFeedProperties';
11062
11441
  type?: EmailListingTypes | null;
11063
11442
  refreshToken?: string | null;
11443
+ clientId: string;
11444
+ clientSecret: string;
11064
11445
  } | null;
11065
11446
  microsoft?: {
11066
11447
  __typename?: 'MicrosoftEmailFeedProperties';
@@ -11249,6 +11630,8 @@ export type QueryFeedsQuery = {
11249
11630
  __typename?: 'GoogleDriveFeedProperties';
11250
11631
  folderId?: string | null;
11251
11632
  refreshToken: string;
11633
+ clientId: string;
11634
+ clientSecret: string;
11252
11635
  } | null;
11253
11636
  } | null;
11254
11637
  email?: {
@@ -11259,6 +11642,8 @@ export type QueryFeedsQuery = {
11259
11642
  __typename?: 'GoogleEmailFeedProperties';
11260
11643
  type?: EmailListingTypes | null;
11261
11644
  refreshToken?: string | null;
11645
+ clientId: string;
11646
+ clientSecret: string;
11262
11647
  } | null;
11263
11648
  microsoft?: {
11264
11649
  __typename?: 'MicrosoftEmailFeedProperties';
@@ -11644,6 +12029,7 @@ export type GetOrganizationQuery = {
11644
12029
  alternateNames?: Array<string | null> | null;
11645
12030
  creationDate: any;
11646
12031
  thing?: string | null;
12032
+ relevance?: number | null;
11647
12033
  foundingDate?: any | null;
11648
12034
  industries?: Array<string | null> | null;
11649
12035
  revenue?: any | null;
@@ -11674,6 +12060,7 @@ export type QueryOrganizationsQuery = {
11674
12060
  alternateNames?: Array<string | null> | null;
11675
12061
  creationDate: any;
11676
12062
  thing?: string | null;
12063
+ relevance?: number | null;
11677
12064
  foundingDate?: any | null;
11678
12065
  industries?: Array<string | null> | null;
11679
12066
  revenue?: any | null;
@@ -11771,6 +12158,7 @@ export type GetPersonQuery = {
11771
12158
  alternateNames?: Array<string | null> | null;
11772
12159
  creationDate: any;
11773
12160
  thing?: string | null;
12161
+ relevance?: number | null;
11774
12162
  email?: string | null;
11775
12163
  givenName?: string | null;
11776
12164
  familyName?: string | null;
@@ -11803,6 +12191,7 @@ export type QueryPersonsQuery = {
11803
12191
  alternateNames?: Array<string | null> | null;
11804
12192
  creationDate: any;
11805
12193
  thing?: string | null;
12194
+ relevance?: number | null;
11806
12195
  email?: string | null;
11807
12196
  givenName?: string | null;
11808
12197
  familyName?: string | null;
@@ -11902,6 +12291,7 @@ export type GetPlaceQuery = {
11902
12291
  alternateNames?: Array<string | null> | null;
11903
12292
  creationDate: any;
11904
12293
  thing?: string | null;
12294
+ relevance?: number | null;
11905
12295
  address?: {
11906
12296
  __typename?: 'Address';
11907
12297
  streetAddress?: string | null;
@@ -11926,6 +12316,7 @@ export type QueryPlacesQuery = {
11926
12316
  alternateNames?: Array<string | null> | null;
11927
12317
  creationDate: any;
11928
12318
  thing?: string | null;
12319
+ relevance?: number | null;
11929
12320
  address?: {
11930
12321
  __typename?: 'Address';
11931
12322
  streetAddress?: string | null;
@@ -12017,6 +12408,7 @@ export type GetProductQuery = {
12017
12408
  alternateNames?: Array<string | null> | null;
12018
12409
  creationDate: any;
12019
12410
  thing?: string | null;
12411
+ relevance?: number | null;
12020
12412
  manufacturer?: string | null;
12021
12413
  model?: string | null;
12022
12414
  brand?: string | null;
@@ -12048,6 +12440,7 @@ export type QueryProductsQuery = {
12048
12440
  alternateNames?: Array<string | null> | null;
12049
12441
  creationDate: any;
12050
12442
  thing?: string | null;
12443
+ relevance?: number | null;
12051
12444
  manufacturer?: string | null;
12052
12445
  model?: string | null;
12053
12446
  brand?: string | null;
@@ -12092,6 +12485,8 @@ export type GetProjectQuery = {
12092
12485
  environmentType?: EnvironmentTypes | null;
12093
12486
  platform?: ResourceConnectorTypes | null;
12094
12487
  region?: string | null;
12488
+ credits?: any | null;
12489
+ lastCreditsDate?: any | null;
12095
12490
  callbackUri?: any | null;
12096
12491
  workflow?: {
12097
12492
  __typename?: 'Workflow';
@@ -12107,6 +12502,7 @@ export type GetProjectQuery = {
12107
12502
  __typename?: 'ProjectQuota';
12108
12503
  storage?: number | null;
12109
12504
  contents?: number | null;
12505
+ credits?: number | null;
12110
12506
  feeds?: number | null;
12111
12507
  posts?: number | null;
12112
12508
  conversations?: number | null;
@@ -12313,6 +12709,7 @@ export type GetRepoQuery = {
12313
12709
  alternateNames?: Array<string | null> | null;
12314
12710
  creationDate: any;
12315
12711
  thing?: string | null;
12712
+ relevance?: number | null;
12316
12713
  } | null;
12317
12714
  };
12318
12715
  export type QueryReposQueryVariables = Exact<{
@@ -12329,6 +12726,7 @@ export type QueryReposQuery = {
12329
12726
  alternateNames?: Array<string | null> | null;
12330
12727
  creationDate: any;
12331
12728
  thing?: string | null;
12729
+ relevance?: number | null;
12332
12730
  } | null> | null;
12333
12731
  } | null;
12334
12732
  };
@@ -12412,6 +12810,7 @@ export type GetSoftwareQuery = {
12412
12810
  alternateNames?: Array<string | null> | null;
12413
12811
  creationDate: any;
12414
12812
  thing?: string | null;
12813
+ relevance?: number | null;
12415
12814
  releaseDate?: any | null;
12416
12815
  developer?: string | null;
12417
12816
  } | null;
@@ -12430,6 +12829,7 @@ export type QuerySoftwaresQuery = {
12430
12829
  alternateNames?: Array<string | null> | null;
12431
12830
  creationDate: any;
12432
12831
  thing?: string | null;
12832
+ relevance?: number | null;
12433
12833
  releaseDate?: any | null;
12434
12834
  developer?: string | null;
12435
12835
  } | null> | null;
@@ -12659,11 +13059,94 @@ export type PromptSpecificationsMutation = {
12659
13059
  id: string;
12660
13060
  name: string;
12661
13061
  state: EntityState;
13062
+ originalDate?: any | null;
13063
+ uri?: any | null;
12662
13064
  type?: ContentTypes | null;
12663
13065
  fileType?: FileTypes | null;
13066
+ mimeType?: string | null;
13067
+ format?: string | null;
13068
+ formatName?: string | null;
13069
+ fileExtension?: string | null;
12664
13070
  fileName?: string | null;
12665
- originalDate?: any | null;
12666
- uri?: any | null;
13071
+ fileSize?: any | null;
13072
+ masterUri?: any | null;
13073
+ imageUri?: any | null;
13074
+ textUri?: any | null;
13075
+ audioUri?: any | null;
13076
+ transcriptUri?: any | null;
13077
+ video?: {
13078
+ __typename?: 'VideoMetadata';
13079
+ width?: number | null;
13080
+ height?: number | null;
13081
+ duration?: string | null;
13082
+ make?: string | null;
13083
+ model?: string | null;
13084
+ software?: string | null;
13085
+ title?: string | null;
13086
+ description?: string | null;
13087
+ keywords?: Array<string | null> | null;
13088
+ author?: string | null;
13089
+ } | null;
13090
+ audio?: {
13091
+ __typename?: 'AudioMetadata';
13092
+ keywords?: Array<string | null> | null;
13093
+ author?: string | null;
13094
+ series?: string | null;
13095
+ episode?: string | null;
13096
+ episodeType?: string | null;
13097
+ season?: string | null;
13098
+ publisher?: string | null;
13099
+ copyright?: string | null;
13100
+ language?: string | null;
13101
+ genre?: string | null;
13102
+ title?: string | null;
13103
+ description?: string | null;
13104
+ bitrate?: number | null;
13105
+ channels?: number | null;
13106
+ sampleRate?: number | null;
13107
+ bitsPerSample?: number | null;
13108
+ duration?: string | null;
13109
+ } | null;
13110
+ image?: {
13111
+ __typename?: 'ImageMetadata';
13112
+ width?: number | null;
13113
+ height?: number | null;
13114
+ resolutionX?: number | null;
13115
+ resolutionY?: number | null;
13116
+ bitsPerComponent?: number | null;
13117
+ components?: number | null;
13118
+ projectionType?: ImageProjectionTypes | null;
13119
+ orientation?: OrientationTypes | null;
13120
+ description?: string | null;
13121
+ make?: string | null;
13122
+ model?: string | null;
13123
+ software?: string | null;
13124
+ lens?: string | null;
13125
+ focalLength?: number | null;
13126
+ exposureTime?: string | null;
13127
+ fNumber?: string | null;
13128
+ iso?: string | null;
13129
+ heading?: number | null;
13130
+ pitch?: number | null;
13131
+ } | null;
13132
+ document?: {
13133
+ __typename?: 'DocumentMetadata';
13134
+ title?: string | null;
13135
+ subject?: string | null;
13136
+ summary?: string | null;
13137
+ author?: string | null;
13138
+ publisher?: string | null;
13139
+ description?: string | null;
13140
+ keywords?: Array<string | null> | null;
13141
+ pageCount?: number | null;
13142
+ worksheetCount?: number | null;
13143
+ slideCount?: number | null;
13144
+ wordCount?: number | null;
13145
+ lineCount?: number | null;
13146
+ paragraphCount?: number | null;
13147
+ isEncrypted?: boolean | null;
13148
+ hasDigitalSignature?: boolean | null;
13149
+ } | null;
12667
13150
  } | null;
12668
13151
  } | null> | null;
12669
13152
  } | null> | null;
@@ -12938,6 +13421,13 @@ export type CreateWorkflowMutation = {
12938
13421
  } | null;
12939
13422
  } | null> | null;
12940
13423
  } | null;
13424
+ storage?: {
13425
+ __typename?: 'StorageWorkflowStage';
13426
+ embeddings?: {
13427
+ __typename?: 'EmbeddingsStrategy';
13428
+ chunkTokenLimit?: number | null;
13429
+ } | null;
13430
+ } | null;
12941
13431
  actions?: Array<{
12942
13432
  __typename?: 'WorkflowAction';
12943
13433
  connector?: {
@@ -13120,6 +13610,13 @@ export type GetWorkflowQuery = {
13120
13610
  } | null;
13121
13611
  } | null> | null;
13122
13612
  } | null;
13613
+ storage?: {
13614
+ __typename?: 'StorageWorkflowStage';
13615
+ embeddings?: {
13616
+ __typename?: 'EmbeddingsStrategy';
13617
+ chunkTokenLimit?: number | null;
13618
+ } | null;
13619
+ } | null;
13123
13620
  actions?: Array<{
13124
13621
  __typename?: 'WorkflowAction';
13125
13622
  connector?: {
@@ -13268,6 +13765,13 @@ export type QueryWorkflowsQuery = {
13268
13765
  } | null;
13269
13766
  } | null> | null;
13270
13767
  } | null;
13768
+ storage?: {
13769
+ __typename?: 'StorageWorkflowStage';
13770
+ embeddings?: {
13771
+ __typename?: 'EmbeddingsStrategy';
13772
+ chunkTokenLimit?: number | null;
13773
+ } | null;
13774
+ } | null;
13271
13775
  actions?: Array<{
13272
13776
  __typename?: 'WorkflowAction';
13273
13777
  connector?: {
@@ -13410,6 +13914,13 @@ export type UpdateWorkflowMutation = {
13410
13914
  } | null;
13411
13915
  } | null> | null;
13412
13916
  } | null;
13917
+ storage?: {
13918
+ __typename?: 'StorageWorkflowStage';
13919
+ embeddings?: {
13920
+ __typename?: 'EmbeddingsStrategy';
13921
+ chunkTokenLimit?: number | null;
13922
+ } | null;
13923
+ } | null;
13413
13924
  actions?: Array<{
13414
13925
  __typename?: 'WorkflowAction';
13415
13926
  connector?: {