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.ts CHANGED
@@ -1,261 +1,248 @@
1
- import { AuthenticationState } from "baileys";
2
- import z$1, { z } from "zod";
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
- state: AuthenticationState;
7
- saveCreds: () => Promise<void>;
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 ListenerMessagesType: z$1.ZodObject<{
52
- channelId: z$1.ZodString;
53
- uniqueId: z$1.ZodString;
54
- chatId: z$1.ZodString;
55
- chatAddress: z$1.ZodEnum<{
56
- pn: "pn";
57
- lid: "lid";
58
- }>;
59
- chatType: z$1.ZodEnum<{
60
- text: "text";
61
- image: "image";
62
- contact: "contact";
63
- location: "location";
64
- document: "document";
65
- audio: "audio";
66
- video: "video";
67
- protocol: "protocol";
68
- contacts: "contacts";
69
- highlyStructured: "highlyStructured";
70
- sendPayment: "sendPayment";
71
- requestPayment: "requestPayment";
72
- declinePaymentRequest: "declinePaymentRequest";
73
- cancelPaymentRequest: "cancelPaymentRequest";
74
- template: "template";
75
- sticker: "sticker";
76
- groupInvite: "groupInvite";
77
- product: "product";
78
- deviceSent: "deviceSent";
79
- list: "list";
80
- viewOnce: "viewOnce";
81
- order: "order";
82
- ephemeral: "ephemeral";
83
- invoice: "invoice";
84
- buttons: "buttons";
85
- paymentInvite: "paymentInvite";
86
- interactive: "interactive";
87
- reaction: "reaction";
88
- interactiveResponse: "interactiveResponse";
89
- pollCreation: "pollCreation";
90
- pollUpdate: "pollUpdate";
91
- keepInChat: "keepInChat";
92
- requestPhoneNumber: "requestPhoneNumber";
93
- scheduledCallCreation: "scheduledCallCreation";
94
- groupMentioned: "groupMentioned";
95
- pinInChat: "pinInChat";
96
- scheduledCallEdit: "scheduledCallEdit";
97
- ptv: "ptv";
98
- botInvoke: "botInvoke";
99
- callLog: "callLog";
100
- encComment: "encComment";
101
- bcall: "bcall";
102
- lottieSticker: "lottieSticker";
103
- event: "event";
104
- comment: "comment";
105
- placeholder: "placeholder";
106
- encEventUpdate: "encEventUpdate";
107
- }>;
108
- receiverId: z$1.ZodString;
109
- receiverName: z$1.ZodString;
110
- roomId: z$1.ZodString;
111
- roomName: z$1.ZodString;
112
- senderLid: z$1.ZodString;
113
- senderId: z$1.ZodString;
114
- senderName: z$1.ZodString;
115
- senderDevice: z$1.ZodEnum<{
116
- unknown: "unknown";
117
- android: "android";
118
- ios: "ios";
119
- desktop: "desktop";
120
- web: "web";
121
- }>;
122
- timestamp: z$1.ZodNumber;
123
- text: z$1.ZodNullable<z$1.ZodString>;
124
- mentions: z$1.ZodArray<z$1.ZodString>;
125
- links: z$1.ZodArray<z$1.ZodString>;
126
- isPrefix: z$1.ZodBoolean;
127
- isSpam: z$1.ZodBoolean;
128
- isFromMe: z$1.ZodBoolean;
129
- isTagMe: z$1.ZodBoolean;
130
- isGroup: z$1.ZodBoolean;
131
- isNewsletter: z$1.ZodBoolean;
132
- isStory: z$1.ZodBoolean;
133
- isViewOnce: z$1.ZodBoolean;
134
- isEdited: z$1.ZodBoolean;
135
- isDeleted: z$1.ZodBoolean;
136
- isPinned: z$1.ZodBoolean;
137
- isUnPinned: z$1.ZodBoolean;
138
- isBroadcast: z$1.ZodBoolean;
139
- isEphemeral: z$1.ZodBoolean;
140
- isForwarded: z$1.ZodBoolean;
141
- citation: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodBoolean>>;
142
- media: z$1.ZodNullable<z$1.ZodObject<{
143
- buffer: z$1.ZodFunction<z$1.core.$ZodFunctionArgs, z$1.core.$ZodFunctionOut>;
144
- stream: z$1.ZodFunction<z$1.core.$ZodFunctionArgs, z$1.core.$ZodFunctionOut>;
145
- }, z$1.core.$loose>>;
146
- message: z$1.ZodFunction<z$1.ZodTuple<readonly [], null>, z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
147
- replied: z$1.ZodNullable<z$1.ZodObject< /*elided*/any, z$1.core.$strip>>;
148
- }, z$1.core.$strip>;
149
- //#endregion
150
- //#region src/Types/client.d.ts
151
- declare const ClientOptionsType: z.ZodUnion<readonly [z.ZodObject<{
152
- authType: z.ZodLiteral<"pairing">;
153
- phoneNumber: z.ZodNumber;
154
- session: z.ZodOptional<z.ZodDefault<z.ZodString>>;
155
- prefix: z.ZodOptional<z.ZodString>;
156
- ignoreMe: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
157
- showLogs: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
158
- syncFullHistory: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
159
- autoMentions: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
160
- autoOnline: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
161
- autoRead: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
162
- autoPresence: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
163
- autoRejectCall: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
164
- }, z.core.$strip>, z.ZodObject<{
165
- authType: z.ZodLiteral<"qr">;
166
- session: z.ZodOptional<z.ZodDefault<z.ZodString>>;
167
- prefix: z.ZodOptional<z.ZodString>;
168
- ignoreMe: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
169
- showLogs: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
170
- syncFullHistory: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
171
- autoMentions: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
172
- autoOnline: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
173
- autoRead: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
174
- autoPresence: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
175
- autoRejectCall: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
176
- }, z.core.$strip>]>;
177
- declare const EventEnumType: z.ZodEnum<{
178
- connection: "connection";
179
- messages: "messages";
180
- calls: "calls";
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
- connection: (ctx: z.infer<typeof ListenerConnectionType>) => void;
184
- messages: (ctx: z.infer<typeof ListenerMessagesType>) => void;
185
- calls: (ctx: z.infer<typeof ListenerCallsType>) => void;
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
- //#endregion
188
- //#region src/Types/middleware.d.ts
181
+
189
182
  type MiddlewareContextType = {
190
- messages?: Partial<z$1.infer<typeof ListenerMessagesType>>;
191
- calls?: Partial<z$1.infer<typeof ListenerCallsType>>;
183
+ messages?: Partial<z.infer<typeof ListenerMessagesType>>;
184
+ calls?: Partial<z.infer<typeof ListenerCallsType>>;
192
185
  };
193
- //#endregion
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
- private stack;
199
- use(handler: MiddlewareHandler<T>): this;
200
- run(ctx: MiddlewareContextType): Promise<void>;
190
+ private stack;
191
+ use(handler: MiddlewareHandler<T>): this;
192
+ run(ctx: MiddlewareContextType): Promise<void>;
201
193
  }
