@wppconnect/wa-js 3.20.0 → 3.22.0

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/dist/call/functions/enableCallInterface.d.ts +19 -0
  3. package/dist/call/functions/index.d.ts +1 -0
  4. package/dist/chat/events/eventTypes.d.ts +11 -0
  5. package/dist/chat/events/index.d.ts +3 -2
  6. package/dist/chat/events/registerNewChat.d.ts +16 -0
  7. package/dist/{whatsapp/misc/UsernameGatingUtils.d.ts → conn/functions/getMyUserLid.d.ts} +9 -9
  8. package/dist/conn/functions/index.d.ts +2 -0
  9. package/dist/contact/functions/index.d.ts +1 -0
  10. package/dist/contact/functions/reportContact.d.ts +62 -0
  11. package/dist/index.d.ts +1 -0
  12. package/dist/indexdb/functions/getMessagesFromRowId.d.ts +55 -0
  13. package/dist/indexdb/functions/index.d.ts +16 -0
  14. package/dist/indexdb/index.d.ts +16 -0
  15. package/dist/newsletter/functions/follow.d.ts +27 -0
  16. package/dist/newsletter/functions/index.d.ts +3 -0
  17. package/dist/newsletter/functions/search.d.ts +64 -0
  18. package/dist/newsletter/functions/unfollow.d.ts +27 -0
  19. package/dist/util/index.d.ts +1 -0
  20. package/dist/util/toArrayBuffer.d.ts +21 -0
  21. package/dist/whatsapp/enums/CHANNEL_EVENT_SURFACE.d.ts +27 -0
  22. package/dist/whatsapp/enums/index.d.ts +1 -0
  23. package/dist/whatsapp/functions/index.d.ts +11 -0
  24. package/dist/whatsapp/functions/mexFetchNewsletterDirectorySearchResults.d.ts +24 -0
  25. package/dist/whatsapp/functions/mexJoinNewsletter.d.ts +19 -0
  26. package/dist/whatsapp/functions/mexLeaveNewsletter.d.ts +19 -0
  27. package/dist/whatsapp/functions/msgFindByDirection.d.ts +38 -0
  28. package/dist/whatsapp/functions/msgFindCallLog.d.ts +26 -0
  29. package/dist/whatsapp/functions/msgFindEvents.d.ts +27 -0
  30. package/dist/whatsapp/functions/msgFindMedia.d.ts +34 -0
  31. package/dist/whatsapp/functions/msgFindQuery.d.ts +12 -1
  32. package/dist/whatsapp/functions/msgFindSearch.d.ts +33 -0
  33. package/dist/whatsapp/functions/msgFindStarred.d.ts +27 -0
  34. package/dist/whatsapp/functions/reportSpam.d.ts +34 -0
  35. package/dist/whatsapp/functions/toggleNewsletterAdminActivityMuteStateAction.d.ts +22 -0
  36. package/dist/whatsapp/misc/LruMediaStore.d.ts +24 -0
  37. package/dist/whatsapp/misc/MediaPrep.d.ts +28 -16
  38. package/dist/whatsapp/misc/index.d.ts +1 -1
  39. package/dist/whatsapp/stores.d.ts +67 -56
  40. package/dist/wppconnect-wa.js +1 -1
  41. package/dist/wppconnect-wa.js.LICENSE.txt +1 -1
  42. package/eslint.config.mjs +1 -0
  43. package/package.json +18 -17
