@wppconnect/wa-js 3.23.2 → 4.0.2-alpha.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 (266) hide show
  1. package/CHANGELOG.md +1 -9
  2. package/dist/blocklist/functions/all.d.ts +3 -2
  3. package/dist/blocklist/functions/blockContact.d.ts +12 -3
  4. package/dist/blocklist/functions/index.d.ts +4 -4
  5. package/dist/blocklist/functions/isBlocked.d.ts +9 -3
  6. package/dist/blocklist/functions/unblockContact.d.ts +12 -3
  7. package/dist/call/functions/accept.d.ts +13 -6
  8. package/dist/call/functions/enableCallInterface.d.ts +3 -2
  9. package/dist/call/functions/end.d.ts +11 -4
  10. package/dist/call/functions/index.d.ts +6 -6
  11. package/dist/call/functions/offer.d.ts +13 -8
  12. package/dist/call/functions/parseRelayResponse.d.ts +9 -2
  13. package/dist/call/functions/prepareDestination.d.ts +10 -2
  14. package/dist/call/functions/reject.d.ts +11 -4
  15. package/dist/cart/functions/add.d.ts +29 -5
  16. package/dist/cart/functions/clear.d.ts +19 -2
  17. package/dist/cart/functions/get.d.ts +12 -5
  18. package/dist/cart/functions/getThumbFromCart.d.ts +19 -2
  19. package/dist/cart/functions/index.d.ts +7 -7
  20. package/dist/cart/functions/remove.d.ts +23 -2
  21. package/dist/cart/functions/submit.d.ts +40 -3
  22. package/dist/cart/functions/update.d.ts +25 -4
  23. package/dist/catalog/functions/addProductImage.d.ts +15 -6
  24. package/dist/catalog/functions/changeProductImage.d.ts +15 -6
  25. package/dist/catalog/functions/createCollection.d.ts +16 -5
  26. package/dist/catalog/functions/createProduct.d.ts +25 -25
  27. package/dist/catalog/functions/deleteCollection.d.ts +12 -5
  28. package/dist/catalog/functions/deleteProduct.d.ts +17 -9
  29. package/dist/catalog/functions/editCollection.d.ts +19 -10
  30. package/dist/catalog/functions/editProduct.d.ts +23 -15
  31. package/dist/catalog/functions/getCollections.d.ts +12 -3
  32. package/dist/catalog/functions/getMyCatalog.d.ts +4 -2
  33. package/dist/catalog/functions/getProductById.d.ts +24 -14
  34. package/dist/catalog/functions/getProducts.d.ts +16 -6
  35. package/dist/catalog/functions/index.d.ts +16 -16
  36. package/dist/catalog/functions/removeProductImage.d.ts +16 -7
  37. package/dist/catalog/functions/setProductVisibility.d.ts +18 -9
  38. package/dist/catalog/functions/updateCartEnabled.d.ts +16 -9
  39. package/dist/chat/functions/archive.d.ts +15 -20
  40. package/dist/chat/functions/canMarkPlayed.d.ts +9 -4
  41. package/dist/chat/functions/canMute.d.ts +9 -3
  42. package/dist/chat/functions/canReply.d.ts +9 -4
  43. package/dist/chat/functions/clear.d.ts +13 -5
  44. package/dist/chat/functions/closeChat.d.ts +3 -2
  45. package/dist/chat/functions/delete.d.ts +10 -4
  46. package/dist/chat/functions/{deleteMessage.d.ts → deleteMessages.d.ts} +15 -6
  47. package/dist/chat/functions/downloadMedia.d.ts +10 -3
  48. package/dist/chat/functions/editMessage.d.ts +33 -6
  49. package/dist/chat/functions/find.d.ts +9 -2
  50. package/dist/chat/functions/forwardMessage.d.ts +14 -7
  51. package/dist/chat/functions/forwardMessages.d.ts +15 -8
  52. package/dist/chat/functions/generateMessageID.d.ts +9 -2
  53. package/dist/chat/functions/get.d.ts +9 -2
  54. package/dist/chat/functions/getActiveChat.d.ts +4 -2
  55. package/dist/chat/functions/getLastSeen.d.ts +8 -2
  56. package/dist/chat/functions/getMessageACK.d.ts +18 -11
  57. package/dist/chat/functions/getMessageById.d.ts +12 -10
  58. package/dist/chat/functions/getMessages.d.ts +33 -53
  59. package/dist/chat/functions/getNotes.d.ts +9 -2
  60. package/dist/chat/functions/getPlatformFromMessage.d.ts +8 -3
  61. package/dist/chat/functions/getQuotedMsg.d.ts +9 -2
  62. package/dist/chat/functions/getQuotedMsgKey.d.ts +9 -2
  63. package/dist/chat/functions/getReactions.d.ts +17 -10
  64. package/dist/chat/functions/getUnreadChats.d.ts +8 -1
  65. package/dist/chat/functions/getVotes.d.ts +17 -10
  66. package/dist/chat/functions/index.d.ts +66 -65
  67. package/dist/chat/functions/keepMessage.d.ts +12 -4
  68. package/dist/chat/functions/list.d.ts +33 -33
  69. package/dist/chat/functions/markIsComposing.d.ts +9 -2
  70. package/dist/chat/functions/markIsPaused.d.ts +8 -2
  71. package/dist/chat/functions/markIsRead.d.ts +10 -5
  72. package/dist/chat/functions/markIsRecording.d.ts +9 -2
  73. package/dist/chat/functions/markIsUnread.d.ts +8 -4
  74. package/dist/chat/functions/markPlayed.d.ts +9 -4
  75. package/dist/chat/functions/mute.d.ts +13 -9
  76. package/dist/chat/functions/openChatAt.d.ts +11 -3
  77. package/dist/chat/functions/openChatBottom.d.ts +9 -2
  78. package/dist/chat/functions/openChatFromUnread.d.ts +9 -2
  79. package/dist/chat/functions/pin.d.ts +18 -20
  80. package/dist/chat/functions/pinMsg.d.ts +16 -11
  81. package/dist/chat/functions/prepareAudioWaveform.d.ts +30 -5
  82. package/dist/chat/functions/prepareLinkPreview.d.ts +31 -31
  83. package/dist/chat/functions/prepareMessageButtons.d.ts +41 -1
  84. package/dist/chat/functions/prepareRawMessage.d.ts +22 -3
  85. package/dist/chat/functions/replyToButtonMessage.d.ts +12 -1
  86. package/dist/chat/functions/requestPhoneNumber.d.ts +10 -3
  87. package/dist/chat/functions/sendCatalogMessage.d.ts +34 -12
  88. package/dist/chat/functions/sendChargeMessage.d.ts +65 -25
  89. package/dist/chat/functions/sendCreatePollMessage.d.ts +35 -18
  90. package/dist/chat/functions/sendEventMessage.d.ts +62 -22
  91. package/dist/chat/functions/sendFileMessage.d.ts +10 -2
  92. package/dist/chat/functions/sendGroupInviteMessage.d.ts +39 -16
  93. package/dist/chat/functions/sendListMessage.d.ts +50 -17
  94. package/dist/chat/functions/sendLocationMessage.d.ts +52 -48
  95. package/dist/chat/functions/sendPixKeyMessage.d.ts +26 -10
  96. package/dist/chat/functions/sendRawMessage.d.ts +22 -2
  97. package/dist/chat/functions/sendReactionToMessage.d.ts +13 -7
  98. package/dist/chat/functions/sendScheduledCallMessage.d.ts +17 -6
  99. package/dist/chat/functions/sendTextMessage.d.ts +11 -28
  100. package/dist/chat/functions/sendVCardContactMessage.d.ts +44 -19
  101. package/dist/chat/functions/setChatList.d.ts +10 -2
  102. package/dist/chat/functions/setInputText.d.ts +10 -3
  103. package/dist/chat/functions/setNotes.d.ts +10 -2
  104. package/dist/chat/functions/starMessage.d.ts +13 -16
  105. package/dist/chat/functions/unmute.d.ts +8 -2
  106. package/dist/chat/types.d.ts +13 -101
  107. package/dist/community/functions/addSubgroups.d.ts +21 -11
  108. package/dist/community/functions/create.d.ts +16 -4
  109. package/dist/community/functions/deactivate.d.ts +10 -4
  110. package/dist/community/functions/demoteParticipants.d.ts +14 -4
  111. package/dist/community/functions/getAnnouncementGroup.d.ts +11 -3
  112. package/dist/community/functions/getParticipants.d.ts +9 -3
  113. package/dist/community/functions/getSubgroups.d.ts +11 -3
  114. package/dist/community/functions/index.d.ts +9 -9
  115. package/dist/community/functions/promoteParticipants.d.ts +14 -4
  116. package/dist/community/functions/removeSubgroups.d.ts +20 -10
  117. package/dist/conn/functions/changeEnviromentDevice.d.ts +3 -2
  118. package/dist/conn/functions/genLinkDeviceCodeForPhoneNumber.d.ts +12 -4
  119. package/dist/conn/functions/getABProps.d.ts +15 -6
  120. package/dist/conn/functions/getAuthCode.d.ts +3 -2
  121. package/dist/conn/functions/getAutoDownloadSettings.d.ts +7 -6
  122. package/dist/conn/functions/getBuildConstants.d.ts +21 -8
  123. package/dist/conn/functions/getHistorySyncProgress.d.ts +4 -4
  124. package/dist/conn/functions/getMigrationState.d.ts +4 -4
  125. package/dist/conn/functions/getMyDeviceId.d.ts +3 -2
  126. package/dist/conn/functions/getMyUserId.d.ts +3 -2
  127. package/dist/conn/functions/getMyUserLid.d.ts +3 -2
  128. package/dist/conn/functions/getMyUserWid.d.ts +3 -2
  129. package/dist/conn/functions/getPlatform.d.ts +3 -2
  130. package/dist/conn/functions/getStreamData.d.ts +3 -3
  131. package/dist/conn/functions/getTheme.d.ts +2 -1
  132. package/dist/conn/functions/index.d.ts +33 -33
  133. package/dist/conn/functions/isAuthenticated.d.ts +3 -2
  134. package/dist/conn/functions/isIdle.d.ts +3 -2
  135. package/dist/conn/functions/isMainInit.d.ts +3 -2
  136. package/dist/conn/functions/isMainLoaded.d.ts +3 -2
  137. package/dist/conn/functions/isMainReady.d.ts +3 -2
  138. package/dist/conn/functions/isMultiDevice.d.ts +3 -2
  139. package/dist/conn/functions/isOnline.d.ts +3 -2
  140. package/dist/conn/functions/isRegistered.d.ts +3 -2
  141. package/dist/conn/functions/joinWebBeta.d.ts +11 -4
  142. package/dist/conn/functions/logout.d.ts +3 -2
  143. package/dist/conn/functions/markAvailable.d.ts +12 -4
  144. package/dist/conn/functions/needsUpdate.d.ts +3 -2
  145. package/dist/conn/functions/refreshQR.d.ts +3 -2
  146. package/dist/conn/functions/setAutoDownloadSettings.d.ts +11 -19
  147. package/dist/conn/functions/setKeepAlive.d.ts +11 -4
  148. package/dist/conn/functions/setLimit.d.ts +28 -38
  149. package/dist/conn/functions/setMultiDevice.d.ts +11 -4
  150. package/dist/conn/functions/setTheme.d.ts +14 -7
  151. package/dist/contact/functions/get.d.ts +12 -7
  152. package/dist/contact/functions/getBusinessProfile.d.ts +12 -5
  153. package/dist/contact/functions/getCommonGroups.d.ts +10 -3
  154. package/dist/contact/functions/getPnLidEntry.d.ts +10 -5
  155. package/dist/contact/functions/getProfilePictureUrl.d.ts +12 -5
  156. package/dist/contact/functions/getStatus.d.ts +10 -4
  157. package/dist/contact/functions/index.d.ts +14 -14
  158. package/dist/contact/functions/list.d.ts +15 -11
  159. package/dist/contact/functions/queryExists.d.ts +10 -3
  160. package/dist/contact/functions/remove.d.ts +11 -4
  161. package/dist/contact/functions/reportContact.d.ts +16 -14
  162. package/dist/contact/functions/save.d.ts +18 -11
  163. package/dist/contact/functions/subscribePresence.d.ts +11 -4
  164. package/dist/contact/functions/unsubscribePresence.d.ts +11 -3
  165. package/dist/group/functions/addParticipants.d.ts +19 -12
  166. package/dist/group/functions/approve.d.ts +14 -6
  167. package/dist/group/functions/canAdd.d.ts +10 -4
  168. package/dist/group/functions/canDemote.d.ts +11 -4
  169. package/dist/group/functions/canPromote.d.ts +11 -4
  170. package/dist/group/functions/canRemove.d.ts +11 -4
  171. package/dist/group/functions/create.d.ts +23 -14
  172. package/dist/group/functions/demoteParticipants.d.ts +12 -5
  173. package/dist/group/functions/ensureGroup.d.ts +11 -3
  174. package/dist/group/functions/ensureGroupAndParticipants.d.ts +14 -5
  175. package/dist/group/functions/getAllGroups.d.ts +4 -2
  176. package/dist/group/functions/getGroupInfoFromInviteCode.d.ts +10 -35
  177. package/dist/group/functions/getGroupSizeLimit.d.ts +3 -2
  178. package/dist/group/functions/getInviteCode.d.ts +10 -4
  179. package/dist/group/functions/getMembershipRequests.d.ts +16 -9
  180. package/dist/group/functions/getParticipants.d.ts +11 -4
  181. package/dist/group/functions/getPastParticipants.d.ts +11 -4
  182. package/dist/group/functions/iAmAdmin.d.ts +9 -3
  183. package/dist/group/functions/iAmMember.d.ts +9 -3
  184. package/dist/group/functions/iAmRestrictedMember.d.ts +9 -3
  185. package/dist/group/functions/iAmSuperAdmin.d.ts +9 -3
  186. package/dist/group/functions/index.d.ts +32 -32
  187. package/dist/group/functions/join.d.ts +12 -5
  188. package/dist/group/functions/leave.d.ts +10 -4
  189. package/dist/group/functions/promoteParticipants.d.ts +12 -5
  190. package/dist/group/functions/reject.d.ts +14 -6
  191. package/dist/group/functions/removeIcon.d.ts +10 -4
  192. package/dist/group/functions/removeParticipants.d.ts +12 -5
  193. package/dist/group/functions/revokeInviteCode.d.ts +10 -4
  194. package/dist/group/functions/setDescription.d.ts +11 -4
  195. package/dist/group/functions/setIcon.d.ts +17 -10
  196. package/dist/group/functions/setProperty.d.ts +19 -11
  197. package/dist/group/functions/setSubject.d.ts +11 -4
  198. package/dist/indexdb/functions/getMessagesFromRowId.d.ts +9 -13
  199. package/dist/indexdb/functions/index.d.ts +1 -1
  200. package/dist/labels/functions/addNewLabel.d.ts +14 -13
  201. package/dist/labels/functions/addOrRemoveLabels.d.ts +20 -11
  202. package/dist/labels/functions/colorIsInLabelPalette.d.ts +11 -5
  203. package/dist/labels/functions/deleteAllLabels.d.ts +14 -2
  204. package/dist/labels/functions/deleteLabel.d.ts +9 -3
  205. package/dist/labels/functions/editLabel.d.ts +15 -13
  206. package/dist/labels/functions/getAllLabels.d.ts +14 -2
  207. package/dist/labels/functions/getLabelById.d.ts +9 -2
  208. package/dist/labels/functions/getLabelColorPalette.d.ts +11 -2
  209. package/dist/labels/functions/getNewLabelColor.d.ts +12 -3
  210. package/dist/labels/functions/index.d.ts +11 -11
  211. package/dist/newsletter/functions/create.d.ts +16 -11
  212. package/dist/newsletter/functions/destroy.d.ts +10 -3
  213. package/dist/newsletter/functions/edit.d.ts +25 -16
  214. package/dist/newsletter/functions/ensureNewsletter.d.ts +8 -3
  215. package/dist/newsletter/functions/follow.d.ts +9 -2
  216. package/dist/newsletter/functions/getSubscribers.d.ts +10 -3
  217. package/dist/newsletter/functions/index.d.ts +9 -9
  218. package/dist/newsletter/functions/mute.d.ts +12 -4
  219. package/dist/newsletter/functions/search.d.ts +18 -12
  220. package/dist/newsletter/functions/unfollow.d.ts +9 -2
  221. package/dist/order/functions/accept.d.ts +9 -10
  222. package/dist/order/functions/decline.d.ts +10 -12
  223. package/dist/order/functions/get.d.ts +12 -5
  224. package/dist/order/functions/index.d.ts +5 -5
  225. package/dist/order/functions/update.d.ts +16 -3
  226. package/dist/privacy/functions/get.d.ts +14 -3
  227. package/dist/privacy/functions/getDisallowedList.d.ts +20 -13
  228. package/dist/privacy/functions/index.d.ts +9 -9
  229. package/dist/privacy/functions/prepareDisallowedList.d.ts +18 -6
  230. package/dist/privacy/functions/setAbout.d.ts +39 -6
  231. package/dist/privacy/functions/setAddGroup.d.ts +37 -6
  232. package/dist/privacy/functions/setLastSeen.d.ts +39 -6
  233. package/dist/privacy/functions/setOnline.d.ts +22 -3
  234. package/dist/privacy/functions/setProfilePic.d.ts +39 -6
  235. package/dist/privacy/functions/setReadReceipts.d.ts +22 -3
  236. package/dist/privacy/functions/setStatus.d.ts +31 -4
  237. package/dist/profile/functions/editBusinessProfile.d.ts +21 -4
  238. package/dist/profile/functions/getMyProfileName.d.ts +3 -2
  239. package/dist/profile/functions/getMyProfilePicture.d.ts +3 -2
  240. package/dist/profile/functions/getMyStatus.d.ts +3 -2
  241. package/dist/profile/functions/index.d.ts +9 -9
  242. package/dist/profile/functions/isBusiness.d.ts +4 -3
  243. package/dist/profile/functions/removeMyProfilePicture.d.ts +3 -2
  244. package/dist/profile/functions/setMyProfileName.d.ts +10 -3
  245. package/dist/profile/functions/setMyProfilePicture.d.ts +16 -9
  246. package/dist/profile/functions/setMyStatus.d.ts +10 -3
  247. package/dist/status/functions/get.d.ts +18 -3
  248. package/dist/status/functions/getMyStatus.d.ts +3 -2
  249. package/dist/status/functions/index.d.ts +10 -10
  250. package/dist/status/functions/postSendStatus.d.ts +9 -2
  251. package/dist/status/functions/remove.d.ts +17 -3
  252. package/dist/status/functions/sendImageStatus.d.ts +14 -5
  253. package/dist/status/functions/sendRawStatus.d.ts +12 -8
  254. package/dist/status/functions/sendReadStatus.d.ts +11 -4
  255. package/dist/status/functions/sendTextStatus.d.ts +16 -8
  256. package/dist/status/functions/sendVideoStatus.d.ts +14 -5
  257. package/dist/status/functions/updateParticipants.d.ts +11 -9
  258. package/dist/status/index.d.ts +0 -1
  259. package/dist/types.d.ts +20 -0
  260. package/dist/whatsapp/functions/deleteContactAction.d.ts +3 -23
  261. package/dist/whatsapp/functions/setArchive.d.ts +0 -9
  262. package/dist/wppconnect-wa.js +1 -1
  263. package/dist/wppconnect-wa.js.LICENSE.txt +1 -1
  264. package/package.json +19 -16
  265. package/dist/blocklist/types.d.ts +0 -20
  266. package/dist/status/defaultSendStatusOptions.d.ts +0 -19
