@skravets/eapi 0.0.13 → 0.0.14
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 +8 -2
- package/dist/api-types.d.ts +8 -2
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
|
@@ -65,7 +65,7 @@ interface components {
|
|
|
65
65
|
channel_id: number;
|
|
66
66
|
/**
|
|
67
67
|
* Format: date-time
|
|
68
|
-
* @example 2025-
|
|
68
|
+
* @example 2025-09-02T10:14:42.472Z
|
|
69
69
|
*/
|
|
70
70
|
message_created_at: string;
|
|
71
71
|
/** @example 123 */
|
|
@@ -124,13 +124,19 @@ interface components {
|
|
|
124
124
|
* @example 123
|
|
125
125
|
*/
|
|
126
126
|
replyToId?: number;
|
|
127
|
+
/**
|
|
128
|
+
* @description Thread id to reply to
|
|
129
|
+
* @example 123
|
|
130
|
+
*/
|
|
131
|
+
replyToThreadId?: number;
|
|
127
132
|
};
|
|
128
133
|
ISendMessage: {
|
|
129
134
|
/**
|
|
130
135
|
* @description Message to send
|
|
131
136
|
* @example {
|
|
132
137
|
* "text": "Hello, world!",
|
|
133
|
-
* "replyToId":
|
|
138
|
+
* "replyToId": 124,
|
|
139
|
+
* "replyToThreadId": 123
|
|
134
140
|
* }
|
|
135
141
|
*/
|
|
136
142
|
message: components["schemas"]["ISendMessageMessage"];
|
package/dist/api-types.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ interface components {
|
|
|
65
65
|
channel_id: number;
|
|
66
66
|
/**
|
|
67
67
|
* Format: date-time
|
|
68
|
-
* @example 2025-
|
|
68
|
+
* @example 2025-09-02T10:14:42.472Z
|
|
69
69
|
*/
|
|
70
70
|
message_created_at: string;
|
|
71
71
|
/** @example 123 */
|
|
@@ -124,13 +124,19 @@ interface components {
|
|
|
124
124
|
* @example 123
|
|
125
125
|
*/
|
|
126
126
|
replyToId?: number;
|
|
127
|
+
/**
|
|
128
|
+
* @description Thread id to reply to
|
|
129
|
+
* @example 123
|
|
130
|
+
*/
|
|
131
|
+
replyToThreadId?: number;
|
|
127
132
|
};
|
|
128
133
|
ISendMessage: {
|
|
129
134
|
/**
|
|
130
135
|
* @description Message to send
|
|
131
136
|
* @example {
|
|
132
137
|
* "text": "Hello, world!",
|
|
133
|
-
* "replyToId":
|
|
138
|
+
* "replyToId": 124,
|
|
139
|
+
* "replyToThreadId": 123
|
|
134
140
|
* }
|
|
135
141
|
*/
|
|
136
142
|
message: components["schemas"]["ISendMessageMessage"];
|
package/dist/index.d.cts
CHANGED
|
@@ -44,9 +44,13 @@ interface MessageStored {
|
|
|
44
44
|
username: string;
|
|
45
45
|
first_name: string;
|
|
46
46
|
last_name: string;
|
|
47
|
-
reply_message_id: number;
|
|
47
|
+
reply_message_id: number | null;
|
|
48
48
|
has_reactions: number;
|
|
49
49
|
has_comments: number;
|
|
50
|
+
is_pinned: boolean;
|
|
51
|
+
is_post: boolean;
|
|
52
|
+
is_forward: boolean;
|
|
53
|
+
thread_id: number | null;
|
|
50
54
|
}
|
|
51
55
|
interface PublishersStatusQueueInputChatParsed {
|
|
52
56
|
chat: ChatStored;
|
package/dist/index.d.ts
CHANGED
|
@@ -44,9 +44,13 @@ interface MessageStored {
|
|
|
44
44
|
username: string;
|
|
45
45
|
first_name: string;
|
|
46
46
|
last_name: string;
|
|
47
|
-
reply_message_id: number;
|
|
47
|
+
reply_message_id: number | null;
|
|
48
48
|
has_reactions: number;
|
|
49
49
|
has_comments: number;
|
|
50
|
+
is_pinned: boolean;
|
|
51
|
+
is_post: boolean;
|
|
52
|
+
is_forward: boolean;
|
|
53
|
+
thread_id: number | null;
|
|
50
54
|
}
|
|
51
55
|
interface PublishersStatusQueueInputChatParsed {
|
|
52
56
|
chat: ChatStored;
|