graphlit-client 1.0.20240820001 → 1.0.20240901001

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.
@@ -4285,6 +4285,8 @@ exports.LookupCredits = (0, graphql_tag_1.default) `
4285
4285
  credits
4286
4286
  storageRatio
4287
4287
  computeRatio
4288
+ embeddingRatio
4289
+ completionRatio
4288
4290
  indexingRatio
4289
4291
  preparationRatio
4290
4292
  extractionRatio
@@ -4339,6 +4341,8 @@ exports.QueryCredits = (0, graphql_tag_1.default) `
4339
4341
  credits
4340
4342
  storageRatio
4341
4343
  computeRatio
4344
+ embeddingRatio
4345
+ completionRatio
4342
4346
  indexingRatio
4343
4347
  preparationRatio
4344
4348
  extractionRatio
@@ -5127,6 +5131,9 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
5127
5131
  connector {
5128
5132
  type
5129
5133
  enrichedTypes
5134
+ fhir {
5135
+ endpoint
5136
+ }
5130
5137
  }
5131
5138
  }
5132
5139
  }
@@ -5299,6 +5306,9 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
5299
5306
  connector {
5300
5307
  type
5301
5308
  enrichedTypes
5309
+ fhir {
5310
+ endpoint
5311
+ }
5302
5312
  }
5303
5313
  }
5304
5314
  }
@@ -5444,6 +5454,9 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
5444
5454
  connector {
5445
5455
  type
5446
5456
  enrichedTypes
5457
+ fhir {
5458
+ endpoint
5459
+ }
5447
5460
  }
5448
5461
  }
5449
5462
  }
@@ -5584,6 +5597,9 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
5584
5597
  connector {
5585
5598
  type
5586
5599
  enrichedTypes
5600
+ fhir {
5601
+ endpoint
5602
+ }
5587
5603
  }
5588
5604
  }
5589
5605
  }
@@ -565,8 +565,15 @@ export declare enum AzureDocumentIntelligenceModels {
565
565
  UsTaxFormW2 = "US_TAX_FORM_W2"
566
566
  }
567
567
  export declare enum AzureDocumentIntelligenceVersions {
568
+ /** 2023-07-31 GA API */
568
569
  V2023_07_31 = "V2023_07_31",
569
- V2024_02_29Preview = "V2024_02_29_PREVIEW"
570
+ /**
571
+ * 2024-02-29 Preview API
572
+ * @deprecated Use V2024_07_31_PREVIEW instead.
573
+ */
574
+ V2024_02_29Preview = "V2024_02_29_PREVIEW",
575
+ /** 2024-07-31 Preview API */
576
+ V2024_07_31Preview = "V2024_07_31_PREVIEW"
570
577
  }
571
578
  /** Represents the Azure Document Intelligence preparation properties. */