@@ -13,81 +13,61 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Wid } from '../../whatsapp';
16
+ import { z } from 'zod';
17
17
  import { RawMessage } from '..';
18
- export interface GetMessagesOptions {
19
- count?: number;
20
- direction?: 'after' | 'before';
21
- id?: string;
22
- onlyUnread?: boolean;
23
- media?: 'url' | 'document' | 'all' | 'image';
24
- includeCallMessages?: boolean;
25
- }
18
+ declare const chatGetMessagesSchema: z.ZodObject<{
19
+ chatId: z.ZodString;
20
+ options: z.ZodOptional<z.ZodObject<{
21
+ count: z.ZodDefault<z.ZodNumber>;
22
+ direction: z.ZodDefault<z.ZodEnum<{
23
+ after: "after";
24
+ before: "before";
25
+ }>>;
26
+ id: z.ZodOptional<z.ZodString>;
27
+ onlyUnread: z.ZodOptional<z.ZodBoolean>;
28
+ media: z.ZodOptional<z.ZodEnum<{
29
+ url: "url";
30
+ all: "all";
31
+ image: "image";
32
+ document: "document";
33
+ }>>;
34
+ includeCallMessages: z.ZodOptional<z.ZodBoolean>;
35
+ }, z.core.$strip>>;
36
+ }, z.core.$strip>;
37
+ export type ChatGetMessagesInput = z.infer<typeof chatGetMessagesSchema>;
38
+ export type ChatGetMessagesOutput = RawMessage[];
26
39
  /**
27
40
  * Fetch messages from a chat
28
41
  *
29
42
  * @example
30
43
  * ```javascript
31
44
  * // Some messages
32
- * WPP.chat.getMessages('[number]@c.us', {
33
- * count: 20,
34
- * });
45
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: 20 } });
35
46
  *
36
47
  * // All messages
37
- * WPP.chat.getMessages('[number]@c.us', {
38
- * count: -1,
39
- * });
48
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: -1 } });
40
49
  *
41
50
  * // Last 20 unread messages
42
- * WPP.chat.getMessages('[number]@c.us', {
43
- * count: 20,
44
- * onlyUnread: true,
45
- * });
51
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: 20, onlyUnread: true } });
46
52
  *
47
53
  * // All unread messages
48
- * WPP.chat.getMessages('[number]@c.us', {
49
- * count: -1,
50
- * onlyUnread: true,
51
- * });
54
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: -1, onlyUnread: true } });
52
55
  *
53
56
  * // 20 messages before specific message
54
- * WPP.chat.getMessages('[number]@c.us', {
55
- * count: 20,
56
- * direction: 'before',
57
- * id: '<full message id>'
58
- * });
57
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: 20, direction: 'before', id: '<full message id>' } });
59
58
  *
60
59
  * // Only media messages (url, document and links)
61
- * WPP.chat.getMessages('[number]@c.us', {
62
- * count: 20,
63
- * media: 'all',
64
- * });
60
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: 20, media: 'all' } });
65
61
  *
66
62
  * // Only image messages
67
- * WPP.chat.getMessages('[number]@c.us', {
68
- * count: 20,
69
- * media: 'image',
70
- * });
63
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: 20, media: 'image' } });
71
64
  *
72
65
  * // Only document messages
73
- * WPP.chat.getMessages('[number]@c.us', {
74
- * count: 20,
75
- * media: 'document',
76
- * });
77
- *
78
- * // Only link (url) messages
79
- * WPP.chat.getMessages('[number]@c.us', {
80
- * count: 20,
81
- * media: 'url',
82
- * });
83
- *
84
- * // Include call messages along with chat messages
85
- * WPP.chat.getMessages('[number]@c.us', {
86
- * count: 20,
87
- * includeCallMessages: true,
88
- * });
66
+ * WPP.chat.getMessages({ chatId: '[number]@c.us', options: { count: 20, media: 'document' } });
89
67
  * ```
68
+ *
90
69
  * @category Message
91
70
  * @return {RawMessage[]} List of raw messages
92
71
  */