202
- //#endregion
203
- //#region src/Classes/client.d.ts
194
+
204
195
  declare class Client {
205
- options: z$1.infer<typeof ClientOptionsType>;
206
- middleware: Middleware<any>;
207
- constructor(options: z$1.infer<typeof ClientOptionsType>);
208
- initialize(): Promise<void>;
209
- db(path: string): Lowdb;
210
- on<T extends z$1.infer<typeof EventEnumType>>(event: T, handler: EventCallbackType[T]): void;
211
- use<T>(handler: MiddlewareHandler<T>): this;
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
- //#endregion
214
- //#region src/Auth/creds.d.ts
204
+
215
205
  declare const registerAuthCreds: (client: Client) => Promise<void>;
216
- //#endregion
217
- //#region src/Modules/lowdb.d.ts
206
+
218
207
  type FlushMode = 'manual' | 'sync' | 'debounce';
219
208
  declare class Lowdb {
220
- private data;
221
- private path;
222
- private pool;
223
- private size;
224
- private chunkDir;
225
- private replacer;
226
- private reviver;
227
- private loaded;
228
- private flushMode;
229
- private debounceMs;
230
- private flushTimer;
231
- private dirty;
232
- constructor(path: string, bufferJSON?: any, size?: number, flushMode?: FlushMode, debounceMs?: number);
233
- private ensureLoaded;
234
- private scheduleFlush;
235
- read(): Promise<Map<string, any>>;
236
- write(): Promise<void>;
237
- set<T>(key: string, value: T): Promise<void>;
238
- push<T>(key: string, value: T): Promise<void>;
239
- get<T>(key: string): Promise<any>;
240
- delete(key: string): Promise<boolean>;
241
- private saveChunk;
242
- private loadChunk;
243
- private delChunk;
244
- private isMeta;
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
- BufferJSON?: any;
248
- size?: number;
249
- flushMode?: FlushMode;
250
- debounceMs?: number;
236
+ BufferJSON?: any;
237
+ size?: number;
238
+ flushMode?: FlushMode;
239
+ debounceMs?: number;
251
240
  }) => Lowdb;
252
- //#endregion
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
- //#endregion
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
- * Author: zaadevofc
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 };