project-booster-vue 9.42.3 → 9.42.4

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.42.3",
3
+ "version": "9.42.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -52,7 +52,7 @@ export interface RestitutionPayloadPriceBar {
52
52
  export interface RestitutionPayloadAction {
53
53
  type: string;
54
54
  code: string;
55
- withoutModal: any;
55
+ withoutModal?: any;
56
56
  component?: string;
57
57
  payload?: {
58
58
  link: string;
@@ -118,8 +118,8 @@ export interface ScenarioStepPayload {
118
118
  skippable?: ScenarioStepSkippableOptions[];
119
119
  multiSelect?: ScenarioStepMultiSelectOptions;
120
120
  defaultDecoratorValue?: string;
121
- code: string;
122
- helpArea: {
121
+ code?: string;
122
+ helpArea?: {
123
123
  label: string;
124
124
  type: string;
125
125
  action: string;
@@ -137,7 +137,7 @@ export interface ScenarioStepViewModel {
137
137
  forceBackButton?: string;
138
138
  forceOneCardPerLineOnMobile?: boolean;
139
139
  alwaysDisplaySkippable?: boolean;
140
- decoratorStripe: {
140
+ decoratorStripe?: {
141
141
  length: string;
142
142
  };
143
143
  video?: {
@@ -153,7 +153,7 @@ export interface ScenarioStepViewModel {
153
153
  };
154
154
  sortBy?: ScenarioStepAnswerSortOptions;
155
155
  showMore?: ScenarioStepShowMoreOptions;
156
- footer: ScenarioStepFooterOptions;
156
+ footer?: ScenarioStepFooterOptions;
157
157
  widthFromM?: string;
158
158
  widthFromL?: string;
159
159
  }