93
- export declare function getMessages(chatId: string | Wid, options?: GetMessagesOptions): Promise<RawMessage[]>;
72
+ export declare function getMessages(input: ChatGetMessagesInput): Promise<ChatGetMessagesOutput>;
73
+ export {};
@@ -13,7 +13,13 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { NoteModel, Wid } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ import { NoteModel } from '../../whatsapp';
18
+ declare const chatGetNotesSchema: z.ZodObject<{
19
+ chatId: z.ZodString;
20
+ }, z.core.$strip>;
21
+ export type ChatGetNotesInput = z.infer<typeof chatGetNotesSchema>;
22
+ export type ChatGetNotesOutput = NoteModel | null;
17
23
  /**
18
24
  * Get notes from a contact
19
25
  * Only when are connected with business device
@@ -23,4 +29,5 @@ import { NoteModel, Wid } from '../../whatsapp';
23
29
  * ```
24
30
  * @category Chat
25
31
  */
26
- export declare function getNotes(chatId: string | Wid): Promise<NoteModel | null>;
32
+ export declare function getNotes(params: ChatGetNotesInput): Promise<ChatGetNotesOutput>;
33
+ export {};
@@ -13,8 +13,12 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Stringable } from '../../types';
17
- import { MsgKey, MsgModel } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ declare const chatGetPlatformFromMessageSchema: z.ZodObject<{
18
+ messageId: z.ZodString;
19
+ }, z.core.$strip>;
20
+ export type ChatGetPlatformFromMessageInput = z.infer<typeof chatGetPlatformFromMessageSchema>;
21
+ export type ChatGetPlatformFromMessageOutput = 'android' | 'iphone' | 'web' | 'unknown';
18
22
  /**
19
23
  * Get the platform message from message ID
20
24
  *
@@ -31,4 +35,5 @@ import { MsgKey, MsgModel } from '../../whatsapp';
31
35
  * ```
32
36
  * @category Message
33
37
  */
