@skravets/eapi 0.0.31 → 0.0.32

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.
@@ -100,6 +100,11 @@ interface components {
100
100
  * @example 2024-12-31
101
101
  */
102
102
  toDate?: string;
103
+ /**
104
+ * @description Maximum number of messages to return
105
+ * @example 1000
106
+ */
107
+ limit?: number;
103
108
  };
104
109
  GetMessagesContextDto: {
105
110
  /**
@@ -164,6 +169,11 @@ interface components {
164
169
  * @example 2024-12-31
165
170
  */
166
171
  toDate?: string;
172
+ /**
173
+ * @description Maximum number of messages to return
174
+ * @example 1000
175
+ */
176
+ limit?: number;
167
177
  /**
168
178
  * @description Webhook URL to send results to
169
179
  * @example https://your-app.com/webhooks/messages-search
@@ -178,7 +188,7 @@ interface components {
178
188
  channel_id: number;
179
189
  /**
180
190
  * Format: date-time
181
- * @example 2025-11-20T11:29:31.257Z
191
+ * @example 2025-11-20T12:03:00.734Z
182
192
  */
183
193
  message_created_at: string;
184
194
  /** @example 123 */
@@ -100,6 +100,11 @@ interface components {
100
100
  * @example 2024-12-31
101
101
  */
102
102
  toDate?: string;
103
+ /**
104
+ * @description Maximum number of messages to return
105
+ * @example 1000
106
+ */
107
+ limit?: number;
103
108
  };
104
109
  GetMessagesContextDto: {
105
110
  /**
@@ -164,6 +169,11 @@ interface components {
164
169
  * @example 2024-12-31
165
170
  */
166
171
  toDate?: string;
172
+ /**
173
+ * @description Maximum number of messages to return
174
+ * @example 1000
175
+ */
176
+ limit?: number;
167
177
  /**
168
178
  * @description Webhook URL to send results to
169
179
  * @example https://your-app.com/webhooks/messages-search
@@ -178,7 +188,7 @@ interface components {
178
188
  channel_id: number;
179
189
  /**
180
190
  * Format: date-time
181
- * @example 2025-11-20T11:29:31.257Z
191
+ * @example 2025-11-20T12:03:00.734Z
182
192
  */
183
193
  message_created_at: string;
184
194
  /** @example 123 */
package/dist/index.d.cts CHANGED
@@ -225,6 +225,7 @@ interface MessageSearchQuery {
225
225
  days?: number;
226
226
  fromDate?: string;
227
227
  toDate?: string;
228
+ limit?: number;
228
229
  }
229
230
  interface PublishersStatusQueueInputClickHouseMessagesResult {
230
231
  metadata?: Metadata;
package/dist/index.d.ts CHANGED
@@ -225,6 +225,7 @@ interface MessageSearchQuery {
225
225
  days?: number;
226
226
  fromDate?: string;
227
227
  toDate?: string;
228
+ limit?: number;
228
229
  }
229
230
  interface PublishersStatusQueueInputClickHouseMessagesResult {
230
231
  metadata?: Metadata;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skravets/eapi",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "module": "./dist/index.js",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",