graphlit-client 1.0.20241229002 → 1.0.20250104001
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.
package/dist/client.d.ts
CHANGED
@@ -53,7 +53,7 @@ declare class Graphlit {
|
|
53
53
|
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.SummarizeContentsMutation>;
|
54
54
|
extractText(prompt: string, text: string, tools: Types.ToolDefinitionInput[], specification?: Types.EntityReferenceInput, textType?: Types.TextTypes, correlationId?: string): Promise<Types.ExtractTextMutation>;
|
55
55
|
extractContents(prompt: string, tools: Types.ToolDefinitionInput[], specification?: Types.EntityReferenceInput, filter?: Types.ContentFilter, correlationId?: string): Promise<Types.ExtractContentsMutation>;
|
56
|
-
publishContents(publishPrompt: string, connector: Types.ContentPublishingConnectorInput, summaryPrompt?: string, summarySpecification?: Types.EntityReferenceInput, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, includeDetails?:
|
56
|
+
publishContents(publishPrompt: string, connector: Types.ContentPublishingConnectorInput, summaryPrompt?: string, summarySpecification?: Types.EntityReferenceInput, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, includeDetails?: boolean, correlationId?: string): Promise<Types.PublishContentsMutation>;
|
57
57
|
publishText(text: string, textType: Types.TextTypes, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishTextMutation>;
|
58
58
|
getContent(id: string): Promise<Types.GetContentQuery>;
|
59
59
|
queryContents(filter?: Types.ContentFilter): Promise<Types.QueryContentsQuery>;
|
@@ -76,6 +76,7 @@ declare class Graphlit {
|
|
76
76
|
prompt(prompt: string, specification?: Types.EntityReferenceInput, messages?: [Types.ConversationMessageInput], correlationId?: string): Promise<Types.PromptMutation>;
|
77
77
|
formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, includeDetails?: boolean, correlationId?: string): Promise<Types.FormatConversationMutation>;
|
78
78
|
completeConversation(completion: string, id: string, correlationId?: string): Promise<Types.CompleteConversationMutation>;
|
79
|
+
askGraphlit(prompt: string, type?: Types.SdkTypes, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.AskGraphlitMutation>;
|
79
80
|
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, includeDetails?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
80
81
|
continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
|
81
82
|
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishConversationMutation>;
|
package/dist/client.js
CHANGED
@@ -438,6 +438,11 @@ class Graphlit {
|
|
438
438
|
return this.mutateAndCheckError(Documents.CompleteConversation, { completion: completion, id: id, correlationId: correlationId });
|
439
439
|
});
|
440
440
|
}
|
441
|
+
askGraphlit(prompt, type, id, specification, correlationId) {
|
442
|
+
return __awaiter(this, void 0, void 0, function* () {
|
443
|
+
return this.mutateAndCheckError(Documents.AskGraphlit, { prompt: prompt, type: type, id: id, specification: specification, correlationId: correlationId });
|
444
|
+
});
|
445
|
+
}
|
441
446
|
promptConversation(prompt, id, specification, tools, requireTool, includeDetails, correlationId) {
|
442
447
|
return __awaiter(this, void 0, void 0, function* () {
|
443
448
|
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, includeDetails: includeDetails, correlationId: correlationId });
|
@@ -50,6 +50,7 @@ export declare const ScreenshotPage: import("graphql").DocumentNode;
|
|
50
50
|
export declare const SummarizeContents: import("graphql").DocumentNode;
|
51
51
|
export declare const SummarizeText: import("graphql").DocumentNode;
|
52
52
|
export declare const UpdateContent: import("graphql").DocumentNode;
|
53
|
+
export declare const AskGraphlit: import("graphql").DocumentNode;
|
53
54
|
export declare const ClearConversation: import("graphql").DocumentNode;
|
54
55
|
export declare const CloseConversation: import("graphql").DocumentNode;
|
55
56
|
export declare const CompleteConversation: import("graphql").DocumentNode;
|
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
exports.SummarizeContents = exports.ScreenshotPage = exports.QueryContentsGraph = exports.QueryContentsFacets = exports.QueryContents = exports.PublishText = exports.PublishContents = exports.IsContentDone = exports.IngestUri = exports.IngestTextBatch = exports.IngestText = exports.IngestEncodedFile = exports.IngestBatch = exports.GetContent = exports.ExtractText = exports.ExtractContents = exports.DescribeImage = exports.DescribeEncodedImage = exports.DeleteContents = exports.DeleteContent = exports.DeleteAllContents = exports.CountContents = exports.UpdateCollection = exports.RemoveContentsFromCollection = exports.QueryCollections = exports.GetCollection = exports.DeleteCollections = exports.DeleteCollection = exports.DeleteAllCollections = exports.CreateCollection = exports.CountCollections = exports.AddContentsToCollections = exports.UpdateCategory = exports.QueryCategories = exports.GetCategory = exports.DeleteCategory = exports.DeleteCategories = exports.DeleteAllCategories = exports.CreateCategory = exports.CountCategories = exports.UpdateAlert = exports.QueryAlerts = exports.GetAlert = exports.EnableAlert = exports.DisableAlert = exports.DeleteAllAlerts = exports.DeleteAlerts = exports.DeleteAlert = exports.CreateAlert = exports.CountAlerts = void 0;
|
7
|
-
exports.
|
8
|
-
exports.
|
9
|
-
exports.
|
10
|
-
exports.
|
11
|
-
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.QueryModels = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = void 0;
|
7
|
+
exports.CountLabels = exports.UpdateFeed = exports.QuerySharePointLibraries = exports.QuerySharePointFolders = exports.QueryOneDriveFolders = exports.QueryMicrosoftTeamsTeams = exports.QueryMicrosoftTeamsChannels = exports.QueryFeeds = exports.IsFeedDone = exports.GetSharePointConsentUri = exports.GetFeed = exports.EnableFeed = exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.CountFeeds = exports.UpdateEvent = exports.QueryEvents = exports.GetEvent = exports.DeleteEvents = exports.DeleteEvent = exports.DeleteAllEvents = exports.CreateEvent = exports.CountEvents = exports.UpdateConversation = exports.SuggestConversation = exports.ReviseText = exports.ReviseImage = exports.ReviseEncodedImage = exports.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.Prompt = exports.GetConversation = exports.FormatConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CompleteConversation = exports.CloseConversation = exports.ClearConversation = exports.AskGraphlit = exports.UpdateContent = exports.SummarizeText = void 0;
|
8
|
+
exports.DeleteAllMedicalGuidelines = exports.CreateMedicalGuideline = exports.CountMedicalGuidelines = exports.UpdateMedicalDrugClass = exports.QueryMedicalDrugClasses = exports.GetMedicalDrugClass = exports.DeleteMedicalDrugClasses = exports.DeleteMedicalDrugClass = exports.DeleteAllMedicalDrugClasses = exports.CreateMedicalDrugClass = exports.CountMedicalDrugClasses = exports.UpdateMedicalDrug = exports.QueryMedicalDrugs = exports.GetMedicalDrug = exports.DeleteMedicalDrugs = exports.DeleteMedicalDrug = exports.DeleteAllMedicalDrugs = exports.CreateMedicalDrug = exports.CountMedicalDrugs = exports.UpdateMedicalDevice = exports.QueryMedicalDevices = exports.GetMedicalDevice = exports.DeleteMedicalDevices = exports.DeleteMedicalDevice = exports.DeleteAllMedicalDevices = exports.CreateMedicalDevice = exports.CountMedicalDevices = exports.UpdateMedicalContraindication = exports.QueryMedicalContraindications = exports.GetMedicalContraindication = exports.DeleteMedicalContraindications = exports.DeleteMedicalContraindication = exports.DeleteAllMedicalContraindications = exports.CreateMedicalContraindication = exports.CountMedicalContraindications = exports.UpdateMedicalCondition = exports.QueryMedicalConditions = exports.GetMedicalCondition = exports.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = void 0;
|
9
|
+
exports.CreateOrganization = exports.CountOrganizations = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateMedicalTherapy = exports.QueryMedicalTherapies = exports.GetMedicalTherapy = exports.DeleteMedicalTherapy = exports.DeleteMedicalTherapies = exports.DeleteAllMedicalTherapies = exports.CreateMedicalTherapy = exports.CountMedicalTherapies = exports.UpdateMedicalTest = exports.QueryMedicalTests = exports.GetMedicalTest = exports.DeleteMedicalTests = exports.DeleteMedicalTest = exports.DeleteAllMedicalTests = exports.CreateMedicalTest = exports.CountMedicalTests = exports.UpdateMedicalStudy = exports.QueryMedicalStudies = exports.GetMedicalStudy = exports.DeleteMedicalStudy = exports.DeleteMedicalStudies = exports.DeleteAllMedicalStudies = exports.CreateMedicalStudy = exports.CountMedicalStudies = exports.UpdateMedicalProcedure = exports.QueryMedicalProcedures = exports.GetMedicalProcedure = exports.DeleteMedicalProcedures = exports.DeleteMedicalProcedure = exports.DeleteAllMedicalProcedures = exports.CreateMedicalProcedure = exports.CountMedicalProcedures = exports.UpdateMedicalIndication = exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = exports.CountMedicalIndications = exports.UpdateMedicalGuideline = exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = void 0;
|
10
|
+
exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.MapWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = void 0;
|
11
|
+
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.QueryModels = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = void 0;
|
12
12
|
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
13
13
|
exports.CountAlerts = (0, graphql_tag_1.default) `
|
14
14
|
query CountAlerts($filter: AlertFilter) {
|
@@ -2285,6 +2285,143 @@ exports.UpdateContent = (0, graphql_tag_1.default) `
|
|
2285
2285
|
}
|
2286
2286
|
}
|
2287
2287
|
`;
|
2288
|
+
exports.AskGraphlit = (0, graphql_tag_1.default) `
|
2289
|
+
mutation AskGraphlit($prompt: String!, $type: SdkTypes, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
2290
|
+
askGraphlit(
|
2291
|
+
prompt: $prompt
|
2292
|
+
type: $type
|
2293
|
+
id: $id
|
2294
|
+
specification: $specification
|
2295
|
+
correlationId: $correlationId
|
2296
|
+
) {
|
2297
|
+
conversation {
|
2298
|
+
id
|
2299
|
+
}
|
2300
|
+
message {
|
2301
|
+
role
|
2302
|
+
author
|
2303
|
+
message
|
2304
|
+
citations {
|
2305
|
+
content {
|
2306
|
+
id
|
2307
|
+
name
|
2308
|
+
state
|
2309
|
+
originalDate
|
2310
|
+
identifier
|
2311
|
+
uri
|
2312
|
+
type
|
2313
|
+
fileType
|
2314
|
+
mimeType
|
2315
|
+
format
|
2316
|
+
formatName
|
2317
|
+
fileExtension
|
2318
|
+
fileName
|
2319
|
+
fileSize
|
2320
|
+
masterUri
|
2321
|
+
imageUri
|
2322
|
+
textUri
|
2323
|
+
audioUri
|
2324
|
+
transcriptUri
|
2325
|
+
summary
|
2326
|
+
customSummary
|
2327
|
+
keywords
|
2328
|
+
bullets
|
2329
|
+
headlines
|
2330
|
+
posts
|
2331
|
+
chapters
|
2332
|
+
questions
|
2333
|
+
video {
|
2334
|
+
width
|
2335
|
+
height
|
2336
|
+
duration
|
2337
|
+
make
|
2338
|
+
model
|
2339
|
+
software
|
2340
|
+
title
|
2341
|
+
description
|
2342
|
+
keywords
|
2343
|
+
author
|
2344
|
+
}
|
2345
|
+
audio {
|
2346
|
+
keywords
|
2347
|
+
author
|
2348
|
+
series
|
2349
|
+
episode
|
2350
|
+
episodeType
|
2351
|
+
season
|
2352
|
+
publisher
|
2353
|
+
copyright
|
2354
|
+
genre
|
2355
|
+
title
|
2356
|
+
description
|
2357
|
+
bitrate
|
2358
|
+
channels
|
2359
|
+
sampleRate
|
2360
|
+
bitsPerSample
|
2361
|
+
duration
|
2362
|
+
}
|
2363
|
+
image {
|
2364
|
+
width
|
2365
|
+
height
|
2366
|
+
resolutionX
|
2367
|
+
resolutionY
|
2368
|
+
bitsPerComponent
|
2369
|
+
components
|
2370
|
+
projectionType
|
2371
|
+
orientation
|
2372
|
+
description
|
2373
|
+
make
|
2374
|
+
model
|
2375
|
+
software
|
2376
|
+
lens
|
2377
|
+
focalLength
|
2378
|
+
exposureTime
|
2379
|
+
fNumber
|
2380
|
+
iso
|
2381
|
+
heading
|
2382
|
+
pitch
|
2383
|
+
}
|
2384
|
+
document {
|
2385
|
+
title
|
2386
|
+
subject
|
2387
|
+
summary
|
2388
|
+
author
|
2389
|
+
publisher
|
2390
|
+
description
|
2391
|
+
keywords
|
2392
|
+
pageCount
|
2393
|
+
worksheetCount
|
2394
|
+
slideCount
|
2395
|
+
wordCount
|
2396
|
+
lineCount
|
2397
|
+
paragraphCount
|
2398
|
+
isEncrypted
|
2399
|
+
hasDigitalSignature
|
2400
|
+
}
|
2401
|
+
}
|
2402
|
+
index
|
2403
|
+
text
|
2404
|
+
startTime
|
2405
|
+
endTime
|
2406
|
+
pageNumber
|
2407
|
+
frameNumber
|
2408
|
+
}
|
2409
|
+
toolCalls {
|
2410
|
+
id
|
2411
|
+
name
|
2412
|
+
arguments
|
2413
|
+
}
|
2414
|
+
tokens
|
2415
|
+
throughput
|
2416
|
+
completionTime
|
2417
|
+
timestamp
|
2418
|
+
modelService
|
2419
|
+
model
|
2420
|
+
}
|
2421
|
+
messageCount
|
2422
|
+
}
|
2423
|
+
}
|
2424
|
+
`;
|
2288
2425
|
exports.ClearConversation = (0, graphql_tag_1.default) `
|
2289
2426
|
mutation ClearConversation($id: ID!) {
|
2290
2427
|
clearConversation(id: $id) {
|
@@ -5629,10 +5766,10 @@ exports.QueryOneDriveFolders = (0, graphql_tag_1.default) `
|
|
5629
5766
|
}
|
5630
5767
|
`;
|
5631
5768
|
exports.QuerySharePointFolders = (0, graphql_tag_1.default) `
|
5632
|
-
query QuerySharePointFolders($properties: SharePointFoldersInput!, $
|
5769
|
+
query QuerySharePointFolders($properties: SharePointFoldersInput!, $libraryId: ID!, $folderId: ID) {
|
5633
5770
|
sharePointFolders(
|
5634
5771
|
properties: $properties
|
5635
|
-
|
5772
|
+
libraryId: $libraryId
|
5636
5773
|
folderId: $folderId
|
5637
5774
|
) {
|
5638
5775
|
accountName
|
@@ -8192,6 +8329,12 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
|
|
8192
8329
|
}
|
8193
8330
|
}
|
8194
8331
|
}
|
8332
|
+
storage {
|
8333
|
+
policy {
|
8334
|
+
type
|
8335
|
+
allowDuplicates
|
8336
|
+
}
|
8337
|
+
}
|
8195
8338
|
actions {
|
8196
8339
|
connector {
|
8197
8340
|
type
|
@@ -8367,6 +8510,12 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
|
|
8367
8510
|
}
|
8368
8511
|
}
|
8369
8512
|
}
|
8513
|
+
storage {
|
8514
|
+
policy {
|
8515
|
+
type
|
8516
|
+
allowDuplicates
|
8517
|
+
}
|
8518
|
+
}
|
8370
8519
|
actions {
|
8371
8520
|
connector {
|
8372
8521
|
type
|
@@ -8515,6 +8664,12 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
|
|
8515
8664
|
}
|
8516
8665
|
}
|
8517
8666
|
}
|
8667
|
+
storage {
|
8668
|
+
policy {
|
8669
|
+
type
|
8670
|
+
allowDuplicates
|
8671
|
+
}
|
8672
|
+
}
|
8518
8673
|
actions {
|
8519
8674
|
connector {
|
8520
8675
|
type
|
@@ -8658,6 +8813,12 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
|
|
8658
8813
|
}
|
8659
8814
|
}
|
8660
8815
|
}
|
8816
|
+
storage {
|
8817
|
+
policy {
|
8818
|
+
type
|
8819
|
+
allowDuplicates
|
8820
|
+
}
|
8821
|
+
}
|
8661
8822
|
actions {
|
8662
8823
|
connector {
|
8663
8824
|
type
|
@@ -403,6 +403,16 @@ export declare enum ApplyPolicy {
|
|
403
403
|
/** The policy is applied in the validation step before the execution. */
|
404
404
|
Validation = "VALIDATION"
|
405
405
|
}
|
406
|
+
/** Represents a prompted question about Graphlit. */
|
407
|
+
export type AskGraphlit = {
|
408
|
+
__typename?: 'AskGraphlit';
|
409
|
+
/** The completed conversation. */
|
410
|
+
conversation?: Maybe<EntityReference>;
|
411
|
+
/** The completed conversation message. */
|
412
|
+
message?: Maybe<ConversationMessage>;
|
413
|
+
/** The conversation message count, after completion. */
|
414
|
+
messageCount?: Maybe<Scalars['Int']['output']>;
|
415
|
+
};
|
406
416
|
/** Represents Atlassian Jira feed properties. */
|
407
417
|
export type AtlassianJiraFeedProperties = {
|
408
418
|
__typename?: 'AtlassianJiraFeedProperties';
|
@@ -2653,16 +2663,16 @@ export type EmbeddingsStrategy = {
|
|
2653
2663
|
__typename?: 'EmbeddingsStrategy';
|
2654
2664
|
/** @deprecated The limit of tokens per embedded text chunk has been removed from embeddings strategy. Assign in text embeddings specification instead. */
|
2655
2665
|
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
2656
|
-
/** The LLM specification used for image embeddings. */
|
2666
|
+
/** The LLM specification used for image embeddings, optional. */
|
2657
2667
|
imageSpecification?: Maybe<EntityReference>;
|
2658
|
-
/** The LLM specification used for text embeddings. */
|
2668
|
+
/** The LLM specification used for text embeddings, optional. */
|
2659
2669
|
textSpecification?: Maybe<EntityReference>;
|
2660
2670
|
};
|
2661
2671
|
/** Represents the embeddings strategy. */
|
2662
2672
|
export type EmbeddingsStrategyInput = {
|
2663
|
-
/** The LLM specification used for image embeddings. */
|
2673
|
+
/** The LLM specification used for image embeddings, optional. */
|
2664
2674
|
imageSpecification?: InputMaybe<EntityReferenceInput>;
|
2665
|
-
/** The LLM specification used for text embeddings. */
|
2675
|
+
/** The LLM specification used for text embeddings, optional. */
|
2666
2676
|
textSpecification?: InputMaybe<EntityReferenceInput>;
|
2667
2677
|
};
|
2668
2678
|
/** Represents an enrichment workflow job. */
|
@@ -3894,7 +3904,9 @@ export declare enum GoogleModels {
|
|
3894
3904
|
/** Gemini 1.5 Pro (002 version) */
|
3895
3905
|
Gemini_1_5Pro_002 = "GEMINI_1_5_PRO_002",
|
3896
3906
|
/** Gemini 2.0 Flash (Experimental) */
|
3897
|
-
Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL"
|
3907
|
+
Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
|
3908
|
+
/** Gemini 2.0 Flash Thinking (Experimental) */
|
3909
|
+
Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL"
|
3898
3910
|
}
|
3899
3911
|
/** Represents a knowledge graph. */
|
3900
3912
|
export type Graph = {
|
@@ -4775,6 +4787,8 @@ export declare enum LinkTypes {
|
|
4775
4787
|
Diffbot = "DIFFBOT",
|
4776
4788
|
/** Discord link */
|
4777
4789
|
Discord = "DISCORD",
|
4790
|
+
/** Dropbox link */
|
4791
|
+
Dropbox = "DROPBOX",
|
4778
4792
|
/** Email link */
|
4779
4793
|
Email = "EMAIL",
|
4780
4794
|
/** Facebook link */
|
@@ -6907,6 +6921,8 @@ export type Mutation = {
|
|
6907
6921
|
addCollectionContents?: Maybe<Collection>;
|
6908
6922
|
/** Adds contents to one or more collections. */
|
6909
6923
|
addContentsToCollections?: Maybe<Array<Maybe<Collection>>>;
|
6924
|
+
/** Ask questions about the Graphlit API or SDKs. Can create code samples for any API call. */
|
6925
|
+
askGraphlit?: Maybe<AskGraphlit>;
|
6910
6926
|
/** Clears an existing conversation. */
|
6911
6927
|
clearConversation?: Maybe<Conversation>;
|
6912
6928
|
/** Closes an existing collection. */
|
@@ -7284,6 +7300,13 @@ export type MutationAddContentsToCollectionsArgs = {
|
|
7284
7300
|
collections: Array<EntityReferenceInput>;
|
7285
7301
|
contents: Array<EntityReferenceInput>;
|
7286
7302
|
};
|
7303
|
+
export type MutationAskGraphlitArgs = {
|
7304
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7305
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
7306
|
+
prompt: Scalars['String']['input'];
|
7307
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7308
|
+
type?: InputMaybe<SdkTypes>;
|
7309
|
+
};
|
7287
7310
|
export type MutationClearConversationArgs = {
|
7288
7311
|
id: Scalars['ID']['input'];
|
7289
7312
|
};
|
@@ -10498,8 +10521,8 @@ export type QuerySharePointConsentUriArgs = {
|
|
10498
10521
|
tenantId: Scalars['ID']['input'];
|
10499
10522
|
};
|
10500
10523
|
export type QuerySharePointFoldersArgs = {
|
10501
|
-
driveId: Scalars['ID']['input'];
|
10502
10524
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
10525
|
+
libraryId: Scalars['ID']['input'];
|
10503
10526
|
properties: SharePointFoldersInput;
|
10504
10527
|
};
|
10505
10528
|
export type QuerySharePointLibrariesArgs = {
|
@@ -10955,6 +10978,15 @@ export type RevisionStrategyUpdateInput = {
|
|
10955
10978
|
/** The revision strategy type. */
|
10956
10979
|
type?: InputMaybe<RevisionStrategyTypes>;
|
10957
10980
|
};
|
10981
|
+
/** SDK type */
|
10982
|
+
export declare enum SdkTypes {
|
10983
|
+
/** .NET SDK */
|
10984
|
+
Dotnet = "DOTNET",
|
10985
|
+
/** Node.JS SDK */
|
10986
|
+
NodeJs = "NODE_JS",
|
10987
|
+
/** Python SDK */
|
10988
|
+
Python = "PYTHON"
|
10989
|
+
}
|
10958
10990
|
/** Represents web search feed properties. */
|
10959
10991
|
export type SearchFeedProperties = {
|
10960
10992
|
__typename?: 'SearchFeedProperties';
|
@@ -11681,11 +11713,38 @@ export type SpecificationUpdateInput = {
|
|
11681
11713
|
/** The Voyage model properties. */
|
11682
11714
|
voyage?: InputMaybe<VoyageModelPropertiesUpdateInput>;
|
11683
11715
|
};
|
11716
|
+
/** Represents the storage policy. */
|
11717
|
+
export type StoragePolicy = {
|
11718
|
+
__typename?: 'StoragePolicy';
|
11719
|
+
/** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
|
11720
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
11721
|
+
/** The storage policy type. */
|
11722
|
+
type?: Maybe<StoragePolicyTypes>;
|
11723
|
+
};
|
11724
|
+
/** Represents the storage policy. */
|
11725
|
+
export type StoragePolicyInput = {
|
11726
|
+
/** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
|
11727
|
+
allowDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
11728
|
+
/** The storage policy type. */
|
11729
|
+
type?: InputMaybe<StoragePolicyTypes>;
|
11730
|
+
};
|
11731
|
+
/** Storage policy types */
|
11732
|
+
export declare enum StoragePolicyTypes {
|
11733
|
+
/** Archive content indefinitely */
|
11734
|
+
Archive = "ARCHIVE",
|
11735
|
+
/** Minimize content storage, by removing master rendition upon workflow completion */
|
11736
|
+
Minimize = "MINIMIZE"
|
11737
|
+
}
|
11684
11738
|
/** Represents the storage workflow stage. */
|
11685
11739
|
export type StorageWorkflowStage = {
|
11686
11740
|
__typename?: 'StorageWorkflowStage';
|
11687
|
-
/**
|
11688
|
-
|
11741
|
+
/** The storage policy. */
|
11742
|
+
policy?: Maybe<StoragePolicy>;
|
11743
|
+
};
|
11744
|
+
/** Represents the storage workflow stage. */
|
11745
|
+
export type StorageWorkflowStageInput = {
|
11746
|
+
/** The storage policy. */
|
11747
|
+
policy?: InputMaybe<StoragePolicyInput>;
|
11689
11748
|
};
|
11690
11749
|
/** Represents a range of string values. */
|
11691
11750
|
export type StringRange = {
|
@@ -12189,7 +12248,7 @@ export type Workflow = {
|
|
12189
12248
|
relevance?: Maybe<Scalars['Float']['output']>;
|
12190
12249
|
/** The state of the workflow (i.e. created, finished). */
|
12191
12250
|
state: EntityState;
|
12192
|
-
/**
|
12251
|
+
/** The storage stage of the content workflow. */
|
12193
12252
|
storage?: Maybe<StorageWorkflowStage>;
|
12194
12253
|
};
|
12195
12254
|
/** Represents the workflow action. */
|
@@ -12242,6 +12301,8 @@ export type WorkflowInput = {
|
|
12242
12301
|
name: Scalars['String']['input'];
|
12243
12302
|
/** The preparation stage of the content workflow. */
|
12244
12303
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
12304
|
+
/** The storage stage of the content workflow. */
|
12305
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
12245
12306
|
};
|
12246
12307
|
/** Represents workflow query results. */
|
12247
12308
|
export type WorkflowResults = {
|
@@ -12267,6 +12328,8 @@ export type WorkflowUpdateInput = {
|
|
12267
12328
|
name?: InputMaybe<Scalars['String']['input']>;
|
12268
12329
|
/** The preparation stage of the content workflow. */
|
12269
12330
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
12331
|
+
/** The storage stage of the content workflow. */
|
12332
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
12270
12333
|
};
|
12271
12334
|
/** Represents YouTube feed properties. */
|
12272
12335
|
export type YouTubeFeedProperties = {
|
@@ -15010,6 +15073,153 @@ export type UpdateContentMutation = {
|
|
15010
15073
|
} | null> | null;
|
15011
15074
|
} | null;
|
15012
15075
|
};
|
15076
|
+
export type AskGraphlitMutationVariables = Exact<{
|
15077
|
+
prompt: Scalars['String']['input'];
|
15078
|
+
type?: InputMaybe<SdkTypes>;
|
15079
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15080
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
15081
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15082
|
+
}>;
|
15083
|
+
export type AskGraphlitMutation = {
|
15084
|
+
__typename?: 'Mutation';
|
15085
|
+
askGraphlit?: {
|
15086
|
+
__typename?: 'AskGraphlit';
|
15087
|
+
messageCount?: number | null;
|
15088
|
+
conversation?: {
|
15089
|
+
__typename?: 'EntityReference';
|
15090
|
+
id: string;
|
15091
|
+
} | null;
|
15092
|
+
message?: {
|
15093
|
+
__typename?: 'ConversationMessage';
|
15094
|
+
role: ConversationRoleTypes;
|
15095
|
+
author?: string | null;
|
15096
|
+
message?: string | null;
|
15097
|
+
tokens?: number | null;
|
15098
|
+
throughput?: number | null;
|
15099
|
+
completionTime?: any | null;
|
15100
|
+
timestamp?: any | null;
|
15101
|
+
modelService?: ModelServiceTypes | null;
|
15102
|
+
model?: string | null;
|
15103
|
+
citations?: Array<{
|
15104
|
+
__typename?: 'ConversationCitation';
|
15105
|
+
index?: number | null;
|
15106
|
+
text: string;
|
15107
|
+
startTime?: any | null;
|
15108
|
+
endTime?: any | null;
|
15109
|
+
pageNumber?: number | null;
|
15110
|
+
frameNumber?: number | null;
|
15111
|
+
content?: {
|
15112
|
+
__typename?: 'Content';
|
15113
|
+
id: string;
|
15114
|
+
name: string;
|
15115
|
+
state: EntityState;
|
15116
|
+
originalDate?: any | null;
|
15117
|
+
identifier?: string | null;
|
15118
|
+
uri?: any | null;
|
15119
|
+
type?: ContentTypes | null;
|
15120
|
+
fileType?: FileTypes | null;
|
15121
|
+
mimeType?: string | null;
|
15122
|
+
format?: string | null;
|
15123
|
+
formatName?: string | null;
|
15124
|
+
fileExtension?: string | null;
|
15125
|
+
fileName?: string | null;
|
15126
|
+
fileSize?: any | null;
|
15127
|
+
masterUri?: any | null;
|
15128
|
+
imageUri?: any | null;
|
15129
|
+
textUri?: any | null;
|
15130
|
+
audioUri?: any | null;
|
15131
|
+
transcriptUri?: any | null;
|
15132
|
+
summary?: string | null;
|
15133
|
+
customSummary?: string | null;
|
15134
|
+
keywords?: Array<string> | null;
|
15135
|
+
bullets?: Array<string> | null;
|
15136
|
+
headlines?: Array<string> | null;
|
15137
|
+
posts?: Array<string> | null;
|
15138
|
+
chapters?: Array<string> | null;
|
15139
|
+
questions?: Array<string> | null;
|
15140
|
+
video?: {
|
15141
|
+
__typename?: 'VideoMetadata';
|
15142
|
+
width?: number | null;
|
15143
|
+
height?: number | null;
|
15144
|
+
duration?: any | null;
|
15145
|
+
make?: string | null;
|
15146
|
+
model?: string | null;
|
15147
|
+
software?: string | null;
|
15148
|
+
title?: string | null;
|
15149
|
+
description?: string | null;
|
15150
|
+
keywords?: Array<string | null> | null;
|
15151
|
+
author?: string | null;
|
15152
|
+
} | null;
|
15153
|
+
audio?: {
|
15154
|
+
__typename?: 'AudioMetadata';
|
15155
|
+
keywords?: Array<string | null> | null;
|
15156
|
+
author?: string | null;
|
15157
|
+
series?: string | null;
|
15158
|
+
episode?: string | null;
|
15159
|
+
episodeType?: string | null;
|
15160
|
+
season?: string | null;
|
15161
|
+
publisher?: string | null;
|
15162
|
+
copyright?: string | null;
|
15163
|
+
genre?: string | null;
|
15164
|
+
title?: string | null;
|
15165
|
+
description?: string | null;
|
15166
|
+
bitrate?: number | null;
|
15167
|
+
channels?: number | null;
|
15168
|
+
sampleRate?: number | null;
|
15169
|
+
bitsPerSample?: number | null;
|
15170
|
+
duration?: any | null;
|
15171
|
+
} | null;
|
15172
|
+
image?: {
|
15173
|
+
__typename?: 'ImageMetadata';
|
15174
|
+
width?: number | null;
|
15175
|
+
height?: number | null;
|
15176
|
+
resolutionX?: number | null;
|
15177
|
+
resolutionY?: number | null;
|
15178
|
+
bitsPerComponent?: number | null;
|
15179
|
+
components?: number | null;
|
15180
|
+
projectionType?: ImageProjectionTypes | null;
|
15181
|
+
orientation?: OrientationTypes | null;
|
15182
|
+
description?: string | null;
|
15183
|
+
make?: string | null;
|
15184
|
+
model?: string | null;
|
15185
|
+
software?: string | null;
|
15186
|
+
lens?: string | null;
|
15187
|
+
focalLength?: number | null;
|
15188
|
+
exposureTime?: string | null;
|
15189
|
+
fNumber?: string | null;
|
15190
|
+
iso?: string | null;
|
15191
|
+
heading?: number | null;
|
15192
|
+
pitch?: number | null;
|
15193
|
+
} | null;
|
15194
|
+
document?: {
|
15195
|
+
__typename?: 'DocumentMetadata';
|
15196
|
+
title?: string | null;
|
15197
|
+
subject?: string | null;
|
15198
|
+
summary?: string | null;
|
15199
|
+
author?: string | null;
|
15200
|
+
publisher?: string | null;
|
15201
|
+
description?: string | null;
|
15202
|
+
keywords?: Array<string | null> | null;
|
15203
|
+
pageCount?: number | null;
|
15204
|
+
worksheetCount?: number | null;
|
15205
|
+
slideCount?: number | null;
|
15206
|
+
wordCount?: number | null;
|
15207
|
+
lineCount?: number | null;
|
15208
|
+
paragraphCount?: number | null;
|
15209
|
+
isEncrypted?: boolean | null;
|
15210
|
+
hasDigitalSignature?: boolean | null;
|
15211
|
+
} | null;
|
15212
|
+
} | null;
|
15213
|
+
} | null> | null;
|
15214
|
+
toolCalls?: Array<{
|
15215
|
+
__typename?: 'ConversationToolCall';
|
15216
|
+
id: string;
|
15217
|
+
name: string;
|
15218
|
+
arguments: string;
|
15219
|
+
} | null> | null;
|
15220
|
+
} | null;
|
15221
|
+
} | null;
|
15222
|
+
};
|
15013
15223
|
export type ClearConversationMutationVariables = Exact<{
|
15014
15224
|
id: Scalars['ID']['input'];
|
15015
15225
|
}>;
|
@@ -18794,7 +19004,7 @@ export type QueryOneDriveFoldersQuery = {
|
|
18794
19004
|
};
|
18795
19005
|
export type QuerySharePointFoldersQueryVariables = Exact<{
|
18796
19006
|
properties: SharePointFoldersInput;
|
18797
|
-
|
19007
|
+
libraryId: Scalars['ID']['input'];
|
18798
19008
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
18799
19009
|
}>;
|
18800
19010
|
export type QuerySharePointFoldersQuery = {
|
@@ -21965,6 +22175,14 @@ export type CreateWorkflowMutation = {
|
|
21965
22175
|
} | null;
|
21966
22176
|
} | null> | null;
|
21967
22177
|
} | null;
|
22178
|
+
storage?: {
|
22179
|
+
__typename?: 'StorageWorkflowStage';
|
22180
|
+
policy?: {
|
22181
|
+
__typename?: 'StoragePolicy';
|
22182
|
+
type?: StoragePolicyTypes | null;
|
22183
|
+
allowDuplicates?: boolean | null;
|
22184
|
+
} | null;
|
22185
|
+
} | null;
|
21968
22186
|
actions?: Array<{
|
21969
22187
|
__typename?: 'WorkflowAction';
|
21970
22188
|
connector?: {
|
@@ -22188,6 +22406,14 @@ export type GetWorkflowQuery = {
|
|
22188
22406
|
} | null;
|
22189
22407
|
} | null> | null;
|
22190
22408
|
} | null;
|
22409
|
+
storage?: {
|
22410
|
+
__typename?: 'StorageWorkflowStage';
|
22411
|
+
policy?: {
|
22412
|
+
__typename?: 'StoragePolicy';
|
22413
|
+
type?: StoragePolicyTypes | null;
|
22414
|
+
allowDuplicates?: boolean | null;
|
22415
|
+
} | null;
|
22416
|
+
} | null;
|
22191
22417
|
actions?: Array<{
|
22192
22418
|
__typename?: 'WorkflowAction';
|
22193
22419
|
connector?: {
|
@@ -22377,6 +22603,14 @@ export type QueryWorkflowsQuery = {
|
|
22377
22603
|
} | null;
|
22378
22604
|
} | null> | null;
|
22379
22605
|
} | null;
|
22606
|
+
storage?: {
|
22607
|
+
__typename?: 'StorageWorkflowStage';
|
22608
|
+
policy?: {
|
22609
|
+
__typename?: 'StoragePolicy';
|
22610
|
+
type?: StoragePolicyTypes | null;
|
22611
|
+
allowDuplicates?: boolean | null;
|
22612
|
+
} | null;
|
22613
|
+
} | null;
|
22380
22614
|
actions?: Array<{
|
22381
22615
|
__typename?: 'WorkflowAction';
|
22382
22616
|
connector?: {
|
@@ -22559,6 +22793,14 @@ export type UpdateWorkflowMutation = {
|
|
22559
22793
|
} | null;
|
22560
22794
|
} | null> | null;
|
22561
22795
|
} | null;
|
22796
|
+
storage?: {
|
22797
|
+
__typename?: 'StorageWorkflowStage';
|
22798
|
+
policy?: {
|
22799
|
+
__typename?: 'StoragePolicy';
|
22800
|
+
type?: StoragePolicyTypes | null;
|
22801
|
+
allowDuplicates?: boolean | null;
|
22802
|
+
} | null;
|
22803
|
+
} | null;
|
22562
22804
|
actions?: Array<{
|
22563
22805
|
__typename?: 'WorkflowAction';
|
22564
22806
|
connector?: {
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = 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.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
|
4
|
-
exports.
|
5
|
-
exports.YouTubeTypes = exports.VoyageModels = void 0;
|
4
|
+
exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = 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 = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = void 0;
|
5
|
+
exports.YouTubeTypes = exports.VoyageModels = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = void 0;
|
6
6
|
/** Alert type */
|
7
7
|
var AlertTypes;
|
8
8
|
(function (AlertTypes) {
|
@@ -779,6 +779,8 @@ var GoogleModels;
|
|
779
779
|
GoogleModels["Gemini_1_5Pro_002"] = "GEMINI_1_5_PRO_002";
|
780
780
|
/** Gemini 2.0 Flash (Experimental) */
|
781
781
|
GoogleModels["Gemini_2_0FlashExperimental"] = "GEMINI_2_0_FLASH_EXPERIMENTAL";
|
782
|
+
/** Gemini 2.0 Flash Thinking (Experimental) */
|
783
|
+
GoogleModels["Gemini_2_0FlashThinkingExperimental"] = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL";
|
782
784
|
})(GoogleModels || (exports.GoogleModels = GoogleModels = {}));
|
783
785
|
/** GraphRAG strategies */
|
784
786
|
var GraphStrategyTypes;
|
@@ -925,6 +927,8 @@ var LinkTypes;
|
|
925
927
|
LinkTypes["Diffbot"] = "DIFFBOT";
|
926
928
|
/** Discord link */
|
927
929
|
LinkTypes["Discord"] = "DISCORD";
|
930
|
+
/** Dropbox link */
|
931
|
+
LinkTypes["Dropbox"] = "DROPBOX";
|
928
932
|
/** Email link */
|
929
933
|
LinkTypes["Email"] = "EMAIL";
|
930
934
|
/** Facebook link */
|
@@ -1502,6 +1506,16 @@ var RevisionStrategyTypes;
|
|
1502
1506
|
/** Prompt LLM to revise completion, and provide updated response */
|
1503
1507
|
RevisionStrategyTypes["Revise"] = "REVISE";
|
1504
1508
|
})(RevisionStrategyTypes || (exports.RevisionStrategyTypes = RevisionStrategyTypes = {}));
|
1509
|
+
/** SDK type */
|
1510
|
+
var SdkTypes;
|
1511
|
+
(function (SdkTypes) {
|
1512
|
+
/** .NET SDK */
|
1513
|
+
SdkTypes["Dotnet"] = "DOTNET";
|
1514
|
+
/** Node.JS SDK */
|
1515
|
+
SdkTypes["NodeJs"] = "NODE_JS";
|
1516
|
+
/** Python SDK */
|
1517
|
+
SdkTypes["Python"] = "PYTHON";
|
1518
|
+
})(SdkTypes || (exports.SdkTypes = SdkTypes = {}));
|
1505
1519
|
/** Search query type */
|
1506
1520
|
var SearchQueryTypes;
|
1507
1521
|
(function (SearchQueryTypes) {
|
@@ -1563,6 +1577,14 @@ var SpecificationTypes;
|
|
1563
1577
|
/** Text embedding */
|
1564
1578
|
SpecificationTypes["TextEmbedding"] = "TEXT_EMBEDDING";
|
1565
1579
|
})(SpecificationTypes || (exports.SpecificationTypes = SpecificationTypes = {}));
|
1580
|
+
/** Storage policy types */
|
1581
|
+
var StoragePolicyTypes;
|
1582
|
+
(function (StoragePolicyTypes) {
|
1583
|
+
/** Archive content indefinitely */
|
1584
|
+
StoragePolicyTypes["Archive"] = "ARCHIVE";
|
1585
|
+
/** Minimize content storage, by removing master rendition upon workflow completion */
|
1586
|
+
StoragePolicyTypes["Minimize"] = "MINIMIZE";
|
1587
|
+
})(StoragePolicyTypes || (exports.StoragePolicyTypes = StoragePolicyTypes = {}));
|
1566
1588
|
/** Summarization type */
|
1567
1589
|
var SummarizationTypes;
|
1568
1590
|
(function (SummarizationTypes) {
|