34
- export declare function getPlatformFromMessage(messageId: string | MsgKey | MsgModel | Stringable): 'android' | 'iphone' | 'web' | 'unknown';
38
+ export declare function getPlatformFromMessage(params: ChatGetPlatformFromMessageInput): ChatGetPlatformFromMessageOutput;
39
+ export {};
@@ -13,10 +13,17 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { MsgKey, MsgModel } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ import { MsgModel } from '../../whatsapp';
18
+ declare const chatGetQuotedMsgSchema: z.ZodObject<{
19
+ msgId: z.ZodString;
20
+ }, z.core.$strip>;
21
+ export type ChatGetQuotedMsgInput = z.infer<typeof chatGetQuotedMsgSchema>;
22
+ export type ChatGetQuotedMsgOutput = MsgModel;
17
23
  /**
18
24
  * Get a quoted message
19
25
  *
20
26
  * @category Chat
21
27
  */
22
- export declare function getQuotedMsg(id: string | MsgKey): Promise<MsgModel>;
28
+ export declare function getQuotedMsg(params: ChatGetQuotedMsgInput): Promise<ChatGetQuotedMsgOutput>;
29
+ export {};
@@ -13,10 +13,17 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { MsgKey, MsgModel } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ import { MsgKey } from '../../whatsapp';
18
+ declare const chatGetQuotedMsgKeySchema: z.ZodObject<{
19
+ msgId: z.ZodString;
20
+ }, z.core.$strip>;
21
+ export type ChatGetQuotedMsgKeyInput = z.infer<typeof chatGetQuotedMsgKeySchema>;
22
+ export type ChatGetQuotedMsgKeyOutput = MsgKey;
17
23
  /**
18
24
  * Get a quoted message
19
25
  *
20
26
  * @category Chat
21
27
  */
