zaileys 1.1.40-tx.2 → 1.1.40-tx.4
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/index.d.mts +255 -0
- package/dist/index.d.ts +222 -248
- package/dist/index.js +29 -15
- package/dist/index.mjs +39 -0
- package/package.json +3 -5
- package/tsconfig.json +18 -0
- package/tsup.config.ts +40 -0
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,261 +1,248 @@
|
|
|
1
|
-
import { AuthenticationState } from
|
|
2
|
-
import z
|
|
1
|
+
import { AuthenticationState } from 'baileys';
|
|
2
|
+
import z, { z as z$1 } from 'zod';
|
|
3
3
|
|
|
4
|
-
//#region src/Auth/state.d.ts
|
|
5
4
|
declare const useAuthState: (folder: string) => Promise<{
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
state: AuthenticationState;
|
|
6
|
+
saveCreds: () => Promise<void>;
|
|
8
7
|
}>;
|
|
9
|
-
//#endregion
|
|
10
|
-
//#region src/Types/calls.d.ts
|
|
11
|
-
declare const ListenerCallsType: z$1.ZodObject<{
|
|
12
|
-
callId: z$1.ZodString;
|
|
13
|
-
roomId: z$1.ZodString;
|
|
14
|
-
callerId: z$1.ZodString;
|
|
15
|
-
date: z$1.ZodDate;
|
|
16
|
-
offline: z$1.ZodBoolean;
|
|
17
|
-
status: z$1.ZodEnum<{
|
|
18
|
-
accept: "accept";
|
|
19
|
-
offer: "offer";
|
|
20
|
-
reject: "reject";
|
|
21
|
-
ringing: "ringing";
|
|
22
|
-
terminate: "terminate";
|
|
23
|
-
timeout: "timeout";
|
|
24
|
-
}>;
|
|
25
|
-
isVideo: z$1.ZodBoolean;
|
|
26
|
-
isGroup: z$1.ZodBoolean;
|
|
27
|
-
}, z$1.core.$strip>;
|
|
28
|
-
//#endregion
|
|
29
|
-
//#region src/Types/connection.d.ts
|
|
30
|
-
declare const ListenerConnectionType: z$1.ZodObject<{
|
|
31
|
-
status: z$1.ZodEnum<{
|
|
32
|
-
connecting: "connecting";
|
|
33
|
-
open: "open";
|
|
34
|
-
close: "close";
|
|
35
|
-
reload: "reload";
|
|
36
|
-
syncing: "syncing";
|
|
37
|
-
}>;
|
|
38
|
-
authType: z$1.ZodEnum<{
|
|
39
|
-
pairing: "pairing";
|
|
40
|
-
qr: "qr";
|
|
41
|
-
}>;
|
|
42
|
-
authTimeout: z$1.ZodOptional<z$1.ZodNumber>;
|
|
43
|
-
syncProgress: z$1.ZodOptional<z$1.ZodNumber>;
|
|
44
|
-
syncCompleted: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
45
|
-
qr: z$1.ZodOptional<z$1.ZodString>;
|
|
46
|
-
code: z$1.ZodOptional<z$1.ZodString>;
|
|
47
|
-
}, z$1.core.$strip>;
|
|
48
|
-
//#endregion
|
|
49
|
-
//#region src/Types/messages.d.ts
|
|
50
8
|
|
|
51
|
-
declare const
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
9
|
+
declare const ListenerCallsType: z.ZodObject<{
|
|
10
|
+
callId: z.ZodString;
|
|
11
|
+
roomId: z.ZodString;
|
|
12
|
+
callerId: z.ZodString;
|
|
13
|
+
date: z.ZodDate;
|
|
14
|
+
offline: z.ZodBoolean;
|
|
15
|
+
status: z.ZodEnum<{
|
|
16
|
+
accept: "accept";
|
|
17
|
+
offer: "offer";
|
|
18
|
+
reject: "reject";
|
|
19
|
+
ringing: "ringing";
|
|
20
|
+
terminate: "terminate";
|
|
21
|
+
timeout: "timeout";
|
|
22
|
+
}>;
|
|
23
|
+
isVideo: z.ZodBoolean;
|
|
24
|
+
isGroup: z.ZodBoolean;
|
|
25
|
+
}, z.core.$strip>;
|
|
26
|
+
|
|
27
|
+
declare const ListenerConnectionType: z.ZodObject<{
|
|
28
|
+
status: z.ZodEnum<{
|
|
29
|
+
connecting: "connecting";
|
|
30
|
+
open: "open";
|
|
31
|
+
close: "close";
|
|
32
|
+
reload: "reload";
|
|
33
|
+
syncing: "syncing";
|
|
34
|
+
}>;
|
|
35
|
+
authType: z.ZodEnum<{
|
|
36
|
+
pairing: "pairing";
|
|
37
|
+
qr: "qr";
|
|
38
|
+
}>;
|
|
39
|
+
authTimeout: z.ZodOptional<z.ZodNumber>;
|
|
40
|
+
syncProgress: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
syncCompleted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
42
|
+
qr: z.ZodOptional<z.ZodString>;
|
|
43
|
+
code: z.ZodOptional<z.ZodString>;
|
|
44
|
+
}, z.core.$strip>;
|
|
45
|
+
|
|
46
|
+
declare const ListenerMessagesType: z.ZodObject<{
|
|
47
|
+
channelId: z.ZodString;
|
|
48
|
+
uniqueId: z.ZodString;
|
|
49
|
+
chatId: z.ZodString;
|
|
50
|
+
chatAddress: z.ZodEnum<{
|
|
51
|
+
pn: "pn";
|
|
52
|
+
lid: "lid";
|
|
53
|
+
}>;
|
|
54
|
+
chatType: z.ZodEnum<{
|
|
55
|
+
text: "text";
|
|
56
|
+
image: "image";
|
|
57
|
+
contact: "contact";
|
|
58
|
+
location: "location";
|
|
59
|
+
document: "document";
|
|
60
|
+
audio: "audio";
|
|
61
|
+
video: "video";
|
|
62
|
+
protocol: "protocol";
|
|
63
|
+
contacts: "contacts";
|
|
64
|
+
highlyStructured: "highlyStructured";
|
|
65
|
+
sendPayment: "sendPayment";
|
|
66
|
+
requestPayment: "requestPayment";
|
|
67
|
+
declinePaymentRequest: "declinePaymentRequest";
|
|
68
|
+
cancelPaymentRequest: "cancelPaymentRequest";
|
|
69
|
+
template: "template";
|
|
70
|
+
sticker: "sticker";
|
|
71
|
+
groupInvite: "groupInvite";
|
|
72
|
+
product: "product";
|
|
73
|
+
deviceSent: "deviceSent";
|
|
74
|
+
list: "list";
|
|
75
|
+
viewOnce: "viewOnce";
|
|
76
|
+
order: "order";
|
|
77
|
+
ephemeral: "ephemeral";
|
|
78
|
+
invoice: "invoice";
|
|
79
|
+
buttons: "buttons";
|
|
80
|
+
paymentInvite: "paymentInvite";
|
|
81
|
+
interactive: "interactive";
|
|
82
|
+
reaction: "reaction";
|
|
83
|
+
interactiveResponse: "interactiveResponse";
|
|
84
|
+
pollCreation: "pollCreation";
|
|
85
|
+
pollUpdate: "pollUpdate";
|
|
86
|
+
keepInChat: "keepInChat";
|
|
87
|
+
requestPhoneNumber: "requestPhoneNumber";
|
|
88
|
+
scheduledCallCreation: "scheduledCallCreation";
|
|
89
|
+
groupMentioned: "groupMentioned";
|
|
90
|
+
pinInChat: "pinInChat";
|
|
91
|
+
scheduledCallEdit: "scheduledCallEdit";
|
|
92
|
+
ptv: "ptv";
|
|
93
|
+
botInvoke: "botInvoke";
|
|
94
|
+
callLog: "callLog";
|
|
95
|
+
encComment: "encComment";
|
|
96
|
+
bcall: "bcall";
|
|
97
|
+
lottieSticker: "lottieSticker";
|
|
98
|
+
event: "event";
|
|
99
|
+
comment: "comment";
|
|
100
|
+
placeholder: "placeholder";
|
|
101
|
+
encEventUpdate: "encEventUpdate";
|
|
102
|
+
}>;
|
|
103
|
+
receiverId: z.ZodString;
|
|
104
|
+
receiverName: z.ZodString;
|
|
105
|
+
roomId: z.ZodString;
|
|
106
|
+
roomName: z.ZodString;
|
|
107
|
+
senderLid: z.ZodString;
|
|
108
|
+
senderId: z.ZodString;
|
|
109
|
+
senderName: z.ZodString;
|
|
110
|
+
senderDevice: z.ZodEnum<{
|
|
111
|
+
unknown: "unknown";
|
|
112
|
+
android: "android";
|
|
113
|
+
ios: "ios";
|
|
114
|
+
desktop: "desktop";
|
|
115
|
+
web: "web";
|
|
116
|
+
}>;
|
|
117
|
+
timestamp: z.ZodNumber;
|
|
118
|
+
text: z.ZodNullable<z.ZodString>;
|
|
119
|
+
mentions: z.ZodArray<z.ZodString>;
|
|
120
|
+
links: z.ZodArray<z.ZodString>;
|
|
121
|
+
isPrefix: z.ZodBoolean;
|
|
122
|
+
isSpam: z.ZodBoolean;
|
|
123
|
+
isFromMe: z.ZodBoolean;
|
|
124
|
+
isTagMe: z.ZodBoolean;
|
|
125
|
+
isGroup: z.ZodBoolean;
|
|
126
|
+
isNewsletter: z.ZodBoolean;
|
|
127
|
+
isStory: z.ZodBoolean;
|
|
128
|
+
isViewOnce: z.ZodBoolean;
|
|
129
|
+
isEdited: z.ZodBoolean;
|
|
130
|
+
isDeleted: z.ZodBoolean;
|
|
131
|
+
isPinned: z.ZodBoolean;
|
|
132
|
+
isUnPinned: z.ZodBoolean;
|
|
133
|
+
isBroadcast: z.ZodBoolean;
|
|
134
|
+
isEphemeral: z.ZodBoolean;
|
|
135
|
+
isForwarded: z.ZodBoolean;
|
|
136
|
+
citation: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
137
|
+
media: z.ZodNullable<z.ZodObject<{
|
|
138
|
+
buffer: z.ZodFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>;
|
|
139
|
+
stream: z.ZodFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>;
|
|
140
|
+
}, z.core.$loose>>;
|
|
141
|
+
message: z.ZodFunction<z.ZodTuple<readonly [], null>, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
142
|
+
replied: z.ZodNullable<z.ZodObject</*elided*/ any, z.core.$strip>>;
|
|
143
|
+
}, z.core.$strip>;
|
|
144
|
+
|
|
145
|
+
declare const ClientOptionsType: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
146
|
+
authType: z$1.ZodLiteral<"pairing">;
|
|
147
|
+
phoneNumber: z$1.ZodNumber;
|
|
148
|
+
session: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodString>>;
|
|
149
|
+
prefix: z$1.ZodOptional<z$1.ZodString>;
|
|
150
|
+
ignoreMe: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
151
|
+
showLogs: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
152
|
+
syncFullHistory: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
153
|
+
autoMentions: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
154
|
+
autoOnline: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
155
|
+
autoRead: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
156
|
+
autoPresence: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
157
|
+
autoRejectCall: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
158
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
159
|
+
authType: z$1.ZodLiteral<"qr">;
|
|
160
|
+
session: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodString>>;
|
|
161
|
+
prefix: z$1.ZodOptional<z$1.ZodString>;
|
|
162
|
+
ignoreMe: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
163
|
+
showLogs: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
164
|
+
syncFullHistory: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
165
|
+
autoMentions: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
166
|
+
autoOnline: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
167
|
+
autoRead: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
168
|
+
autoPresence: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
169
|
+
autoRejectCall: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodBoolean>>;
|
|
170
|
+
}, z$1.core.$strip>]>;
|
|
171
|
+
declare const EventEnumType: z$1.ZodEnum<{
|
|
172
|
+
connection: "connection";
|
|
173
|
+
messages: "messages";
|
|
174
|
+
calls: "calls";
|
|
181
175
|
}>;
|
|
182
176
|
type EventCallbackType = {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
177
|
+
connection: (ctx: z$1.infer<typeof ListenerConnectionType>) => void;
|
|
178
|
+
messages: (ctx: z$1.infer<typeof ListenerMessagesType>) => void;
|
|
179
|
+
calls: (ctx: z$1.infer<typeof ListenerCallsType>) => void;
|
|
186
180
|
};
|
|
187
|
-
|
|
188
|
-
//#region src/Types/middleware.d.ts
|
|
181
|
+
|
|
189
182
|
type MiddlewareContextType = {
|
|
190
|
-
|
|
191
|
-
|
|
183
|
+
messages?: Partial<z.infer<typeof ListenerMessagesType>>;
|
|
184
|
+
calls?: Partial<z.infer<typeof ListenerCallsType>>;
|
|
192
185
|
};
|
|
193
|
-
|
|
194
|
-
//#region src/Classes/middleware.d.ts
|
|
186
|
+
|
|
195
187
|
type MiddlewareNext = () => Promise<void> | void;
|
|
196
188
|
type MiddlewareHandler<T> = (ctx: MiddlewareContextType, next: MiddlewareNext) => Promise<void> | void;
|
|
197
189
|
declare class Middleware<T> {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
190
|
+
private stack;
|
|
191
|
+
use(handler: MiddlewareHandler<T>): this;
|
|
192
|
+
run(ctx: MiddlewareContextType): Promise<void>;
|
|
201
193
|
}
|
|
202
|
-
|
|
203
|
-
//#region src/Classes/client.d.ts
|
|
194
|
+
|
|
204
195
|
declare class Client {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
196
|
+
options: z.infer<typeof ClientOptionsType>;
|
|
197
|
+
middleware: Middleware<any>;
|
|
198
|
+
constructor(options: z.infer<typeof ClientOptionsType>);
|
|
199
|
+
initialize(): Promise<void>;
|
|
200
|
+
db(path: string): Lowdb;
|
|
201
|
+
on<T extends z.infer<typeof EventEnumType>>(event: T, handler: EventCallbackType[T]): void;
|
|
202
|
+
use<T>(handler: MiddlewareHandler<T>): this;
|
|
212
203
|
}
|
|
213
|
-
|
|
214
|
-
//#region src/Auth/creds.d.ts
|
|
204
|
+
|
|
215
205
|
declare const registerAuthCreds: (client: Client) => Promise<void>;
|
|
216
|
-
|
|
217
|
-
//#region src/Modules/lowdb.d.ts
|
|
206
|
+
|
|
218
207
|
type FlushMode = 'manual' | 'sync' | 'debounce';
|
|
219
208
|
declare class Lowdb {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
209
|
+
private data;
|
|
210
|
+
private path;
|
|
211
|
+
private pool;
|
|
212
|
+
private size;
|
|
213
|
+
private chunkDir;
|
|
214
|
+
private replacer;
|
|
215
|
+
private reviver;
|
|
216
|
+
private loaded;
|
|
217
|
+
private flushMode;
|
|
218
|
+
private debounceMs;
|
|
219
|
+
private flushTimer;
|
|
220
|
+
private dirty;
|
|
221
|
+
constructor(path: string, bufferJSON?: any, size?: number, flushMode?: FlushMode, debounceMs?: number);
|
|
222
|
+
private ensureLoaded;
|
|
223
|
+
private scheduleFlush;
|
|
224
|
+
read(): Promise<Map<string, any>>;
|
|
225
|
+
write(): Promise<void>;
|
|
226
|
+
set<T>(key: string, value: T): Promise<void>;
|
|
227
|
+
push<T>(key: string, value: T): Promise<void>;
|
|
228
|
+
get<T>(key: string): Promise<any>;
|
|
229
|
+
delete(key: string): Promise<boolean>;
|
|
230
|
+
private saveChunk;
|
|
231
|
+
private loadChunk;
|
|
232
|
+
private delChunk;
|
|
233
|
+
private isMeta;
|
|
245
234
|
}
|
|
246
235
|
declare const createLowdb: (path: string, options?: {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
236
|
+
BufferJSON?: any;
|
|
237
|
+
size?: number;
|
|
238
|
+
flushMode?: FlushMode;
|
|
239
|
+
debounceMs?: number;
|
|
251
240
|
}) => Lowdb;
|
|
252
|
-
|
|
253
|
-
//#region src/Utils/validate.d.ts
|
|
241
|
+
|
|
254
242
|
declare const getLatestLibVersion: () => Promise<any>;
|
|
255
243
|
declare const removeAuthCreds: (session: string) => Promise<void>;
|
|
256
244
|
declare const normalizeText: (text?: string) => string;
|
|
257
|
-
|
|
258
|
-
//#region src/Utils/helper.d.ts
|
|
245
|
+
|
|
259
246
|
declare const ignoreLint: (data: any) => any;
|
|
260
247
|
declare const toJson: (object: unknown) => any;
|
|
261
248
|
declare const toString: (object: unknown) => any;
|
|
@@ -264,18 +251,5 @@ declare const findGlobalWord: (text?: string, word?: string) => any;
|
|
|
264
251
|
declare const extractUrls: (text?: string) => any;
|
|
265
252
|
declare const randomize: (arr: string[]) => string;
|
|
266
253
|
declare const pickKeysFromArray: (arr: any[], keys: string[]) => any;
|
|
267
|
-
//#endregion
|
|
268
|
-
export { Client, Lowdb, createLowdb, extractUrls, findGlobalWord, getLatestLibVersion, ignoreLint, normalizeText, pickKeysFromArray, randomize, registerAuthCreds, removeAuthCreds, shuffleString, toJson, toString, useAuthState };
|
|
269
|
-
|
|
270
|
-
/*
|
|
271
|
-
* Copyright (c) 2025 Zeative Media.
|
|
272
|
-
* All rights reserved.
|
|
273
|
-
* Licensed under the MIT License.
|
|
274
|
-
* See LICENSE file for details.
|
|
275
254
|
|
|
276
|
-
|
|
277
|
-
* Last build time: 12/5/2025 9:14:24 AM
|
|
278
|
-
*
|
|
279
|
-
* Repository: git+https://github.com/zeative/zaileys.git
|
|
280
|
-
*/
|
|
281
|
-
//# sourceMappingURL=index.d.ts.map
|
|
255
|
+
export { Client, Lowdb, createLowdb, extractUrls, findGlobalWord, getLatestLibVersion, ignoreLint, normalizeText, pickKeysFromArray, randomize, registerAuthCreds, removeAuthCreds, shuffleString, toJson, toString, useAuthState };
|