UNPKG

@nguyennhuy/zalo-api

Version:

Unofficial Zalo API for JavaScript

26 lines (22 loc) 905 B
'use strict'; var ZaloApiError = require('../Errors/ZaloApiError.cjs'); var utils = require('../utils.cjs'); const resetHiddenConversPinFactory = utils.apiFactory()((api, _ctx, utils) => { const serviceURL = utils.makeURL(`${api.zpwServiceMap.conversation[0]}/api/hiddenconvers/reset`); /** * Reset hidden conversation pin * * @throws {ZaloApiError} */ return async function resetHiddenConversPin() { const params = {}; const encryptedParams = utils.encodeAES(JSON.stringify(params)); if (!encryptedParams) throw new ZaloApiError.ZaloApiError("Failed to encrypt params"); const response = await utils.request(utils.makeURL(serviceURL, { params: encryptedParams }), { method: "GET", }); return utils.resolve(response); }; }); exports.resetHiddenConversPinFactory = resetHiddenConversPinFactory;