@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.
@@ -163,7 +163,7 @@ interface components {
163
163
  channel_id: number;
164
164
  /**
165
165
  * Format: date-time
166
- * @example 2026-03-31T13:19:04.274Z
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: string;
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: string;
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
  /**
@@ -163,7 +163,7 @@ interface components {
163
163
  channel_id: number;
164
164
  /**
165
165
  * Format: date-time
166
- * @example 2026-03-31T13:19:04.274Z
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: string;
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: string;
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
@@ -139,6 +139,7 @@ interface PublishersStatusQueueInputMessagesParsed {
139
139
  id: number;
140
140
  type?: "group" | "channel" | undefined;
141
141
  username: string;
142
+ inviteHash?: string | null;
142
143
  title?: string;
143
144
  about?: string;
144
145
  participantsCount?: number;
package/dist/index.d.ts CHANGED
@@ -139,6 +139,7 @@ interface PublishersStatusQueueInputMessagesParsed {
139
139
  id: number;
140
140
  type?: "group" | "channel" | undefined;
141
141
  username: string;
142
+ inviteHash?: string | null;
142
143
  title?: string;
143
144
  about?: string;
144
145
  participantsCount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skravets/eapi",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "module": "./dist/index.js",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",