572
579
  export type AzureDocumentPreparationProperties = {
@@ -904,10 +911,18 @@ export type CohereModelPropertiesUpdateInput = {
904
911
  };
905
912
  /** Cohere model type */
906
913
  export declare enum CohereModels {
907
- /** Command R */
914
+ /** Command R (Latest) */
908
915
  CommandR = "COMMAND_R",
909
- /** Command R+ */
916
+ /** Command R (2024-03 version) */
917
+ CommandR_202403 = "COMMAND_R_202403",
918
+ /** Command R (2024-08 version) */
919
+ CommandR_202408 = "COMMAND_R_202408",
920
+ /** Command R+ (Latest) */
910
921
  CommandRPlus = "COMMAND_R_PLUS",
922
+ /** Command R+ (2024-04 version) */
923
+ CommandRPlus_202404 = "COMMAND_R_PLUS_202404",
924
+ /** Command R+ (2024-08 version) */
925
+ CommandRPlus_202408 = "COMMAND_R_PLUS_202408",
911
926
  /** Developer-specified model */
912
927
  Custom = "CUSTOM"
913
928
  }
@@ -1075,7 +1090,7 @@ export type Content = {
1075
1090
  /** The content language metadata. */
1076
1091
  language?: Maybe<LanguageMetadata>;
1077
1092
  /** The extracted hyperlinks. */
1078
- links?: Maybe<Array<LinkReferenceType>>;
1093
+ links?: Maybe<Array<LinkReference>>;
1079
1094
  /** The geo-location of the content. */
1080
1095
  location?: Maybe<Point>;
1081
1096
  /** The content text formatted as Markdown. Contains either the extracted text for files, posts, etc., or the raw text for messages, emails, etc. */
@@ -2313,6 +2328,8 @@ export type EntityEnrichmentConnector = {
2313
2328
  __typename?: 'EntityEnrichmentConnector';
2314
2329
  /** The observable entity types to be enriched. */
2315
2330
  enrichedTypes?: Maybe<Array<Maybe<ObservableTypes>>>;
2331
+ /** The specific properties for FHIR medical entity enrichment. */
2332
+ fhir?: Maybe<FhirEnrichmentProperties>;
2316
2333
  /** The entity enrichment service type. */
2317
2334
  type?: Maybe<EntityEnrichmentServiceTypes>;
2318
2335
  };
@@ -2320,6 +2337,8 @@ export type EntityEnrichmentConnector = {
2320
2337
  export type EntityEnrichmentConnectorInput = {
2321
2338
  /** The observable entity types to be enriched. */
2322
2339
  enrichedTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
2340
+ /** The specific properties for FHIR medical entity enrichment. */
2341
+ fhir?: InputMaybe<FhirEnrichmentPropertiesInput>;
2323
2342
  /** The entity enrichment service type. */
2324
2343
  type: EntityEnrichmentServiceTypes;
2325
2344
  };
@@ -2329,6 +2348,8 @@ export declare enum EntityEnrichmentServiceTypes {
2329
2348
  Crunchbase = "CRUNCHBASE",
2330
2349
  /** Diffbot */
2331
2350
  Diffbot = "DIFFBOT",
2351
+ /** FHIR */
2352
+ Fhir = "FHIR",
2332
2353
  /** Wikipedia */
2333
2354
  Wikipedia = "WIKIPEDIA"
2334
2355
  }
@@ -2343,7 +2364,7 @@ export type EntityExtractionConnector = {
2343
2364
  contentTypes?: Maybe<Array<ContentTypes>>;
2344
2365
  /** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
2345
2366
  extractedCount?: Maybe<Scalars['Int']['output']>;
2346
- /** The observable entity types to be extracted, defaults to all non-medical observables. */
2367
+ /** The observable entity types to be extracted, defaults to all observable types. */
2347
2368
  extractedTypes?: Maybe<Array<ObservableTypes>>;
2348
2369
  /** The file types to allow for entity extraction. */
2349
2370
  fileTypes?: Maybe<Array<FileTypes>>;
@@ -2369,7 +2390,7 @@ export type EntityExtractionConnectorInput = {
2369
2390
  contentTypes?: InputMaybe<Array<ContentTypes>>;
2370
2391
  /** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
2371
2392
  extractedCount?: InputMaybe<Scalars['Int']['input']>;
2372
- /** The observable entity types to be extracted, defaults to all non-medical observables. */
2393
+ /** The observable entity types to be extracted, defaults to all observable types. */
2373
2394
  extractedTypes?: InputMaybe<Array<ObservableTypes>>;
2374
2395
  /** The file types to allow for entity extraction. */
2375
2396
  fileTypes?: InputMaybe<Array<FileTypes>>;
@@ -2577,7 +2598,7 @@ export type Event = {
2577
2598
  /** If the event is accessible for free. */
2578
2599
  isAccessibleForFree?: Maybe<Scalars['Boolean']['output']>;
2579
2600
  /** The extracted hyperlinks. */
2580
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
2601
+ links?: Maybe<Array<Maybe<LinkReference>>>;
2581
2602
  /** The geo-location of the event. */
2582
2603
  location?: Maybe<Point>;
2583
2604
  /** The event maximum price. */
@@ -2816,6 +2837,17 @@ export type ExtractionWorkflowStageInput = {
2816
2837
  /** The jobs for the extraction workflow stage. */
2817
2838
  jobs?: InputMaybe<Array<InputMaybe<ExtractionWorkflowJobInput>>>;
2818
2839
  };
2840
+ /** Represents an FHIR entity enrichment connector. */
2841
+ export type FhirEnrichmentProperties = {
2842
+ __typename?: 'FHIREnrichmentProperties';
2843
+ /** The FHIR API endpoint. */
2844
+ endpoint?: Maybe<Scalars['URL']['output']>;
2845
+ };
2846
+ /** Represents an FHIR entity enrichment connector. */
2847
+ export type FhirEnrichmentPropertiesInput = {
2848
+ /** The FHIR API endpoint. */
2849
+ endpoint?: InputMaybe<Scalars['URL']['input']>;
2850
+ };
2819
2851
  /** Facet value types */
2820
2852
  export declare enum FacetValueTypes {
2821
2853
  /** Facet by object */
@@ -3357,7 +3389,7 @@ export type GraphStrategy = {
3357
3389
  __typename?: 'GraphStrategy';
3358
3390
  /** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
3359
3391
  generateGraph?: Maybe<Scalars['Boolean']['output']>;
3360
- /** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
3392
+ /** The maximum number of observed entities to provide with prompt context, defaults to 100. */
3361
3393
  observableLimit?: Maybe<Scalars['Int']['output']>;
3362
3394
  /** The GraphRAG strategy type. */
3363
3395
  type: GraphStrategyTypes;
@@ -3366,7 +3398,7 @@ export type GraphStrategy = {
3366
3398
  export type GraphStrategyInput = {
3367
3399
  /** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
3368
3400
  generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
3369
- /** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
3401
+ /** The maximum number of observed entities to provide with prompt context, defaults to 100. */
3370
3402
  observableLimit?: InputMaybe<Scalars['Int']['input']>;
3371
3403
  /** The GraphRAG strategy type. */
3372
3404
  type?: InputMaybe<GraphStrategyTypes>;
@@ -3384,7 +3416,7 @@ export declare enum GraphStrategyTypes {
3384
3416
  export type GraphStrategyUpdateInput = {
3385
3417
  /** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
3386
3418
  generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
3387
- /** The maximum number of observed entities to provide with prompt context, defaults to 1000. */
3419
+ /** The maximum number of observed entities to provide with prompt context, defaults to 100. */
3388
3420
  observableLimit?: InputMaybe<Scalars['Int']['input']>;
3389
3421
  /** The GraphRAG strategy type. */
3390
3422
  type?: InputMaybe<GraphStrategyTypes>;
@@ -4003,8 +4035,8 @@ export type LinearFeedPropertiesUpdateInput = {
4003
4035
  project?: InputMaybe<Scalars['ID']['input']>;
4004
4036
  };
4005
4037
  /** Represents a hyperlink. */
4006
- export type LinkReferenceType = {
4007
- __typename?: 'LinkReferenceType';
4038
+ export type LinkReference = {
4039
+ __typename?: 'LinkReference';
4008
4040
  /** The hyperlink type. */
4009
4041
  linkType?: Maybe<LinkTypes>;
4010
4042
  /** The hyperlink URI. */
@@ -4033,7 +4065,7 @@ export type LinkStrategy = {
4033
4065
  excludedLinks?: Maybe<Array<LinkTypes>>;
4034
4066
  /** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
4035
4067
  excludedPaths?: Maybe<Array<Scalars['String']['output']>>;
4036
- /** The maximum number of links to be crawled. */
4068
+ /** The maximum number of links to be crawled, defaults to 25. */
4037
4069
  maximumLinks?: Maybe<Scalars['Int']['output']>;
4038
4070
  };
4039
4071
  /** Represents the content hyperlink strategy. */
@@ -4058,7 +4090,7 @@ export type LinkStrategyInput = {
4058
4090
  excludedLinks?: InputMaybe<Array<LinkTypes>>;
4059
4091
  /** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
4060
4092
  excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
4061
- /** The maximum number of links to be crawled. */
4093
+ /** The maximum number of links to be crawled, defaults to 25. */
4062
4094
  maximumLinks?: InputMaybe<Scalars['Int']['input']>;
4063
4095
  };
4064
4096
  /** URI link type */
@@ -4213,7 +4245,7 @@ export type MedicalCondition = {
4213
4245
  /** The medicalcondition external identifier. */
4214
4246
  identifier?: Maybe<Scalars['String']['output']>;
4215
4247
  /** The extracted hyperlinks. */
4216
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
4248
+ links?: Maybe<Array<Maybe<LinkReference>>>;
4217
4249
  /** The geo-location of the medicalcondition. */
4218
4250
  location?: Maybe<Point>;
4219
4251
  /** The modified date of the medicalcondition. */
@@ -4354,7 +4386,7 @@ export type MedicalContraindication = {
4354
4386
  /** The medicalcontraindication external identifier. */
4355
4387
  identifier?: Maybe<Scalars['String']['output']>;
4356
4388
  /** The extracted hyperlinks. */
4357
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
4389
+ links?: Maybe<Array<Maybe<LinkReference>>>;
4358
4390
  /** The geo-location of the medicalcontraindication. */
4359
4391
  location?: Maybe<Point>;
4360
4392
  /** The modified date of the medicalcontraindication. */
@@ -4495,7 +4527,7 @@ export type MedicalDevice = {
4495
4527
  /** The medicaldevice external identifier. */
4496
4528
  identifier?: Maybe<Scalars['String']['output']>;
4497
4529
  /** The extracted hyperlinks. */
4498
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
4530
+ links?: Maybe<Array<Maybe<LinkReference>>>;
4499
4531
  /** The geo-location of the medicaldevice. */
4500
4532
  location?: Maybe<Point>;
4501
4533
  /** The modified date of the medicaldevice. */
@@ -4636,7 +4668,7 @@ export type MedicalDrug = {
4636
4668
  /** The medicaldrug external identifier. */
4637
4669
  identifier?: Maybe<Scalars['String']['output']>;
4638
4670
  /** The extracted hyperlinks. */
4639
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
4671
+ links?: Maybe<Array<Maybe<LinkReference>>>;
4640
4672
  /** The geo-location of the medicaldrug. */
4641
4673
  location?: Maybe<Point>;
4642
4674
  /** The modified date of the medicaldrug. */
@@ -4672,7 +4704,7 @@ export type MedicalDrugClass = {
4672
4704
  /** The medicaldrugclass external identifier. */
4673
4705
  identifier?: Maybe<Scalars['String']['output']>;
4674
4706
  /** The extracted hyperlinks. */
4675
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
4707
+ links?: Maybe<Array<Maybe<LinkReference>>>;
4676
4708
  /** The geo-location of the medicaldrugclass. */
4677
4709
  location?: Maybe<Point>;
4678
4710
  /** The modified date of the medicaldrugclass. */
@@ -4918,7 +4950,7 @@ export type MedicalGuideline = {
4918
4950
  /** The medicalguideline external identifier. */
4919
4951
  identifier?: Maybe<Scalars['String']['output']>;
4920
4952
  /** The extracted hyperlinks. */
4921
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
4953
+ links?: Maybe<Array<Maybe<LinkReference>>>;
4922
4954
  /** The geo-location of the medicalguideline. */
4923
4955
  location?: Maybe<Point>;
4924
4956
  /** The modified date of the medicalguideline. */
@@ -5059,7 +5091,7 @@ export type MedicalIndication = {
5059
5091
  /** The medicalindication external identifier. */
5060
5092
  identifier?: Maybe<Scalars['String']['output']>;
5061
5093
  /** The extracted hyperlinks. */
5062
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
5094
+ links?: Maybe<Array<Maybe<LinkReference>>>;
5063
5095
  /** The geo-location of the medicalindication. */
5064
5096
  location?: Maybe<Point>;
5065
5097
  /** The modified date of the medicalindication. */
@@ -5200,7 +5232,7 @@ export type MedicalProcedure = {
5200
5232
  /** The medicalprocedure external identifier. */
5201
5233
  identifier?: Maybe<Scalars['String']['output']>;
5202
5234
  /** The extracted hyperlinks. */
5203
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
5235
+ links?: Maybe<Array<Maybe<LinkReference>>>;
5204
5236
  /** The geo-location of the medicalprocedure. */
5205
5237
  location?: Maybe<Point>;
5206
5238
  /** The modified date of the medicalprocedure. */
@@ -5343,7 +5375,7 @@ export type MedicalStudy = {
5343
5375
  /** The medicalstudy external identifier. */
5344
5376
  identifier?: Maybe<Scalars['String']['output']>;
5345
5377
  /** The extracted hyperlinks. */
5346
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
5378
+ links?: Maybe<Array<Maybe<LinkReference>>>;
5347
5379
  /** The geo-location of the medicalstudy. */
5348
5380
  location?: Maybe<Point>;
5349
5381
  /** The modified date of the medicalstudy. */
@@ -5490,7 +5522,7 @@ export type MedicalTest = {
5490
5522
  /** The medicaltest external identifier. */
5491
5523
  identifier?: Maybe<Scalars['String']['output']>;
5492
5524
  /** The extracted hyperlinks. */
5493
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
5525
+ links?: Maybe<Array<Maybe<LinkReference>>>;
5494
5526
  /** The geo-location of the medicaltest. */
5495
5527
  location?: Maybe<Point>;
5496
5528
  /** The modified date of the medicaltest. */
@@ -5631,7 +5663,7 @@ export type MedicalTherapy = {
5631
5663
  /** The medicaltherapy external identifier. */
5632
5664
  identifier?: Maybe<Scalars['String']['output']>;
5633
5665
  /** The extracted hyperlinks. */
5634
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
5666
+ links?: Maybe<Array<Maybe<LinkReference>>>;
5635
5667
  /** The geo-location of the medicaltherapy. */
5636
5668
  location?: Maybe<Point>;
5637
5669
  /** The modified date of the medicaltherapy. */
@@ -7427,27 +7459,27 @@ export type OpenAiModelPropertiesUpdateInput = {
7427
7459
  export declare enum OpenAiModels {
7428
7460
  /** Developer-specified model */
7429
7461
  Custom = "CUSTOM",
7430
- /** GPT-4 (Latest version) */
7462
+ /** GPT-4 (Latest) */
7431
7463
  Gpt4 = "GPT4",
7432
- /** GPT-4o 128k (latest version) */
7464
+ /** GPT-4o 128k (Latest) */
7433
7465
  Gpt4O_128K = "GPT4O_128K",
7434
7466
  /** GPT-4o 128k (2024-05-13 version) */
7435
7467
  Gpt4O_128K_20240513 = "GPT4O_128K_20240513",
7436
7468
  /** GPT-4o 128k (2024-08-06 version) */
7437
7469
  Gpt4O_128K_20240806 = "GPT4O_128K_20240806",
7438
- /** ChatGPT-4o 128k (latest version) */
7470
+ /** ChatGPT-4o 128k (Latest) */
7439
7471
  Gpt4OChat_128K = "GPT4O_CHAT_128K",
7440
- /** GPT-4o Mini 128k (latest version) */
7472
+ /** GPT-4o Mini 128k (Latest) */
7441
7473
  Gpt4OMini_128K = "GPT4O_MINI_128K",
7442
7474
  /** GPT-4o Mini 128k (2024-07-18 version) */
7443
7475
  Gpt4OMini_128K_20240718 = "GPT4O_MINI_128K_20240718",
7444
7476
  /** GPT-4 (0613 version) */
7445
7477
  Gpt4_0613 = "GPT4_0613",
7446
- /** GPT-4 32k (Latest version) */
7478
+ /** GPT-4 32k (Latest) */
7447
7479
  Gpt4_32K = "GPT4_32K",
7448
7480
  /** GPT-4 32k (0613 version) */
7449
7481
  Gpt4_32K_0613 = "GPT4_32K_0613",
7450
- /** GPT-4 Turbo 128k (Latest version) */
7482
+ /** GPT-4 Turbo 128k (Latest) */
7451
7483
  Gpt4Turbo_128K = "GPT4_TURBO_128K",
7452
7484
  /** GPT-4 Turbo 128k (0125 version) */
7453
7485
  Gpt4Turbo_128K_0125 = "GPT4_TURBO_128K_0125",
@@ -7460,7 +7492,7 @@ export declare enum OpenAiModels {
7460
7492
  /** GPT-4 Turbo Vision 128k (1106 version) */
7461
7493
  Gpt4TurboVision_128K_1106 = "GPT4_TURBO_VISION_128K_1106",
7462
7494
  /**
7463
- * GPT-3.5 Turbo (Latest version)
7495
+ * GPT-3.5 Turbo (Latest)
7464
7496
  * @deprecated OpenAI is deprecating this model. Use the GPT-3.5 Turbo 16k model instead.
7465
7497
  */
7466
7498
  Gpt35Turbo = "GPT35_TURBO",
@@ -7469,7 +7501,7 @@ export declare enum OpenAiModels {
7469
7501
  * @deprecated OpenAI is deprecating this model. Use the GPT-3.5 Turbo 16k model instead.
7470
7502
  */
7471
7503
  Gpt35Turbo_0613 = "GPT35_TURBO_0613",
7472
- /** GPT-3.5 Turbo 16k (Latest version) */
7504
+ /** GPT-3.5 Turbo 16k (Latest) */
7473
7505
  Gpt35Turbo_16K = "GPT35_TURBO_16K",
7474
7506
  /** GPT-3.5 Turbo 16k (0125 version) */
7475
7507
  Gpt35Turbo_16K_0125 = "GPT35_TURBO_16K_0125",
@@ -7539,7 +7571,7 @@ export type Organization = {
7539
7571
  /** The currency of the investment into the organization. */
7540
7572
  investmentCurrency?: Maybe<Scalars['String']['output']>;
7541
7573
  /** The extracted hyperlinks. */
7542
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
7574
+ links?: Maybe<Array<Maybe<LinkReference>>>;
7543
7575
  /** The geo-location of the organization. */
7544
7576
  location?: Maybe<Point>;
7545
7577
  /** The modified date of the organization. */
@@ -7774,7 +7806,7 @@ export type Person = {
7774
7806
  /** The person external identifier. */
7775
7807
  identifier?: Maybe<Scalars['String']['output']>;
7776
7808
  /** The extracted hyperlinks. */
7777
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
7809
+ links?: Maybe<Array<Maybe<LinkReference>>>;
7778
7810
  /** The geo-location of the person. */
7779
7811
  location?: Maybe<Point>;
7780
7812
  /** The modified date of the person. */
@@ -7981,7 +8013,7 @@ export type Place = {
7981
8013
  /** The place external identifier. */
7982
8014
  identifier?: Maybe<Scalars['String']['output']>;
7983
8015
  /** The extracted hyperlinks. */
7984
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
8016
+ links?: Maybe<Array<Maybe<LinkReference>>>;
7985
8017
  /** The geo-location of the place. */
7986
8018
  location?: Maybe<Point>;
7987
8019
  /** The modified date of the place. */
@@ -8224,7 +8256,7 @@ export type Product = {
8224
8256
  /** The product external identifier. */
8225
8257
  identifier?: Maybe<Scalars['String']['output']>;
8226
8258
  /** The extracted hyperlinks. */
8227
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
8259
+ links?: Maybe<Array<Maybe<LinkReference>>>;
8228
8260
  /** The geo-location of the product. */
8229
8261
  location?: Maybe<Point>;
8230
8262
  /** The product manufacturer. */
@@ -8446,6 +8478,8 @@ export type Project = {
8446
8478
  /** Represents correlated project credits. */
8447
8479
  export type ProjectCredits = {
8448
8480
  __typename?: 'ProjectCredits';
8481
+ /** The LLM completion ratio of credits. */
8482
+ completionRatio?: Maybe<Scalars['Decimal']['output']>;
8449
8483
  /** The compute ratio of credits. */
8450
8484
  computeRatio?: Maybe<Scalars['Decimal']['output']>;
8451
8485
  /** The conversations ratio of credits. */
@@ -8454,6 +8488,8 @@ export type ProjectCredits = {
8454
8488
  correlationId?: Maybe<Scalars['String']['output']>;
8455
8489
  /** The credits used. */
8456
8490
  credits?: Maybe<Scalars['Decimal']['output']>;
8491
+ /** The LLM embedding ratio of credits. */
8492
+ embeddingRatio?: Maybe<Scalars['Decimal']['output']>;
8457
8493
  /** The content enrichment ratio of credits. */
8458
8494
  enrichmentRatio?: Maybe<Scalars['Decimal']['output']>;
8459
8495
  /** The content extraction ratio of credits. */
@@ -10537,7 +10573,7 @@ export type TextPage = {
10537
10573
  /** The text page index. */
10538
10574
  index?: Maybe<Scalars['Int']['output']>;
10539
10575
  /** The text page hyperlinks. */
10540
- links?: Maybe<Array<Maybe<LinkReferenceType>>>;
10576
+ links?: Maybe<Array<Maybe<LinkReference>>>;
10541
10577
  /** The relevance score of the text page. */
10542
10578
  relevance?: Maybe<Scalars['Float']['output']>;
10543
10579
  /** The text page. */
@@ -11898,7 +11934,7 @@ export type GetContentQuery = {
11898
11934
  name: string;
11899
11935
  } | null> | null;
11900
11936
  links?: Array<{
11901
- __typename?: 'LinkReferenceType';
11937
+ __typename?: 'LinkReference';
11902
11938
  uri?: any | null;
11903
11939
  linkType?: LinkTypes | null;
11904
11940
  }> | null;
@@ -12329,7 +12365,7 @@ export type QueryContentsQuery = {
12329
12365
  name: string;
12330
12366
  } | null> | null;
12331
12367
  links?: Array<{
12332
- __typename?: 'LinkReferenceType';
12368
+ __typename?: 'LinkReference';
12333
12369
  uri?: any | null;
12334
12370
  linkType?: LinkTypes | null;
12335
12371
  }> | null;
@@ -12605,7 +12641,7 @@ export type QueryContentsFacetsQuery = {
12605
12641
  name: string;
12606
12642
  } | null> | null;
12607
12643
  links?: Array<{
12608
- __typename?: 'LinkReferenceType';
12644
+ __typename?: 'LinkReference';
12609
12645
  uri?: any | null;
12610
12646
  linkType?: LinkTypes | null;
12611
12647
  }> | null;
@@ -16258,6 +16294,8 @@ export type LookupCreditsQuery = {
16258
16294
  credits?: any | null;
16259
16295
  storageRatio?: any | null;
16260
16296
  computeRatio?: any | null;
16297
+ embeddingRatio?: any | null;
16298
+ completionRatio?: any | null;
16261
16299
  indexingRatio?: any | null;
16262
16300
  preparationRatio?: any | null;
16263
16301
  extractionRatio?: any | null;
@@ -16319,6 +16357,8 @@ export type QueryCreditsQuery = {
16319
16357
  credits?: any | null;
16320
16358
  storageRatio?: any | null;
16321
16359
  computeRatio?: any | null;
16360
+ embeddingRatio?: any | null;
16361
+ completionRatio?: any | null;
16322
16362
  indexingRatio?: any | null;
16323
16363
  preparationRatio?: any | null;
16324
16364
  extractionRatio?: any | null;
@@ -17264,6 +17304,10 @@ export type CreateWorkflowMutation = {
17264
17304
  __typename?: 'EntityEnrichmentConnector';
17265
17305
  type?: EntityEnrichmentServiceTypes | null;
17266
17306
  enrichedTypes?: Array<ObservableTypes | null> | null;
17307
+ fhir?: {
17308
+ __typename?: 'FHIREnrichmentProperties';
17309
+ endpoint?: any | null;
17310
+ } | null;
17267
17311
  } | null;
17268
17312
  } | null> | null;
17269
17313
  } | null;
@@ -17484,6 +17528,10 @@ export type GetWorkflowQuery = {
17484
17528
  __typename?: 'EntityEnrichmentConnector';
17485
17529
  type?: EntityEnrichmentServiceTypes | null;
17486
17530
  enrichedTypes?: Array<ObservableTypes | null> | null;
17531
+ fhir?: {
17532
+ __typename?: 'FHIREnrichmentProperties';
17533
+ endpoint?: any | null;
17534
+ } | null;
17487
17535
  } | null;
17488
17536
  } | null> | null;
17489
17537
  } | null;
@@ -17670,6 +17718,10 @@ export type QueryWorkflowsQuery = {
17670
17718
  __typename?: 'EntityEnrichmentConnector';
17671
17719
  type?: EntityEnrichmentServiceTypes | null;
17672
17720
  enrichedTypes?: Array<ObservableTypes | null> | null;
17721
+ fhir?: {
17722
+ __typename?: 'FHIREnrichmentProperties';
17723
+ endpoint?: any | null;
17724
+ } | null;
17673
17725
  } | null;
17674
17726
  } | null> | null;
17675
17727
  } | null;
@@ -17849,6 +17901,10 @@ export type UpdateWorkflowMutation = {
17849
17901
  __typename?: 'EntityEnrichmentConnector';
17850
17902
  type?: EntityEnrichmentServiceTypes | null;
17851
17903
  enrichedTypes?: Array<ObservableTypes | null> | null;
17904
+ fhir?: {
17905
+ __typename?: 'FHIREnrichmentProperties';
17906
+ endpoint?: any | null;
17907
+ } | null;
17852
17908
  } | null;
17853
17909
  } | null> | null;
17854
17910
  } | null;
@@ -75,8 +75,15 @@ var AzureDocumentIntelligenceModels;
75
75
  })(AzureDocumentIntelligenceModels || (exports.AzureDocumentIntelligenceModels = AzureDocumentIntelligenceModels = {}));
76
76
  var AzureDocumentIntelligenceVersions;
77
77
  (function (AzureDocumentIntelligenceVersions) {
78
+ /** 2023-07-31 GA API */
78
79
  AzureDocumentIntelligenceVersions["V2023_07_31"] = "V2023_07_31";
80
+ /**
81
+ * 2024-02-29 Preview API
82
+ * @deprecated Use V2024_07_31_PREVIEW instead.
83
+ */
79
84
  AzureDocumentIntelligenceVersions["V2024_02_29Preview"] = "V2024_02_29_PREVIEW";
85
+ /** 2024-07-31 Preview API */
86
+ AzureDocumentIntelligenceVersions["V2024_07_31Preview"] = "V2024_07_31_PREVIEW";
80
87
  })(AzureDocumentIntelligenceVersions || (exports.AzureDocumentIntelligenceVersions = AzureDocumentIntelligenceVersions = {}));
81
88
  /** Azure OpenAI model type */
82
89
  var AzureOpenAiModels;
@@ -110,10 +117,18 @@ var CategoryFacetTypes;
110
117
  /** Cohere model type */
111
118
  var CohereModels;
112
119
  (function (CohereModels) {
113
- /** Command R */
120
+ /** Command R (Latest) */
114
121
  CohereModels["CommandR"] = "COMMAND_R";
115
- /** Command R+ */
122
+ /** Command R (2024-03 version) */
123
+ CohereModels["CommandR_202403"] = "COMMAND_R_202403";
124
+ /** Command R (2024-08 version) */
125
+ CohereModels["CommandR_202408"] = "COMMAND_R_202408";
126
+ /** Command R+ (Latest) */
116
127
  CohereModels["CommandRPlus"] = "COMMAND_R_PLUS";
128
+ /** Command R+ (2024-04 version) */
129
+ CohereModels["CommandRPlus_202404"] = "COMMAND_R_PLUS_202404";
130
+ /** Command R+ (2024-08 version) */
131
+ CohereModels["CommandRPlus_202408"] = "COMMAND_R_PLUS_202408";
117
132
  /** Developer-specified model */
118
133
  CohereModels["Custom"] = "CUSTOM";
119
134
  })(CohereModels || (exports.CohereModels = CohereModels = {}));
@@ -351,6 +366,8 @@ var EntityEnrichmentServiceTypes;
351
366
  EntityEnrichmentServiceTypes["Crunchbase"] = "CRUNCHBASE";
352
367
  /** Diffbot */
353
368
  EntityEnrichmentServiceTypes["Diffbot"] = "DIFFBOT";
369
+ /** FHIR */
370
+ EntityEnrichmentServiceTypes["Fhir"] = "FHIR";
354
371
  /** Wikipedia */
355
372
  EntityEnrichmentServiceTypes["Wikipedia"] = "WIKIPEDIA";
356
373
  })(EntityEnrichmentServiceTypes || (exports.EntityEnrichmentServiceTypes = EntityEnrichmentServiceTypes = {}));
@@ -1041,27 +1058,27 @@ var OpenAiModels;
1041
1058
  (function (OpenAiModels) {
1042
1059
  /** Developer-specified model */
1043
1060
  OpenAiModels["Custom"] = "CUSTOM";
1044
- /** GPT-4 (Latest version) */
1061
+ /** GPT-4 (Latest) */
1045
1062
  OpenAiModels["Gpt4"] = "GPT4";
1046
- /** GPT-4o 128k (latest version) */
1063
+ /** GPT-4o 128k (Latest) */
1047
1064
  OpenAiModels["Gpt4O_128K"] = "GPT4O_128K";
1048
1065
  /** GPT-4o 128k (2024-05-13 version) */
1049
1066
  OpenAiModels["Gpt4O_128K_20240513"] = "GPT4O_128K_20240513";
1050
1067
  /** GPT-4o 128k (2024-08-06 version) */
1051
1068
  OpenAiModels["Gpt4O_128K_20240806"] = "GPT4O_128K_20240806";
1052
- /** ChatGPT-4o 128k (latest version) */
1069
+ /** ChatGPT-4o 128k (Latest) */
1053
1070
  OpenAiModels["Gpt4OChat_128K"] = "GPT4O_CHAT_128K";
1054
- /** GPT-4o Mini 128k (latest version) */
1071
+ /** GPT-4o Mini 128k (Latest) */
1055
1072
  OpenAiModels["Gpt4OMini_128K"] = "GPT4O_MINI_128K";
1056
1073
  /** GPT-4o Mini 128k (2024-07-18 version) */
1057
1074
  OpenAiModels["Gpt4OMini_128K_20240718"] = "GPT4O_MINI_128K_20240718";
1058
1075
  /** GPT-4 (0613 version) */
1059
1076
  OpenAiModels["Gpt4_0613"] = "GPT4_0613";
1060
- /** GPT-4 32k (Latest version) */
1077
+ /** GPT-4 32k (Latest) */
1061
1078
  OpenAiModels["Gpt4_32K"] = "GPT4_32K";
1062
1079
  /** GPT-4 32k (0613 version) */
1063
1080
  OpenAiModels["Gpt4_32K_0613"] = "GPT4_32K_0613";
1064
- /** GPT-4 Turbo 128k (Latest version) */
1081
+ /** GPT-4 Turbo 128k (Latest) */
1065
1082
  OpenAiModels["Gpt4Turbo_128K"] = "GPT4_TURBO_128K";
1066
1083
  /** GPT-4 Turbo 128k (0125 version) */
1067
1084
  OpenAiModels["Gpt4Turbo_128K_0125"] = "GPT4_TURBO_128K_0125";
@@ -1074,7 +1091,7 @@ var OpenAiModels;
1074
1091
  /** GPT-4 Turbo Vision 128k (1106 version) */
1075
1092
  OpenAiModels["Gpt4TurboVision_128K_1106"] = "GPT4_TURBO_VISION_128K_1106";
1076
1093
  /**
1077
- * GPT-3.5 Turbo (Latest version)
1094
+ * GPT-3.5 Turbo (Latest)
1078
1095
  * @deprecated OpenAI is deprecating this model. Use the GPT-3.5 Turbo 16k model instead.
1079
1096
  */
1080
1097
  OpenAiModels["Gpt35Turbo"] = "GPT35_TURBO";
@@ -1083,7 +1100,7 @@ var OpenAiModels;
1083
1100
  * @deprecated OpenAI is deprecating this model. Use the GPT-3.5 Turbo 16k model instead.
1084
1101
  */
1085
1102
  OpenAiModels["Gpt35Turbo_0613"] = "GPT35_TURBO_0613";
1086
- /** GPT-3.5 Turbo 16k (Latest version) */
1103
+ /** GPT-3.5 Turbo 16k (Latest) */
1087
1104
  OpenAiModels["Gpt35Turbo_16K"] = "GPT35_TURBO_16K";
1088
1105
  /** GPT-3.5 Turbo 16k (0125 version) */
1089
1106
  OpenAiModels["Gpt35Turbo_16K_0125"] = "GPT35_TURBO_16K_0125";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240820001",
3
+ "version": "1.0.20240901001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",