@meeovi/layer-commerce 1.0.14 → 1.1.0
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/app/pages/departments/[...slug].vue +1 -3
- package/app/pages/departments/category/[...slug].vue +1 -1
- package/package.json +2 -4
- package/composables/useAuth.ts +0 -2
- package/composables/useCache.ts +0 -2
- package/composables/useInventory.ts +0 -2
- package/composables/useLoading.ts +0 -2
- package/composables/useNotification.ts +0 -2
- package/composables/useTax.ts +0 -2
- package/services/magento.ts +0 -2
- package/types/checkout.ts +0 -6
- package/types/nuxt-imports.d.ts +0 -5
- package/types/product.ts +0 -3
- package/types/review.ts +0 -1
- package/types/storeInPickUp.ts +0 -1
- package/types/wishlist.ts +0 -1
- package/utils/errorHandler.ts +0 -2
- /package/{types → app/types}/checkout.d.ts +0 -0
- /package/{types → app/types}/product.d.ts +0 -0
- /package/{types → app/types}/review.d.ts +0 -0
- /package/{types → app/types}/storeInPickUp.d.ts +0 -0
- /package/{types → app/types}/wishlist.d.ts +0 -0
|
@@ -232,9 +232,7 @@
|
|
|
232
232
|
</template>
|
|
233
233
|
|
|
234
234
|
<script setup>
|
|
235
|
-
|
|
236
|
-
import spaces from '#social/app/components/related/space.vue'
|
|
237
|
-
import productCard from '#commerce/app/components/catalog/product/productCard.vue'
|
|
235
|
+
import productCard from '#commerce/app/components/catalog/product/productCard.vue'
|
|
238
236
|
import travel from '@/components/categories/travel.vue'
|
|
239
237
|
import deals from '@/components/categories/deals.vue'
|
|
240
238
|
import timeComponent from '@/components/categories/time/time.vue'
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
import stations from '~/components/categories/stations.vue'
|
|
78
78
|
import eats from '~/components/categories/eats.vue'
|
|
79
79
|
import restaurants from '~/components/categories/restaurants.vue'
|
|
80
|
-
import productCard from '
|
|
80
|
+
import productCard from '~/components/catalog/product/productCard.vue'
|
|
81
81
|
|
|
82
82
|
const route = useRoute()
|
|
83
83
|
const {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meeovi/layer-commerce",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Commerce Layer for the Alternate Framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"commerce",
|
|
@@ -24,11 +24,9 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@better-auth/stripe": "^1.4.15",
|
|
26
26
|
"@meeovi/adapter-magento": "^1.0.2",
|
|
27
|
-
"@meeovi/api": "^1.0.1",
|
|
28
|
-
"@meeovi/core": "^1.0.1",
|
|
29
27
|
"@meeovi/layer-social": "^1.0.4",
|
|
30
28
|
"@meeovi/sdk": "^1.0.2",
|
|
31
|
-
"@meeovi/
|
|
29
|
+
"@meeovi/core": "^1.0.4",
|
|
32
30
|
"@polar-sh/better-auth": "^1.6.4",
|
|
33
31
|
"@polar-sh/sdk": "^0.42.2",
|
|
34
32
|
"@storefront-ui/nuxt": "^3.1.1",
|
package/composables/useAuth.ts
DELETED
package/composables/useCache.ts
DELETED
package/composables/useTax.ts
DELETED
package/services/magento.ts
DELETED
package/types/checkout.ts
DELETED
package/types/nuxt-imports.d.ts
DELETED
package/types/product.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export interface Price { amount: number; currency: string }
|
|
2
|
-
export interface ProductVariant { id: string; sku: string; price: Price; attributes?: Record<string, any> }
|
|
3
|
-
export interface Product { id: string; sku: string; name: string; variants?: ProductVariant[]; price?: Price | number }
|
package/types/review.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export interface Review { id: string; productId: string; rating: number; comment?: string; author?: string }
|
package/types/storeInPickUp.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export interface StoreInPickUp { id: string; name: string; address: string; phone?: string }
|
package/types/wishlist.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export interface WishlistItem { id: string; productSku: string; addedAt: string }
|
package/utils/errorHandler.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|