@epilot/message-client 1.10.2 → 1.11.0

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
@@ -147,11 +147,13 @@ declare namespace Components {
147
147
  */
148
148
  summary?: string[] | null;
149
149
  /**
150
- * Topic of the GenAI Summary
150
+ * Topics of the email thread
151
151
  * example:
152
- * Product enquiry
152
+ * [
153
+ * "Product enquiry"
154
+ * ]
153
155
  */
154
- topic?: string | null;
156
+ topics?: string[] | null;
155
157
  /**
156
158
  * Recommended next steps
157
159
  * example:
@@ -212,7 +214,7 @@ declare namespace Components {
212
214
  * example:
213
215
  * COMPLETED
214
216
  */
215
- status?: "IN_PROGRESS" | "COMPLETED" | "FAILED";
217
+ status?: "INITIATED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
216
218
  /**
217
219
  * Progress of the GenAI job in percentage
218
220
  * example:
@@ -842,7 +844,7 @@ declare namespace Paths {
842
844
  * example:
843
845
  * COMPLETED
844
846
  */
845
- status?: "IN_PROGRESS" | "COMPLETED" | "FAILED";
847
+ status?: "INITIATED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
846
848
  /**
847
849
  * Progress of the GenAI job in percentage
848
850
  * example:
@@ -920,11 +922,13 @@ declare namespace Paths {
920
922
  */
921
923
  summary?: string[] | null;
922
924
  /**
923
- * Topic of the GenAI Summary
925
+ * Topics of the email thread
924
926
  * example:
925
- * Product enquiry
927
+ * [
928
+ * "Product enquiry"
929
+ * ]
926
930
  */
927
- topic?: string | null;
931
+ topics?: string[] | null;
928
932
  /**
929
933
  * Recommended next steps
930
934
  * example:
@@ -959,7 +963,7 @@ declare namespace Paths {
959
963
  * example:
960
964
  * COMPLETED
961
965
  */
962
- status?: "IN_PROGRESS" | "COMPLETED" | "FAILED";
966
+ status?: "INITIATED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
963
967
  /**
964
968
  * Progress of the GenAI job in percentage
965
969
  * example:
@@ -1359,11 +1363,13 @@ declare namespace Paths {
1359
1363
  */
1360
1364
  summary?: string[] | null;
1361
1365
  /**
1362
- * Topic of the GenAI Summary
1366
+ * Topics of the email thread
1363
1367
  * example:
1364
- * Product enquiry
1368
+ * [
1369
+ * "Product enquiry"
1370
+ * ]
1365
1371
  */
1366
- topic?: string | null;
1372
+ topics?: string[] | null;
1367
1373
  /**
1368
1374
  * Recommended next steps
1369
1375
  * example:
@@ -1398,7 +1404,7 @@ declare namespace Paths {
1398
1404
  * example:
1399
1405
  * COMPLETED
1400
1406
  */
1401
- status?: "IN_PROGRESS" | "COMPLETED" | "FAILED";
1407
+ status?: "INITIATED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
1402
1408
  /**
1403
1409
  * Progress of the GenAI job in percentage
1404
1410
  * example:
@@ -1458,11 +1464,13 @@ declare namespace Paths {
1458
1464
  */
1459
1465
  summary?: string[] | null;
1460
1466
  /**
1461
- * Topic of the GenAI Summary
1467
+ * Topics of the email thread
1462
1468
  * example:
1463
- * Product enquiry
1469
+ * [
1470
+ * "Product enquiry"
1471
+ * ]
1464
1472
  */
1465
- topic?: string | null;
1473
+ topics?: string[] | null;
1466
1474
  /**
1467
1475
  * Recommended next steps
1468
1476
  * example:
@@ -1497,7 +1505,7 @@ declare namespace Paths {
1497
1505
  * example:
1498
1506
  * COMPLETED
1499
1507
  */
1500
- status?: "IN_PROGRESS" | "COMPLETED" | "FAILED";
1508
+ status?: "INITIATED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
1501
1509
  /**
1502
1510
  * Progress of the GenAI job in percentage
1503
1511
  * example:
package/dist/openapi.json CHANGED
@@ -1493,6 +1493,7 @@
1493
1493
  "status": {
1494
1494
  "type": "string",
1495
1495
  "enum": [
1496
+ "INITIATED",
1496
1497
  "IN_PROGRESS",
1497
1498
  "COMPLETED",
1498
1499
  "FAILED"
@@ -1536,10 +1537,15 @@
1536
1537
  ],
1537
1538
  "nullable": true
1538
1539
  },
1539
- "topic": {
1540
- "type": "string",
1541
- "description": "Topic of the GenAI Summary",
1542
- "example": "Product enquiry",
1540
+ "topics": {
1541
+ "type": "array",
1542
+ "description": "Topics of the email thread",
1543
+ "items": {
1544
+ "type": "string"
1545
+ },
1546
+ "example": [
1547
+ "Product enquiry"
1548
+ ],
1543
1549
  "nullable": true
1544
1550
  },
1545
1551
  "next_steps": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/message-client",
3
- "version": "1.10.2",
3
+ "version": "1.11.0",
4
4
  "description": "API Client for epilot Message API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",