mirror of
https://github.com/vercel/commerce.git
synced 2025-07-27 04:01:23 +00:00
Implement custom checkout (#487)
* Implement custom checkout core * Fix elements on core * Add files to providers * Adapt providers * Update types * Update shopify file * Format files
This commit is contained in:
4
pages/api/customer/address.ts
Normal file
4
pages/api/customer/address.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import customerAddressApi from '@framework/api/endpoints/customer/address'
|
||||
import commerce from '@lib/api/commerce'
|
||||
|
||||
export default customerAddressApi(commerce)
|
4
pages/api/customer/card.ts
Normal file
4
pages/api/customer/card.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import customerCardApi from '@framework/api/endpoints/customer/card'
|
||||
import commerce from '@lib/api/commerce'
|
||||
|
||||
export default customerCardApi(commerce)
|
4
pages/api/customer/index.ts
Normal file
4
pages/api/customer/index.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import customerApi from '@framework/api/endpoints/customer'
|
||||
import commerce from '@lib/api/commerce'
|
||||
|
||||
export default customerApi(commerce)
|
Reference in New Issue
Block a user