project-booster-vue 9.10.2 → 9.10.3

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": "project-booster-vue",
3
- "version": "9.10.2",
3
+ "version": "9.10.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -69,7 +69,7 @@ export const TemplateSandbox = (args, { argTypes }) => {
69
69
  store.dispatch('configurations/defineConfiguratorTypes', [DEFAULT_PAYLOAD.__START__.meta.configuratorType]);
70
70
  store.dispatch('configurations/searchConfigurations', '001');
71
71
  store.dispatch('inhabitants/loadInhabitant', '123456');
72
- store.dispatch('appointmentQualification/loadClicRDVBaseUrl');
72
+ store.dispatch('appointmentQualification/loadClicRDVBaseUrl', 'https://sandbox-user.clicrdv.com');
73
73
  store.dispatch('appointmentQualification/initSessions', {
74
74
  formId: 'appointment-qualification-kitchen',
75
75
  correlationId: uuidv4(),
@@ -195,9 +195,9 @@ export default {
195
195
  initSessions({ commit }: AppointmentQualificationContext, sessions: any) {
196
196
  commit('setSession', sessions);
197
197
  },
198
- loadClicRDVBaseUrl({ commit }: AppointmentQualificationContext) {
199
- if ((<any>window).config) {
200
- commit('setClicRDVBaseUrl', (<any>window).config.VUE_APP_CLICRDV_BASE_URL);
198
+ loadClicRDVBaseUrl({ commit }: AppointmentQualificationContext, baseUrl: string) {
199
+ if (baseUrl) {
200
+ commit('setClicRDVBaseUrl', baseUrl);
201
201
  } else {
202
202
  commit('setClicRDVBaseUrl', 'https://www.clicrdv.com');
203
203
  }