@squidcloud/slack-client 1.0.415 → 1.0.416

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.
@@ -15,6 +15,11 @@ export declare const AI_PROVIDER_TYPES: readonly ["anthropic", "flux", "gemini",
15
15
  * chat/search/transcribe etc...).
16
16
  */
17
17
  export type AiProviderType = (typeof AI_PROVIDER_TYPES)[number];
18
+ /**
19
+ * Type of AI provider that supports file upload operations.
20
+ * Only a subset of AI providers support file management features.
21
+ */
22
+ export type AiFileProviderType = Extract<AiProviderType, 'openai' | 'gemini' | 'anthropic'>;
18
23
  /**
19
24
  * @category AI
20
25
  */
@@ -138,6 +138,8 @@ export type AiContextMetadataFilter = AiContextMetadataFieldFilter | AiContextMe
138
138
  export interface AiKnowledgeBaseContext {
139
139
  /** The unique identifier of the context entry. */
140
140
  id: string;
141
+ /** The application id of the context entry */
142
+ appId: AppId;
141
143
  /** The knowledge base id of the context entry */
142
144
  knowledgeBaseId: AiKnowledgeBaseId;
143
145
  /** The date and time the context was created. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/slack-client",
3
- "version": "1.0.415",
3
+ "version": "1.0.416",
4
4
  "description": "Squid Slack Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/client/src/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "assertic": "^1.3.0",
21
21
  "lodash": "^4.17.21",
22
- "@squidcloud/client": "^1.0.415",
22
+ "@squidcloud/client": "^1.0.416",
23
23
  "@slack/bolt": "^4.5.0"
24
24
  },
25
25
  "engines": {