@skravets/eapi 0.0.50 → 0.0.52
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 +5 -3
- package/dist/api-types.d.ts +5 -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-12T14:14:25.828Z
|
|
117
117
|
*/
|
|
118
118
|
message_created_at: string;
|
|
119
119
|
/** @example 123 */
|
|
@@ -130,6 +130,8 @@ interface components {
|
|
|
130
130
|
language: null | string;
|
|
131
131
|
/** @example false */
|
|
132
132
|
is_probably_spam: boolean;
|
|
133
|
+
/** @example 0 */
|
|
134
|
+
spam_rating: number;
|
|
133
135
|
};
|
|
134
136
|
ICursor: {
|
|
135
137
|
/**
|
|
@@ -208,10 +210,10 @@ interface components {
|
|
|
208
210
|
*/
|
|
209
211
|
secondsToTyping?: number;
|
|
210
212
|
/**
|
|
211
|
-
* @description Account id
|
|
213
|
+
* @description Account id (optional, will pick best account if not provided)
|
|
212
214
|
* @example 1
|
|
213
215
|
*/
|
|
214
|
-
accountId
|
|
216
|
+
accountId?: number;
|
|
215
217
|
/**
|
|
216
218
|
* @description Webhook url POST
|
|
217
219
|
* @example https://webhook.site/123e4567-e89b-12d3-a456-426614174000
|
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-12T14:14:25.828Z
|
|
117
117
|
*/
|
|
118
118
|
message_created_at: string;
|
|
119
119
|
/** @example 123 */
|
|
@@ -130,6 +130,8 @@ interface components {
|
|
|
130
130
|
language: null | string;
|
|
131
131
|
/** @example false */
|
|
132
132
|
is_probably_spam: boolean;
|
|
133
|
+
/** @example 0 */
|
|
134
|
+
spam_rating: number;
|
|
133
135
|
};
|
|
134
136
|
ICursor: {
|
|
135
137
|
/**
|
|
@@ -208,10 +210,10 @@ interface components {
|
|
|
208
210
|
*/
|
|
209
211
|
secondsToTyping?: number;
|
|
210
212
|
/**
|
|
211
|
-
* @description Account id
|
|
213
|
+
* @description Account id (optional, will pick best account if not provided)
|
|
212
214
|
* @example 1
|
|
213
215
|
*/
|
|
214
|
-
accountId
|
|
216
|
+
accountId?: number;
|
|
215
217
|
/**
|
|
216
218
|
* @description Webhook url POST
|
|
217
219
|
* @example https://webhook.site/123e4567-e89b-12d3-a456-426614174000
|