@skravets/eapi 0.0.21 → 0.0.23
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/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -129,7 +129,7 @@ interface components {
|
|
|
129
129
|
channel_id: number;
|
|
130
130
|
/**
|
|
131
131
|
* Format: date-time
|
|
132
|
-
* @example 2025-10-
|
|
132
|
+
* @example 2025-10-22T18:13:48.155Z
|
|
133
133
|
*/
|
|
134
134
|
message_created_at: string;
|
|
135
135
|
/** @example 123 */
|
|
@@ -164,6 +164,16 @@ interface components {
|
|
|
164
164
|
* }
|
|
165
165
|
*/
|
|
166
166
|
cursor?: components["schemas"]["ICursor"];
|
|
167
|
+
/**
|
|
168
|
+
* @description Year to get messages from
|
|
169
|
+
* @example 2025
|
|
170
|
+
*/
|
|
171
|
+
year?: number;
|
|
172
|
+
/**
|
|
173
|
+
* @description Month to get messages from
|
|
174
|
+
* @example 1
|
|
175
|
+
*/
|
|
176
|
+
month?: number;
|
|
167
177
|
};
|
|
168
178
|
IJoin: {
|
|
169
179
|
/**
|
package/dist/api-types.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ interface components {
|
|
|
129
129
|
channel_id: number;
|
|
130
130
|
/**
|
|
131
131
|
* Format: date-time
|
|
132
|
-
* @example 2025-10-
|
|
132
|
+
* @example 2025-10-22T18:13:48.155Z
|
|
133
133
|
*/
|
|
134
134
|
message_created_at: string;
|
|
135
135
|
/** @example 123 */
|
|
@@ -164,6 +164,16 @@ interface components {
|
|
|
164
164
|
* }
|
|
165
165
|
*/
|
|
166
166
|
cursor?: components["schemas"]["ICursor"];
|
|
167
|
+
/**
|
|
168
|
+
* @description Year to get messages from
|
|
169
|
+
* @example 2025
|
|
170
|
+
*/
|
|
171
|
+
year?: number;
|
|
172
|
+
/**
|
|
173
|
+
* @description Month to get messages from
|
|
174
|
+
* @example 1
|
|
175
|
+
*/
|
|
176
|
+
month?: number;
|
|
167
177
|
};
|
|
168
178
|
IJoin: {
|
|
169
179
|
/**
|