@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.
- package/dist/api-types.d.cts +11 -1
- package/dist/api-types.d.ts +11 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -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-
|
|
191
|
+
* @example 2025-11-20T12:03:00.734Z
|
|
182
192
|
*/
|
|
183
193
|
message_created_at: string;
|
|
184
194
|
/** @example 123 */
|
package/dist/api-types.d.ts
CHANGED
|
@@ -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-
|
|
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
package/dist/index.d.ts
CHANGED