Skip to content

Commit

Permalink
feat: add create product on wppconnect api
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorDePaula committed Jan 28, 2023
1 parent abff1ca commit da1a3b9
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 0 deletions.
Empty file modified .husky/commit-msg 100644 → 100755
Empty file.
Empty file modified .husky/pre-commit 100644 → 100755
Empty file.
55 changes: 55 additions & 0 deletions src/lib/wapi/functions/create-product.js
@@ -0,0 +1,55 @@
/*
* This file is part of WPPConnect.
*
* WPPConnect is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WPPConnect is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with WPPConnect. If not, see <https://www.gnu.org/licenses/>.
*/

/**
* Sends product to catalog
* @param {string} imgBase64 Base64 image data
* @param {string} name Product name
* @param {string} description Product description
* @param {number} price Product price
* @param {boolean} isHidden Boolean that indicates if product is hidden or not. Default is false
* @param {string} url Product url
* @param {string} retailerId Registered product ID on another system
* @param {string} currency Currency of product
* @param {Function} done Optional callback
*/
export function createProduct(
imgBase64,
name,
description = null,
price = null,
isHidden = false,
url = null,
retailerId = null,
currency = 'BRL',
done
) {
WPP.catalog
.createProduct({
name,
image: imgBase64,
description,
price,
isHidden,
url,
retailerId,
currency,
})
.then((result) => {
if (done !== undefined) done(result);
});
}
1 change: 1 addition & 0 deletions src/lib/wapi/functions/index.js
Expand Up @@ -80,6 +80,7 @@ export { setProfilePic } from './set-profile-pic';
export { pinChat } from './fix-chat';
export { getSessionTokenBrowser } from './get-session-token';
export { sendMute } from './send-mute';
export { createProduct } from './create-product';
export { getListMute, interfaceMute } from './get-list-mute';
export * from './phoneWatchdog';
export * from './presence';
Expand Down
2 changes: 2 additions & 0 deletions src/lib/wapi/wapi.js
Expand Up @@ -64,6 +64,7 @@ import {
sendPtt,
sendImage,
sendImageWithProduct,
createProduct,
sendLocation,
sendMessage,
sendMessage2,
Expand Down Expand Up @@ -203,6 +204,7 @@ if (typeof window.WAPI === 'undefined') {
window.WAPI.sendVideoAsGif = sendVideoAsGif;
window.WAPI.processFiles = processFiles;
window.WAPI.sendImageWithProduct = sendImageWithProduct;
window.WAPI.createProduct = createProduct;
window.WAPI.forwardMessages = forwardMessages;
window.WAPI.encryptAndUploadFile = encryptAndUploadFile;
window.WAPI.setOnlinePresence = setOnlinePresence;
Expand Down

0 comments on commit da1a3b9

Please sign in to comment.