@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.
- package/dist/api-types.d.cts +7 -3
- package/dist/api-types.d.ts +7 -3
- 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 */
|
|
@@ -242,7 +242,9 @@ interface components {
|
|
|
242
242
|
* "step": 2
|
|
243
243
|
* }
|
|
244
244
|
*/
|
|
245
|
-
metadata?:
|
|
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?:
|
|
291
|
+
metadata?: {
|
|
292
|
+
[key: string]: unknown;
|
|
293
|
+
};
|
|
290
294
|
};
|
|
291
295
|
IDeleteMessage: {
|
|
292
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 */
|
|
@@ -242,7 +242,9 @@ interface components {
|
|
|
242
242
|
* "step": 2
|
|
243
243
|
* }
|
|
244
244
|
*/
|
|
245
|
-
metadata?:
|
|
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?:
|
|
291
|
+
metadata?: {
|
|
292
|
+
[key: string]: unknown;
|
|
293
|
+
};
|
|
290
294
|
};
|
|
291
295
|
IDeleteMessage: {
|
|
292
296
|
/**
|