@skravets/eapi 0.0.63 → 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 +14 -1
- package/dist/api-types.d.ts +14 -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 */
|
|
@@ -356,6 +356,11 @@ interface components {
|
|
|
356
356
|
* @example false
|
|
357
357
|
*/
|
|
358
358
|
skipChatCooldown?: boolean;
|
|
359
|
+
/**
|
|
360
|
+
* @description Account pool ID. Only accounts from this pool can execute the task.
|
|
361
|
+
* @example 1
|
|
362
|
+
*/
|
|
363
|
+
poolId?: number;
|
|
359
364
|
};
|
|
360
365
|
IDeleteMessage: {
|
|
361
366
|
/**
|
|
@@ -389,6 +394,8 @@ interface components {
|
|
|
389
394
|
keywords?: string[];
|
|
390
395
|
/** @description Maximum spam ratio (inclusive). Chats with null spam_ratio are always included when this filter is set. */
|
|
391
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;
|
|
392
399
|
};
|
|
393
400
|
CatalogSearchRequest: {
|
|
394
401
|
/** @description Search query text */
|
|
@@ -2074,6 +2081,12 @@ interface operations {
|
|
|
2074
2081
|
[name: string]: unknown;
|
|
2075
2082
|
};
|
|
2076
2083
|
};
|
|
2084
|
+
/** @description Task with provided externalId (UUID) not found */
|
|
2085
|
+
404: {
|
|
2086
|
+
headers: {
|
|
2087
|
+
[name: string]: unknown;
|
|
2088
|
+
};
|
|
2089
|
+
};
|
|
2077
2090
|
/** @description Farm processor not running */
|
|
2078
2091
|
503: {
|
|
2079
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 */
|
|
@@ -356,6 +356,11 @@ interface components {
|
|
|
356
356
|
* @example false
|
|
357
357
|
*/
|
|
358
358
|
skipChatCooldown?: boolean;
|
|
359
|
+
/**
|
|
360
|
+
* @description Account pool ID. Only accounts from this pool can execute the task.
|
|
361
|
+
* @example 1
|
|
362
|
+
*/
|
|
363
|
+
poolId?: number;
|
|
359
364
|
};
|
|
360
365
|
IDeleteMessage: {
|
|
361
366
|
/**
|
|
@@ -389,6 +394,8 @@ interface components {
|
|
|
389
394
|
keywords?: string[];
|
|
390
395
|
/** @description Maximum spam ratio (inclusive). Chats with null spam_ratio are always included when this filter is set. */
|
|
391
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;
|
|
392
399
|
};
|
|
393
400
|
CatalogSearchRequest: {
|
|
394
401
|
/** @description Search query text */
|
|
@@ -2074,6 +2081,12 @@ interface operations {
|
|
|
2074
2081
|
[name: string]: unknown;
|
|
2075
2082
|
};
|
|
2076
2083
|
};
|
|
2084
|
+
/** @description Task with provided externalId (UUID) not found */
|
|
2085
|
+
404: {
|
|
2086
|
+
headers: {
|
|
2087
|
+
[name: string]: unknown;
|
|
2088
|
+
};
|
|
2089
|
+
};
|
|
2077
2090
|
/** @description Farm processor not running */
|
|
2078
2091
|
503: {
|
|
2079
2092
|
headers: {
|