@@ -0,0 +1,26 @@
1
+ /*!
2
+ * Copyright 2021 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { MsgKey } from '..';
17
+ import { ModelPropertiesContructor, MsgModel } from '../models';
18
+ export interface MsgFindCallLogParams {
19
+ count: number;
20
+ anchor?: MsgKey;
21
+ }
22
+ /**
23
+ * Find call log messages
24
+ * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1034162388
25
+ */
26
+ export declare function msgFindCallLog(params: MsgFindCallLogParams): Promise<ModelPropertiesContructor<MsgModel>[]>;
@@ -0,0 +1,27 @@
1
+ /*!
2
+ * Copyright 2021 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { MsgKey, Wid } from '..';
17
+ import { ModelPropertiesContructor, MsgModel } from '../models';
18
+ export interface MsgFindEventsParams {
19
+ count: number;
20
+ chat?: Wid;
21
+ anchor?: MsgKey;
22
+ }
23
+ /**
24
+ * Find event messages
25
+ * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1034162388
26
+ */
27
+ export declare function msgFindEvents(params: MsgFindEventsParams): Promise<ModelPropertiesContructor<MsgModel>[]>;
@@ -0,0 +1,34 @@
1
+ /*!
2
+ * Copyright 2021 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { MsgKey } from '..';
17
+ import { ModelPropertiesContructor, MsgModel } from '../models';
18
+ export interface MsgFindMediaParams {
19
+ anchor?: MsgKey;
20
+ count: number;
21
+ mediaType?: 'url' | 'document' | 'allMedia' | 'allLinks' | 'allDocs';
22
+ direction?: 'before' | 'after';
23
+ chat: any;
24
+ }
25
+ /**
26
+ * Find media messages (images, videos, documents, links)
27
+ * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1034162388
28
+ */
29
+ export declare function msgFindMedia(params: MsgFindMediaParams): Promise<ModelPropertiesContructor<MsgModel>[] | {
30
+ messages: ModelPropertiesContructor<MsgModel>[];
31
+ docCount?: number;
32
+ linkCount?: number;
33
+ mediaCount?: number;
34
+ }>;
@@ -25,6 +25,17 @@ export interface MsgFindQueryParams {
25
25
  media?: 'url' | 'document';
26
26
  }
27
27
  /**
28
- * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1029x
28
+ * Find messages using the legacy API
29
+ *
30
+ * @deprecated Since WhatsApp version 2.3000.1034162388
31
+ * Use the new dedicated functions instead:
32
+ * - {@link msgFindByDirection} for 'before' and 'after' queries
33
+ * - {@link msgFindMedia} for 'media' queries
34
+ * - {@link msgFindStarred} for 'star' queries
35
+ * - {@link msgFindCallLog} for 'call_log' queries
36
+ * - {@link msgFindEvents} for 'event' queries
37
+ * - {@link msgFindSearch} for 'search' queries
38
+ *
39
+ * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1029x, < 2.3000.1034162388
29
40
  */
30
41
  export declare function msgFindQuery(type: 'after' | 'before' | 'call_log' | 'event' | 'media' | 'search' | 'star', params: MsgFindQueryParams): Promise<ModelPropertiesContructor<MsgModel>[] | any>;
@@ -0,0 +1,33 @@
1
+ /*!
2
+ * Copyright 2021 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { MsgKey, Wid } from '..';
17
+ import { ModelPropertiesContructor, MsgModel } from '../models';
18
+ export interface MsgFindSearchParams {
19
+ searchTerm: string;
20
+ page?: number;
21
+ count: number;
22
+ remote?: Wid;
23
+ anchor?: MsgKey;
24
+ }
25
+ /**
26
+ * Search for messages with a search term
27
+ * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1034162388
28
+ */
29
+ export declare function msgFindSearch(params: MsgFindSearchParams): Promise<{
30
+ messages: ModelPropertiesContructor<MsgModel>[];
31
+ eof: boolean;
32
+ canceled: boolean;
33
+ }>;
@@ -0,0 +1,27 @@
1
+ /*!
2
+ * Copyright 2021 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { MsgKey, Wid } from '..';
17
+ import { ModelPropertiesContructor, MsgModel } from '../models';
18
+ export interface MsgFindStarredParams {
19
+ count: number;
20
+ chat?: Wid;
21
+ anchor?: MsgKey;
22
+ }
23
+ /**
24
+ * Find starred messages
25
+ * @whatsapp WAWebDBMessageFindLocal >= 2.3000.1034162388
26
+ */
27
+ export declare function msgFindStarred(params: MsgFindStarredParams): Promise<ModelPropertiesContructor<MsgModel>[]>;
@@ -0,0 +1,34 @@
1
+ /*!
2
+ * Copyright 2026 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { ChatModel, MsgModel } from '../models';
17
+ export interface ReportSpamResponse {
18
+ reportIdMixin?: {
19
+ reportId: string;
20
+ };
21
+ errorCode?: number;
22
+ errorText?: string;
23
+ }
24
+ /**
25
+ * Report spam to WhatsApp
26
+ *
27
+ * @param chat - Chat or contact to report
28
+ * @param spamFlow - Optional spam flow type (default: 'ChatInfoReport')
29
+ * @param msg - Optional specific message to report
30
+ * @returns Promise with report response
31
+ *
32
+ * @whatsapp WAWebReportSpamJob
33
+ */
34
+ export declare function reportSpam(chat: ChatModel, spamFlow?: string, msg?: MsgModel): Promise<ReportSpamResponse>;
@@ -0,0 +1,22 @@
1
+ /*!
2
+ * Copyright 2026 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { Wid } from '../misc';
17
+ /**
18
+ * @whatsapp WAWebNewsletterToggleAdminActivityMuteStateAction >= 2.3000.1032373751
19
+ */
20
+ export declare const toggleNewsletterAdminActivityMuteStateAction: ((newsletterId: Wid, muteExpirationValue: number, options: {
21
+ eventSurface?: number;
22
+ }) => Promise<void>) | undefined;
@@ -0,0 +1,24 @@
1
+ /*!
2
+ * Copyright 2026 WPPConnect Team
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ export declare interface LruMediaStore {
17
+ get(key: string): Promise<ArrayBuffer | Uint8Array | null>;
18
+ put(key: string, value: ArrayBuffer | Uint8Array): Promise<void>;
19
+ del(key: string): Promise<void>;
20
+ clear(): Promise<void>;
21
+ count(): Promise<number>;
22
+ has(key: string): Promise<boolean>;
23
+ }
24
+ export declare const LruMediaStore: LruMediaStore;
@@ -13,10 +13,28 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { ChatModel, MediaDataModel, ModelPropertiesContructor, MsgModel } from '..';
16
+ import { ChatModel, MediaDataModel, ModelPropertiesContructor, MsgModel, OpaqueData } from '..';
17
17
  import { OUTWARD_TYPES } from '../enums';
18
18
  import { SendMsgResultObject } from '../types';
19
- import { OpaqueData } from '.';
19
+ export type SendToChatProps = {
20
+ chat: ChatModel;
21
+ earlyUpload?: Promise<any>;
22
+ options?: {
23
+ caption?: string;
24
+ footer?: string;
25
+ quotedMsg?: MsgModel;
26
+ productMsgOptions?: ModelPropertiesContructor<MsgModel>;
27
+ type?: null | string;
28
+ mentionedJidList?: any;
29
+ isForwarded?: boolean;
30
+ forwardingScore?: any;
31
+ multicast?: any;
32
+ forwardedFromWeb?: boolean;
33
+ ctwaContext?: any;
34
+ isViewOnce?: boolean;
35
+ addEvenWhilePreparing?: boolean;
36
+ };
37
+ };
20
38
  /** @whatsapp 78986
21
39
  * @whatsapp 778986 >= 2.2222.8
22
40
  */
