@epilot/message-client 1.20.0 → 1.21.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 +1 -6
- package/dist/openapi.json +19 -4
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -551,12 +551,7 @@ declare namespace Components {
|
|
|
551
551
|
hydrate?: boolean;
|
|
552
552
|
}
|
|
553
553
|
export interface SearchParamsV2 {
|
|
554
|
-
|
|
555
|
-
* Inbox ID
|
|
556
|
-
* example:
|
|
557
|
-
* 3f34ce73-089c-4d45-a5ee-c161234e41c3
|
|
558
|
-
*/
|
|
559
|
-
inbox_id?: string;
|
|
554
|
+
inbox_id?: string | string[];
|
|
560
555
|
/**
|
|
561
556
|
* Lucene query syntax supported with ElasticSearch
|
|
562
557
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.0.2",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Message API",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.3.0",
|
|
6
6
|
"description": "Send and receive email messages via your epilot organization\n"
|
|
7
7
|
},
|
|
8
8
|
"security": [
|
|
@@ -2267,9 +2267,24 @@
|
|
|
2267
2267
|
],
|
|
2268
2268
|
"properties": {
|
|
2269
2269
|
"inbox_id": {
|
|
2270
|
-
"
|
|
2271
|
-
|
|
2272
|
-
|
|
2270
|
+
"oneOf": [
|
|
2271
|
+
{
|
|
2272
|
+
"type": "string",
|
|
2273
|
+
"description": "Inbox ID",
|
|
2274
|
+
"example": "3f34ce73-089c-4d45-a5ee-c161234e41c3"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"type": "array",
|
|
2278
|
+
"items": {
|
|
2279
|
+
"type": "string"
|
|
2280
|
+
},
|
|
2281
|
+
"description": "Inbox IDs",
|
|
2282
|
+
"example": [
|
|
2283
|
+
"3f34ce73-089c-4d45-a5ee-c161234e41c3",
|
|
2284
|
+
"3f34ce73-089c-4d45-a5ee-c161234e41c4"
|
|
2285
|
+
]
|
|
2286
|
+
}
|
|
2287
|
+
]
|
|
2273
2288
|
},
|
|
2274
2289
|
"q": {
|
|
2275
2290
|
"description": "Lucene query syntax supported with ElasticSearch",
|