@epilot/message-client 1.19.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 CHANGED
@@ -551,6 +551,7 @@ declare namespace Components {
551
551
  hydrate?: boolean;
552
552
  }
553
553
  export interface SearchParamsV2 {
554
+ inbox_id?: string | string[];
554
555
  /**
555
556
  * Lucene query syntax supported with ElasticSearch
556
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.1.0",
5
+ "version": "1.3.0",
6
6
  "description": "Send and receive email messages via your epilot organization\n"
7
7
  },
8
8
  "security": [
@@ -2266,6 +2266,26 @@
2266
2266
  "q"
2267
2267
  ],
2268
2268
  "properties": {
2269
+ "inbox_id": {
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
+ ]
2288
+ },
2269
2289
  "q": {
2270
2290
  "description": "Lucene query syntax supported with ElasticSearch",
2271
2291
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/message-client",
3
- "version": "1.19.0",
3
+ "version": "1.21.0",
4
4
  "description": "API Client for epilot Message API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",