project-booster-vue 10.22.7 → 10.22.8

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": "10.22.7",
3
+ "version": "10.22.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -108,8 +108,8 @@ export const answerGettersMappers: Map<string, (param: any) => void> = new Map<s
108
108
  MPbNameInput: ({ projectName }: { projectName: string }) => projectName,
109
109
  MPbCitySearch: ({ city }: { city: any }) => city.postalCode,
110
110
  MPbIncrementalAmountInput: ({ value }: { value: string }) => parseInt(value),
111
- MPbProducts: ({ product }: { product: object }) => {
112
- return { product };
111
+ MPbProducts: ({ product }: { product: ProductPayload }): { product: ProductPayload } => {
112
+ return { product: product };
113
113
  },
114
114
  MPbDimensionsInput: ({ width, length }: { width: string; length: string }): { width: number; length: number } => {
115
115
  return { width: parseFloat(width), length: parseFloat(length) };
@@ -155,7 +155,7 @@ const callAction = (action: PayloadAction) => {
155
155
  let productToSend = null;
156
156
 
157
157
  if (refProduct) {
158
- productToSend = product;
158
+ productToSend = product.value;
159
159
  }
160
160
 
161
161
  emit('step-completed', {