@epilot/message-client 1.19.0 → 1.20.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,12 @@ 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
560
  /**
555
561
  * Lucene query syntax supported with ElasticSearch
556
562
  * 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.2.0",
6
6
  "description": "Send and receive email messages via your epilot organization\n"
7
7
  },
8
8
  "security": [
@@ -2266,6 +2266,11 @@
2266
2266
  "q"
2267
2267
  ],
2268
2268
  "properties": {
2269
+ "inbox_id": {
2270
+ "type": "string",
2271
+ "description": "Inbox ID",
2272
+ "example": "3f34ce73-089c-4d45-a5ee-c161234e41c3"
2273
+ },
2269
2274
  "q": {
2270
2275
  "description": "Lucene query syntax supported with ElasticSearch",
2271
2276
  "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.20.0",
4
4
  "description": "API Client for epilot Message API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",