@pushwoosh/rpc-gateway-ai-assistant 0.1.437 → 0.1.438

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/data.js CHANGED
@@ -3477,6 +3477,9 @@ export const data = {
3477
3477
  "actions": {
3478
3478
  "type": "pushwoosh.accounts.assistant.v1.SuggestedAction",
3479
3479
  "array": true
3480
+ },
3481
+ "iterationCapped": {
3482
+ "type": "boolean"
3480
3483
  }
3481
3484
  }
3482
3485
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.437",
3
+ "version": "0.1.438",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -15,6 +15,11 @@ export type Message = {
15
15
  timestamp: Date;
16
16
  usage: UsageInfo;
17
17
  actions: SuggestedAction[];
18
+ /**
19
+ * iteration_capped marks the row a turn left when it ran out of steps with work left; the
20
+ * widget offers Continue on it. Its content may be empty.
21
+ */
22
+ iterationCapped: boolean;
18
23
  };
19
24
  /**
20
25
  * SuggestedAction represents a model-proposed follow-up action shown as a button.