@epilot/message-client 1.10.3 → 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:
@@ -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:
@@ -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:
@@ -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:
package/dist/openapi.json CHANGED
@@ -1537,10 +1537,15 @@
1537
1537
  ],
1538
1538
  "nullable": true
1539
1539
  },
1540
- "topic": {
1541
- "type": "string",
1542
- "description": "Topic of the GenAI Summary",
1543
- "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
+ ],
1544
1549
  "nullable": true
1545
1550
  },
1546
1551
  "next_steps": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/message-client",
3
- "version": "1.10.3",
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",