graphlit-client 1.0.20240719002 → 1.0.20240725001

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.
@@ -3969,12 +3969,14 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
3969
3969
  }
3970
3970
  tokens
3971
3971
  items
3972
+ prompt
3972
3973
  }
3973
3974
  jobs {
3974
3975
  connector {
3975
3976
  type
3976
3977
  fileTypes
3977
3978
  azureDocument {
3979
+ version
3978
3980
  model
3979
3981
  endpoint
3980
3982
  key
@@ -4120,12 +4122,14 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
4120
4122
  }
4121
4123
  tokens
4122
4124
  items
4125
+ prompt
4123
4126
  }
4124
4127
  jobs {
4125
4128
  connector {
4126
4129
  type
4127
4130
  fileTypes
4128
4131
  azureDocument {
4132
+ version
4129
4133
  model
4130
4134
  endpoint
4131
4135
  key
@@ -4244,12 +4248,14 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
4244
4248
  }
4245
4249
  tokens
4246
4250
  items
4251
+ prompt
4247
4252
  }
4248
4253
  jobs {
4249
4254
  connector {
4250
4255
  type
4251
4256
  fileTypes
4252
4257
  azureDocument {
4258
+ version
4253
4259
  model
4254
4260
  endpoint
4255
4261
  key
@@ -4363,12 +4369,14 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
4363
4369
  }
4364
4370
  tokens
4365
4371
  items
4372
+ prompt
4366
4373
  }
4367
4374
  jobs {
4368
4375
  connector {
4369
4376
  type
4370
4377
  fileTypes
4371
4378
  azureDocument {
4379
+ version
4372
4380
  model
4373
4381
  endpoint
4374
4382
  key
@@ -568,6 +568,10 @@ export declare enum AzureDocumentIntelligenceModels {
568
568
  /** W-2 Form (US) */
569
569
  UsTaxFormW2 = "US_TAX_FORM_W2"
570
570
  }
571
+ export declare enum AzureDocumentIntelligenceVersions {
572
+ V2023_07_31 = "V2023_07_31",
573
+ V2024_02_29Preview = "V2024_02_29_PREVIEW"
574
+ }
571
575
  /** Represents the Azure Document Intelligence preparation properties. */
572
576
  export type AzureDocumentPreparationProperties = {
573
577
  __typename?: 'AzureDocumentPreparationProperties';
@@ -577,6 +581,8 @@ export type AzureDocumentPreparationProperties = {
577
581
  key?: Maybe<Scalars['String']['output']>;
578
582
  /** The Azure Document Intelligence model. */
579
583
  model?: Maybe<AzureDocumentIntelligenceModels>;
584
+ /** The Azure Document Intelligence API version, optional. */
585
+ version?: Maybe<AzureDocumentIntelligenceVersions>;
580
586
  };
581
587
  /** Represents the Azure Document Intelligence preparation properties. */
582
588
  export type AzureDocumentPreparationPropertiesInput = {
@@ -586,6 +592,8 @@ export type AzureDocumentPreparationPropertiesInput = {
586
592
  key?: InputMaybe<Scalars['String']['input']>;
587
593
  /** The Azure Document Intelligence model. */
588
594
  model?: InputMaybe<AzureDocumentIntelligenceModels>;
595
+ /** The Azure Document Intelligence API version, optional. */
596
+ version?: InputMaybe<AzureDocumentIntelligenceVersions>;
589
597
  };
590
598
  /** Represents Azure file share feed properties. */
591
599
  export type AzureFileFeedProperties = {
@@ -3368,9 +3376,15 @@ export type GroqModelPropertiesUpdateInput = {
3368
3376
  export declare enum GroqModels {
3369
3377
  /** Developer-specified model */
3370
3378
  Custom = "CUSTOM",
3371
- /** LLaMA3 8b */
3379
+ /** LLaMA 3.1 8b */
3380
+ Llama_3_1_8B = "LLAMA_3_1_8B",
3381
+ /** LLaMA 3.1 70b */
3382
+ Llama_3_1_70B = "LLAMA_3_1_70B",
3383
+ /** LLaMA 3.1 405b */
3384
+ Llama_3_1_405B = "LLAMA_3_1_405B",
3385
+ /** LLaMA 3 8b */
3372
3386
  Llama_3_8B = "LLAMA_3_8B",
3373
- /** LLaMA3 70b */
3387
+ /** LLaMA 3 70b */
3374
3388
  Llama_3_70B = "LLAMA_3_70B",
3375
3389
  /** Mixtral 8x7b Instruct */
3376
3390
  Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
@@ -4321,6 +4335,8 @@ export declare enum MistralModels {
4321
4335
  MistralLarge = "MISTRAL_LARGE",
4322
4336
  /** Mistral Medium */
4323
4337
  MistralMedium = "MISTRAL_MEDIUM",
4338
+ /** Mistral Nemo */
4339
+ MistralNemo = "MISTRAL_NEMO",
4324
4340
  /** Mistral Small */
4325
4341
  MistralSmall = "MISTRAL_SMALL",
4326
4342
  /** Mixtral 8x7b Instruct */
@@ -6475,8 +6491,8 @@ export type ProjectQuota = {
6475
6491
  feeds?: Maybe<Scalars['Int']['output']>;
6476
6492
  /** The maximum number of posts which can be read by feeds. */
6477
6493
  posts?: Maybe<Scalars['Int']['output']>;
6478
- /** The storage quota, in megabytes. */
6479
- storage?: Maybe<Scalars['Int']['output']>;
6494
+ /** The storage quota, in bytes. */
6495
+ storage?: Maybe<Scalars['Long']['output']>;
6480
6496
  };
6481
6497
  /** Represents the project quota. */
6482
6498
  export type ProjectQuotaInput = {
@@ -6488,8 +6504,8 @@ export type ProjectQuotaInput = {
6488
6504
  feeds?: InputMaybe<Scalars['Int']['input']>;
6489
6505
  /** The maximum number of posts which can be read by feeds. */
6490
6506
  posts?: InputMaybe<Scalars['Int']['input']>;
6491
- /** The storage quota, in megabytes. */
6492
- storage?: InputMaybe<Scalars['Int']['input']>;
6507
+ /** The storage quota, in bytes. */
6508
+ storage?: InputMaybe<Scalars['Long']['input']>;
6493
6509
  };
6494
6510
  /** Represents project query results. */
6495
6511
  export type ProjectResults = {
@@ -12644,7 +12660,7 @@ export type GetProjectQuery = {
12644
12660
  } | null;
12645
12661
  quota?: {
12646
12662
  __typename?: 'ProjectQuota';
12647
- storage?: number | null;
12663
+ storage?: any | null;
12648
12664
  contents?: number | null;
12649
12665
  credits?: number | null;
12650
12666
  feeds?: number | null;
@@ -13484,6 +13500,7 @@ export type CreateWorkflowMutation = {
13484
13500
  type: SummarizationTypes;
13485
13501
  tokens?: number | null;
13486
13502
  items?: number | null;
13503
+ prompt?: string | null;
13487
13504
  specification?: {
13488
13505
  __typename?: 'EntityReference';
13489
13506
  id: string;
@@ -13497,6 +13514,7 @@ export type CreateWorkflowMutation = {
13497
13514
  fileTypes?: Array<FileTypes> | null;
13498
13515
  azureDocument?: {
13499
13516
  __typename?: 'AzureDocumentPreparationProperties';
13517
+ version?: AzureDocumentIntelligenceVersions | null;
13500
13518
  model?: AzureDocumentIntelligenceModels | null;
13501
13519
  endpoint?: any | null;
13502
13520
  key?: string | null;
@@ -13676,6 +13694,7 @@ export type GetWorkflowQuery = {
13676
13694
  type: SummarizationTypes;
13677
13695
  tokens?: number | null;
13678
13696
  items?: number | null;
13697
+ prompt?: string | null;
13679
13698
  specification?: {
13680
13699
  __typename?: 'EntityReference';
13681
13700
  id: string;
@@ -13689,6 +13708,7 @@ export type GetWorkflowQuery = {
13689
13708
  fileTypes?: Array<FileTypes> | null;
13690
13709
  azureDocument?: {
13691
13710
  __typename?: 'AzureDocumentPreparationProperties';
13711
+ version?: AzureDocumentIntelligenceVersions | null;
13692
13712
  model?: AzureDocumentIntelligenceModels | null;
13693
13713
  endpoint?: any | null;
13694
13714
  key?: string | null;
@@ -13834,6 +13854,7 @@ export type QueryWorkflowsQuery = {
13834
13854
  type: SummarizationTypes;
13835
13855
  tokens?: number | null;
13836
13856
  items?: number | null;
13857
+ prompt?: string | null;
13837
13858
  specification?: {
13838
13859
  __typename?: 'EntityReference';
13839
13860
  id: string;
@@ -13847,6 +13868,7 @@ export type QueryWorkflowsQuery = {
13847
13868
  fileTypes?: Array<FileTypes> | null;
13848
13869
  azureDocument?: {
13849
13870
  __typename?: 'AzureDocumentPreparationProperties';
13871
+ version?: AzureDocumentIntelligenceVersions | null;
13850
13872
  model?: AzureDocumentIntelligenceModels | null;
13851
13873
  endpoint?: any | null;
13852
13874
  key?: string | null;
@@ -13985,6 +14007,7 @@ export type UpdateWorkflowMutation = {
13985
14007
  type: SummarizationTypes;
13986
14008
  tokens?: number | null;
13987
14009
  items?: number | null;
14010
+ prompt?: string | null;
13988
14011
  specification?: {
13989
14012
  __typename?: 'EntityReference';
13990
14013
  id: string;
@@ -13998,6 +14021,7 @@ export type UpdateWorkflowMutation = {
13998
14021
  fileTypes?: Array<FileTypes> | null;
13999
14022
  azureDocument?: {
14000
14023
  __typename?: 'AzureDocumentPreparationProperties';
14024
+ version?: AzureDocumentIntelligenceVersions | null;
14001
14025
  model?: AzureDocumentIntelligenceModels | null;
14002
14026
  endpoint?: any | null;
14003
14027
  key?: string | null;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ObservableTypes = exports.NotionTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentFacetTypes = exports.CollectionTypes = exports.CohereModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
- exports.YouTubeTypes = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchQueryTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiModels = exports.OccurrenceTypes = void 0;
3
+ exports.NotionTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentFacetTypes = exports.CollectionTypes = exports.CohereModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
+ exports.YouTubeTypes = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchQueryTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = void 0;
5
5
  /** Alert type */
6
6
  var AlertTypes;
7
7
  (function (AlertTypes) {
@@ -73,6 +73,11 @@ var AzureDocumentIntelligenceModels;
73
73
  /** W-2 Form (US) */
74
74
  AzureDocumentIntelligenceModels["UsTaxFormW2"] = "US_TAX_FORM_W2";
75
75
  })(AzureDocumentIntelligenceModels || (exports.AzureDocumentIntelligenceModels = AzureDocumentIntelligenceModels = {}));
76
+ var AzureDocumentIntelligenceVersions;
77
+ (function (AzureDocumentIntelligenceVersions) {
78
+ AzureDocumentIntelligenceVersions["V2023_07_31"] = "V2023_07_31";
79
+ AzureDocumentIntelligenceVersions["V2024_02_29Preview"] = "V2024_02_29_PREVIEW";
80
+ })(AzureDocumentIntelligenceVersions || (exports.AzureDocumentIntelligenceVersions = AzureDocumentIntelligenceVersions = {}));
76
81
  /** Azure OpenAI model type */
77
82
  var AzureOpenAiModels;
78
83
  (function (AzureOpenAiModels) {
@@ -637,9 +642,15 @@ var GroqModels;
637
642
  (function (GroqModels) {
638
643
  /** Developer-specified model */
639
644
  GroqModels["Custom"] = "CUSTOM";
640
- /** LLaMA3 8b */
645
+ /** LLaMA 3.1 8b */
646
+ GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
647
+ /** LLaMA 3.1 70b */
648
+ GroqModels["Llama_3_1_70B"] = "LLAMA_3_1_70B";
649
+ /** LLaMA 3.1 405b */
650
+ GroqModels["Llama_3_1_405B"] = "LLAMA_3_1_405B";
651
+ /** LLaMA 3 8b */
641
652
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
642
- /** LLaMA3 70b */
653
+ /** LLaMA 3 70b */
643
654
  GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
644
655
  /** Mixtral 8x7b Instruct */
645
656
  GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
@@ -841,6 +852,8 @@ var MistralModels;
841
852
  MistralModels["MistralLarge"] = "MISTRAL_LARGE";
842
853
  /** Mistral Medium */
843
854
  MistralModels["MistralMedium"] = "MISTRAL_MEDIUM";
855
+ /** Mistral Nemo */
856
+ MistralModels["MistralNemo"] = "MISTRAL_NEMO";
844
857
  /** Mistral Small */
845
858
  MistralModels["MistralSmall"] = "MISTRAL_SMALL";
846
859
  /** Mixtral 8x7b Instruct */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240719002",
3
+ "version": "1.0.20240725001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",