@phuquy2203/n8n-nodes-zl-sumo 2.0.15
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/README.md +0 -0
- package/dist/credentials/ZaloApi.credentials.d.ts +7 -0
- package/dist/credentials/ZaloApi.credentials.js +49 -0
- package/dist/nodes/Zalo/Zalo.node.d.ts +5 -0
- package/dist/nodes/Zalo/Zalo.node.js +260 -0
- package/dist/nodes/Zalo/zalo.png +0 -0
- package/dist/nodes/Zalo/zalo.svg +3 -0
- package/dist/src/Errors/ZaloApiError.d.ts +4 -0
- package/dist/src/Errors/ZaloApiError.js +11 -0
- package/dist/src/Errors/ZaloApiLoginQRAborted.d.ts +4 -0
- package/dist/src/Errors/ZaloApiLoginQRAborted.js +11 -0
- package/dist/src/Errors/ZaloApiLoginQRDeclined.d.ts +4 -0
- package/dist/src/Errors/ZaloApiLoginQRDeclined.js +11 -0
- package/dist/src/Errors/ZaloApiMissingImageMetadataGetter.d.ts +4 -0
- package/dist/src/Errors/ZaloApiMissingImageMetadataGetter.js +11 -0
- package/dist/src/Errors/index.d.ts +4 -0
- package/dist/src/Errors/index.js +20 -0
- package/dist/src/apis/acceptFriendRequest.d.ts +2 -0
- package/dist/src/apis/acceptFriendRequest.js +31 -0
- package/dist/src/apis/addGroupBlockedMember.d.ts +2 -0
- package/dist/src/apis/addGroupBlockedMember.js +31 -0
- package/dist/src/apis/addGroupDeputy.d.ts +2 -0
- package/dist/src/apis/addGroupDeputy.js +33 -0
- package/dist/src/apis/addPollOptions.d.ts +14 -0
- package/dist/src/apis/addPollOptions.js +29 -0
- package/dist/src/apis/addQuickMessage.d.ts +11 -0
- package/dist/src/apis/addQuickMessage.js +63 -0
- package/dist/src/apis/addReaction.d.ts +18 -0
- package/dist/src/apis/addReaction.js +297 -0
- package/dist/src/apis/addUnreadMark.d.ts +8 -0
- package/dist/src/apis/addUnreadMark.js +55 -0
- package/dist/src/apis/addUserToGroup.d.ts +5 -0
- package/dist/src/apis/addUserToGroup.js +37 -0
- package/dist/src/apis/blockUser.d.ts +2 -0
- package/dist/src/apis/blockUser.js +31 -0
- package/dist/src/apis/blockViewFeed.d.ts +2 -0
- package/dist/src/apis/blockViewFeed.js +33 -0
- package/dist/src/apis/changeAccountAvatar.d.ts +3 -0
- package/dist/src/apis/changeAccountAvatar.js +58 -0
- package/dist/src/apis/changeFriendAlias.d.ts +2 -0
- package/dist/src/apis/changeFriendAlias.js +30 -0
- package/dist/src/apis/changeGroupAvatar.d.ts +3 -0
- package/dist/src/apis/changeGroupAvatar.js +50 -0
- package/dist/src/apis/changeGroupName.d.ts +4 -0
- package/dist/src/apis/changeGroupName.js +35 -0
- package/dist/src/apis/changeGroupOwner.d.ts +4 -0
- package/dist/src/apis/changeGroupOwner.js +33 -0
- package/dist/src/apis/createAutoReply.d.ts +14 -0
- package/dist/src/apis/createAutoReply.js +40 -0
- package/dist/src/apis/createCatalog.d.ts +7 -0
- package/dist/src/apis/createCatalog.js +32 -0
- package/dist/src/apis/createGroup.d.ts +28 -0
- package/dist/src/apis/createGroup.js +46 -0
- package/dist/src/apis/createNote.d.ts +7 -0
- package/dist/src/apis/createNote.js +50 -0
- package/dist/src/apis/createPoll.d.ts +36 -0
- package/dist/src/apis/createPoll.js +43 -0
- package/dist/src/apis/createProductCatalog.d.ts +23 -0
- package/dist/src/apis/createProductCatalog.js +53 -0
- package/dist/src/apis/createReminder.d.ts +12 -0
- package/dist/src/apis/createReminder.js +66 -0
- package/dist/src/apis/custom.d.ts +9 -0
- package/dist/src/apis/custom.js +17 -0
- package/dist/src/apis/deleteAutoReply.d.ts +5 -0
- package/dist/src/apis/deleteAutoReply.js +32 -0
- package/dist/src/apis/deleteAvatar.d.ts +9 -0
- package/dist/src/apis/deleteAvatar.js +30 -0
- package/dist/src/apis/deleteCatalog.d.ts +2 -0
- package/dist/src/apis/deleteCatalog.js +31 -0
- package/dist/src/apis/deleteChat.d.ts +19 -0
- package/dist/src/apis/deleteChat.js +53 -0
- package/dist/src/apis/deleteGroupInviteBox.d.ts +9 -0
- package/dist/src/apis/deleteGroupInviteBox.js +30 -0
- package/dist/src/apis/deleteMessage.d.ts +14 -0
- package/dist/src/apis/deleteMessage.js +55 -0
- package/dist/src/apis/deleteProductCatalog.d.ts +10 -0
- package/dist/src/apis/deleteProductCatalog.js +34 -0
- package/dist/src/apis/disableGroupLink.d.ts +2 -0
- package/dist/src/apis/disableGroupLink.js +27 -0
- package/dist/src/apis/disperseGroup.d.ts +2 -0
- package/dist/src/apis/disperseGroup.js +31 -0
- package/dist/src/apis/editNote.d.ts +17 -0
- package/dist/src/apis/editNote.js +49 -0
- package/dist/src/apis/editReminder.d.ts +13 -0
- package/dist/src/apis/editReminder.js +64 -0
- package/dist/src/apis/enableGroupLink.d.ts +6 -0
- package/dist/src/apis/enableGroupLink.js +28 -0
- package/dist/src/apis/fetchAccountInfo.d.ts +3 -0
- package/dist/src/apis/fetchAccountInfo.js +13 -0
- package/dist/src/apis/findUser.d.ts +15 -0
- package/dist/src/apis/findUser.js +43 -0
- package/dist/src/apis/forwardMessage.d.ts +24 -0
- package/dist/src/apis/forwardMessage.js +102 -0
- package/dist/src/apis/getAliasList.d.ts +8 -0
- package/dist/src/apis/getAliasList.js +30 -0
- package/dist/src/apis/getAllFriends.d.ts +3 -0
- package/dist/src/apis/getAllFriends.js +35 -0
- package/dist/src/apis/getAllGroups.d.ts +7 -0
- package/dist/src/apis/getAllGroups.js +13 -0
- package/dist/src/apis/getArchivedChatList.d.ts +5 -0
- package/dist/src/apis/getArchivedChatList.js +26 -0
- package/dist/src/apis/getAutoDeleteChat.d.ts +9 -0
- package/dist/src/apis/getAutoDeleteChat.js +24 -0
- package/dist/src/apis/getAutoReplyList.d.ts +6 -0
- package/dist/src/apis/getAutoReplyList.js +27 -0
- package/dist/src/apis/getAvatarList.d.ts +12 -0
- package/dist/src/apis/getAvatarList.js +31 -0
- package/dist/src/apis/getBizAccount.d.ts +24 -0
- package/dist/src/apis/getBizAccount.js +30 -0
- package/dist/src/apis/getCatalogList.d.ts +18 -0
- package/dist/src/apis/getCatalogList.js +35 -0
- package/dist/src/apis/getContext.d.ts +1 -0
- package/dist/src/apis/getContext.js +7 -0
- package/dist/src/apis/getCookie.d.ts +1 -0
- package/dist/src/apis/getCookie.js +12 -0
- package/dist/src/apis/getFriendBoardList.d.ts +5 -0
- package/dist/src/apis/getFriendBoardList.js +29 -0
- package/dist/src/apis/getFriendOnlines.d.ts +10 -0
- package/dist/src/apis/getFriendOnlines.js +38 -0
- package/dist/src/apis/getFriendRecommendations.d.ts +42 -0
- package/dist/src/apis/getFriendRecommendations.js +30 -0
- package/dist/src/apis/getFriendRequestStatus.d.ts +8 -0
- package/dist/src/apis/getFriendRequestStatus.js +28 -0
- package/dist/src/apis/getGroupBlockedMember.d.ts +23 -0
- package/dist/src/apis/getGroupBlockedMember.js +32 -0
- package/dist/src/apis/getGroupInfo.d.ts +16 -0
- package/dist/src/apis/getGroupInfo.js +35 -0
- package/dist/src/apis/getGroupInviteBoxInfo.d.ts +32 -0
- package/dist/src/apis/getGroupInviteBoxInfo.js +41 -0
- package/dist/src/apis/getGroupInviteBoxList.d.ts +38 -0
- package/dist/src/apis/getGroupInviteBoxList.js +34 -0
- package/dist/src/apis/getGroupLinkDetail.d.ts +9 -0
- package/dist/src/apis/getGroupLinkDetail.js +28 -0
- package/dist/src/apis/getGroupLinkInfo.d.ts +34 -0
- package/dist/src/apis/getGroupLinkInfo.js +31 -0
- package/dist/src/apis/getGroupMembersInfo.d.ts +17 -0
- package/dist/src/apis/getGroupMembersInfo.js +27 -0
- package/dist/src/apis/getHiddenConversations.d.ts +11 -0
- package/dist/src/apis/getHiddenConversations.js +26 -0
- package/dist/src/apis/getLabels.d.ts +7 -0
- package/dist/src/apis/getLabels.js +31 -0
- package/dist/src/apis/getListBoard.d.ts +21 -0
- package/dist/src/apis/getListBoard.js +48 -0
- package/dist/src/apis/getListReminder.d.ts +28 -0
- package/dist/src/apis/getListReminder.js +50 -0
- package/dist/src/apis/getMute.d.ts +13 -0
- package/dist/src/apis/getMute.js +25 -0
- package/dist/src/apis/getOwnId.d.ts +1 -0
- package/dist/src/apis/getOwnId.js +7 -0
- package/dist/src/apis/getPendingGroupMembers.d.ts +11 -0
- package/dist/src/apis/getPendingGroupMembers.js +30 -0
- package/dist/src/apis/getPinConversations.d.ts +5 -0
- package/dist/src/apis/getPinConversations.js +25 -0
- package/dist/src/apis/getPollDetail.d.ts +3 -0
- package/dist/src/apis/getPollDetail.js +33 -0
- package/dist/src/apis/getProductCatalogList.d.ts +20 -0
- package/dist/src/apis/getProductCatalogList.js +36 -0
- package/dist/src/apis/getQR.d.ts +4 -0
- package/dist/src/apis/getQR.js +32 -0
- package/dist/src/apis/getQuickMessageList.d.ts +7 -0
- package/dist/src/apis/getQuickMessageList.js +27 -0
- package/dist/src/apis/getRelatedFriendGroup.d.ts +6 -0
- package/dist/src/apis/getRelatedFriendGroup.js +33 -0
- package/dist/src/apis/getReminder.d.ts +3 -0
- package/dist/src/apis/getReminder.js +28 -0
- package/dist/src/apis/getReminderResponses.d.ts +5 -0
- package/dist/src/apis/getReminderResponses.js +27 -0
- package/dist/src/apis/getSentFriendRequest.d.ts +18 -0
- package/dist/src/apis/getSentFriendRequest.js +27 -0
- package/dist/src/apis/getSettings.d.ts +3 -0
- package/dist/src/apis/getSettings.js +23 -0
- package/dist/src/apis/getStickers.d.ts +1 -0
- package/dist/src/apis/getStickers.js +43 -0
- package/dist/src/apis/getStickersDetail.d.ts +24 -0
- package/dist/src/apis/getStickersDetail.js +43 -0
- package/dist/src/apis/getUnreadMark.d.ts +14 -0
- package/dist/src/apis/getUnreadMark.js +33 -0
- package/dist/src/apis/getUserInfo.d.ts +8 -0
- package/dist/src/apis/getUserInfo.js +45 -0
- package/dist/src/apis/inviteUserToGroups.d.ts +10 -0
- package/dist/src/apis/inviteUserToGroups.js +33 -0
- package/dist/src/apis/joinGroupInviteBox.d.ts +2 -0
- package/dist/src/apis/joinGroupInviteBox.js +28 -0
- package/dist/src/apis/joinGroupLink.d.ts +2 -0
- package/dist/src/apis/joinGroupLink.js +30 -0
- package/dist/src/apis/keepAlive.d.ts +4 -0
- package/dist/src/apis/keepAlive.js +25 -0
- package/dist/src/apis/lastOnline.d.ts +7 -0
- package/dist/src/apis/lastOnline.js +29 -0
- package/dist/src/apis/leaveGroup.d.ts +4 -0
- package/dist/src/apis/leaveGroup.js +36 -0
- package/dist/src/apis/listen.d.ts +103 -0
- package/dist/src/apis/listen.js +432 -0
- package/dist/src/apis/lockPoll.d.ts +2 -0
- package/dist/src/apis/lockPoll.js +31 -0
- package/dist/src/apis/login.d.ts +3 -0
- package/dist/src/apis/login.js +101 -0
- package/dist/src/apis/loginQR.d.ts +70 -0
- package/dist/src/apis/loginQR.js +369 -0
- package/dist/src/apis/parseLink.d.ts +21 -0
- package/dist/src/apis/parseLink.js +30 -0
- package/dist/src/apis/rejectFriendRequest.d.ts +2 -0
- package/dist/src/apis/rejectFriendRequest.js +30 -0
- package/dist/src/apis/removeFriend.d.ts +2 -0
- package/dist/src/apis/removeFriend.js +31 -0
- package/dist/src/apis/removeFriendAlias.d.ts +2 -0
- package/dist/src/apis/removeFriendAlias.js +27 -0
- package/dist/src/apis/removeGroupBlockedMember.d.ts +2 -0
- package/dist/src/apis/removeGroupBlockedMember.js +31 -0
- package/dist/src/apis/removeGroupDeputy.d.ts +2 -0
- package/dist/src/apis/removeGroupDeputy.js +33 -0
- package/dist/src/apis/removeQuickMessage.d.ts +5 -0
- package/dist/src/apis/removeQuickMessage.js +30 -0
- package/dist/src/apis/removeReminder.d.ts +3 -0
- package/dist/src/apis/removeReminder.js +43 -0
- package/dist/src/apis/removeUnreadMark.d.ts +8 -0
- package/dist/src/apis/removeUnreadMark.js +53 -0
- package/dist/src/apis/removeUserFromGroup.d.ts +4 -0
- package/dist/src/apis/removeUserFromGroup.js +37 -0
- package/dist/src/apis/resetHiddenConversPin.d.ts +2 -0
- package/dist/src/apis/resetHiddenConversPin.js +23 -0
- package/dist/src/apis/reuseAvatar.d.ts +2 -0
- package/dist/src/apis/reuseAvatar.js +29 -0
- package/dist/src/apis/reviewPendingMemberRequest.d.ts +14 -0
- package/dist/src/apis/reviewPendingMemberRequest.js +41 -0
- package/dist/src/apis/sendBankCard.d.ts +9 -0
- package/dist/src/apis/sendBankCard.js +40 -0
- package/dist/src/apis/sendCard.d.ts +10 -0
- package/dist/src/apis/sendCard.js +62 -0
- package/dist/src/apis/sendDeliveredEvent.d.ts +16 -0
- package/dist/src/apis/sendDeliveredEvent.js +58 -0
- package/dist/src/apis/sendFriendRequest.d.ts +2 -0
- package/dist/src/apis/sendFriendRequest.js +42 -0
- package/dist/src/apis/sendLink.d.ts +10 -0
- package/dist/src/apis/sendLink.js +64 -0
- package/dist/src/apis/sendMessage.d.ts +99 -0
- package/dist/src/apis/sendMessage.js +455 -0
- package/dist/src/apis/sendReport.d.ts +17 -0
- package/dist/src/apis/sendReport.js +56 -0
- package/dist/src/apis/sendSeenEvent.d.ts +16 -0
- package/dist/src/apis/sendSeenEvent.js +66 -0
- package/dist/src/apis/sendSticker.d.ts +10 -0
- package/dist/src/apis/sendSticker.js +60 -0
- package/dist/src/apis/sendTypingEvent.d.ts +5 -0
- package/dist/src/apis/sendTypingEvent.js +36 -0
- package/dist/src/apis/sendVideo.d.ts +35 -0
- package/dist/src/apis/sendVideo.js +121 -0
- package/dist/src/apis/sendVoice.d.ts +12 -0
- package/dist/src/apis/sendVoice.js +76 -0
- package/dist/src/apis/setArchivedConversations.d.ts +10 -0
- package/dist/src/apis/setArchivedConversations.js +37 -0
- package/dist/src/apis/setHiddenConversations.d.ts +3 -0
- package/dist/src/apis/setHiddenConversations.js +42 -0
- package/dist/src/apis/setMute.d.ts +20 -0
- package/dist/src/apis/setMute.js +70 -0
- package/dist/src/apis/setPinnedConversations.d.ts +3 -0
- package/dist/src/apis/setPinnedConversations.js +37 -0
- package/dist/src/apis/sharePoll.d.ts +2 -0
- package/dist/src/apis/sharePoll.js +31 -0
- package/dist/src/apis/unblockUser.d.ts +2 -0
- package/dist/src/apis/unblockUser.js +31 -0
- package/dist/src/apis/undo.d.ts +9 -0
- package/dist/src/apis/undo.js +45 -0
- package/dist/src/apis/undoFriendRequest.d.ts +2 -0
- package/dist/src/apis/undoFriendRequest.js +30 -0
- package/dist/src/apis/updateActiveStatus.d.ts +4 -0
- package/dist/src/apis/updateActiveStatus.js +30 -0
- package/dist/src/apis/updateAutoDeleteChat.d.ts +9 -0
- package/dist/src/apis/updateAutoDeleteChat.js +43 -0
- package/dist/src/apis/updateAutoReply.d.ts +15 -0
- package/dist/src/apis/updateAutoReply.js +41 -0
- package/dist/src/apis/updateCatalog.d.ts +11 -0
- package/dist/src/apis/updateCatalog.js +33 -0
- package/dist/src/apis/updateGroupSettings.d.ts +40 -0
- package/dist/src/apis/updateGroupSettings.js +46 -0
- package/dist/src/apis/updateHiddenConversPin.d.ts +2 -0
- package/dist/src/apis/updateHiddenConversPin.js +33 -0
- package/dist/src/apis/updateLabels.d.ts +15 -0
- package/dist/src/apis/updateLabels.js +37 -0
- package/dist/src/apis/updateLang.d.ts +6 -0
- package/dist/src/apis/updateLang.js +33 -0
- package/dist/src/apis/updateProductCatalog.d.ts +25 -0
- package/dist/src/apis/updateProductCatalog.js +54 -0
- package/dist/src/apis/updateProfile.d.ts +20 -0
- package/dist/src/apis/updateProfile.js +46 -0
- package/dist/src/apis/updateQuickMessage.d.ts +11 -0
- package/dist/src/apis/updateQuickMessage.js +64 -0
- package/dist/src/apis/updateSettings.d.ts +16 -0
- package/dist/src/apis/updateSettings.js +93 -0
- package/dist/src/apis/uploadAttachment.d.ts +50 -0
- package/dist/src/apis/uploadAttachment.js +202 -0
- package/dist/src/apis/uploadProductPhoto.d.ts +14 -0
- package/dist/src/apis/uploadProductPhoto.js +56 -0
- package/dist/src/apis/votePoll.d.ts +5 -0
- package/dist/src/apis/votePoll.js +32 -0
- package/dist/src/apis.d.ts +279 -0
- package/dist/src/apis.js +283 -0
- package/dist/src/context.d.ts +183 -0
- package/dist/src/context.js +33 -0
- package/dist/src/index.d.ts +146 -0
- package/dist/src/index.js +41 -0
- package/dist/src/models/Attachment.d.ts +11 -0
- package/dist/src/models/Attachment.js +2 -0
- package/dist/src/models/AutoReply.d.ts +20 -0
- package/dist/src/models/AutoReply.js +10 -0
- package/dist/src/models/Board.d.ts +60 -0
- package/dist/src/models/Board.js +9 -0
- package/dist/src/models/Catalog.d.ts +16 -0
- package/dist/src/models/Catalog.js +2 -0
- package/dist/src/models/DeliveredMessage.d.ts +27 -0
- package/dist/src/models/DeliveredMessage.js +22 -0
- package/dist/src/models/Enum.d.ts +247 -0
- package/dist/src/models/Enum.js +254 -0
- package/dist/src/models/FriendEvent.d.ts +107 -0
- package/dist/src/models/FriendEvent.js +87 -0
- package/dist/src/models/Group.d.ts +125 -0
- package/dist/src/models/Group.js +14 -0
- package/dist/src/models/GroupEvent.d.ts +178 -0
- package/dist/src/models/GroupEvent.js +94 -0
- package/dist/src/models/Label.d.ts +10 -0
- package/dist/src/models/Label.js +2 -0
- package/dist/src/models/Message.d.ts +91 -0
- package/dist/src/models/Message.js +34 -0
- package/dist/src/models/ProductCatalog.d.ts +17 -0
- package/dist/src/models/ProductCatalog.js +2 -0
- package/dist/src/models/QuickMessage.d.ts +25 -0
- package/dist/src/models/QuickMessage.js +2 -0
- package/dist/src/models/Reaction.d.ts +85 -0
- package/dist/src/models/Reaction.js +74 -0
- package/dist/src/models/Reminder.d.ts +51 -0
- package/dist/src/models/Reminder.js +10 -0
- package/dist/src/models/SeenMessage.d.ts +26 -0
- package/dist/src/models/SeenMessage.js +22 -0
- package/dist/src/models/Typing.d.ts +24 -0
- package/dist/src/models/Typing.js +22 -0
- package/dist/src/models/Undo.d.ts +34 -0
- package/dist/src/models/Undo.js +16 -0
- package/dist/src/models/User.d.ts +49 -0
- package/dist/src/models/User.js +2 -0
- package/dist/src/models/ZBusiness.d.ts +22 -0
- package/dist/src/models/ZBusiness.js +38 -0
- package/dist/src/models/index.d.ts +20 -0
- package/dist/src/models/index.js +36 -0
- package/dist/src/update.d.ts +2 -0
- package/dist/src/update.js +33 -0
- package/dist/src/utils.d.ts +169 -0
- package/dist/src/utils.js +737 -0
- package/dist/src/zalo.d.ts +41 -0
- package/dist/src/zalo.js +110 -0
- package/package.json +60 -0
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
import { Listener } from "./apis/listen.js";
|
|
2
|
+
import { acceptFriendRequestFactory } from "./apis/acceptFriendRequest.js";
|
|
3
|
+
import { addGroupBlockedMemberFactory } from "./apis/addGroupBlockedMember.js";
|
|
4
|
+
import { addGroupDeputyFactory } from "./apis/addGroupDeputy.js";
|
|
5
|
+
import { addPollOptionsFactory } from "./apis/addPollOptions.js";
|
|
6
|
+
import { addQuickMessageFactory } from "./apis/addQuickMessage.js";
|
|
7
|
+
import { addReactionFactory } from "./apis/addReaction.js";
|
|
8
|
+
import { addUnreadMarkFactory } from "./apis/addUnreadMark.js";
|
|
9
|
+
import { addUserToGroupFactory } from "./apis/addUserToGroup.js";
|
|
10
|
+
import { blockUserFactory } from "./apis/blockUser.js";
|
|
11
|
+
import { blockViewFeedFactory } from "./apis/blockViewFeed.js";
|
|
12
|
+
import { changeAccountAvatarFactory } from "./apis/changeAccountAvatar.js";
|
|
13
|
+
import { changeFriendAliasFactory } from "./apis/changeFriendAlias.js";
|
|
14
|
+
import { changeGroupAvatarFactory } from "./apis/changeGroupAvatar.js";
|
|
15
|
+
import { changeGroupNameFactory } from "./apis/changeGroupName.js";
|
|
16
|
+
import { changeGroupOwnerFactory } from "./apis/changeGroupOwner.js";
|
|
17
|
+
import { createAutoReplyFactory } from "./apis/createAutoReply.js";
|
|
18
|
+
import { createCatalogFactory } from "./apis/createCatalog.js";
|
|
19
|
+
import { createGroupFactory } from "./apis/createGroup.js";
|
|
20
|
+
import { createNoteFactory } from "./apis/createNote.js";
|
|
21
|
+
import { createPollFactory } from "./apis/createPoll.js";
|
|
22
|
+
import { createProductCatalogFactory } from "./apis/createProductCatalog.js";
|
|
23
|
+
import { createReminderFactory } from "./apis/createReminder.js";
|
|
24
|
+
import { deleteAutoReplyFactory } from "./apis/deleteAutoReply.js";
|
|
25
|
+
import { deleteAvatarFactory } from "./apis/deleteAvatar.js";
|
|
26
|
+
import { deleteCatalogFactory } from "./apis/deleteCatalog.js";
|
|
27
|
+
import { deleteChatFactory } from "./apis/deleteChat.js";
|
|
28
|
+
import { deleteGroupInviteBoxFactory } from "./apis/deleteGroupInviteBox.js";
|
|
29
|
+
import { deleteMessageFactory } from "./apis/deleteMessage.js";
|
|
30
|
+
import { deleteProductCatalogFactory } from "./apis/deleteProductCatalog.js";
|
|
31
|
+
import { disableGroupLinkFactory } from "./apis/disableGroupLink.js";
|
|
32
|
+
import { disperseGroupFactory } from "./apis/disperseGroup.js";
|
|
33
|
+
import { editNoteFactory } from "./apis/editNote.js";
|
|
34
|
+
import { editReminderFactory } from "./apis/editReminder.js";
|
|
35
|
+
import { enableGroupLinkFactory } from "./apis/enableGroupLink.js";
|
|
36
|
+
import { fetchAccountInfoFactory } from "./apis/fetchAccountInfo.js";
|
|
37
|
+
import { findUserFactory } from "./apis/findUser.js";
|
|
38
|
+
import { forwardMessageFactory } from "./apis/forwardMessage.js";
|
|
39
|
+
import { getAliasListFactory } from "./apis/getAliasList.js";
|
|
40
|
+
import { getAllFriendsFactory } from "./apis/getAllFriends.js";
|
|
41
|
+
import { getAllGroupsFactory } from "./apis/getAllGroups.js";
|
|
42
|
+
import { getArchivedChatListFactory } from "./apis/getArchivedChatList.js";
|
|
43
|
+
import { getAutoDeleteChatFactory } from "./apis/getAutoDeleteChat.js";
|
|
44
|
+
import { getAutoReplyListFactory } from "./apis/getAutoReplyList.js";
|
|
45
|
+
import { getAvatarListFactory } from "./apis/getAvatarList.js";
|
|
46
|
+
import { getBizAccountFactory } from "./apis/getBizAccount.js";
|
|
47
|
+
import { getCatalogListFactory } from "./apis/getCatalogList.js";
|
|
48
|
+
import { getContextFactory } from "./apis/getContext.js";
|
|
49
|
+
import { getCookieFactory } from "./apis/getCookie.js";
|
|
50
|
+
import { getFriendBoardListFactory } from "./apis/getFriendBoardList.js";
|
|
51
|
+
import { getFriendOnlinesFactory } from "./apis/getFriendOnlines.js";
|
|
52
|
+
import { getFriendRecommendationsFactory } from "./apis/getFriendRecommendations.js";
|
|
53
|
+
import { getFriendRequestStatusFactory } from "./apis/getFriendRequestStatus.js";
|
|
54
|
+
import { getGroupBlockedMemberFactory } from "./apis/getGroupBlockedMember.js";
|
|
55
|
+
import { getGroupInfoFactory } from "./apis/getGroupInfo.js";
|
|
56
|
+
import { getGroupInviteBoxInfoFactory } from "./apis/getGroupInviteBoxInfo.js";
|
|
57
|
+
import { getGroupInviteBoxListFactory } from "./apis/getGroupInviteBoxList.js";
|
|
58
|
+
import { getGroupLinkDetailFactory } from "./apis/getGroupLinkDetail.js";
|
|
59
|
+
import { getGroupLinkInfoFactory } from "./apis/getGroupLinkInfo.js";
|
|
60
|
+
import { getGroupMembersInfoFactory } from "./apis/getGroupMembersInfo.js";
|
|
61
|
+
import { getHiddenConversationsFactory } from "./apis/getHiddenConversations.js";
|
|
62
|
+
import { getLabelsFactory } from "./apis/getLabels.js";
|
|
63
|
+
import { getListBoardFactory } from "./apis/getListBoard.js";
|
|
64
|
+
import { getListReminderFactory } from "./apis/getListReminder.js";
|
|
65
|
+
import { getMuteFactory } from "./apis/getMute.js";
|
|
66
|
+
import { getOwnIdFactory } from "./apis/getOwnId.js";
|
|
67
|
+
import { getPendingGroupMembersFactory } from "./apis/getPendingGroupMembers.js";
|
|
68
|
+
import { getPinConversationsFactory } from "./apis/getPinConversations.js";
|
|
69
|
+
import { getPollDetailFactory } from "./apis/getPollDetail.js";
|
|
70
|
+
import { getProductCatalogListFactory } from "./apis/getProductCatalogList.js";
|
|
71
|
+
import { getQRFactory } from "./apis/getQR.js";
|
|
72
|
+
import { getQuickMessageListFactory } from "./apis/getQuickMessageList.js";
|
|
73
|
+
import { getRelatedFriendGroupFactory } from "./apis/getRelatedFriendGroup.js";
|
|
74
|
+
import { getReminderFactory } from "./apis/getReminder.js";
|
|
75
|
+
import { getReminderResponsesFactory } from "./apis/getReminderResponses.js";
|
|
76
|
+
import { getSentFriendRequestFactory } from "./apis/getSentFriendRequest.js";
|
|
77
|
+
import { getSettingsFactory } from "./apis/getSettings.js";
|
|
78
|
+
import { getStickersFactory } from "./apis/getStickers.js";
|
|
79
|
+
import { getStickersDetailFactory } from "./apis/getStickersDetail.js";
|
|
80
|
+
import { getUnreadMarkFactory } from "./apis/getUnreadMark.js";
|
|
81
|
+
import { getUserInfoFactory } from "./apis/getUserInfo.js";
|
|
82
|
+
import { inviteUserToGroupsFactory } from "./apis/inviteUserToGroups.js";
|
|
83
|
+
import { joinGroupInviteBoxFactory } from "./apis/joinGroupInviteBox.js";
|
|
84
|
+
import { joinGroupLinkFactory } from "./apis/joinGroupLink.js";
|
|
85
|
+
import { keepAliveFactory } from "./apis/keepAlive.js";
|
|
86
|
+
import { lastOnlineFactory } from "./apis/lastOnline.js";
|
|
87
|
+
import { leaveGroupFactory } from "./apis/leaveGroup.js";
|
|
88
|
+
import { lockPollFactory } from "./apis/lockPoll.js";
|
|
89
|
+
import { parseLinkFactory } from "./apis/parseLink.js";
|
|
90
|
+
import { rejectFriendRequestFactory } from "./apis/rejectFriendRequest.js";
|
|
91
|
+
import { removeFriendFactory } from "./apis/removeFriend.js";
|
|
92
|
+
import { removeFriendAliasFactory } from "./apis/removeFriendAlias.js";
|
|
93
|
+
import { removeGroupBlockedMemberFactory } from "./apis/removeGroupBlockedMember.js";
|
|
94
|
+
import { removeGroupDeputyFactory } from "./apis/removeGroupDeputy.js";
|
|
95
|
+
import { removeQuickMessageFactory } from "./apis/removeQuickMessage.js";
|
|
96
|
+
import { removeReminderFactory } from "./apis/removeReminder.js";
|
|
97
|
+
import { removeUnreadMarkFactory } from "./apis/removeUnreadMark.js";
|
|
98
|
+
import { removeUserFromGroupFactory } from "./apis/removeUserFromGroup.js";
|
|
99
|
+
import { resetHiddenConversPinFactory } from "./apis/resetHiddenConversPin.js";
|
|
100
|
+
import { reuseAvatarFactory } from "./apis/reuseAvatar.js";
|
|
101
|
+
import { reviewPendingMemberRequestFactory } from "./apis/reviewPendingMemberRequest.js";
|
|
102
|
+
import { sendBankCardFactory } from "./apis/sendBankCard.js";
|
|
103
|
+
import { sendCardFactory } from "./apis/sendCard.js";
|
|
104
|
+
import { sendDeliveredEventFactory } from "./apis/sendDeliveredEvent.js";
|
|
105
|
+
import { sendFriendRequestFactory } from "./apis/sendFriendRequest.js";
|
|
106
|
+
import { sendLinkFactory } from "./apis/sendLink.js";
|
|
107
|
+
import { sendMessageFactory } from "./apis/sendMessage.js";
|
|
108
|
+
import { sendReportFactory } from "./apis/sendReport.js";
|
|
109
|
+
import { sendSeenEventFactory } from "./apis/sendSeenEvent.js";
|
|
110
|
+
import { sendStickerFactory } from "./apis/sendSticker.js";
|
|
111
|
+
import { sendTypingEventFactory } from "./apis/sendTypingEvent.js";
|
|
112
|
+
import { sendVideoFactory } from "./apis/sendVideo.js";
|
|
113
|
+
import { sendVoiceFactory } from "./apis/sendVoice.js";
|
|
114
|
+
import { setArchivedConversationsFactory } from "./apis/setArchivedConversations.js";
|
|
115
|
+
import { setHiddenConversationsFactory } from "./apis/setHiddenConversations.js";
|
|
116
|
+
import { setMuteFactory } from "./apis/setMute.js";
|
|
117
|
+
import { setPinnedConversationsFactory } from "./apis/setPinnedConversations.js";
|
|
118
|
+
import { sharePollFactory } from "./apis/sharePoll.js";
|
|
119
|
+
import { unblockUserFactory } from "./apis/unblockUser.js";
|
|
120
|
+
import { undoFactory } from "./apis/undo.js";
|
|
121
|
+
import { undoFriendRequestFactory } from "./apis/undoFriendRequest.js";
|
|
122
|
+
import { updateActiveStatusFactory } from "./apis/updateActiveStatus.js";
|
|
123
|
+
import { updateAutoDeleteChatFactory } from "./apis/updateAutoDeleteChat.js";
|
|
124
|
+
import { updateAutoReplyFactory } from "./apis/updateAutoReply.js";
|
|
125
|
+
import { updateCatalogFactory } from "./apis/updateCatalog.js";
|
|
126
|
+
import { updateGroupSettingsFactory } from "./apis/updateGroupSettings.js";
|
|
127
|
+
import { updateHiddenConversPinFactory } from "./apis/updateHiddenConversPin.js";
|
|
128
|
+
import { updateLabelsFactory } from "./apis/updateLabels.js";
|
|
129
|
+
import { updateLangFactory } from "./apis/updateLang.js";
|
|
130
|
+
import { updateProductCatalogFactory } from "./apis/updateProductCatalog.js";
|
|
131
|
+
import { updateProfileFactory } from "./apis/updateProfile.js";
|
|
132
|
+
import { updateQuickMessageFactory } from "./apis/updateQuickMessage.js";
|
|
133
|
+
import { updateSettingsFactory } from "./apis/updateSettings.js";
|
|
134
|
+
import { uploadAttachmentFactory } from "./apis/uploadAttachment.js";
|
|
135
|
+
import { uploadProductPhotoFactory } from "./apis/uploadProductPhoto.js";
|
|
136
|
+
import { votePollFactory } from "./apis/votePoll.js";
|
|
137
|
+
import { customFactory } from "./apis/custom.js";
|
|
138
|
+
import type { ZPWServiceMap, ContextSession } from "./context.js";
|
|
139
|
+
export declare class API {
|
|
140
|
+
zpwServiceMap: ZPWServiceMap;
|
|
141
|
+
listener: Listener;
|
|
142
|
+
acceptFriendRequest: ReturnType<typeof acceptFriendRequestFactory>;
|
|
143
|
+
addGroupBlockedMember: ReturnType<typeof addGroupBlockedMemberFactory>;
|
|
144
|
+
addGroupDeputy: ReturnType<typeof addGroupDeputyFactory>;
|
|
145
|
+
addPollOptions: ReturnType<typeof addPollOptionsFactory>;
|
|
146
|
+
addQuickMessage: ReturnType<typeof addQuickMessageFactory>;
|
|
147
|
+
addReaction: ReturnType<typeof addReactionFactory>;
|
|
148
|
+
addUnreadMark: ReturnType<typeof addUnreadMarkFactory>;
|
|
149
|
+
addUserToGroup: ReturnType<typeof addUserToGroupFactory>;
|
|
150
|
+
blockUser: ReturnType<typeof blockUserFactory>;
|
|
151
|
+
blockViewFeed: ReturnType<typeof blockViewFeedFactory>;
|
|
152
|
+
changeAccountAvatar: ReturnType<typeof changeAccountAvatarFactory>;
|
|
153
|
+
changeFriendAlias: ReturnType<typeof changeFriendAliasFactory>;
|
|
154
|
+
changeGroupAvatar: ReturnType<typeof changeGroupAvatarFactory>;
|
|
155
|
+
changeGroupName: ReturnType<typeof changeGroupNameFactory>;
|
|
156
|
+
changeGroupOwner: ReturnType<typeof changeGroupOwnerFactory>;
|
|
157
|
+
createAutoReply: ReturnType<typeof createAutoReplyFactory>;
|
|
158
|
+
createCatalog: ReturnType<typeof createCatalogFactory>;
|
|
159
|
+
createGroup: ReturnType<typeof createGroupFactory>;
|
|
160
|
+
createNote: ReturnType<typeof createNoteFactory>;
|
|
161
|
+
createPoll: ReturnType<typeof createPollFactory>;
|
|
162
|
+
createProductCatalog: ReturnType<typeof createProductCatalogFactory>;
|
|
163
|
+
createReminder: ReturnType<typeof createReminderFactory>;
|
|
164
|
+
deleteAutoReply: ReturnType<typeof deleteAutoReplyFactory>;
|
|
165
|
+
deleteAvatar: ReturnType<typeof deleteAvatarFactory>;
|
|
166
|
+
deleteCatalog: ReturnType<typeof deleteCatalogFactory>;
|
|
167
|
+
deleteChat: ReturnType<typeof deleteChatFactory>;
|
|
168
|
+
deleteGroupInviteBox: ReturnType<typeof deleteGroupInviteBoxFactory>;
|
|
169
|
+
deleteMessage: ReturnType<typeof deleteMessageFactory>;
|
|
170
|
+
deleteProductCatalog: ReturnType<typeof deleteProductCatalogFactory>;
|
|
171
|
+
disableGroupLink: ReturnType<typeof disableGroupLinkFactory>;
|
|
172
|
+
disperseGroup: ReturnType<typeof disperseGroupFactory>;
|
|
173
|
+
editNote: ReturnType<typeof editNoteFactory>;
|
|
174
|
+
editReminder: ReturnType<typeof editReminderFactory>;
|
|
175
|
+
enableGroupLink: ReturnType<typeof enableGroupLinkFactory>;
|
|
176
|
+
fetchAccountInfo: ReturnType<typeof fetchAccountInfoFactory>;
|
|
177
|
+
findUser: ReturnType<typeof findUserFactory>;
|
|
178
|
+
forwardMessage: ReturnType<typeof forwardMessageFactory>;
|
|
179
|
+
getAliasList: ReturnType<typeof getAliasListFactory>;
|
|
180
|
+
getAllFriends: ReturnType<typeof getAllFriendsFactory>;
|
|
181
|
+
getAllGroups: ReturnType<typeof getAllGroupsFactory>;
|
|
182
|
+
getArchivedChatList: ReturnType<typeof getArchivedChatListFactory>;
|
|
183
|
+
getAutoDeleteChat: ReturnType<typeof getAutoDeleteChatFactory>;
|
|
184
|
+
getAutoReplyList: ReturnType<typeof getAutoReplyListFactory>;
|
|
185
|
+
getAvatarList: ReturnType<typeof getAvatarListFactory>;
|
|
186
|
+
getBizAccount: ReturnType<typeof getBizAccountFactory>;
|
|
187
|
+
getCatalogList: ReturnType<typeof getCatalogListFactory>;
|
|
188
|
+
getContext: ReturnType<typeof getContextFactory>;
|
|
189
|
+
getCookie: ReturnType<typeof getCookieFactory>;
|
|
190
|
+
getFriendBoardList: ReturnType<typeof getFriendBoardListFactory>;
|
|
191
|
+
getFriendOnlines: ReturnType<typeof getFriendOnlinesFactory>;
|
|
192
|
+
getFriendRecommendations: ReturnType<typeof getFriendRecommendationsFactory>;
|
|
193
|
+
getFriendRequestStatus: ReturnType<typeof getFriendRequestStatusFactory>;
|
|
194
|
+
getGroupBlockedMember: ReturnType<typeof getGroupBlockedMemberFactory>;
|
|
195
|
+
getGroupInfo: ReturnType<typeof getGroupInfoFactory>;
|
|
196
|
+
getGroupInviteBoxInfo: ReturnType<typeof getGroupInviteBoxInfoFactory>;
|
|
197
|
+
getGroupInviteBoxList: ReturnType<typeof getGroupInviteBoxListFactory>;
|
|
198
|
+
getGroupLinkDetail: ReturnType<typeof getGroupLinkDetailFactory>;
|
|
199
|
+
getGroupLinkInfo: ReturnType<typeof getGroupLinkInfoFactory>;
|
|
200
|
+
getGroupMembersInfo: ReturnType<typeof getGroupMembersInfoFactory>;
|
|
201
|
+
getHiddenConversations: ReturnType<typeof getHiddenConversationsFactory>;
|
|
202
|
+
getLabels: ReturnType<typeof getLabelsFactory>;
|
|
203
|
+
getListBoard: ReturnType<typeof getListBoardFactory>;
|
|
204
|
+
getListReminder: ReturnType<typeof getListReminderFactory>;
|
|
205
|
+
getMute: ReturnType<typeof getMuteFactory>;
|
|
206
|
+
getOwnId: ReturnType<typeof getOwnIdFactory>;
|
|
207
|
+
getPendingGroupMembers: ReturnType<typeof getPendingGroupMembersFactory>;
|
|
208
|
+
getPinConversations: ReturnType<typeof getPinConversationsFactory>;
|
|
209
|
+
getPollDetail: ReturnType<typeof getPollDetailFactory>;
|
|
210
|
+
getProductCatalogList: ReturnType<typeof getProductCatalogListFactory>;
|
|
211
|
+
getQR: ReturnType<typeof getQRFactory>;
|
|
212
|
+
getQuickMessageList: ReturnType<typeof getQuickMessageListFactory>;
|
|
213
|
+
getRelatedFriendGroup: ReturnType<typeof getRelatedFriendGroupFactory>;
|
|
214
|
+
getReminder: ReturnType<typeof getReminderFactory>;
|
|
215
|
+
getReminderResponses: ReturnType<typeof getReminderResponsesFactory>;
|
|
216
|
+
getSentFriendRequest: ReturnType<typeof getSentFriendRequestFactory>;
|
|
217
|
+
getSettings: ReturnType<typeof getSettingsFactory>;
|
|
218
|
+
getStickers: ReturnType<typeof getStickersFactory>;
|
|
219
|
+
getStickersDetail: ReturnType<typeof getStickersDetailFactory>;
|
|
220
|
+
getUnreadMark: ReturnType<typeof getUnreadMarkFactory>;
|
|
221
|
+
getUserInfo: ReturnType<typeof getUserInfoFactory>;
|
|
222
|
+
inviteUserToGroups: ReturnType<typeof inviteUserToGroupsFactory>;
|
|
223
|
+
joinGroupInviteBox: ReturnType<typeof joinGroupInviteBoxFactory>;
|
|
224
|
+
joinGroupLink: ReturnType<typeof joinGroupLinkFactory>;
|
|
225
|
+
keepAlive: ReturnType<typeof keepAliveFactory>;
|
|
226
|
+
lastOnline: ReturnType<typeof lastOnlineFactory>;
|
|
227
|
+
leaveGroup: ReturnType<typeof leaveGroupFactory>;
|
|
228
|
+
lockPoll: ReturnType<typeof lockPollFactory>;
|
|
229
|
+
parseLink: ReturnType<typeof parseLinkFactory>;
|
|
230
|
+
rejectFriendRequest: ReturnType<typeof rejectFriendRequestFactory>;
|
|
231
|
+
removeFriend: ReturnType<typeof removeFriendFactory>;
|
|
232
|
+
removeFriendAlias: ReturnType<typeof removeFriendAliasFactory>;
|
|
233
|
+
removeGroupBlockedMember: ReturnType<typeof removeGroupBlockedMemberFactory>;
|
|
234
|
+
removeGroupDeputy: ReturnType<typeof removeGroupDeputyFactory>;
|
|
235
|
+
removeQuickMessage: ReturnType<typeof removeQuickMessageFactory>;
|
|
236
|
+
removeReminder: ReturnType<typeof removeReminderFactory>;
|
|
237
|
+
removeUnreadMark: ReturnType<typeof removeUnreadMarkFactory>;
|
|
238
|
+
removeUserFromGroup: ReturnType<typeof removeUserFromGroupFactory>;
|
|
239
|
+
resetHiddenConversPin: ReturnType<typeof resetHiddenConversPinFactory>;
|
|
240
|
+
reuseAvatar: ReturnType<typeof reuseAvatarFactory>;
|
|
241
|
+
reviewPendingMemberRequest: ReturnType<typeof reviewPendingMemberRequestFactory>;
|
|
242
|
+
sendBankCard: ReturnType<typeof sendBankCardFactory>;
|
|
243
|
+
sendCard: ReturnType<typeof sendCardFactory>;
|
|
244
|
+
sendDeliveredEvent: ReturnType<typeof sendDeliveredEventFactory>;
|
|
245
|
+
sendFriendRequest: ReturnType<typeof sendFriendRequestFactory>;
|
|
246
|
+
sendLink: ReturnType<typeof sendLinkFactory>;
|
|
247
|
+
sendMessage: ReturnType<typeof sendMessageFactory>;
|
|
248
|
+
sendReport: ReturnType<typeof sendReportFactory>;
|
|
249
|
+
sendSeenEvent: ReturnType<typeof sendSeenEventFactory>;
|
|
250
|
+
sendSticker: ReturnType<typeof sendStickerFactory>;
|
|
251
|
+
sendTypingEvent: ReturnType<typeof sendTypingEventFactory>;
|
|
252
|
+
sendVideo: ReturnType<typeof sendVideoFactory>;
|
|
253
|
+
sendVoice: ReturnType<typeof sendVoiceFactory>;
|
|
254
|
+
setArchivedConversations: ReturnType<typeof setArchivedConversationsFactory>;
|
|
255
|
+
setHiddenConversations: ReturnType<typeof setHiddenConversationsFactory>;
|
|
256
|
+
setMute: ReturnType<typeof setMuteFactory>;
|
|
257
|
+
setPinnedConversations: ReturnType<typeof setPinnedConversationsFactory>;
|
|
258
|
+
sharePoll: ReturnType<typeof sharePollFactory>;
|
|
259
|
+
unblockUser: ReturnType<typeof unblockUserFactory>;
|
|
260
|
+
undo: ReturnType<typeof undoFactory>;
|
|
261
|
+
undoFriendRequest: ReturnType<typeof undoFriendRequestFactory>;
|
|
262
|
+
updateActiveStatus: ReturnType<typeof updateActiveStatusFactory>;
|
|
263
|
+
updateAutoDeleteChat: ReturnType<typeof updateAutoDeleteChatFactory>;
|
|
264
|
+
updateAutoReply: ReturnType<typeof updateAutoReplyFactory>;
|
|
265
|
+
updateCatalog: ReturnType<typeof updateCatalogFactory>;
|
|
266
|
+
updateGroupSettings: ReturnType<typeof updateGroupSettingsFactory>;
|
|
267
|
+
updateHiddenConversPin: ReturnType<typeof updateHiddenConversPinFactory>;
|
|
268
|
+
updateLabels: ReturnType<typeof updateLabelsFactory>;
|
|
269
|
+
updateLang: ReturnType<typeof updateLangFactory>;
|
|
270
|
+
updateProductCatalog: ReturnType<typeof updateProductCatalogFactory>;
|
|
271
|
+
updateProfile: ReturnType<typeof updateProfileFactory>;
|
|
272
|
+
updateQuickMessage: ReturnType<typeof updateQuickMessageFactory>;
|
|
273
|
+
updateSettings: ReturnType<typeof updateSettingsFactory>;
|
|
274
|
+
uploadAttachment: ReturnType<typeof uploadAttachmentFactory>;
|
|
275
|
+
uploadProductPhoto: ReturnType<typeof uploadProductPhotoFactory>;
|
|
276
|
+
votePoll: ReturnType<typeof votePollFactory>;
|
|
277
|
+
custom: ReturnType<typeof customFactory>;
|
|
278
|
+
constructor(ctx: ContextSession, zpwServiceMap: ZPWServiceMap, wsUrls: string[]);
|
|
279
|
+
}
|
package/dist/src/apis.js
ADDED
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.API = void 0;
|
|
4
|
+
const listen_js_1 = require("./apis/listen.js");
|
|
5
|
+
const acceptFriendRequest_js_1 = require("./apis/acceptFriendRequest.js");
|
|
6
|
+
const addGroupBlockedMember_js_1 = require("./apis/addGroupBlockedMember.js");
|
|
7
|
+
const addGroupDeputy_js_1 = require("./apis/addGroupDeputy.js");
|
|
8
|
+
const addPollOptions_js_1 = require("./apis/addPollOptions.js");
|
|
9
|
+
const addQuickMessage_js_1 = require("./apis/addQuickMessage.js");
|
|
10
|
+
const addReaction_js_1 = require("./apis/addReaction.js");
|
|
11
|
+
const addUnreadMark_js_1 = require("./apis/addUnreadMark.js");
|
|
12
|
+
const addUserToGroup_js_1 = require("./apis/addUserToGroup.js");
|
|
13
|
+
const blockUser_js_1 = require("./apis/blockUser.js");
|
|
14
|
+
const blockViewFeed_js_1 = require("./apis/blockViewFeed.js");
|
|
15
|
+
const changeAccountAvatar_js_1 = require("./apis/changeAccountAvatar.js");
|
|
16
|
+
const changeFriendAlias_js_1 = require("./apis/changeFriendAlias.js");
|
|
17
|
+
const changeGroupAvatar_js_1 = require("./apis/changeGroupAvatar.js");
|
|
18
|
+
const changeGroupName_js_1 = require("./apis/changeGroupName.js");
|
|
19
|
+
const changeGroupOwner_js_1 = require("./apis/changeGroupOwner.js");
|
|
20
|
+
const createAutoReply_js_1 = require("./apis/createAutoReply.js");
|
|
21
|
+
const createCatalog_js_1 = require("./apis/createCatalog.js");
|
|
22
|
+
const createGroup_js_1 = require("./apis/createGroup.js");
|
|
23
|
+
const createNote_js_1 = require("./apis/createNote.js");
|
|
24
|
+
const createPoll_js_1 = require("./apis/createPoll.js");
|
|
25
|
+
const createProductCatalog_js_1 = require("./apis/createProductCatalog.js");
|
|
26
|
+
const createReminder_js_1 = require("./apis/createReminder.js");
|
|
27
|
+
const deleteAutoReply_js_1 = require("./apis/deleteAutoReply.js");
|
|
28
|
+
const deleteAvatar_js_1 = require("./apis/deleteAvatar.js");
|
|
29
|
+
const deleteCatalog_js_1 = require("./apis/deleteCatalog.js");
|
|
30
|
+
const deleteChat_js_1 = require("./apis/deleteChat.js");
|
|
31
|
+
const deleteGroupInviteBox_js_1 = require("./apis/deleteGroupInviteBox.js");
|
|
32
|
+
const deleteMessage_js_1 = require("./apis/deleteMessage.js");
|
|
33
|
+
const deleteProductCatalog_js_1 = require("./apis/deleteProductCatalog.js");
|
|
34
|
+
const disableGroupLink_js_1 = require("./apis/disableGroupLink.js");
|
|
35
|
+
const disperseGroup_js_1 = require("./apis/disperseGroup.js");
|
|
36
|
+
const editNote_js_1 = require("./apis/editNote.js");
|
|
37
|
+
const editReminder_js_1 = require("./apis/editReminder.js");
|
|
38
|
+
const enableGroupLink_js_1 = require("./apis/enableGroupLink.js");
|
|
39
|
+
const fetchAccountInfo_js_1 = require("./apis/fetchAccountInfo.js");
|
|
40
|
+
const findUser_js_1 = require("./apis/findUser.js");
|
|
41
|
+
const forwardMessage_js_1 = require("./apis/forwardMessage.js");
|
|
42
|
+
const getAliasList_js_1 = require("./apis/getAliasList.js");
|
|
43
|
+
const getAllFriends_js_1 = require("./apis/getAllFriends.js");
|
|
44
|
+
const getAllGroups_js_1 = require("./apis/getAllGroups.js");
|
|
45
|
+
const getArchivedChatList_js_1 = require("./apis/getArchivedChatList.js");
|
|
46
|
+
const getAutoDeleteChat_js_1 = require("./apis/getAutoDeleteChat.js");
|
|
47
|
+
const getAutoReplyList_js_1 = require("./apis/getAutoReplyList.js");
|
|
48
|
+
const getAvatarList_js_1 = require("./apis/getAvatarList.js");
|
|
49
|
+
const getBizAccount_js_1 = require("./apis/getBizAccount.js");
|
|
50
|
+
const getCatalogList_js_1 = require("./apis/getCatalogList.js");
|
|
51
|
+
const getContext_js_1 = require("./apis/getContext.js");
|
|
52
|
+
const getCookie_js_1 = require("./apis/getCookie.js");
|
|
53
|
+
const getFriendBoardList_js_1 = require("./apis/getFriendBoardList.js");
|
|
54
|
+
const getFriendOnlines_js_1 = require("./apis/getFriendOnlines.js");
|
|
55
|
+
const getFriendRecommendations_js_1 = require("./apis/getFriendRecommendations.js");
|
|
56
|
+
const getFriendRequestStatus_js_1 = require("./apis/getFriendRequestStatus.js");
|
|
57
|
+
const getGroupBlockedMember_js_1 = require("./apis/getGroupBlockedMember.js");
|
|
58
|
+
const getGroupInfo_js_1 = require("./apis/getGroupInfo.js");
|
|
59
|
+
const getGroupInviteBoxInfo_js_1 = require("./apis/getGroupInviteBoxInfo.js");
|
|
60
|
+
const getGroupInviteBoxList_js_1 = require("./apis/getGroupInviteBoxList.js");
|
|
61
|
+
const getGroupLinkDetail_js_1 = require("./apis/getGroupLinkDetail.js");
|
|
62
|
+
const getGroupLinkInfo_js_1 = require("./apis/getGroupLinkInfo.js");
|
|
63
|
+
const getGroupMembersInfo_js_1 = require("./apis/getGroupMembersInfo.js");
|
|
64
|
+
const getHiddenConversations_js_1 = require("./apis/getHiddenConversations.js");
|
|
65
|
+
const getLabels_js_1 = require("./apis/getLabels.js");
|
|
66
|
+
const getListBoard_js_1 = require("./apis/getListBoard.js");
|
|
67
|
+
const getListReminder_js_1 = require("./apis/getListReminder.js");
|
|
68
|
+
const getMute_js_1 = require("./apis/getMute.js");
|
|
69
|
+
const getOwnId_js_1 = require("./apis/getOwnId.js");
|
|
70
|
+
const getPendingGroupMembers_js_1 = require("./apis/getPendingGroupMembers.js");
|
|
71
|
+
const getPinConversations_js_1 = require("./apis/getPinConversations.js");
|
|
72
|
+
const getPollDetail_js_1 = require("./apis/getPollDetail.js");
|
|
73
|
+
const getProductCatalogList_js_1 = require("./apis/getProductCatalogList.js");
|
|
74
|
+
const getQR_js_1 = require("./apis/getQR.js");
|
|
75
|
+
const getQuickMessageList_js_1 = require("./apis/getQuickMessageList.js");
|
|
76
|
+
const getRelatedFriendGroup_js_1 = require("./apis/getRelatedFriendGroup.js");
|
|
77
|
+
const getReminder_js_1 = require("./apis/getReminder.js");
|
|
78
|
+
const getReminderResponses_js_1 = require("./apis/getReminderResponses.js");
|
|
79
|
+
const getSentFriendRequest_js_1 = require("./apis/getSentFriendRequest.js");
|
|
80
|
+
const getSettings_js_1 = require("./apis/getSettings.js");
|
|
81
|
+
const getStickers_js_1 = require("./apis/getStickers.js");
|
|
82
|
+
const getStickersDetail_js_1 = require("./apis/getStickersDetail.js");
|
|
83
|
+
const getUnreadMark_js_1 = require("./apis/getUnreadMark.js");
|
|
84
|
+
const getUserInfo_js_1 = require("./apis/getUserInfo.js");
|
|
85
|
+
const inviteUserToGroups_js_1 = require("./apis/inviteUserToGroups.js");
|
|
86
|
+
const joinGroupInviteBox_js_1 = require("./apis/joinGroupInviteBox.js");
|
|
87
|
+
const joinGroupLink_js_1 = require("./apis/joinGroupLink.js");
|
|
88
|
+
const keepAlive_js_1 = require("./apis/keepAlive.js");
|
|
89
|
+
const lastOnline_js_1 = require("./apis/lastOnline.js");
|
|
90
|
+
const leaveGroup_js_1 = require("./apis/leaveGroup.js");
|
|
91
|
+
const lockPoll_js_1 = require("./apis/lockPoll.js");
|
|
92
|
+
const parseLink_js_1 = require("./apis/parseLink.js");
|
|
93
|
+
const rejectFriendRequest_js_1 = require("./apis/rejectFriendRequest.js");
|
|
94
|
+
const removeFriend_js_1 = require("./apis/removeFriend.js");
|
|
95
|
+
const removeFriendAlias_js_1 = require("./apis/removeFriendAlias.js");
|
|
96
|
+
const removeGroupBlockedMember_js_1 = require("./apis/removeGroupBlockedMember.js");
|
|
97
|
+
const removeGroupDeputy_js_1 = require("./apis/removeGroupDeputy.js");
|
|
98
|
+
const removeQuickMessage_js_1 = require("./apis/removeQuickMessage.js");
|
|
99
|
+
const removeReminder_js_1 = require("./apis/removeReminder.js");
|
|
100
|
+
const removeUnreadMark_js_1 = require("./apis/removeUnreadMark.js");
|
|
101
|
+
const removeUserFromGroup_js_1 = require("./apis/removeUserFromGroup.js");
|
|
102
|
+
const resetHiddenConversPin_js_1 = require("./apis/resetHiddenConversPin.js");
|
|
103
|
+
const reuseAvatar_js_1 = require("./apis/reuseAvatar.js");
|
|
104
|
+
const reviewPendingMemberRequest_js_1 = require("./apis/reviewPendingMemberRequest.js");
|
|
105
|
+
const sendBankCard_js_1 = require("./apis/sendBankCard.js");
|
|
106
|
+
const sendCard_js_1 = require("./apis/sendCard.js");
|
|
107
|
+
const sendDeliveredEvent_js_1 = require("./apis/sendDeliveredEvent.js");
|
|
108
|
+
const sendFriendRequest_js_1 = require("./apis/sendFriendRequest.js");
|
|
109
|
+
const sendLink_js_1 = require("./apis/sendLink.js");
|
|
110
|
+
const sendMessage_js_1 = require("./apis/sendMessage.js");
|
|
111
|
+
const sendReport_js_1 = require("./apis/sendReport.js");
|
|
112
|
+
const sendSeenEvent_js_1 = require("./apis/sendSeenEvent.js");
|
|
113
|
+
const sendSticker_js_1 = require("./apis/sendSticker.js");
|
|
114
|
+
const sendTypingEvent_js_1 = require("./apis/sendTypingEvent.js");
|
|
115
|
+
const sendVideo_js_1 = require("./apis/sendVideo.js");
|
|
116
|
+
const sendVoice_js_1 = require("./apis/sendVoice.js");
|
|
117
|
+
const setArchivedConversations_js_1 = require("./apis/setArchivedConversations.js");
|
|
118
|
+
const setHiddenConversations_js_1 = require("./apis/setHiddenConversations.js");
|
|
119
|
+
const setMute_js_1 = require("./apis/setMute.js");
|
|
120
|
+
const setPinnedConversations_js_1 = require("./apis/setPinnedConversations.js");
|
|
121
|
+
const sharePoll_js_1 = require("./apis/sharePoll.js");
|
|
122
|
+
const unblockUser_js_1 = require("./apis/unblockUser.js");
|
|
123
|
+
const undo_js_1 = require("./apis/undo.js");
|
|
124
|
+
const undoFriendRequest_js_1 = require("./apis/undoFriendRequest.js");
|
|
125
|
+
const updateActiveStatus_js_1 = require("./apis/updateActiveStatus.js");
|
|
126
|
+
const updateAutoDeleteChat_js_1 = require("./apis/updateAutoDeleteChat.js");
|
|
127
|
+
const updateAutoReply_js_1 = require("./apis/updateAutoReply.js");
|
|
128
|
+
const updateCatalog_js_1 = require("./apis/updateCatalog.js");
|
|
129
|
+
const updateGroupSettings_js_1 = require("./apis/updateGroupSettings.js");
|
|
130
|
+
const updateHiddenConversPin_js_1 = require("./apis/updateHiddenConversPin.js");
|
|
131
|
+
const updateLabels_js_1 = require("./apis/updateLabels.js");
|
|
132
|
+
const updateLang_js_1 = require("./apis/updateLang.js");
|
|
133
|
+
const updateProductCatalog_js_1 = require("./apis/updateProductCatalog.js");
|
|
134
|
+
const updateProfile_js_1 = require("./apis/updateProfile.js");
|
|
135
|
+
const updateQuickMessage_js_1 = require("./apis/updateQuickMessage.js");
|
|
136
|
+
const updateSettings_js_1 = require("./apis/updateSettings.js");
|
|
137
|
+
const uploadAttachment_js_1 = require("./apis/uploadAttachment.js");
|
|
138
|
+
const uploadProductPhoto_js_1 = require("./apis/uploadProductPhoto.js");
|
|
139
|
+
const votePoll_js_1 = require("./apis/votePoll.js");
|
|
140
|
+
const custom_js_1 = require("./apis/custom.js");
|
|
141
|
+
class API {
|
|
142
|
+
constructor(ctx, zpwServiceMap, wsUrls) {
|
|
143
|
+
this.zpwServiceMap = zpwServiceMap;
|
|
144
|
+
this.listener = new listen_js_1.Listener(ctx, wsUrls);
|
|
145
|
+
this.acceptFriendRequest = (0, acceptFriendRequest_js_1.acceptFriendRequestFactory)(ctx, this);
|
|
146
|
+
this.addGroupBlockedMember = (0, addGroupBlockedMember_js_1.addGroupBlockedMemberFactory)(ctx, this);
|
|
147
|
+
this.addGroupDeputy = (0, addGroupDeputy_js_1.addGroupDeputyFactory)(ctx, this);
|
|
148
|
+
this.addPollOptions = (0, addPollOptions_js_1.addPollOptionsFactory)(ctx, this);
|
|
149
|
+
this.addQuickMessage = (0, addQuickMessage_js_1.addQuickMessageFactory)(ctx, this);
|
|
150
|
+
this.addReaction = (0, addReaction_js_1.addReactionFactory)(ctx, this);
|
|
151
|
+
this.addUnreadMark = (0, addUnreadMark_js_1.addUnreadMarkFactory)(ctx, this);
|
|
152
|
+
this.addUserToGroup = (0, addUserToGroup_js_1.addUserToGroupFactory)(ctx, this);
|
|
153
|
+
this.blockUser = (0, blockUser_js_1.blockUserFactory)(ctx, this);
|
|
154
|
+
this.blockViewFeed = (0, blockViewFeed_js_1.blockViewFeedFactory)(ctx, this);
|
|
155
|
+
this.changeAccountAvatar = (0, changeAccountAvatar_js_1.changeAccountAvatarFactory)(ctx, this);
|
|
156
|
+
this.changeFriendAlias = (0, changeFriendAlias_js_1.changeFriendAliasFactory)(ctx, this);
|
|
157
|
+
this.changeGroupAvatar = (0, changeGroupAvatar_js_1.changeGroupAvatarFactory)(ctx, this);
|
|
158
|
+
this.changeGroupName = (0, changeGroupName_js_1.changeGroupNameFactory)(ctx, this);
|
|
159
|
+
this.changeGroupOwner = (0, changeGroupOwner_js_1.changeGroupOwnerFactory)(ctx, this);
|
|
160
|
+
this.createAutoReply = (0, createAutoReply_js_1.createAutoReplyFactory)(ctx, this);
|
|
161
|
+
this.createCatalog = (0, createCatalog_js_1.createCatalogFactory)(ctx, this);
|
|
162
|
+
this.createGroup = (0, createGroup_js_1.createGroupFactory)(ctx, this);
|
|
163
|
+
this.createNote = (0, createNote_js_1.createNoteFactory)(ctx, this);
|
|
164
|
+
this.createPoll = (0, createPoll_js_1.createPollFactory)(ctx, this);
|
|
165
|
+
this.createProductCatalog = (0, createProductCatalog_js_1.createProductCatalogFactory)(ctx, this);
|
|
166
|
+
this.createReminder = (0, createReminder_js_1.createReminderFactory)(ctx, this);
|
|
167
|
+
this.deleteAutoReply = (0, deleteAutoReply_js_1.deleteAutoReplyFactory)(ctx, this);
|
|
168
|
+
this.deleteAvatar = (0, deleteAvatar_js_1.deleteAvatarFactory)(ctx, this);
|
|
169
|
+
this.deleteCatalog = (0, deleteCatalog_js_1.deleteCatalogFactory)(ctx, this);
|
|
170
|
+
this.deleteChat = (0, deleteChat_js_1.deleteChatFactory)(ctx, this);
|
|
171
|
+
this.deleteGroupInviteBox = (0, deleteGroupInviteBox_js_1.deleteGroupInviteBoxFactory)(ctx, this);
|
|
172
|
+
this.deleteMessage = (0, deleteMessage_js_1.deleteMessageFactory)(ctx, this);
|
|
173
|
+
this.deleteProductCatalog = (0, deleteProductCatalog_js_1.deleteProductCatalogFactory)(ctx, this);
|
|
174
|
+
this.disableGroupLink = (0, disableGroupLink_js_1.disableGroupLinkFactory)(ctx, this);
|
|
175
|
+
this.disperseGroup = (0, disperseGroup_js_1.disperseGroupFactory)(ctx, this);
|
|
176
|
+
this.editNote = (0, editNote_js_1.editNoteFactory)(ctx, this);
|
|
177
|
+
this.editReminder = (0, editReminder_js_1.editReminderFactory)(ctx, this);
|
|
178
|
+
this.enableGroupLink = (0, enableGroupLink_js_1.enableGroupLinkFactory)(ctx, this);
|
|
179
|
+
this.fetchAccountInfo = (0, fetchAccountInfo_js_1.fetchAccountInfoFactory)(ctx, this);
|
|
180
|
+
this.findUser = (0, findUser_js_1.findUserFactory)(ctx, this);
|
|
181
|
+
this.forwardMessage = (0, forwardMessage_js_1.forwardMessageFactory)(ctx, this);
|
|
182
|
+
this.getAliasList = (0, getAliasList_js_1.getAliasListFactory)(ctx, this);
|
|
183
|
+
this.getAllFriends = (0, getAllFriends_js_1.getAllFriendsFactory)(ctx, this);
|
|
184
|
+
this.getAllGroups = (0, getAllGroups_js_1.getAllGroupsFactory)(ctx, this);
|
|
185
|
+
this.getArchivedChatList = (0, getArchivedChatList_js_1.getArchivedChatListFactory)(ctx, this);
|
|
186
|
+
this.getAutoDeleteChat = (0, getAutoDeleteChat_js_1.getAutoDeleteChatFactory)(ctx, this);
|
|
187
|
+
this.getAutoReplyList = (0, getAutoReplyList_js_1.getAutoReplyListFactory)(ctx, this);
|
|
188
|
+
this.getAvatarList = (0, getAvatarList_js_1.getAvatarListFactory)(ctx, this);
|
|
189
|
+
this.getBizAccount = (0, getBizAccount_js_1.getBizAccountFactory)(ctx, this);
|
|
190
|
+
this.getCatalogList = (0, getCatalogList_js_1.getCatalogListFactory)(ctx, this);
|
|
191
|
+
this.getContext = (0, getContext_js_1.getContextFactory)(ctx, this);
|
|
192
|
+
this.getCookie = (0, getCookie_js_1.getCookieFactory)(ctx, this);
|
|
193
|
+
this.getFriendBoardList = (0, getFriendBoardList_js_1.getFriendBoardListFactory)(ctx, this);
|
|
194
|
+
this.getFriendOnlines = (0, getFriendOnlines_js_1.getFriendOnlinesFactory)(ctx, this);
|
|
195
|
+
this.getFriendRecommendations = (0, getFriendRecommendations_js_1.getFriendRecommendationsFactory)(ctx, this);
|
|
196
|
+
this.getFriendRequestStatus = (0, getFriendRequestStatus_js_1.getFriendRequestStatusFactory)(ctx, this);
|
|
197
|
+
this.getGroupBlockedMember = (0, getGroupBlockedMember_js_1.getGroupBlockedMemberFactory)(ctx, this);
|
|
198
|
+
this.getGroupInfo = (0, getGroupInfo_js_1.getGroupInfoFactory)(ctx, this);
|
|
199
|
+
this.getGroupInviteBoxInfo = (0, getGroupInviteBoxInfo_js_1.getGroupInviteBoxInfoFactory)(ctx, this);
|
|
200
|
+
this.getGroupInviteBoxList = (0, getGroupInviteBoxList_js_1.getGroupInviteBoxListFactory)(ctx, this);
|
|
201
|
+
this.getGroupLinkDetail = (0, getGroupLinkDetail_js_1.getGroupLinkDetailFactory)(ctx, this);
|
|
202
|
+
this.getGroupLinkInfo = (0, getGroupLinkInfo_js_1.getGroupLinkInfoFactory)(ctx, this);
|
|
203
|
+
this.getGroupMembersInfo = (0, getGroupMembersInfo_js_1.getGroupMembersInfoFactory)(ctx, this);
|
|
204
|
+
this.getHiddenConversations = (0, getHiddenConversations_js_1.getHiddenConversationsFactory)(ctx, this);
|
|
205
|
+
this.getLabels = (0, getLabels_js_1.getLabelsFactory)(ctx, this);
|
|
206
|
+
this.getListBoard = (0, getListBoard_js_1.getListBoardFactory)(ctx, this);
|
|
207
|
+
this.getListReminder = (0, getListReminder_js_1.getListReminderFactory)(ctx, this);
|
|
208
|
+
this.getMute = (0, getMute_js_1.getMuteFactory)(ctx, this);
|
|
209
|
+
this.getOwnId = (0, getOwnId_js_1.getOwnIdFactory)(ctx, this);
|
|
210
|
+
this.getPendingGroupMembers = (0, getPendingGroupMembers_js_1.getPendingGroupMembersFactory)(ctx, this);
|
|
211
|
+
this.getPinConversations = (0, getPinConversations_js_1.getPinConversationsFactory)(ctx, this);
|
|
212
|
+
this.getPollDetail = (0, getPollDetail_js_1.getPollDetailFactory)(ctx, this);
|
|
213
|
+
this.getProductCatalogList = (0, getProductCatalogList_js_1.getProductCatalogListFactory)(ctx, this);
|
|
214
|
+
this.getQR = (0, getQR_js_1.getQRFactory)(ctx, this);
|
|
215
|
+
this.getQuickMessageList = (0, getQuickMessageList_js_1.getQuickMessageListFactory)(ctx, this);
|
|
216
|
+
this.getRelatedFriendGroup = (0, getRelatedFriendGroup_js_1.getRelatedFriendGroupFactory)(ctx, this);
|
|
217
|
+
this.getReminder = (0, getReminder_js_1.getReminderFactory)(ctx, this);
|
|
218
|
+
this.getReminderResponses = (0, getReminderResponses_js_1.getReminderResponsesFactory)(ctx, this);
|
|
219
|
+
this.getSentFriendRequest = (0, getSentFriendRequest_js_1.getSentFriendRequestFactory)(ctx, this);
|
|
220
|
+
this.getSettings = (0, getSettings_js_1.getSettingsFactory)(ctx, this);
|
|
221
|
+
this.getStickers = (0, getStickers_js_1.getStickersFactory)(ctx, this);
|
|
222
|
+
this.getStickersDetail = (0, getStickersDetail_js_1.getStickersDetailFactory)(ctx, this);
|
|
223
|
+
this.getUnreadMark = (0, getUnreadMark_js_1.getUnreadMarkFactory)(ctx, this);
|
|
224
|
+
this.getUserInfo = (0, getUserInfo_js_1.getUserInfoFactory)(ctx, this);
|
|
225
|
+
this.inviteUserToGroups = (0, inviteUserToGroups_js_1.inviteUserToGroupsFactory)(ctx, this);
|
|
226
|
+
this.joinGroupInviteBox = (0, joinGroupInviteBox_js_1.joinGroupInviteBoxFactory)(ctx, this);
|
|
227
|
+
this.joinGroupLink = (0, joinGroupLink_js_1.joinGroupLinkFactory)(ctx, this);
|
|
228
|
+
this.keepAlive = (0, keepAlive_js_1.keepAliveFactory)(ctx, this);
|
|
229
|
+
this.lastOnline = (0, lastOnline_js_1.lastOnlineFactory)(ctx, this);
|
|
230
|
+
this.leaveGroup = (0, leaveGroup_js_1.leaveGroupFactory)(ctx, this);
|
|
231
|
+
this.lockPoll = (0, lockPoll_js_1.lockPollFactory)(ctx, this);
|
|
232
|
+
this.parseLink = (0, parseLink_js_1.parseLinkFactory)(ctx, this);
|
|
233
|
+
this.rejectFriendRequest = (0, rejectFriendRequest_js_1.rejectFriendRequestFactory)(ctx, this);
|
|
234
|
+
this.removeFriend = (0, removeFriend_js_1.removeFriendFactory)(ctx, this);
|
|
235
|
+
this.removeFriendAlias = (0, removeFriendAlias_js_1.removeFriendAliasFactory)(ctx, this);
|
|
236
|
+
this.removeGroupBlockedMember = (0, removeGroupBlockedMember_js_1.removeGroupBlockedMemberFactory)(ctx, this);
|
|
237
|
+
this.removeGroupDeputy = (0, removeGroupDeputy_js_1.removeGroupDeputyFactory)(ctx, this);
|
|
238
|
+
this.removeQuickMessage = (0, removeQuickMessage_js_1.removeQuickMessageFactory)(ctx, this);
|
|
239
|
+
this.removeReminder = (0, removeReminder_js_1.removeReminderFactory)(ctx, this);
|
|
240
|
+
this.removeUnreadMark = (0, removeUnreadMark_js_1.removeUnreadMarkFactory)(ctx, this);
|
|
241
|
+
this.removeUserFromGroup = (0, removeUserFromGroup_js_1.removeUserFromGroupFactory)(ctx, this);
|
|
242
|
+
this.resetHiddenConversPin = (0, resetHiddenConversPin_js_1.resetHiddenConversPinFactory)(ctx, this);
|
|
243
|
+
this.reuseAvatar = (0, reuseAvatar_js_1.reuseAvatarFactory)(ctx, this);
|
|
244
|
+
this.reviewPendingMemberRequest = (0, reviewPendingMemberRequest_js_1.reviewPendingMemberRequestFactory)(ctx, this);
|
|
245
|
+
this.sendBankCard = (0, sendBankCard_js_1.sendBankCardFactory)(ctx, this);
|
|
246
|
+
this.sendCard = (0, sendCard_js_1.sendCardFactory)(ctx, this);
|
|
247
|
+
this.sendDeliveredEvent = (0, sendDeliveredEvent_js_1.sendDeliveredEventFactory)(ctx, this);
|
|
248
|
+
this.sendFriendRequest = (0, sendFriendRequest_js_1.sendFriendRequestFactory)(ctx, this);
|
|
249
|
+
this.sendLink = (0, sendLink_js_1.sendLinkFactory)(ctx, this);
|
|
250
|
+
this.sendMessage = (0, sendMessage_js_1.sendMessageFactory)(ctx, this);
|
|
251
|
+
this.sendReport = (0, sendReport_js_1.sendReportFactory)(ctx, this);
|
|
252
|
+
this.sendSeenEvent = (0, sendSeenEvent_js_1.sendSeenEventFactory)(ctx, this);
|
|
253
|
+
this.sendSticker = (0, sendSticker_js_1.sendStickerFactory)(ctx, this);
|
|
254
|
+
this.sendTypingEvent = (0, sendTypingEvent_js_1.sendTypingEventFactory)(ctx, this);
|
|
255
|
+
this.sendVideo = (0, sendVideo_js_1.sendVideoFactory)(ctx, this);
|
|
256
|
+
this.sendVoice = (0, sendVoice_js_1.sendVoiceFactory)(ctx, this);
|
|
257
|
+
this.setArchivedConversations = (0, setArchivedConversations_js_1.setArchivedConversationsFactory)(ctx, this);
|
|
258
|
+
this.setHiddenConversations = (0, setHiddenConversations_js_1.setHiddenConversationsFactory)(ctx, this);
|
|
259
|
+
this.setMute = (0, setMute_js_1.setMuteFactory)(ctx, this);
|
|
260
|
+
this.setPinnedConversations = (0, setPinnedConversations_js_1.setPinnedConversationsFactory)(ctx, this);
|
|
261
|
+
this.sharePoll = (0, sharePoll_js_1.sharePollFactory)(ctx, this);
|
|
262
|
+
this.unblockUser = (0, unblockUser_js_1.unblockUserFactory)(ctx, this);
|
|
263
|
+
this.undo = (0, undo_js_1.undoFactory)(ctx, this);
|
|
264
|
+
this.undoFriendRequest = (0, undoFriendRequest_js_1.undoFriendRequestFactory)(ctx, this);
|
|
265
|
+
this.updateActiveStatus = (0, updateActiveStatus_js_1.updateActiveStatusFactory)(ctx, this);
|
|
266
|
+
this.updateAutoDeleteChat = (0, updateAutoDeleteChat_js_1.updateAutoDeleteChatFactory)(ctx, this);
|
|
267
|
+
this.updateAutoReply = (0, updateAutoReply_js_1.updateAutoReplyFactory)(ctx, this);
|
|
268
|
+
this.updateCatalog = (0, updateCatalog_js_1.updateCatalogFactory)(ctx, this);
|
|
269
|
+
this.updateGroupSettings = (0, updateGroupSettings_js_1.updateGroupSettingsFactory)(ctx, this);
|
|
270
|
+
this.updateHiddenConversPin = (0, updateHiddenConversPin_js_1.updateHiddenConversPinFactory)(ctx, this);
|
|
271
|
+
this.updateLabels = (0, updateLabels_js_1.updateLabelsFactory)(ctx, this);
|
|
272
|
+
this.updateLang = (0, updateLang_js_1.updateLangFactory)(ctx, this);
|
|
273
|
+
this.updateProductCatalog = (0, updateProductCatalog_js_1.updateProductCatalogFactory)(ctx, this);
|
|
274
|
+
this.updateProfile = (0, updateProfile_js_1.updateProfileFactory)(ctx, this);
|
|
275
|
+
this.updateQuickMessage = (0, updateQuickMessage_js_1.updateQuickMessageFactory)(ctx, this);
|
|
276
|
+
this.updateSettings = (0, updateSettings_js_1.updateSettingsFactory)(ctx, this);
|
|
277
|
+
this.uploadAttachment = (0, uploadAttachment_js_1.uploadAttachmentFactory)(ctx, this);
|
|
278
|
+
this.uploadProductPhoto = (0, uploadProductPhoto_js_1.uploadProductPhotoFactory)(ctx, this);
|
|
279
|
+
this.votePoll = (0, votePoll_js_1.votePollFactory)(ctx, this);
|
|
280
|
+
this.custom = (0, custom_js_1.customFactory)(ctx, this);
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
exports.API = API;
|