File tree Expand file tree Collapse file tree 6 files changed +26433
-20004
lines changed Expand file tree Collapse file tree 6 files changed +26433
-20004
lines changed Original file line number Diff line number Diff line change 44 branches :
55 - main
66 - develop
7+ - release/*
78
89jobs :
910 build :
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue-storefront/magento-api" ,
3- "version" : " 1.0.0-rc.5.2.2 " ,
3+ "version" : " 1.0.0-rc.5.3 " ,
44 "sideEffects" : false ,
55 "homepage" : " https://github.com/vuestorefront/magento2" ,
66 "bugs" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue-storefront/magento" ,
3- "version" : " 1.0.0-rc.5.2.2 " ,
3+ "version" : " 1.0.0-rc.5.3 " ,
44 "license" : " MIT" ,
55 "homepage" : " https://github.com/vuestorefront/magento2" ,
66 "bugs" : {
2323 },
2424 "dependencies" : {
2525 "@vue-storefront/core" : " ~2.5.4" ,
26- "@vue-storefront/magento-api" : " 1.0.0-rc.5.2.2 " ,
26+ "@vue-storefront/magento-api" : " 1.0.0-rc.5.3 " ,
2727 "@vue/composition-api" : " ^1.4.1" ,
2828 "cookie-universal" : " ^2.1.5" ,
2929 "vue" : " ^2.6.14" ,
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ const constructFilterObject = (inputFilters: Object) => {
3535 Object . keys ( inputFilters ) . forEach ( ( key ) => {
3636 if ( key === 'price' ) {
3737 const price = { from : 0 , to : 0 } ;
38+ // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
3839 const flatPrices = inputFilters [ key ] . flatMap ( ( inputFilter ) => inputFilter . split ( '_' ) . map ( ( str ) => Number . parseFloat ( str ) ) ) . sort ( ( a , b ) => a - b ) ;
3940
4041 [ price . from ] = flatPrices ;
@@ -94,7 +95,8 @@ const factoryParams = {
9495 currentPage : productParams . page ,
9596 } ;
9697
97- const { data } = await context . $magento . api . products ( productSearchParams ) ;
98+ // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
99+ const { data } = await context . $magento . api . products ( productSearchParams , params ?. input . customQuery || { } ) ;
98100
99101 Logger . debug ( '[Result]:' , { data } ) ;
100102
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue-storefront/magento-theme" ,
3- "version" : " 1.0.0-rc.5.2.2 " ,
3+ "version" : " 1.0.0-rc.5.3 " ,
44 "private" : true ,
55 "license" : " MIT" ,
66 "homepage" : " https://github.com/vuestorefront/magento2" ,
3333 "@nuxtjs/style-resources" : " ^1.2.1" ,
3434 "@storefront-ui/vue" : " ^0.11.5" ,
3535 "@vue-storefront/core" : " ~2.5.4" ,
36- "@vue-storefront/magento" : " 1.0.0-rc.5.2.2 " ,
36+ "@vue-storefront/magento" : " 1.0.0-rc.5.3 " ,
3737 "@vue-storefront/middleware" : " ~2.5.4" ,
3838 "@vue-storefront/nuxt" : " ~2.5.4" ,
3939 "@vue-storefront/nuxt-theme" : " ~2.5.4" ,
You can’t perform that action at this time.
0 commit comments