@epilot/message-client 1.10.0 → 1.10.1

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/dist/openapi.d.ts CHANGED
@@ -139,11 +139,13 @@ declare namespace Components {
139
139
  */
140
140
  topic?: string | null;
141
141
  /**
142
- * Next steps
142
+ * Recommended next steps
143
143
  * example:
144
- * Send a quote
144
+ * [
145
+ * "The agent should approve the refund"
146
+ * ]
145
147
  */
146
- next_steps?: string | null;
148
+ next_steps?: string[] | null;
147
149
  /**
148
150
  * Tags
149
151
  * example:
@@ -816,11 +818,13 @@ declare namespace Paths {
816
818
  */
817
819
  topic?: string | null;
818
820
  /**
819
- * Next steps
821
+ * Recommended next steps
820
822
  * example:
821
- * Send a quote
823
+ * [
824
+ * "The agent should approve the refund"
825
+ * ]
822
826
  */
823
- next_steps?: string | null;
827
+ next_steps?: string[] | null;
824
828
  /**
825
829
  * Tags
826
830
  * example:
@@ -1232,6 +1236,11 @@ declare namespace Paths {
1232
1236
  * positive
1233
1237
  */
1234
1238
  rating?: string | null;
1239
+ /**
1240
+ * example:
1241
+ * Good summary
1242
+ */
1243
+ feedback?: string | null;
1235
1244
  }
1236
1245
  namespace Responses {
1237
1246
  export interface $200 {
@@ -1273,11 +1282,13 @@ declare namespace Paths {
1273
1282
  */
1274
1283
  topic?: string | null;
1275
1284
  /**
1276
- * Next steps
1285
+ * Recommended next steps
1277
1286
  * example:
1278
- * Send a quote
1287
+ * [
1288
+ * "The agent should approve the refund"
1289
+ * ]
1279
1290
  */
1280
- next_steps?: string | null;
1291
+ next_steps?: string[] | null;
1281
1292
  /**
1282
1293
  * Tags
1283
1294
  * example:
package/dist/openapi.json CHANGED
@@ -909,6 +909,11 @@
909
909
  "type": "string",
910
910
  "nullable": true,
911
911
  "example": "positive"
912
+ },
913
+ "feedback": {
914
+ "type": "string",
915
+ "nullable": true,
916
+ "example": "Good summary"
912
917
  }
913
918
  },
914
919
  "additionalProperties": true
@@ -1513,9 +1518,14 @@
1513
1518
  "nullable": true
1514
1519
  },
1515
1520
  "next_steps": {
1516
- "type": "string",
1517
- "description": "Next steps",
1518
- "example": "Send a quote",
1521
+ "type": "array",
1522
+ "description": "Recommended next steps",
1523
+ "items": {
1524
+ "type": "string"
1525
+ },
1526
+ "example": [
1527
+ "The agent should approve the refund"
1528
+ ],
1519
1529
  "nullable": true
1520
1530
  },
1521
1531
  "tags": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/message-client",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "API Client for epilot Message API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",