@wix/vibe-bookings-plugin 0.1.0 → 0.2.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.
- package/dist/index.cjs +6 -1
- package/dist/index.cjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -2813,7 +2813,7 @@ function createDedent(options) {
|
|
|
2813
2813
|
}
|
|
2814
2814
|
|
|
2815
2815
|
// src/constants.ts
|
|
2816
|
-
var PLUGIN_FILES_ZIP_URL = "https://static.parastorage.com/services/vibe-bookings-plugin-files/
|
|
2816
|
+
var PLUGIN_FILES_ZIP_URL = "https://static.parastorage.com/services/vibe-bookings-plugin-files/0.1.0/vibe-bookings-plugin-files-files.zip";
|
|
2817
2817
|
var VERTICAL_NAME = "bookings";
|
|
2818
2818
|
|
|
2819
2819
|
// ../../../node_modules/@wix/sdk-runtime/build/constants.js
|
|
@@ -9187,10 +9187,15 @@ IF THE SITE IS IN ENGLISH OR THE LANGUAGE IS NOT SPECIFIED, YOU MUST NOT READ OR
|
|
|
9187
9187
|
`;
|
|
9188
9188
|
};
|
|
9189
9189
|
|
|
9190
|
+
// src/wix-apis.ts
|
|
9191
|
+
var installWixApp = async (env, appId) => {
|
|
9192
|
+
};
|
|
9193
|
+
|
|
9190
9194
|
// src/index.ts
|
|
9191
9195
|
var install = async (env) => {
|
|
9192
9196
|
console.log(`[${VERTICAL_NAME}-plugin-install] Starting installation`, env);
|
|
9193
9197
|
console.log(`[${VERTICAL_NAME}-plugin-install] Installing vertical functionality...`);
|
|
9198
|
+
await installWixApp();
|
|
9194
9199
|
console.log(`[${VERTICAL_NAME}-plugin-install] Unzipping and merging plugin files...`);
|
|
9195
9200
|
await unzipAndMergePluginFiles(env, PLUGIN_FILES_ZIP_URL);
|
|
9196
9201
|
console.log(`
|