custom-element-flow
Advanced tools
Comparing version 1.0.58 to 1.0.59
@@ -13,2 +13,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
console.log("MARKET PARAMS REQ", appId); | ||
const { data } = yield axios.post('https://editor.wix.com/_serverless/app-market-json-web-token/json-web-token', { | ||
@@ -21,2 +22,3 @@ data: JSON.stringify({ | ||
}); | ||
console.log("GET MARKET PARAMS", data); | ||
return { | ||
@@ -23,0 +25,0 @@ appMarketParams: data.token, |
{ | ||
"name": "custom-element-flow", | ||
"version": "1.0.58", | ||
"version": "1.0.59", | ||
"description": "My New Project description.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -26,2 +26,3 @@ import axios from 'axios'; | ||
export async function getAppMarketParams(appId: string): Promise<{ appMarketParams: string }> { | ||
console.log("MARKET PARAMS REQ", appId) | ||
const { data } = await axios.post<{ token: string }>('https://editor.wix.com/_serverless/app-market-json-web-token/json-web-token', | ||
@@ -36,2 +37,3 @@ { | ||
console.log("GET MARKET PARAMS", data) | ||
return { | ||
@@ -38,0 +40,0 @@ appMarketParams: data.token, |
68805
1787