diff --git a/commerce.config.json b/commerce.config.json index 08ea78814..e57b61049 100644 --- a/commerce.config.json +++ b/commerce.config.json @@ -1,4 +1,5 @@ { + "provider": "csv", "features": { "wishlist": true, "customCheckout": false diff --git a/framework/csv/api/catalog/index.ts b/framework/csv/api/catalog/index.ts new file mode 100644 index 000000000..ea9b101e1 --- /dev/null +++ b/framework/csv/api/catalog/index.ts @@ -0,0 +1 @@ +export default function () {} diff --git a/framework/csv/api/catalog/products.ts b/framework/csv/api/catalog/products.ts new file mode 100644 index 000000000..ea9b101e1 --- /dev/null +++ b/framework/csv/api/catalog/products.ts @@ -0,0 +1 @@ +export default function () {} diff --git a/framework/csv/api/customers/index.ts b/framework/csv/api/customers/index.ts new file mode 100644 index 000000000..ea9b101e1 --- /dev/null +++ b/framework/csv/api/customers/index.ts @@ -0,0 +1 @@ +export default function () {} diff --git a/framework/csv/api/customers/login.ts b/framework/csv/api/customers/login.ts new file mode 100644 index 000000000..ea9b101e1 --- /dev/null +++ b/framework/csv/api/customers/login.ts @@ -0,0 +1 @@ +export default function () {} diff --git a/framework/csv/api/customers/logout.ts b/framework/csv/api/customers/logout.ts new file mode 100644 index 000000000..ea9b101e1 --- /dev/null +++ b/framework/csv/api/customers/logout.ts @@ -0,0 +1 @@ +export default function () {} diff --git a/framework/csv/api/customers/signup.ts b/framework/csv/api/customers/signup.ts new file mode 100644 index 000000000..ea9b101e1 --- /dev/null +++ b/framework/csv/api/customers/signup.ts @@ -0,0 +1 @@ +export default function () {} diff --git a/framework/csv/api/wishlist/index.tsx b/framework/csv/api/wishlist/index.tsx new file mode 100644 index 000000000..a72856673 --- /dev/null +++ b/framework/csv/api/wishlist/index.tsx @@ -0,0 +1,2 @@ +export type WishlistItem = { product: any; id: number } +export default function () {}