22
- export declare function getQuotedMsgKey(msg: MsgModel): MsgKey;
28
+ export declare function getQuotedMsgKey(params: ChatGetQuotedMsgKeyInput): Promise<ChatGetQuotedMsgKeyOutput>;
29
+ export {};
@@ -13,16 +13,13 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
+ import { z } from 'zod';
16
17
  import { MsgKey } from '../../whatsapp';
17
- /**
18
- * Get all reactions in a message
19
- * @example
20
- * ```javascript
21
- * WPP.chat.getReactions('true_[number]@c.us_ABCDEF');
22
- * ```
23
- * @category Chat
24
- */
25
- export declare function getReactions(msgId: string): Promise<{
18
+ declare const chatGetReactionsSchema: z.ZodObject<{
19
+ msgId: z.ZodString;
20
+ }, z.core.$strip>;
21
+ export type ChatGetReactionsInput = z.infer<typeof chatGetReactionsSchema>;
22
+ export type ChatGetReactionsOutput = {
26
23
  reactionByMe: {
27
24
  id: MsgKey;
28
25
  orphan: number;
@@ -45,4 +42,14 @@ export declare function getReactions(msgId: string): Promise<{
45
42
  timestamp: number;
46
43
  }[];
47
44
  }[];
48
- }>;
45
+ };
46
+ /**
47
+ * Get all reactions in a message
48
+ * @example
49
+ * ```javascript
50
+ * WPP.chat.getReactions('true_[number]@c.us_ABCDEF');
51
+ * ```
52
+ * @category Chat
53
+ */
54
+ export declare function getReactions(params: ChatGetReactionsInput): Promise<ChatGetReactionsOutput>;
55
+ export {};
@@ -13,11 +13,18 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
+ import { z } from 'zod';
16
17
  import { ChatModel } from '../../whatsapp';
18
+ declare const chatGetUnreadChatsSchema: z.ZodObject<{
19
+ onlyNewUnreads: z.ZodOptional<z.ZodBoolean>;
20
+ }, z.core.$strip>;
21
+ export type ChatGetUnreadChatsInput = z.infer<typeof chatGetUnreadChatsSchema>;
22
+ export type ChatGetUnreadChatsOutput = Array<ChatModel>;
17
23
  /**
18
24
  * Get all chats that have unread messages
19
25
  *
20
26
  * @category Chat
21
27
  *
22
28
  */
23
- export declare function getUnreadChats(onlyNewUnreads: boolean): Promise<Array<ChatModel>>;
29
+ export declare function getUnreadChats(params?: ChatGetUnreadChatsInput): Promise<ChatGetUnreadChatsOutput>;
30
+ export {};
@@ -13,16 +13,13 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
+ import { z } from 'zod';
16
17
  import { MsgKey, Wid } from '../../whatsapp';
