@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 +20 -12
- package/dist/openapi.json +9 -4
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -147,11 +147,13 @@ declare namespace Components {
|
|
|
147
147
|
*/
|
|
148
148
|
summary?: string[] | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Topics of the email thread
|
|
151
151
|
* example:
|
|
152
|
-
*
|
|
152
|
+
* [
|
|
153
|
+
* "Product enquiry"
|
|
154
|
+
* ]
|
|
153
155
|
*/
|
|
154
|
-
|
|
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
|
-
*
|
|
925
|
+
* Topics of the email thread
|
|
924
926
|
* example:
|
|
925
|
-
*
|
|
927
|
+
* [
|
|
928
|
+
* "Product enquiry"
|
|
929
|
+
* ]
|
|
926
930
|
*/
|
|
927
|
-
|
|
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
|
-
*
|
|
1366
|
+
* Topics of the email thread
|
|
1363
1367
|
* example:
|
|
1364
|
-
*
|
|
1368
|
+
* [
|
|
1369
|
+
* "Product enquiry"
|
|
1370
|
+
* ]
|
|
1365
1371
|
*/
|
|
1366
|
-
|
|
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
|
-
*
|
|
1467
|
+
* Topics of the email thread
|
|
1462
1468
|
* example:
|
|
1463
|
-
*
|
|
1469
|
+
* [
|
|
1470
|
+
* "Product enquiry"
|
|
1471
|
+
* ]
|
|
1464
1472
|
*/
|
|
1465
|
-
|
|
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
|
-
"
|
|
1541
|
-
"type": "
|
|
1542
|
-
"description": "
|
|
1543
|
-
"
|
|
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": {
|