@@ -31,20 +49,14 @@ export declare namespace MediaPrep {
31
49
  }): MediaPrep;
32
50
  class MediaPrep {
33
51
  constructor(type: OUTWARD_TYPES, p: any);
34
- sendToChat(e: ChatModel, options: {
35
- caption?: string;
36
- footer?: string;
37
- quotedMsg?: MsgModel;
38
- productMsgOptions?: ModelPropertiesContructor<MsgModel>;
39
- type?: null | string;
40
- mentionedJidList?: any;
41
- isForwarded?: boolean;
42
- forwardingScore?: any;
43
- multicast?: any;
44
- forwardedFromWeb?: boolean;
45
- ctwaContext?: any;
46
- isViewOnce?: boolean;
47
- }): Promise<SendMsgResultObject>;
52
+ sendToChat(params: SendToChatProps): Promise<SendMsgResultObject>;
53
+ /**
54
+ * @deprecated Use sendToChat(params: SendToChatProps) instead
55
+ *
56
+ * @param chat
57
+ * @param params
58
+ */
59
+ sendToChat(chat: ChatModel, params: Omit<SendToChatProps, 'chat'>): Promise<SendMsgResultObject>;
48
60
  waitForPrep(): Promise<MediaDataModel>;
49
61
  }
50
62
  }
@@ -27,6 +27,7 @@ export * from './ImageUtils';
27
27
  export * from './IsOfficialClient';
28
28
  export * from './Lid1X1MigrationUtils';
29
29
  export * from './LidPnCache';
30
+ export * from './LruMediaStore';
30
31
  export * from './MediaBlobCache';
31
32
  export * from './MediaEntry';
32
33
  export * from './MediaGatingUtils';
@@ -43,7 +44,6 @@ export * from './ServerProps';
43
44
  export * from './ServerPropsConstants';
44
45
  export * from './Socket';
45
46
  export * from './Stream';
46
- export * from './UsernameGatingUtils';
47
47
  export * from './UserPrefs';
48
48
  export * from './UserPrefsGeneral';
49
49
  export * from './USyncQuery';
