@hulkapps/app-manager-vue 3.1.18 → 3.1.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hulkapps/app-manager-vue",
3
- "version": "3.1.18",
3
+ "version": "3.1.19",
4
4
  "description": "Vue SDK to render app manager contents",
5
5
  "main": "dist/app-manager-vue.ssr.js",
6
6
  "browser": "dist/app-manager-vue.esm.js",
@@ -396,9 +396,7 @@ export default {
396
396
  if (this.discount_code !== null) {
397
397
  params['discount_code'] = this.discount_code;
398
398
  }
399
- if (window && window.APP_MANAGER_FRONTEND_SDK_VERSION !== undefined) {
400
- params['frontend_sdk_version'] = window.APP_MANAGER_FRONTEND_SDK_VERSION
401
- }
399
+ params['frontend_sdk_version'] = "3.1.19"
402
400
  let {data} = await axios.get(`${this.app_manager_config.baseUrl}/api/app-manager/plans`, {params: params}).catch(error => {
403
401
  console.error(error)
404
402
  });