17
- /**
18
- * Get votes of a poll
19
- * @example
20
- * ```javascript
21
- * WPP.chat.getVotes('true_[number]@c.us_ABCDEF');
22
- * ```
23
- * @category Chat
24
- */
25
- export declare function getVotes(id: string | MsgKey): Promise<{
18
+ declare const chatGetVotesSchema: z.ZodObject<{
19
+ msgId: z.ZodString;
20
+ }, z.core.$strip>;
21
+ export type ChatGetVotesInput = z.infer<typeof chatGetVotesSchema>;
22
+ export type ChatGetVotesOutput = {
26
23
  msgId: MsgKey;
27
24
  chatId: Wid;
28
25
  votes: {
@@ -30,4 +27,14 @@ export declare function getVotes(id: string | MsgKey): Promise<{
30
27
  timestamp: number;
31
28
  sender: Wid;
32
29
  }[];
33
- }>;
30
+ };
31
+ /**
32
+ * Get votes of a poll
33
+ * @example
34
+ * ```javascript
35
+ * WPP.chat.getVotes({ msgId: 'true_[number]@c.us_ABCDEF' });
36
+ * ```
37
+ * @category Chat
38
+ */
39
+ export declare function getVotes(params: ChatGetVotesInput): Promise<ChatGetVotesOutput>;
40
+ export {};
@@ -13,68 +13,69 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- export { archive, unarchive } from './archive';
17
- export { canMarkPlayed } from './canMarkPlayed';
18
- export { canMute } from './canMute';
19
- export { canReply } from './canReply';
20
- export { clear } from './clear';
21
- export { closeChat } from './closeChat';
22
- export { delete } from './delete';
23
- export { deleteMessage, DeleteMessageReturn } from './deleteMessage';
24
- export { downloadMedia } from './downloadMedia';
25
- export { editMessage } from './editMessage';
26
- export { find } from './find';
27
- export { forwardMessage, ForwardMessageOptions } from './forwardMessage';
28
- export { forwardMessages, ForwardMessagesOptions } from './forwardMessages';
29
- export { generateMessageID } from './generateMessageID';
30
- export { get } from './get';
31
- export { getActiveChat } from './getActiveChat';
32
- export { getLastSeen } from './getLastSeen';
33
- export { getMessageACK } from './getMessageACK';
34
- export { getMessageById } from './getMessageById';
35
- export { getMessages, GetMessagesOptions } from './getMessages';
36
- export { getNotes } from './getNotes';
37
- export { getPlatformFromMessage } from './getPlatformFromMessage';
38
- export { getQuotedMsg } from './getQuotedMsg';
39
- export { getQuotedMsgKey } from './getQuotedMsgKey';
40
- export { getReactions } from './getReactions';
41
- export { getUnreadChats } from './getUnreadChats';
42
- export { getVotes } from './getVotes';
43
- export { keepMessage } from './keepMessage';
44
- export { ChatListOptions, list } from './list';
45
- export { markIsComposing } from './markIsComposing';
46
- export { markIsPaused } from './markIsPaused';
47
- export { markIsRead } from './markIsRead';
48
- export { markIsRecording } from './markIsRecording';
49
- export { markIsUnread } from './markIsUnread';
50
- export { markPlayed } from './markPlayed';
51
- export { mute } from './mute';
52
- export { openChatAt } from './openChatAt';
53
- export { openChatBottom } from './openChatBottom';
54
- export { openChatFromUnread } from './openChatFromUnread';
55
- export { pin, unpin } from './pin';
56
- export { pinMsg, unpinMsg } from './pinMsg';
57
- export { LinkPreviewOptions, prepareLinkPreview } from './prepareLinkPreview';
58
- export { MessageButtonsOptions, prepareMessageButtons, } from './prepareMessageButtons';
59
- export { prepareRawMessage } from './prepareRawMessage';
60
- export { ButtonReplyOptions, replyToButtonMessage, } from './replyToButtonMessage';
61
- export { requestPhoneNumber } from './requestPhoneNumber';
62
- export { sendCatalogMessage } from './sendCatalogMessage';
63
- export { OrderItems, OrderMessageOptions, sendChargeMessage, } from './sendChargeMessage';
64
- export { PoolMessageOptions, sendCreatePollMessage, } from './sendCreatePollMessage';
65
- export { sendEventMessage } from './sendEventMessage';
66
- export { AudioMessageOptions, AutoDetectMessageOptions, DocumentMessageOptions, FileMessageOptions, ImageMessageOptions, sendFileMessage, StickerMessageOptions, VideoMessageOptions, } from './sendFileMessage';
67
- export { GroupInviteMessage, sendGroupInviteMessage, } from './sendGroupInviteMessage';
68
- export { ListMessageOptions, sendListMessage } from './sendListMessage';
69
- export { LocationMessageOptions, sendLocationMessage, } from './sendLocationMessage';
70
- export { sendPixKeyMessage } from './sendPixKeyMessage';
71
- export { sendRawMessage } from './sendRawMessage';
72
- export { sendReactionToMessage } from './sendReactionToMessage';
73
- export { ScheduledCallMessageOptions, sendScheduledCallMessage, } from './sendScheduledCallMessage';
74
- export { sendTextMessage, TextMessageOptions } from './sendTextMessage';
75
- export { sendVCardContactMessage, VCardContact, } from './sendVCardContactMessage';
76
- export { setChatList } from './setChatList';
77
- export { setInputText } from './setInputText';
78
- export { setNotes } from './setNotes';
79
- export { starMessage, StarMessageReturn } from './starMessage';
80
- export { unmute } from './unmute';
16
+ export { archive, ChatArchiveInput, ChatArchiveOutput, unarchive, } from './archive';
17
+ export { canMarkPlayed, ChatCanMarkPlayedInput, ChatCanMarkPlayedOutput, } from './canMarkPlayed';
18
+ export { canMute, ChatCanMuteInput, ChatCanMuteOutput } from './canMute';
19
+ export { canReply, ChatCanReplyInput, ChatCanReplyOutput } from './canReply';
20
+ export { ChatClearInput, ChatClearOutput, clear } from './clear';
21
+ export { ChatCloseChatOutput, closeChat } from './closeChat';
22
+ export { ChatDeleteInput, ChatDeleteOutput, delete } from './delete';
23
+ export { ChatDeleteMessageInput, ChatDeleteMessageOutput, DeleteMessageReturn, deleteMessages, } from './deleteMessages';
24
+ export { ChatDownloadMediaInput, ChatDownloadMediaOutput, downloadMedia, } from './downloadMedia';
25
+ export { ChatEditMessageInput, ChatEditMessageOutput, editMessage, } from './editMessage';
26
+ export { ChatFindInput, ChatFindOutput, find } from './find';
27
+ export { ChatForwardMessageInput, ChatForwardMessageOutput, forwardMessage, } from './forwardMessage';
28
+ export { ChatForwardMessagesInput, ChatForwardMessagesOutput, forwardMessages, } from './forwardMessages';
29
+ export { ChatGenerateMessageIDInput, ChatGenerateMessageIDOutput, generateMessageID, } from './generateMessageID';
30
+ export { ChatGetInput, ChatGetOutput, get } from './get';
31
+ export { ChatGetActiveChatOutput, getActiveChat } from './getActiveChat';
32
+ export { ChatGetLastSeenInput, ChatGetLastSeenOutput, getLastSeen, } from './getLastSeen';
33
+ export { ChatGetMessageACKInput, ChatGetMessageACKOutput, getMessageACK, } from './getMessageACK';
34
+ export { ChatGetMessageByIdInput, ChatGetMessageByIdOutput, getMessageById, } from './getMessageById';
35
+ export { ChatGetMessagesInput, ChatGetMessagesOutput, getMessages, } from './getMessages';
36
+ export { ChatGetNotesInput, ChatGetNotesOutput, getNotes } from './getNotes';
37
+ export { ChatGetPlatformFromMessageInput, ChatGetPlatformFromMessageOutput, getPlatformFromMessage, } from './getPlatformFromMessage';
38
+ export { ChatGetQuotedMsgInput, ChatGetQuotedMsgOutput, getQuotedMsg, } from './getQuotedMsg';
39
+ export { ChatGetQuotedMsgKeyInput, ChatGetQuotedMsgKeyOutput, getQuotedMsgKey, } from './getQuotedMsgKey';
40
+ export { ChatGetReactionsInput, ChatGetReactionsOutput, getReactions, } from './getReactions';
41
+ export { ChatGetUnreadChatsInput, ChatGetUnreadChatsOutput, getUnreadChats, } from './getUnreadChats';
42
+ export { ChatGetVotesInput, ChatGetVotesOutput, getVotes } from './getVotes';
43
+ export { ChatKeepMessageInput, ChatKeepMessageOutput, keepMessage, } from './keepMessage';
44
+ export { ChatListInput, ChatListOutput, list } from './list';
45
+ export { ChatMarkIsComposingInput, ChatMarkIsComposingOutput, markIsComposing, } from './markIsComposing';
46
+ export { ChatMarkIsPausedInput, ChatMarkIsPausedOutput, markIsPaused, } from './markIsPaused';
47
+ export { ChatMarkIsReadInput, ChatMarkIsReadOutput, markIsRead, } from './markIsRead';
48
+ export { ChatMarkIsRecordingInput, ChatMarkIsRecordingOutput, markIsRecording, } from './markIsRecording';
49
+ export { ChatMarkIsUnreadInput, ChatMarkIsUnreadOutput, markIsUnread, } from './markIsUnread';
50
+ export { ChatMarkPlayedInput, ChatMarkPlayedOutput, markPlayed, } from './markPlayed';
51
+ export { ChatMuteInput, ChatMuteOutput, mute } from './mute';
52
+ export { ChatOpenChatAtInput, ChatOpenChatAtOutput, openChatAt, } from './openChatAt';
53
+ export { ChatOpenChatBottomInput, ChatOpenChatBottomOutput, openChatBottom, } from './openChatBottom';
54
+ export { ChatOpenChatFromUnreadInput, ChatOpenChatFromUnreadOutput, openChatFromUnread, } from './openChatFromUnread';
55
+ export { ChatPinInput, ChatPinOutput, pin, unpin } from './pin';
56
+ export { ChatPinMsgInput, ChatPinMsgOutput, pinMsg, unpinMsg } from './pinMsg';
57
+ export { ChatPrepareAudioWaveformInput, ChatPrepareAudioWaveformOutput, prepareAudioWaveform, } from './prepareAudioWaveform';
58
+ export { ChatPrepareLinkPreviewInput, LinkPreviewOptions, prepareLinkPreview, } from './prepareLinkPreview';
59
+ export { ChatPrepareMessageButtonsInput, MessageButtonsOptions, prepareMessageButtons, } from './prepareMessageButtons';
60
+ export { ChatPrepareRawMessageInput, ChatPrepareRawMessageOutput, prepareRawMessage, } from './prepareRawMessage';
61
+ export { ButtonReplyOptions, ChatReplyToButtonMessageInput, ChatReplyToButtonMessageOutput, replyToButtonMessage, } from './replyToButtonMessage';
62
+ export { ChatRequestPhoneNumberInput, ChatRequestPhoneNumberOutput, requestPhoneNumber, } from './requestPhoneNumber';
63
+ export { ChatSendCatalogMessageInput, ChatSendCatalogMessageOutput, sendCatalogMessage, } from './sendCatalogMessage';
64
+ export { ChatSendChargeMessageInput, ChatSendChargeMessageOutput, OrderItems, OrderMessageOptions, sendChargeMessage, } from './sendChargeMessage';
65
+ export { ChatSendCreatePollMessageInput, ChatSendCreatePollMessageOutput, PoolMessageOptions, sendCreatePollMessage, } from './sendCreatePollMessage';
66
+ export { ChatSendEventMessageInput, ChatSendEventMessageOutput, sendEventMessage, } from './sendEventMessage';
67
+ export { AudioMessageOptions, AutoDetectMessageOptions, ChatSendFileMessageInput, ChatSendFileMessageOutput, DocumentMessageOptions, FileMessageOptions, ImageMessageOptions, sendFileMessage, StickerMessageOptions, VideoMessageOptions, } from './sendFileMessage';
68
+ export { ChatSendGroupInviteMessageInput, ChatSendGroupInviteMessageOutput, sendGroupInviteMessage, } from './sendGroupInviteMessage';
69
+ export { ChatSendListMessageInput, ChatSendListMessageOutput, ListMessageOptions, sendListMessage, } from './sendListMessage';
70
+ export { ChatSendLocationMessageInput, ChatSendLocationMessageOutput, LocationMessageOptions, sendLocationMessage, } from './sendLocationMessage';
71
+ export { ChatSendPixKeyMessageInput, ChatSendPixKeyMessageOutput, sendPixKeyMessage, } from './sendPixKeyMessage';
72
+ export { ChatSendRawMessageInput, ChatSendRawMessageOutput, sendRawMessage, } from './sendRawMessage';
73
+ export { ChatSendReactionToMessageInput, ChatSendReactionToMessageOutput, sendReactionToMessage, } from './sendReactionToMessage';
74
+ export { ChatSendScheduledCallMessageInput, ChatSendScheduledCallMessageOutput, ScheduledCallMessageOptions, sendScheduledCallMessage, } from './sendScheduledCallMessage';
75
+ export { ChatSendTextMessageInput, ChatSendTextMessageOutput, sendTextMessage, TextMessageOptions, } from './sendTextMessage';
76
+ export { ChatSendVCardContactMessageInput, ChatSendVCardContactMessageOutput, sendVCardContactMessage, VCardContact, } from './sendVCardContactMessage';
77
+ export { ChatSetChatListInput, ChatSetChatListOutput, FilterChatListTypes, setChatList, } from './setChatList';
78
+ export { ChatSetInputTextInput, ChatSetInputTextOutput, setInputText, } from './setInputText';
79
+ export { ChatSetNotesInput, ChatSetNotesOutput, setNotes } from './setNotes';
80
+ export { ChatStarMessageInput, ChatStarMessageOutput, starMessage, StarMessageReturn, } from './starMessage';
81
+ export { ChatUnmuteInput, ChatUnmuteOutput, unmute } from './unmute';
@@ -13,18 +13,26 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { MsgKey, MsgModel } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ import { MsgModel } from '../../whatsapp';
18
+ declare const chatKeepMessageSchema: z.ZodObject<{
19
+ msgId: z.ZodString;
20
+ value: z.ZodOptional<z.ZodBoolean>;
21
+ }, z.core.$strip>;
22
+ export type ChatKeepMessageInput = z.infer<typeof chatKeepMessageSchema>;
23
+ export type ChatKeepMessageOutput = MsgModel;
17
24
  /**
18
25
  * Keep or unkeep a message in a group chat with expiration
19
26
  *
20
27
  * @example
21
28
  * ```javascript
22
29
  * // To keep a message in chat
23
- * WPP.chat.keepMessage('true_[number]@c.us_ABCDEF', true);
30
+ * WPP.chat.keepMessage({ msgId: 'true_[number]@c.us_ABCDEF', value: true });
24
31
  *
25
32
  * // To unkeep a message in chat
26
- * WPP.chat.keepMessage('true_[number]@c.us_ABCDEF', false);
33
+ * WPP.chat.keepMessage({ msgId: 'true_[number]@c.us_ABCDEF', value: false });
27
34
  * ```
28
35
  * @category Chat
29
36
  */
30
- export declare function keepMessage(msgId: string | MsgKey, value?: boolean): Promise<MsgModel>;
37
+ export declare function keepMessage(params: ChatKeepMessageInput): Promise<ChatKeepMessageOutput>;
38
+ export {};
@@ -13,20 +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, Wid } from '../../whatsapp';
17
- export interface ChatListOptions {
18
- id?: Wid;
19
- count?: number;
20
- direction?: 'after' | 'before';
21
- onlyCommunities?: boolean;
22
- onlyGroups?: boolean;
23
- onlyNewsletter?: boolean;
24
- onlyUsers?: boolean;
25
- onlyWithUnreadMessage?: boolean;
26
- onlyArchived?: boolean;
27
- withLabels?: string[];
28
- ignoreGroupMetadata?: boolean;
29
- }
16
+ import { z } from 'zod';
17
+ import { ChatModel } from '../../whatsapp';
18
+ declare const chatListSchema: z.ZodObject<{
19
+ options: z.ZodOptional<z.ZodObject<{
20
+ id: z.ZodOptional<z.ZodString>;
21
+ count: z.ZodOptional<z.ZodNumber>;
22
+ direction: z.ZodOptional<z.ZodEnum<{
23
+ after: "after";
24
+ before: "before";
25
+ }>>;
26
+ onlyCommunities: z.ZodOptional<z.ZodBoolean>;
27
+ onlyGroups: z.ZodOptional<z.ZodBoolean>;
28
+ onlyNewsletter: z.ZodOptional<z.ZodBoolean>;
29
+ onlyUsers: z.ZodOptional<z.ZodBoolean>;
30
+ onlyWithUnreadMessage: z.ZodOptional<z.ZodBoolean>;
31
+ onlyArchived: z.ZodOptional<z.ZodBoolean>;
32
+ withLabels: z.ZodOptional<z.ZodArray<z.ZodString>>;
33
+ ignoreGroupMetadata: z.ZodOptional<z.ZodBoolean>;
34
+ }, z.core.$strip>>;
35
+ }, z.core.$strip>;
36
+ export type ChatListInput = z.infer<typeof chatListSchema>;
37
+ export type ChatListOutput = ChatModel[];
30
38
  /**
31
39
  * Return a list of chats
32
40
  *
@@ -36,39 +44,31 @@ export interface ChatListOptions {
36
44
  * const chats = await WPP.chat.list();
37
45
  *
38
46
  * // Some chats
39
- * const chats = WPP.chat.list({count: 20});
47
+ * const chats = await WPP.chat.list({ options: { count: 20 } });
40
48
  *
41
49
  * // 20 chats before specific chat
42
- * const chats = WPP.chat.list({count: 20, direction: 'before', id: '[number]@c.us'});
50
+ * const chats = await WPP.chat.list({ options: { count: 20, direction: 'before', id: '[number]@c.us' } });
43
51
  *
44
52
  * // Only users chats
45
- * const chats = await WPP.chat.list({onlyUsers: true});
53
+ * const chats = await WPP.chat.list({ options: { onlyUsers: true } });
46
54
  *
47
55
  * // Only groups chats
48
- * const chats = await WPP.chat.list({onlyGroups: true});
56
+ * const chats = await WPP.chat.list({ options: { onlyGroups: true } });
49
57
  *
50
58
  * // Only communities chats
51
- * const chats = await WPP.chat.list({onlyCommunities: true});
59
+ * const chats = await WPP.chat.list({ options: { onlyCommunities: true } });
52
60
  *
53
61
  * // Only Newsletter
54
- * const chats = await WPP.chat.list({onlyNewsletter: true});
62
+ * const chats = await WPP.chat.list({ options: { onlyNewsletter: true } });
55
63
  *
56
- * // Only with label Text
57
- * const chats = await WPP.chat.list({withLabels: ['Test']});
58
- *
59
- * // Only with label id
60
- * const chats = await WPP.chat.list({withLabels: ['1']});
61
- *
62
- * // Only with label with one of text or id
63
- * const chats = await WPP.chat.list({withLabels: ['Alfa','5']});
64
+ * // Only with label text
65
+ * const chats = await WPP.chat.list({ options: { withLabels: ['Test'] } });
64
66
  *
65
67
  * // Only archived chats
66
- * const chats = await WPP.chat.list({onlyArchived: true});
67
- *
68
- * // Ignore group metadata search
69
- * const chats = await WPP.chat.list({ignoreGroupMetadata: true})
68
+ * const chats = await WPP.chat.list({ options: { onlyArchived: true } });
70
69
  * ```
71
70
  *
72
71
  * @category Chat
73
72
  */
