@squidcloud/client 1.0.272 → 1.0.274

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.
@@ -57,7 +57,11 @@ export declare enum IntegrationType {
57
57
  'onedrive' = "onedrive",
58
58
  'zendesk' = "zendesk",
59
59
  'linear' = "linear",
60
- 'pinecone' = "pinecone"
60
+ 'pinecone' = "pinecone",
61
+ 'active_directory' = "active_directory",
62
+ 'jira' = "jira",
63
+ 'confluence' = "confluence",
64
+ 'servicenow' = "servicenow"
61
65
  }
62
66
  export declare enum IntegrationSchemaType {
63
67
  'data' = "data",
@@ -19,7 +19,7 @@ export declare class PersonalStorageClient {
19
19
  * @param identifier - A user-provided identifier (usually a user ID) that will be associated with the token.
20
20
  * @returns A promise that resolves with the access token and expiration time.
21
21
  */
22
- saveToken(authCode: string, identifier: string): Promise<PsGetAccessTokenResponse>;
22
+ saveAuthCode(authCode: string, identifier: string): Promise<PsGetAccessTokenResponse>;
23
23
  /**
24
24
  * Retrieves an access token for the personal storage service.
25
25
  *
@@ -1 +1 @@
1
- export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.272";
1
+ export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.274";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.272",
3
+ "version": "1.0.274",
4
4
  "description": "A typescript implementation of the Squid client",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/typescript-client/src/index.d.ts",