@skravets/eapi 0.0.64 → 0.0.65
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 +9 -1
- package/dist/api-types.d.ts +9 -1
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -163,7 +163,7 @@ interface components {
|
|
|
163
163
|
channel_id: number;
|
|
164
164
|
/**
|
|
165
165
|
* Format: date-time
|
|
166
|
-
* @example 2026-03-
|
|
166
|
+
* @example 2026-03-31T13:19:04.274Z
|
|
167
167
|
*/
|
|
168
168
|
message_created_at: string;
|
|
169
169
|
/** @example 123 */
|
|
@@ -394,6 +394,8 @@ interface components {
|
|
|
394
394
|
keywords?: string[];
|
|
395
395
|
/** @description Maximum spam ratio (inclusive). Chats with null spam_ratio are always included when this filter is set. */
|
|
396
396
|
maxSpamRatio?: number;
|
|
397
|
+
/** @description Minimum average messages per day (inclusive). Chats with null avg are always included when this filter is set. */
|
|
398
|
+
minAvgMessagesPerDay?: number;
|
|
397
399
|
};
|
|
398
400
|
CatalogSearchRequest: {
|
|
399
401
|
/** @description Search query text */
|
|
@@ -2079,6 +2081,12 @@ interface operations {
|
|
|
2079
2081
|
[name: string]: unknown;
|
|
2080
2082
|
};
|
|
2081
2083
|
};
|
|
2084
|
+
/** @description Task with provided externalId (UUID) not found */
|
|
2085
|
+
404: {
|
|
2086
|
+
headers: {
|
|
2087
|
+
[name: string]: unknown;
|
|
2088
|
+
};
|
|
2089
|
+
};
|
|
2082
2090
|
/** @description Farm processor not running */
|
|
2083
2091
|
503: {
|
|
2084
2092
|
headers: {
|
package/dist/api-types.d.ts
CHANGED
|
@@ -163,7 +163,7 @@ interface components {
|
|
|
163
163
|
channel_id: number;
|
|
164
164
|
/**
|
|
165
165
|
* Format: date-time
|
|
166
|
-
* @example 2026-03-
|
|
166
|
+
* @example 2026-03-31T13:19:04.274Z
|
|
167
167
|
*/
|
|
168
168
|
message_created_at: string;
|
|
169
169
|
/** @example 123 */
|
|
@@ -394,6 +394,8 @@ interface components {
|
|
|
394
394
|
keywords?: string[];
|
|
395
395
|
/** @description Maximum spam ratio (inclusive). Chats with null spam_ratio are always included when this filter is set. */
|
|
396
396
|
maxSpamRatio?: number;
|
|
397
|
+
/** @description Minimum average messages per day (inclusive). Chats with null avg are always included when this filter is set. */
|
|
398
|
+
minAvgMessagesPerDay?: number;
|
|
397
399
|
};
|
|
398
400
|
CatalogSearchRequest: {
|
|
399
401
|
/** @description Search query text */
|
|
@@ -2079,6 +2081,12 @@ interface operations {
|
|
|
2079
2081
|
[name: string]: unknown;
|
|
2080
2082
|
};
|
|
2081
2083
|
};
|
|
2084
|
+
/** @description Task with provided externalId (UUID) not found */
|
|
2085
|
+
404: {
|
|
2086
|
+
headers: {
|
|
2087
|
+
[name: string]: unknown;
|
|
2088
|
+
};
|
|
2089
|
+
};
|
|
2082
2090
|
/** @description Farm processor not running */
|
|
2083
2091
|
503: {
|
|
2084
2092
|
headers: {
|