@skravets/eapi 0.0.54 → 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-18T15:57:17.515Z
116
+ * @example 2026-02-20T13:43:55.470Z
117
117
  */
118
118
  message_created_at: string;
119
119
  /** @example 123 */
@@ -235,6 +235,16 @@ interface components {
235
235
  * @example 1
236
236
  */
237
237
  accountId?: number;
238
+ /**
239
+ * @description Arbitrary metadata passed through to the farm queue
240
+ * @example {
241
+ * "campaignId": "abc-123",
242
+ * "step": 2
243
+ * }
244
+ */
245
+ metadata?: {
246
+ [key: string]: unknown;
247
+ };
238
248
  };
239
249
  ISendMessage: {
240
250
  /**
@@ -271,6 +281,16 @@ interface components {
271
281
  * }
272
282
  */
273
283
  followUpMessage?: components["schemas"]["IFollowUpMessage"];
284
+ /**
285
+ * @description Arbitrary metadata passed through to the farm queue
286
+ * @example {
287
+ * "campaignId": "abc-123",
288
+ * "source": "crm"
289
+ * }
290
+ */
291
+ metadata?: {
292
+ [key: string]: unknown;
293
+ };
274
294
  };
275
295
  IDeleteMessage: {
276
296
  /**
@@ -113,7 +113,7 @@ interface components {
113
113
  channel_id: number;
114
114
  /**
115
115
  * Format: date-time
116
- * @example 2026-02-18T15:57:17.515Z
116
+ * @example 2026-02-20T13:43:55.470Z
117
117
  */
118
118
  message_created_at: string;
119
119
  /** @example 123 */
@@ -235,6 +235,16 @@ interface components {
235
235
  * @example 1
236
236
  */
237
237
  accountId?: number;
238
+ /**
239
+ * @description Arbitrary metadata passed through to the farm queue
240
+ * @example {
241
+ * "campaignId": "abc-123",
242
+ * "step": 2
243
+ * }
244
+ */
245
+ metadata?: {
246
+ [key: string]: unknown;
247
+ };
238
248
  };
239
249
  ISendMessage: {
240
250
  /**
@@ -271,6 +281,16 @@ interface components {
271
281
  * }
272
282
  */
273
283
  followUpMessage?: components["schemas"]["IFollowUpMessage"];
284
+ /**
285
+ * @description Arbitrary metadata passed through to the farm queue
286
+ * @example {
287
+ * "campaignId": "abc-123",
288
+ * "source": "crm"
289
+ * }
290
+ */
291
+ metadata?: {
292
+ [key: string]: unknown;
293
+ };
274
294
  };
275
295
  IDeleteMessage: {
276
296
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skravets/eapi",
3
- "version": "0.0.54",
3
+ "version": "0.0.56",
4
4
  "module": "./dist/index.js",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",