graphlit-client 1.0.20240808001 → 1.0.20240811001

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.
@@ -3099,7 +3099,7 @@ export type FilePreparationConnectorInput = {
3099
3099
  };
3100
3100
  /** File preparation service type */
3101
3101
  export declare enum FilePreparationServiceTypes {
3102
- /** Azure Document Intelligence */
3102
+ /** Azure AI Document Intelligence */
3103
3103
  AzureDocumentIntelligence = "AZURE_DOCUMENT_INTELLIGENCE",
3104
3104
  /** Deepgram Audio Transcription */
3105
3105
  Deepgram = "DEEPGRAM",
@@ -3107,7 +3107,7 @@ export declare enum FilePreparationServiceTypes {
3107
3107
  Document = "DOCUMENT",
3108
3108
  /** Email Preparation */
3109
3109
  Email = "EMAIL",
3110
- /** LLM Document Extraction */
3110
+ /** LLM Document Preparation */
3111
3111
  ModelDocument = "MODEL_DOCUMENT"
3112
3112
  }
3113
3113
  /** File type */
@@ -8239,7 +8239,9 @@ export declare enum SpecificationTypes {
8239
8239
  /** Prompt completion */
8240
8240
  Completion = "COMPLETION",
8241
8241
  /** Data extraction */
8242
- Extraction = "EXTRACTION"
8242
+ Extraction = "EXTRACTION",
8243
+ /** Document preparation */
8244
+ Preparation = "PREPARATION"
8243
8245
  }
8244
8246
  /** Represents an LLM specification. */
8245
8247
  export type SpecificationUpdateInput = {
@@ -594,7 +594,7 @@ var FeedTypes;
594
594
  /** File preparation service type */
595
595
  var FilePreparationServiceTypes;
596
596
  (function (FilePreparationServiceTypes) {
597
- /** Azure Document Intelligence */
597
+ /** Azure AI Document Intelligence */
598
598
  FilePreparationServiceTypes["AzureDocumentIntelligence"] = "AZURE_DOCUMENT_INTELLIGENCE";
599
599
  /** Deepgram Audio Transcription */
600
600
  FilePreparationServiceTypes["Deepgram"] = "DEEPGRAM";
@@ -602,7 +602,7 @@ var FilePreparationServiceTypes;
602
602
  FilePreparationServiceTypes["Document"] = "DOCUMENT";
603
603
  /** Email Preparation */
604
604
  FilePreparationServiceTypes["Email"] = "EMAIL";
605
- /** LLM Document Extraction */
605
+ /** LLM Document Preparation */
606
606
  FilePreparationServiceTypes["ModelDocument"] = "MODEL_DOCUMENT";
607
607
  })(FilePreparationServiceTypes || (exports.FilePreparationServiceTypes = FilePreparationServiceTypes = {}));
608
608
  /** File type */
@@ -1197,6 +1197,8 @@ var SpecificationTypes;
1197
1197
  SpecificationTypes["Completion"] = "COMPLETION";
1198
1198
  /** Data extraction */
1199
1199
  SpecificationTypes["Extraction"] = "EXTRACTION";
1200
+ /** Document preparation */
1201
+ SpecificationTypes["Preparation"] = "PREPARATION";
1200
1202
  })(SpecificationTypes || (exports.SpecificationTypes = SpecificationTypes = {}));
1201
1203
  /** Summarization type */
1202
1204
  var SummarizationTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240808001",
3
+ "version": "1.0.20240811001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",