@@ -14,119 +14,130 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import * as collections from './collections';
17
- /** @whatsapp 32826
18
- * @whatsapp 132826 >= 2.2222.8
17
+ /**
18
+ * @whatsapp WAWebBlocklistCollection >= 2.3000.1032534684
19
19
  */
20
20
  export declare const BlocklistStore: collections.BlocklistCollection;
21
- /** @whatsapp 3754
22
- * @whatsapp 203754 >= 2.2222.8
21
+ /**
22
+ * @whatsapp WAWebBusinessCategoriesResultCollection >= 2.3000.1032534684
23
23
  */
24
24
  export declare const BusinessCategoriesResultStore: collections.BusinessCategoriesResultCollection;
25
- /** @whatsapp 93581
26
- * @whatsapp 493581 >= 2.2222.8
25
+ /**
26
+ * @whatsapp WAWebBusinessProfileCollection >= 2.3000.1032534684
27
27
  */
28
28
  export declare const BusinessProfileStore: collections.BusinessProfileCollection;
29
29
  /** @whatsapp WAWebBotProfileCollection
30
30
  */
31
31
  export declare const BotProfileStore: collections.BotProfileCollection;
32
- /** @whatsapp 60868
33
- * @whatsapp 31218 >= 2.2204.13
34
- * @whatsapp 160868 >= 2.2222.8
32
+ /**
33
+ * @whatsapp WAWebCallCollection >= 2.3000.1032534684
35
34
  */
36
35
  export declare const CallStore: collections.CallCollection;
37
- /** @whatsapp 12392
38
- * @whatsapp 612392 >= 2.2222.8
36
+ /**
37
+ * @whatsapp WAWebCartCollection >= 2.3000.1032534684
39
38
  */
40
39
  export declare const CartStore: collections.CartCollection;
41
- /** @whatsapp 99989
42
- * @whatsapp 599989 >= 2.2222.8
40
+ /**
41
+ * @whatsapp WAWebCatalogCollection >= 2.3000.1032534684
43
42
  */
44
43
  export declare const CatalogStore: collections.CatalogCollection;
45
- /** @whatsapp 69951
46
- * @whatsapp 669951 >= 2.2222.8
44
+ /**
45
+ * @whatsapp WAWebChatCollection >= 2.3000.1032534684
47
46
  */
48
47
  export declare const ChatStore: collections.ChatCollection;
49
- /** @whatsapp 19380
50
- * @whatsapp 719380 >= 2.2222.8
48
+ /**
49
+ * @whatsapp WAWebNewsletterCollection >= 2.3000.1032534684
51
50
  */
52
51
  export declare const NewsletterStore: collections.ChatCollection;
53
- /** @whatsapp 19380
54
- * @whatsapp 719380 >= 2.2222.8
52
+ /**
53
+ * @whatsapp WAWebContactCollection >= 2.3000.1032534684
55
54
  */
56
55
  export declare const ContactStore: collections.ContactCollection;
57
- /** @whatsapp 13185
58
- * @whatsapp 513185 >= 2.2222.8
56
+ /**
57
+ * @whatsapp WAWebEmojiVariantCollection >= 2.3000.1032534684
59
58
  */
60
59
  export declare const EmojiVariantStore: collections.EmojiVariantCollection;
61
- /** @whatsapp 63928
62
- * @whatsapp 963928 >= 2.2222.8
60
+ /**
61
+ * @whatsapp WAWebGroupMetadataCollection >= 2.3000.1032534684
63
62
  */
64
63
  export declare const GroupMetadataStore: collections.GroupMetadataCollection;
65
- /** @whatsapp 16770
66
- * @whatsapp 316770 >= 2.2222.8
64
+ /**
65
+ * @whatsapp WAWebLabelCollection >= 2.3000.1032534684
67
66
  */
68
67
  export declare const LabelStore: collections.LabelCollection;
69
- /** @whatsapp 59871
70
- * @whatsapp 559871 >= 2.2222.8
68
+ /**
69
+ * @whatsapp WAWebMsgCollection >= 2.3000.1032534684
71
70
  */
72
71
  export declare const MsgStore: collections.MsgCollection;
73
- /** @whatsapp 17972
74
- * @whatsapp 617972 >= 2.2222.8
72
+ /**
73
+ * @whatsapp WAWebMsgInfoCollection >= 2.3000.1032534684
75
74
  */
76
75
  export declare const MsgInfoStore: collections.MsgInfoCollection;
77
- /** @whatsapp 72472 */
76
+ /**
77
+ * @whatsapp WAWebMuteCollection >= 2.3000.1032534684
78
+ */
78
79
  export declare const MuteStore: collections.MuteCollection;
