forked from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac4ec79
commit 1462e13
Showing
70 changed files
with
770 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
scripts/__dropins__/storefront-order/api/getStoreConfig/graphql/StoreConfigQuery.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const STORE_CONFIG_QUERY = "\nquery STORE_CONFIG_QUERY {\n storeConfig {\n order_cancellation_enabled\n order_cancellation_reasons {\n description\n }\n orders_invoices_credit_memos_display_price\n orders_invoices_credit_memos_display_shipping_amount\n orders_invoices_credit_memos_display_subtotal\n orders_invoices_credit_memos_display_grandtotal\n orders_invoices_credit_memos_display_full_summary\n orders_invoices_credit_memos_display_zero_tax\n }\n}\n"; | ||
export declare const STORE_CONFIG_QUERY = "\nquery STORE_CONFIG_QUERY {\n storeConfig {\n order_cancellation_enabled\n order_cancellation_reasons {\n description\n }\n base_media_url\n orders_invoices_credit_memos_display_price\n orders_invoices_credit_memos_display_shipping_amount\n orders_invoices_credit_memos_display_subtotal\n orders_invoices_credit_memos_display_grandtotal\n orders_invoices_credit_memos_display_full_summary\n orders_invoices_credit_memos_display_zero_tax\n }\n}\n"; | ||
//# sourceMappingURL=StoreConfigQuery.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
export * from './initialize'; | ||
export * from './cancelOrder'; | ||
export * from './fetch-graphql'; | ||
export * from './getOrderDetailsById'; | ||
export * from './getGuestOrder'; | ||
export * from './guestOrderByToken'; | ||
export * from './getAttributesForm'; | ||
export * from './getAttributesList'; | ||
export * from './getCustomer'; | ||
export * from './getStoreConfig'; | ||
export * from './getCustomerOrdersReturn'; | ||
export * from './getAttributesList'; | ||
export * from './requestReturn'; | ||
export * from './cancelOrder'; | ||
export * from './requestGuestOrderCancel'; | ||
export * from './getGuestOrder'; | ||
export * from './getOrderDetailsById'; | ||
export * from './getStoreConfig'; | ||
export * from './guestOrderByToken'; | ||
export * from './initialize'; | ||
export * from './placeOrder'; | ||
export * from './reorderItems'; | ||
export * from './requestGuestOrderCancel'; | ||
export * from './requestReturn'; | ||
export * from './requestGuestReturn'; | ||
//# sourceMappingURL=index.d.ts.map |
2 changes: 2 additions & 0 deletions
2
scripts/__dropins__/storefront-order/api/placeOrder/graphql/placeOrderMutation.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export declare const PLACE_ORDER_MUTATION: string; | ||
//# sourceMappingURL=placeOrderMutation.d.ts.map |
2 changes: 2 additions & 0 deletions
2
scripts/__dropins__/storefront-order/api/placeOrder/index.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './placeOrder'; | ||
//# sourceMappingURL=index.d.ts.map |
4 changes: 4 additions & 0 deletions
4
scripts/__dropins__/storefront-order/api/placeOrder/placeOrder.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { OrderDataModel } from '../../data/models'; | ||
|
||
export declare const placeOrder: (cartId: string) => Promise<OrderDataModel | null | undefined>; | ||
//# sourceMappingURL=placeOrder.d.ts.map |
2 changes: 2 additions & 0 deletions
2
...dropins__/storefront-order/api/requestGuestReturn/graphql/requestGuestReturn.graphql.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export declare const REQUEST_RETURN_ORDER: string; | ||
//# sourceMappingURL=requestGuestReturn.graphql.d.ts.map |
2 changes: 2 additions & 0 deletions
2
scripts/__dropins__/storefront-order/api/requestGuestReturn/index.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './requestGuestReturn'; | ||
//# sourceMappingURL=index.d.ts.map |
9 changes: 9 additions & 0 deletions
9
scripts/__dropins__/storefront-order/api/requestGuestReturn/requestGuestReturn.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { RequestReturnProps } from '../../types'; | ||
|
||
export declare const requestGuestReturn: (form: RequestReturnProps) => Promise<{ | ||
uid: string; | ||
number: string; | ||
status: string; | ||
createdAt: string; | ||
}>; | ||
//# sourceMappingURL=requestGuestReturn.d.ts.map |
Oops, something went wrong.