@squidcloud/client 1.0.275 → 1.0.277
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.
|
@@ -56,12 +56,12 @@ export declare enum IntegrationType {
|
|
|
56
56
|
'google_docs' = "google_docs",
|
|
57
57
|
'onedrive' = "onedrive",
|
|
58
58
|
'zendesk' = "zendesk",
|
|
59
|
-
'linear' = "linear",
|
|
60
59
|
'pinecone' = "pinecone",
|
|
61
60
|
'active_directory' = "active_directory",
|
|
62
61
|
'jira' = "jira",
|
|
63
62
|
'confluence' = "confluence",
|
|
64
|
-
'servicenow' = "servicenow"
|
|
63
|
+
'servicenow' = "servicenow",
|
|
64
|
+
'linear' = "linear"
|
|
65
65
|
}
|
|
66
66
|
export declare enum IntegrationSchemaType {
|
|
67
67
|
'data' = "data",
|
|
@@ -39,12 +39,12 @@ export declare class PersonalStorageClient {
|
|
|
39
39
|
*
|
|
40
40
|
* @param documentOrFolderId - The ID of the document or folder to be indexed.
|
|
41
41
|
* @param identifier - A user-provided identifier (usually a user ID) that will be associated with the document.
|
|
42
|
-
* @param aiProfileId - The profile ID for the AI processing configuration.
|
|
43
42
|
* @param aiIntegrationId - The integration ID for the AI processing configuration.
|
|
43
|
+
* @param aiProfileId - The profile ID for the AI processing configuration.
|
|
44
44
|
* @param metadata - Metadata to include with the index
|
|
45
45
|
* @returns A promise that resolves when the document or folder is successfully indexed.
|
|
46
46
|
*/
|
|
47
|
-
indexDocumentOrFolder(documentOrFolderId: string, identifier: string,
|
|
47
|
+
indexDocumentOrFolder(documentOrFolderId: string, identifier: string, aiIntegrationId: string, aiProfileId: string, metadata?: AiContextMetadata): Promise<void>;
|
|
48
48
|
/**
|
|
49
49
|
* Unindexes a previously indexed document, removing it from AI processing.
|
|
50
50
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.
|
|
1
|
+
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.277";
|