79
- /** @whatsapp 84312
80
- * @whatsapp 584312 >= 2.2222.8
80
+ /**
81
+ * @whatsapp WAWebOrderCollection >= 2.3000.1032534684
81
82
  */
82
83
  export declare const OrderStore: collections.OrderCollection;
83
- /** @whatsapp 68315
84
- * @whatsapp 868315 >= 2.2222.8
84
+ /**
85
+ * @whatsapp WAWebPresenceCollection >= 2.3000.1032534684
85
86
  */
86
87
  export declare const PresenceStore: collections.PresenceCollection;
87
- /** @whatsapp 18952 */
88
+ /**
89
+ * @whatsapp WAWebProductMessageListCollection >= 2.3000.1032534684
90
+ */
88
91
  export declare const ProductMessageListStore: collections.ProductMessageListCollection;
89
- /** @whatsapp 82039
90
- * @whatsapp 582039 >= 2.2222.8
92
+ /**
93
+ * @whatsapp WAWebProfilePicThumbCollection >= 2.3000.1032534684
91
94
  */
92
95
  export declare const ProfilePicThumbStore: collections.ProfilePicThumbCollection;
93
- /** @whatsapp 99662
94
- * @whatsapp 999662 >= 2.2222.8
96
+ /**
97
+ * @whatsapp WAWebQuickReplyCollection >= 2.3000.1032534684
95
98
  */
96
99
  export declare const QuickReplyStore: collections.QuickReplyCollection;
97
- /** @whatsapp 57162
98
- * @whatsapp 257162 >= 2.2222.8
100
+ /**
101
+ * @whatsapp WAWebReactionsCollection >= 2.3000.1032534684
99
102
  */
100
103
  export declare const ReactionsStore: collections.ReactionsCollection;
101
- /** @whatsapp 92671
102
- * @whatsapp 492671 >= 2.2222.8
104
+ /**
105
+ * @whatsapp WAWebRecentEmojiCollection >= 2.3000.1032534684
103
106
  */
104
107
  export declare const RecentEmojiStore: collections.RecentEmojiCollection;
105
- /** @whatsapp 49264
106
- * @whatsapp 191692 >= 2.2222.8
108
+ /**
109
+ * @whatsapp WAWebRecentStickerCollection >= 2.3000.1032534684
107
110
  */
108
111
  export declare const RecentStickerStore: collections.RecentStickerCollection;
109
- /** @whatsapp 19011
110
- * @whatsapp 719011 >= 2.2222.8
112
+ /**
113
+ * @whatsapp WAWebStarredMsgCollection >= 2.3000.1032534684
111
114
  */
112
115
  export declare const StarredMsgStore: collections.StarredMsgCollection;
113
- /** @whatsapp 46133 */
116
+ /**
117
+ * @whatsapp WAWebTextStatusCollection >= 2.3000.1032534684
118
+ */
114
119
  export declare const StatusStore: collections.StatusCollection;
115
- /** @whatsapp 59387
116
- * @whatsapp 459387 >= 2.2222.8
120
+ /**
121
+ * @whatsapp WAWebStatusCollection >= 2.3000.1032534684
117
122
  */
118
123
  export declare const StatusV3Store: collections.StatusV3Collection;
119
- /** @whatsapp 67963
120
- * @whatsapp 767963 >= 2.2222.8
124
+ /**
125
+ * @whatsapp WAWebStickerCollection >= 2.3000.1032534684
121
126
  */
122
127
  export declare const StickerStore: collections.StickerCollection;
123
- /** @whatsapp 44333
124
- * @whatsapp 344333 >= 2.2222.8
128
+ /**
129
+ * @whatsapp WAWebStickerPackCollectionMd >= 2.3000.1032534684
125
130
  */
126
131
  export declare const StickerPackStore: collections.StickerPackCollection;
127
- /** @whatsapp 45068
128
- * @whatsapp 545068 >= 2.2222.8
132
+ /**
133
+ * @whatsapp WAWebStickerSearchCollection >= 2.3000.1032534684
129
134
  */
130
135
  export declare const StickerSearchStore: collections.StickerSearchCollection;
136
+ /**
137
+ * @whatsapp WAWebPinInChatCollection >= 2.3000.1032534684
138
+ */
131
139
  export declare const PinInChatStore: collections.PinInChatCollection;
140
+ /**
141
+ * @whatsapp WAWebNoteCollection >= 2.3000.1032534684
142
+ */
132
143
  export declare const NoteStore: collections.NoteCollection;