@skravets/eapi 0.0.65 → 0.0.66
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 +21 -4
- package/dist/api-types.d.ts +21 -4
- 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
|
@@ -163,7 +163,7 @@ interface components {
|
|
|
163
163
|
channel_id: number;
|
|
164
164
|
/**
|
|
165
165
|
* Format: date-time
|
|
166
|
-
* @example 2026-
|
|
166
|
+
* @example 2026-04-07T01:34:06.332Z
|
|
167
167
|
*/
|
|
168
168
|
message_created_at: string;
|
|
169
169
|
/** @example 123 */
|
|
@@ -1083,7 +1083,12 @@ interface components {
|
|
|
1083
1083
|
* @description Chat username without @
|
|
1084
1084
|
* @example somechat
|
|
1085
1085
|
*/
|
|
1086
|
-
chatUsername: string;
|
|
1086
|
+
chatUsername: null | string;
|
|
1087
|
+
/**
|
|
1088
|
+
* @description Invite hash for private chats
|
|
1089
|
+
* @example AbCd1234
|
|
1090
|
+
*/
|
|
1091
|
+
inviteHash?: null | string;
|
|
1087
1092
|
/**
|
|
1088
1093
|
* @description Desired number of healthy accounts in chat
|
|
1089
1094
|
* @example 3
|
|
@@ -1125,7 +1130,12 @@ interface components {
|
|
|
1125
1130
|
* @description Chat username without @
|
|
1126
1131
|
* @example somechat
|
|
1127
1132
|
*/
|
|
1128
|
-
chatUsername
|
|
1133
|
+
chatUsername?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* @description Invite hash for private chats (t.me/+HASH)
|
|
1136
|
+
* @example AbCd1234
|
|
1137
|
+
*/
|
|
1138
|
+
inviteHash?: string;
|
|
1129
1139
|
/**
|
|
1130
1140
|
* @description Desired healthy account count (>= 1)
|
|
1131
1141
|
* @default 1
|
|
@@ -1137,6 +1147,7 @@ interface components {
|
|
|
1137
1147
|
* @example 1
|
|
1138
1148
|
*/
|
|
1139
1149
|
poolId?: null | number;
|
|
1150
|
+
_chatIdentifierCheck?: Record<string, never>;
|
|
1140
1151
|
};
|
|
1141
1152
|
SyncPresenceChatsDto: {
|
|
1142
1153
|
/** @description Desired list of presence chats (replaces all existing) */
|
|
@@ -1166,7 +1177,12 @@ interface components {
|
|
|
1166
1177
|
* @description Chat username without @
|
|
1167
1178
|
* @example somechat
|
|
1168
1179
|
*/
|
|
1169
|
-
chatUsername
|
|
1180
|
+
chatUsername?: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* @description Invite hash for private chats (t.me/+HASH)
|
|
1183
|
+
* @example AbCd1234
|
|
1184
|
+
*/
|
|
1185
|
+
inviteHash?: string;
|
|
1170
1186
|
/**
|
|
1171
1187
|
* @description Desired healthy account count (>= 1)
|
|
1172
1188
|
* @default 1
|
|
@@ -1178,6 +1194,7 @@ interface components {
|
|
|
1178
1194
|
* @example 1
|
|
1179
1195
|
*/
|
|
1180
1196
|
poolId?: null | number;
|
|
1197
|
+
_chatIdentifierCheck?: Record<string, never>;
|
|
1181
1198
|
};
|
|
1182
1199
|
UpdatePresenceChatDto: {
|
|
1183
1200
|
/**
|
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-
|
|
166
|
+
* @example 2026-04-07T01:34:06.332Z
|
|
167
167
|
*/
|
|
168
168
|
message_created_at: string;
|
|
169
169
|
/** @example 123 */
|
|
@@ -1083,7 +1083,12 @@ interface components {
|
|
|
1083
1083
|
* @description Chat username without @
|
|
1084
1084
|
* @example somechat
|
|
1085
1085
|
*/
|
|
1086
|
-
chatUsername: string;
|
|
1086
|
+
chatUsername: null | string;
|
|
1087
|
+
/**
|
|
1088
|
+
* @description Invite hash for private chats
|
|
1089
|
+
* @example AbCd1234
|
|
1090
|
+
*/
|
|
1091
|
+
inviteHash?: null | string;
|
|
1087
1092
|
/**
|
|
1088
1093
|
* @description Desired number of healthy accounts in chat
|
|
1089
1094
|
* @example 3
|
|
@@ -1125,7 +1130,12 @@ interface components {
|
|
|
1125
1130
|
* @description Chat username without @
|
|
1126
1131
|
* @example somechat
|
|
1127
1132
|
*/
|
|
1128
|
-
chatUsername
|
|
1133
|
+
chatUsername?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* @description Invite hash for private chats (t.me/+HASH)
|
|
1136
|
+
* @example AbCd1234
|
|
1137
|
+
*/
|
|
1138
|
+
inviteHash?: string;
|
|
1129
1139
|
/**
|
|
1130
1140
|
* @description Desired healthy account count (>= 1)
|
|
1131
1141
|
* @default 1
|
|
@@ -1137,6 +1147,7 @@ interface components {
|
|
|
1137
1147
|
* @example 1
|
|
1138
1148
|
*/
|
|
1139
1149
|
poolId?: null | number;
|
|
1150
|
+
_chatIdentifierCheck?: Record<string, never>;
|
|
1140
1151
|
};
|
|
1141
1152
|
SyncPresenceChatsDto: {
|
|
1142
1153
|
/** @description Desired list of presence chats (replaces all existing) */
|
|
@@ -1166,7 +1177,12 @@ interface components {
|
|
|
1166
1177
|
* @description Chat username without @
|
|
1167
1178
|
* @example somechat
|
|
1168
1179
|
*/
|
|
1169
|
-
chatUsername
|
|
1180
|
+
chatUsername?: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* @description Invite hash for private chats (t.me/+HASH)
|
|
1183
|
+
* @example AbCd1234
|
|
1184
|
+
*/
|
|
1185
|
+
inviteHash?: string;
|
|
1170
1186
|
/**
|
|
1171
1187
|
* @description Desired healthy account count (>= 1)
|
|
1172
1188
|
* @default 1
|
|
@@ -1178,6 +1194,7 @@ interface components {
|
|
|
1178
1194
|
* @example 1
|
|
1179
1195
|
*/
|
|
1180
1196
|
poolId?: null | number;
|
|
1197
|
+
_chatIdentifierCheck?: Record<string, never>;
|
|
1181
1198
|
};
|
|
1182
1199
|
UpdatePresenceChatDto: {
|
|
1183
1200
|
/**
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED