Skip to content

Commit

Permalink
build: update vue, vue-template-compiler and @empathyco depende…
Browse files Browse the repository at this point in the history
…ncies

EX-6556
  • Loading branch information
ajperezbau authored Jul 5, 2022
2 parents 1cbb593 + 9d10d38 commit e652868
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"csv:json": "csv-json ./output ./src/i18n/messages"
},
"dependencies": {
"@empathyco/x-adapter": "^8.0.0-alpha.2",
"@empathyco/x-components": "^3.0.0-alpha.121",
"@empathyco/x-adapter-platform": "^1.0.0-alpha.22",
"@empathyco/x-adapter": "^8.0.0-alpha.3",
"@empathyco/x-components": "^3.0.0-alpha.123",
"@empathyco/x-adapter-platform": "^1.0.0-alpha.25",
"@empathyco/x-deep-merge": "^1.3.0-alpha.19",
"@empathyco/x-types": "^10.0.0-alpha.26",
"@empathyco/x-types": "^10.0.0-alpha.27",
"@empathyco/x-utils": "^1.0.0-alpha.5",
"tslib": "~2.3.0",
"vue": "^2.6.0",
"vue": "~2.6.14",
"vue-class-component": "~7.1.0",
"vue-i18n": "~8.21.0",
"vue-property-decorator": "~8.3.0",
Expand Down Expand Up @@ -86,7 +86,7 @@
"source-map-loader": "~1.1.3",
"start-server-and-test": "~1.14.0",
"typescript": "~4.6.2",
"vue-template-compiler": "^2.6.0"
"vue-template-compiler": "~2.6.14"
},
"prettier": "@empathyco/eslint-plugin-x/prettier-config",
"gitHooks": {
Expand Down
4 changes: 2 additions & 2 deletions src/adapter/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
platformAdapter,
PlatformRecommendationsRequest,
PlatformResult,
recommendationsRequestMutableSchema,
recommendationsRequestSchema,
resultSchema
} from '@empathyco/x-adapter-platform';
import { RecommendationsRequest, Result } from '@empathyco/x-types';
Expand All @@ -25,7 +25,7 @@ resultSchema.$override<EmpathyDemoPlatformResult, Partial<Result>>({
season: 'season'
});

recommendationsRequestMutableSchema.$override<
recommendationsRequestSchema.$override<
RecommendationsRequest,
Partial<PlatformRecommendationsRequest>
>({
Expand Down
6 changes: 3 additions & 3 deletions src/adapter/standard-api-adapter.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
FacetsConfig,
facetsConfig,
numberFilterMutableSchema,
numberFilterSchema,
platformAdapter,
resultSchema
} from '@empathyco/x-adapter-platform';
Expand Down Expand Up @@ -57,11 +57,11 @@ Object.assign<FacetsConfig, FacetsConfig>(facetsConfig, {
// TODO: Rename to currentPrice
'__prices.current.value': {
modelName: 'NumberRangeFacet',
schema: numberFilterMutableSchema
schema: numberFilterSchema
},
// TODO: Rename to previousPrice
'__prices.original.value': {
modelName: 'NumberRangeFacet',
schema: numberFilterMutableSchema
schema: numberFilterSchema
}
});

0 comments on commit e652868

Please sign in to comment.