@squidcloud/slack-client 1.0.423 → 1.0.424

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.
@@ -585,6 +585,10 @@ export interface AiStatusMessage {
585
585
  chatId?: string;
586
586
  /** The title or summary of the status message. */
587
587
  title: string;
588
+ /** Markdown body content for the status update. */
589
+ body: string;
590
+ /** ID of the parent status update for nested display. */
591
+ parentStatusUpdateId?: string;
588
592
  /** The Job ID associated with the status message. */
589
593
  jobId: JobId;
590
594
  /** Optional tags providing additional metadata about the status. */
@@ -611,14 +615,6 @@ export interface AiChatMessage {
611
615
  /** Time the entry is created. Unix time millis. */
612
616
  timestamp: number;
613
617
  }
614
- /**
615
- * Name of the tag that contains ID of the parent message.
616
- * When the tag is present, the current message should be considered in the context of the parent message.
617
- * Example: the message can contain a function call result.
618
- */
619
- export declare const AI_STATUS_MESSAGE_PARENT_MESSAGE_ID_TAG = "parent";
620
- /** The tag contains a response of the AI tool call. */
621
- export declare const AI_STATUS_MESSAGE_RESULT_TAG = "result";
622
618
  /**
623
619
  * A single chunk of data returned from an AI search operation.
624
620
  * @category AI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/slack-client",
3
- "version": "1.0.423",
3
+ "version": "1.0.424",
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.423",
22
+ "@squidcloud/client": "^1.0.424",
23
23
  "@slack/bolt": "^4.5.0"
24
24
  },
25
25
  "engines": {