From e1c94a375b7cdb819626ab3e8bc78304d2b1b51b Mon Sep 17 00:00:00 2001 From: goncy Date: Fri, 7 May 2021 10:29:10 -0300 Subject: [PATCH] Fix build --- commerce.config.json | 1 + framework/csv/api/catalog/index.ts | 1 + framework/csv/api/catalog/products.ts | 1 + framework/csv/api/customers/index.ts | 1 + framework/csv/api/customers/login.ts | 1 + framework/csv/api/customers/logout.ts | 1 + framework/csv/api/customers/signup.ts | 1 + framework/csv/api/wishlist/index.tsx | 2 ++ 8 files changed, 9 insertions(+) create mode 100644 framework/csv/api/catalog/index.ts create mode 100644 framework/csv/api/catalog/products.ts create mode 100644 framework/csv/api/customers/index.ts create mode 100644 framework/csv/api/customers/login.ts create mode 100644 framework/csv/api/customers/logout.ts create mode 100644 framework/csv/api/customers/signup.ts create mode 100644 framework/csv/api/wishlist/index.tsx 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 () {}