graphlit-client 1.0.20240418026 → 1.0.20240418027
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 +13 -14
- package/dist/client.js +25 -27
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
@@ -3,14 +3,13 @@ import * as Types from './generated/graphql-types';
|
|
3
3
|
declare class Graphlit {
|
4
4
|
client: ApolloClient<NormalizedCacheObject> | undefined;
|
5
5
|
token: string | undefined;
|
6
|
-
correlationId: string | undefined;
|
7
6
|
private apiUri;
|
8
7
|
private organizationId;
|
9
8
|
private environmentId;
|
10
9
|
private ownerId;
|
11
10
|
private jwtSecret;
|
12
|
-
constructor(organizationId?: string, environmentId?: string, jwtSecret?: string, ownerId?: string, apiUri?: string
|
13
|
-
createAlert(alert: Types.AlertInput): Promise<Types.CreateAlertMutation>;
|
11
|
+
constructor(organizationId?: string, environmentId?: string, jwtSecret?: string, ownerId?: string, apiUri?: string);
|
12
|
+
createAlert(alert: Types.AlertInput, correlationId?: string): Promise<Types.CreateAlertMutation>;
|
14
13
|
updateAlert(alert: Types.AlertUpdateInput): Promise<Types.UpdateAlertMutation>;
|
15
14
|
deleteAlert(id: string): Promise<Types.DeleteAlertMutation>;
|
16
15
|
deleteAllAlerts(): Promise<Types.DeleteAllAlertsMutation>;
|
@@ -25,18 +24,18 @@ declare class Graphlit {
|
|
25
24
|
removeContentsFromCollection(contents: Types.EntityReferenceInput[], collection: Types.EntityReferenceInput): Promise<Types.RemoveContentsFromCollectionMutation>;
|
26
25
|
getCollection(id: string): Promise<Types.GetCollectionQuery>;
|
27
26
|
queryCollections(filter?: Types.CollectionFilter): Promise<Types.QueryCollectionsQuery>;
|
28
|
-
ingestUri(uri: string, name?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput): Promise<Types.IngestUriMutation>;
|
29
|
-
ingestText(name: string, text: string, textType?: Types.TextTypes, uri?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput): Promise<Types.IngestTextMutation>;
|
30
|
-
ingestEncodedFile(name: string, data: string, mimeType: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput): Promise<Types.IngestEncodedFileMutation>;
|
27
|
+
ingestUri(uri: string, name?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.IngestUriMutation>;
|
28
|
+
ingestText(name: string, text: string, textType?: Types.TextTypes, uri?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.IngestTextMutation>;
|
29
|
+
ingestEncodedFile(name: string, data: string, mimeType: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.IngestEncodedFileMutation>;
|
31
30
|
updateContent(content: Types.ContentUpdateInput): Promise<Types.UpdateContentMutation>;
|
32
31
|
deleteContent(id: string): Promise<Types.DeleteContentMutation>;
|
33
32
|
deleteAllContents(): Promise<Types.DeleteAllContentsMutation>;
|
34
|
-
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter): Promise<Types.SummarizeContentsMutation>;
|
35
|
-
extractContents(prompt: string, filter?: Types.ContentFilter, specification?: Types.EntityReferenceInput): Promise<Types.ExtractContentsMutation>;
|
36
|
-
publishContents(summaryPrompt: string, summarySpecification: Types.EntityReferenceInput, connector: Types.ContentPublishingConnectorInput, publishPrompt?: string, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput): Promise<Types.PublishContentsMutation>;
|
33
|
+
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.SummarizeContentsMutation>;
|
34
|
+
extractContents(prompt: string, filter?: Types.ContentFilter, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ExtractContentsMutation>;
|
35
|
+
publishContents(summaryPrompt: string, summarySpecification: Types.EntityReferenceInput, connector: Types.ContentPublishingConnectorInput, publishPrompt?: string, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishContentsMutation>;
|
37
36
|
getContent(id: string): Promise<Types.GetContentQuery>;
|
38
37
|
queryContents(filter?: Types.ContentFilter): Promise<Types.QueryContentsQuery>;
|
39
|
-
createConversation(conversation: Types.ConversationInput): Promise<Types.CreateConversationMutation>;
|
38
|
+
createConversation(conversation: Types.ConversationInput, correlationId?: string): Promise<Types.CreateConversationMutation>;
|
40
39
|
updateConversation(conversation: Types.ConversationUpdateInput): Promise<Types.UpdateConversationMutation>;
|
41
40
|
deleteConversation(id: string): Promise<Types.DeleteConversationMutation>;
|
42
41
|
deleteAllConversations(): Promise<Types.DeleteAllConversationsMutation>;
|
@@ -44,10 +43,10 @@ declare class Graphlit {
|
|
44
43
|
closeConversation(id: string): Promise<Types.CloseConversationMutation>;
|
45
44
|
getConversation(id: string): Promise<Types.GetConversationQuery>;
|
46
45
|
queryConversations(filter?: Types.ConversationFilter): Promise<Types.QueryConversationsQuery>;
|
47
|
-
promptConversation(prompt: string, id?: string): Promise<Types.PromptConversationMutation>;
|
48
|
-
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput): Promise<Types.PublishConversationMutation>;
|
49
|
-
suggestConversation(id: string, count?: number): Promise<Types.SuggestConversationMutation>;
|
50
|
-
createFeed(feed: Types.FeedInput): Promise<Types.CreateFeedMutation>;
|
46
|
+
promptConversation(prompt: string, id?: string, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
47
|
+
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishConversationMutation>;
|
48
|
+
suggestConversation(id: string, count?: number, correlationId?: string): Promise<Types.SuggestConversationMutation>;
|
49
|
+
createFeed(feed: Types.FeedInput, correlationId?: string): Promise<Types.CreateFeedMutation>;
|
51
50
|
updateFeed(feed: Types.FeedUpdateInput): Promise<Types.UpdateFeedMutation>;
|
52
51
|
deleteFeed(id: string): Promise<Types.DeleteFeedMutation>;
|
53
52
|
deleteAllFeeds(): Promise<Types.DeleteAllFeedsMutation>;
|
package/dist/client.js
CHANGED
@@ -39,7 +39,7 @@ const Documents = __importStar(require("./generated/graphql-documents"));
|
|
39
39
|
const dotenv = __importStar(require("dotenv"));
|
40
40
|
// Define the Graphlit class
|
41
41
|
class Graphlit {
|
42
|
-
constructor(organizationId, environmentId, jwtSecret, ownerId, apiUri
|
42
|
+
constructor(organizationId, environmentId, jwtSecret, ownerId, apiUri) {
|
43
43
|
this.apiUri = apiUri || "https://data-scus.graphlit.io/api/v1/graphql";
|
44
44
|
if (typeof process !== 'undefined') {
|
45
45
|
dotenv.config();
|
@@ -56,8 +56,6 @@ class Graphlit {
|
|
56
56
|
// optional: for multi-tenant support
|
57
57
|
this.ownerId = ownerId;
|
58
58
|
}
|
59
|
-
// optional: for billing correlation of multiple operations
|
60
|
-
this.correlationId = correlationId || undefined;
|
61
59
|
if (!this.organizationId) {
|
62
60
|
throw new Error("Graphlit organization identifier is required.");
|
63
61
|
}
|
@@ -102,9 +100,9 @@ class Graphlit {
|
|
102
100
|
}
|
103
101
|
});
|
104
102
|
}
|
105
|
-
createAlert(alert) {
|
103
|
+
createAlert(alert, correlationId) {
|
106
104
|
return __awaiter(this, void 0, void 0, function* () {
|
107
|
-
return this.mutateAndCheckError(Documents.CreateAlert, { alert: alert, correlationId:
|
105
|
+
return this.mutateAndCheckError(Documents.CreateAlert, { alert: alert, correlationId: correlationId });
|
108
106
|
});
|
109
107
|
}
|
110
108
|
updateAlert(alert) {
|
@@ -184,19 +182,19 @@ class Graphlit {
|
|
184
182
|
return this.queryAndCheckError(Documents.QueryCollections, { filter: filter });
|
185
183
|
});
|
186
184
|
}
|
187
|
-
ingestUri(uri, name, id, isSynchronous, workflow) {
|
185
|
+
ingestUri(uri, name, id, isSynchronous, workflow, correlationId) {
|
188
186
|
return __awaiter(this, void 0, void 0, function* () {
|
189
|
-
return this.mutateAndCheckError(Documents.IngestUri, { uri: uri, name: name, id: id, isSynchronous: isSynchronous, workflow: workflow, correlationId:
|
187
|
+
return this.mutateAndCheckError(Documents.IngestUri, { uri: uri, name: name, id: id, isSynchronous: isSynchronous, workflow: workflow, correlationId: correlationId });
|
190
188
|
});
|
191
189
|
}
|
192
|
-
ingestText(name, text, textType, uri, id, isSynchronous, workflow) {
|
190
|
+
ingestText(name, text, textType, uri, id, isSynchronous, workflow, correlationId) {
|
193
191
|
return __awaiter(this, void 0, void 0, function* () {
|
194
|
-
return this.mutateAndCheckError(Documents.IngestText, { name: name, text: text, textType: textType, uri: uri, id: id, isSynchronous: isSynchronous, workflow: workflow, correlationId:
|
192
|
+
return this.mutateAndCheckError(Documents.IngestText, { name: name, text: text, textType: textType, uri: uri, id: id, isSynchronous: isSynchronous, workflow: workflow, correlationId: correlationId });
|
195
193
|
});
|
196
194
|
}
|
197
|
-
ingestEncodedFile(name, data, mimeType, id, isSynchronous, workflow) {
|
195
|
+
ingestEncodedFile(name, data, mimeType, id, isSynchronous, workflow, correlationId) {
|
198
196
|
return __awaiter(this, void 0, void 0, function* () {
|
199
|
-
return this.mutateAndCheckError(Documents.IngestEncodedFile, { name: name, data: data, mimeType: mimeType, id: id, isSynchronous: isSynchronous, workflow: workflow, correlationId:
|
197
|
+
return this.mutateAndCheckError(Documents.IngestEncodedFile, { name: name, data: data, mimeType: mimeType, id: id, isSynchronous: isSynchronous, workflow: workflow, correlationId: correlationId });
|
200
198
|
});
|
201
199
|
}
|
202
200
|
updateContent(content) {
|
@@ -214,19 +212,19 @@ class Graphlit {
|
|
214
212
|
return this.mutateAndCheckError(Documents.DeleteAllContents);
|
215
213
|
});
|
216
214
|
}
|
217
|
-
summarizeContents(summarizations, filter) {
|
215
|
+
summarizeContents(summarizations, filter, correlationId) {
|
218
216
|
return __awaiter(this, void 0, void 0, function* () {
|
219
|
-
return this.mutateAndCheckError(Documents.SummarizeContents, { summarizations: summarizations, filter: filter, correlationId:
|
217
|
+
return this.mutateAndCheckError(Documents.SummarizeContents, { summarizations: summarizations, filter: filter, correlationId: correlationId });
|
220
218
|
});
|
221
219
|
}
|
222
|
-
extractContents(prompt, filter, specification) {
|
220
|
+
extractContents(prompt, filter, specification, correlationId) {
|
223
221
|
return __awaiter(this, void 0, void 0, function* () {
|
224
|
-
return this.mutateAndCheckError(Documents.ExtractContents, { prompt: prompt, filter: filter, specification: specification, correlationId:
|
222
|
+
return this.mutateAndCheckError(Documents.ExtractContents, { prompt: prompt, filter: filter, specification: specification, correlationId: correlationId });
|
225
223
|
});
|
226
224
|
}
|
227
|
-
publishContents(summaryPrompt, summarySpecification, connector, publishPrompt, publishSpecification, name, filter, workflow) {
|
225
|
+
publishContents(summaryPrompt, summarySpecification, connector, publishPrompt, publishSpecification, name, filter, workflow, correlationId) {
|
228
226
|
return __awaiter(this, void 0, void 0, function* () {
|
229
|
-
return this.mutateAndCheckError(Documents.PublishContents, { summaryPrompt: summaryPrompt, summarySpecification: summarySpecification, connector: connector, publishPrompt: publishPrompt, publishSpecification: publishSpecification, name: name, filter: filter, workflow: workflow, correlationId:
|
227
|
+
return this.mutateAndCheckError(Documents.PublishContents, { summaryPrompt: summaryPrompt, summarySpecification: summarySpecification, connector: connector, publishPrompt: publishPrompt, publishSpecification: publishSpecification, name: name, filter: filter, workflow: workflow, correlationId: correlationId });
|
230
228
|
});
|
231
229
|
}
|
232
230
|
getContent(id) {
|
@@ -239,9 +237,9 @@ class Graphlit {
|
|
239
237
|
return this.queryAndCheckError(Documents.QueryContents, { filter: filter });
|
240
238
|
});
|
241
239
|
}
|
242
|
-
createConversation(conversation) {
|
240
|
+
createConversation(conversation, correlationId) {
|
243
241
|
return __awaiter(this, void 0, void 0, function* () {
|
244
|
-
return this.mutateAndCheckError(Documents.CreateConversation, { conversation: conversation, correlationId:
|
242
|
+
return this.mutateAndCheckError(Documents.CreateConversation, { conversation: conversation, correlationId: correlationId });
|
245
243
|
});
|
246
244
|
}
|
247
245
|
updateConversation(conversation) {
|
@@ -279,24 +277,24 @@ class Graphlit {
|
|
279
277
|
return this.queryAndCheckError(Documents.QueryConversations, { filter: filter });
|
280
278
|
});
|
281
279
|
}
|
282
|
-
promptConversation(prompt, id) {
|
280
|
+
promptConversation(prompt, id, correlationId) {
|
283
281
|
return __awaiter(this, void 0, void 0, function* () {
|
284
|
-
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, correlationId:
|
282
|
+
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, correlationId: correlationId });
|
285
283
|
});
|
286
284
|
}
|
287
|
-
publishConversation(id, connector, name, workflow) {
|
285
|
+
publishConversation(id, connector, name, workflow, correlationId) {
|
288
286
|
return __awaiter(this, void 0, void 0, function* () {
|
289
|
-
return this.mutateAndCheckError(Documents.PublishConversation, { id: id, connector: connector, name: name, workflow: workflow, correlationId:
|
287
|
+
return this.mutateAndCheckError(Documents.PublishConversation, { id: id, connector: connector, name: name, workflow: workflow, correlationId: correlationId });
|
290
288
|
});
|
291
289
|
}
|
292
|
-
suggestConversation(id, count) {
|
290
|
+
suggestConversation(id, count, correlationId) {
|
293
291
|
return __awaiter(this, void 0, void 0, function* () {
|
294
|
-
return this.mutateAndCheckError(Documents.SuggestConversation, { id: id, count: count, correlationId:
|
292
|
+
return this.mutateAndCheckError(Documents.SuggestConversation, { id: id, count: count, correlationId: correlationId });
|
295
293
|
});
|
296
294
|
}
|
297
|
-
createFeed(feed) {
|
295
|
+
createFeed(feed, correlationId) {
|
298
296
|
return __awaiter(this, void 0, void 0, function* () {
|
299
|
-
return this.mutateAndCheckError(Documents.CreateFeed, { feed: feed, correlationId:
|
297
|
+
return this.mutateAndCheckError(Documents.CreateFeed, { feed: feed, correlationId: correlationId });
|
300
298
|
});
|
301
299
|
}
|
302
300
|
updateFeed(feed) {
|