@skravets/eapi 0.0.59 → 0.0.60
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 +11 -1
- package/dist/api-types.d.ts +11 -1
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -129,7 +129,7 @@ interface components {
|
|
|
129
129
|
channel_id: number;
|
|
130
130
|
/**
|
|
131
131
|
* Format: date-time
|
|
132
|
-
* @example 2026-03-
|
|
132
|
+
* @example 2026-03-05T00:27:23.407Z
|
|
133
133
|
*/
|
|
134
134
|
message_created_at: string;
|
|
135
135
|
/** @example 123 */
|
|
@@ -307,6 +307,16 @@ interface components {
|
|
|
307
307
|
metadata?: {
|
|
308
308
|
[key: string]: unknown;
|
|
309
309
|
};
|
|
310
|
+
/**
|
|
311
|
+
* @description Template variables for {{placeholder}} substitution in message text. Fallback: empty string.
|
|
312
|
+
* @example {
|
|
313
|
+
* "name": "John",
|
|
314
|
+
* "promo": "SALE20"
|
|
315
|
+
* }
|
|
316
|
+
*/
|
|
317
|
+
variables?: {
|
|
318
|
+
[key: string]: string | undefined;
|
|
319
|
+
};
|
|
310
320
|
};
|
|
311
321
|
IDeleteMessage: {
|
|
312
322
|
/**
|
package/dist/api-types.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ interface components {
|
|
|
129
129
|
channel_id: number;
|
|
130
130
|
/**
|
|
131
131
|
* Format: date-time
|
|
132
|
-
* @example 2026-03-
|
|
132
|
+
* @example 2026-03-05T00:27:23.407Z
|
|
133
133
|
*/
|
|
134
134
|
message_created_at: string;
|
|
135
135
|
/** @example 123 */
|
|
@@ -307,6 +307,16 @@ interface components {
|
|
|
307
307
|
metadata?: {
|
|
308
308
|
[key: string]: unknown;
|
|
309
309
|
};
|
|
310
|
+
/**
|
|
311
|
+
* @description Template variables for {{placeholder}} substitution in message text. Fallback: empty string.
|
|
312
|
+
* @example {
|
|
313
|
+
* "name": "John",
|
|
314
|
+
* "promo": "SALE20"
|
|
315
|
+
* }
|
|
316
|
+
*/
|
|
317
|
+
variables?: {
|
|
318
|
+
[key: string]: string | undefined;
|
|
319
|
+
};
|
|
310
320
|
};
|
|
311
321
|
IDeleteMessage: {
|
|
312
322
|
/**
|