@pushwoosh/rpc-v2-http-api-data 0.1.608 → 0.1.610

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
@@ -19035,6 +19035,9 @@ export const data = {
19035
19035
  },
19036
19036
  "application": {
19037
19037
  "type": "string"
19038
+ },
19039
+ "prompt": {
19040
+ "type": "string"
19038
19041
  }
19039
19042
  }
19040
19043
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.608",
3
+ "version": "0.1.610",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -26,6 +26,7 @@ export type ListDashboardResponse = {
26
26
  export type CreateDashboardRequest = {
27
27
  name?: string;
28
28
  application?: string;
29
+ prompt?: string;
29
30
  };
30
31
  export type CreateDashboardResponse = {
31
32
  dashboard: Dashboard;