@skravets/eapi 0.0.55 → 0.0.56

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.
@@ -113,7 +113,7 @@ interface components {
113
113
  channel_id: number;
114
114
  /**
115
115
  * Format: date-time
116
- * @example 2026-02-20T11:36:31.463Z
116
+ * @example 2026-02-20T13:43:55.470Z
117
117
  */
118
118
  message_created_at: string;
119
119
  /** @example 123 */
@@ -242,7 +242,9 @@ interface components {
242
242
  * "step": 2
243
243
  * }
244
244
  */
245
- metadata?: Record<string, never>;
245
+ metadata?: {
246
+ [key: string]: unknown;
247
+ };
246
248
  };
247
249
  ISendMessage: {
248
250
  /**
@@ -286,7 +288,9 @@ interface components {
286
288
  * "source": "crm"
287
289
  * }
288
290
  */
289
- metadata?: Record<string, never>;
291
+ metadata?: {
292
+ [key: string]: unknown;
293
+ };
290
294
  };
291
295
  IDeleteMessage: {
292
296
  /**
@@ -113,7 +113,7 @@ interface components {
113
113
  channel_id: number;
114
114
  /**
115
115
  * Format: date-time
116
- * @example 2026-02-20T11:36:31.463Z
116
+ * @example 2026-02-20T13:43:55.470Z
117
117
  */
118
118
  message_created_at: string;
119
119
  /** @example 123 */
@@ -242,7 +242,9 @@ interface components {
242
242
  * "step": 2
243
243
  * }
244
244
  */
245
- metadata?: Record<string, never>;
245
+ metadata?: {
246
+ [key: string]: unknown;
247
+ };
246
248
  };
247
249
  ISendMessage: {
248
250
  /**
@@ -286,7 +288,9 @@ interface components {
286
288
  * "source": "crm"
287
289
  * }
288
290
  */
289
- metadata?: Record<string, never>;
291
+ metadata?: {
292
+ [key: string]: unknown;
293
+ };
290
294
  };
291
295
  IDeleteMessage: {
292
296
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skravets/eapi",
3
- "version": "0.0.55",
3
+ "version": "0.0.56",
4
4
  "module": "./dist/index.js",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",