@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.
- package/dist/api-types.d.cts +21 -1
- package/dist/api-types.d.ts +21 -1
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -113,7 +113,7 @@ interface components {
|
|
|
113
113
|
channel_id: number;
|
|
114
114
|
/**
|
|
115
115
|
* Format: date-time
|
|
116
|
-
* @example 2026-02-
|
|
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/dist/api-types.d.ts
CHANGED
|
@@ -113,7 +113,7 @@ interface components {
|
|
|
113
113
|
channel_id: number;
|
|
114
114
|
/**
|
|
115
115
|
* Format: date-time
|
|
116
|
-
* @example 2026-02-
|
|
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
|
/**
|