74
- export declare function list(options?: ChatListOptions): Promise<ChatModel[]>;
73
+ export declare function list(params?: ChatListInput): Promise<ChatListOutput>;
74
+ export {};
@@ -13,7 +13,13 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Wid } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ declare const chatMarkIsComposingSchema: z.ZodObject<{
18
+ chatId: z.ZodString;
19
+ duration: z.ZodOptional<z.ZodNumber>;
20
+ }, z.core.$strip>;
21
+ export type ChatMarkIsComposingInput = z.infer<typeof chatMarkIsComposingSchema>;
22
+ export type ChatMarkIsComposingOutput = void;
17
23
  /**
18
24
  * Mark a chat to composing state
19
25
  * and keep sending "is writting a message"
@@ -28,4 +34,5 @@ import { Wid } from '../../whatsapp';
28
34
  * ```
29
35
  * @category Chat
30
36
  */
31
- export declare function markIsComposing(chatId: string | Wid, duration?: number): Promise<void>;
37
+ export declare function markIsComposing(params: ChatMarkIsComposingInput): Promise<ChatMarkIsComposingOutput>;
38
+ export {};
@@ -13,7 +13,12 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Wid } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ declare const chatMarkIsPausedSchema: z.ZodObject<{
18
+ chatId: z.ZodString;
19
+ }, z.core.$strip>;
20
+ export type ChatMarkIsPausedInput = z.infer<typeof chatMarkIsPausedSchema>;
21
+ export type ChatMarkIsPausedOutput = void;
17
22
  /**
18
23
  * Mark a chat is paused state
19
24
  *
@@ -24,4 +29,5 @@ import { Wid } from '../../whatsapp';
24
29
  * ```
25
30
  * @category Chat
26
31
  */
27
- export declare function markIsPaused(chatId: string | Wid): Promise<void>;
32
+ export declare function markIsPaused(params: ChatMarkIsPausedInput): Promise<ChatMarkIsPausedOutput>;
33
+ export {};
@@ -13,7 +13,14 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Wid } from '../../whatsapp';
16
+ import { z } from 'zod';
17
+ declare const chatMarkIsReadSchema: z.ZodObject<{
18
+ chatId: z.ZodString;
19
+ }, z.core.$strip>;
20
+ export type ChatMarkIsReadInput = z.infer<typeof chatMarkIsReadSchema>;
21
+ export type ChatMarkIsReadOutput = {
22
+ unreadCount: number;
23
+ };
17
24
  /**
18
25
  * Mark a chat as read and send SEEN event
19
26
  *
@@ -24,7 +31,5 @@ import { Wid } from '../../whatsapp';
24
31
  * ```
25
32
  * @category Chat
26
33
  */
27
- export declare function markIsRead(chatId: string | Wid): Promise<{
28
- wid: Wid;
29
- unreadCount: number;
30
- }>;
34
+ export declare function markIsRead(params: ChatMarkIsReadInput): Promise<ChatMarkIsReadOutput>;
35
+ export {};