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.
Install latest version of auth, acc and order dropins
- Loading branch information
Showing
197 changed files
with
1,686 additions
and
1,033 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
..._/storefront-account/api/createCustomerAddress/graphql/createCustomerAddress.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const CREATE_CUSTOMER_ADDRESS = "\n mutation CREATE_CUSTOMER_ADDRESS($input: CustomerAddressInput!) {\n createCustomerAddress(input:$input) {\n firstname\n }\n }\n"; | ||
export declare const CREATE_CUSTOMER_ADDRESS = "\n mutation CREATE_CUSTOMER_ADDRESS($input: CustomerAddressInput!) {\n createCustomerAddress(input: $input) {\n firstname\n }\n }\n"; | ||
//# sourceMappingURL=createCustomerAddress.graphql.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export { BASIC_CUSTOMER_INFO_FRAGMENT } from './graphql/CustomerFragment.graphql'; | ||
export { ADDRESS_FRAGMENT } from './graphql/CustomerAddressFragment.graphql'; | ||
export { ORDER_SUMMARY_FRAGMENT } from './graphql/OrderSummaryFragment.graphql'; | ||
//# sourceMappingURL=fragments.d.ts.map |
2 changes: 0 additions & 2 deletions
2
scripts/__dropins__/storefront-account/api/fragments/CustomerFragment.graphql.d.ts
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...dropins__/storefront-account/api/getAttributesForm/graphql/getAttributesForm.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export declare const GET_ATTRIBUTES_FORM = "\n query GET_ATTRIBUTES_FORM($formCode: String!) {\n attributesForm(formCode: $formCode) {\n items {\n code\n default_value\n entity_type\n frontend_class\n frontend_input\n is_required\n is_unique\n label\n options {\n is_default\n label\n value\n }\n ... on CustomerAttributeMetadata {\n multiline_count\n sort_order\n validate_rules {\n name\n value\n }\n }\n }\n errors {\n type\n message\n }\n }\n }\n"; | ||
export declare const GET_ATTRIBUTES_FORM_SHORT = "\n query GET_ATTRIBUTES_FORM_SHORT {\n attributesForm(formCode: \"customer_register_address\") {\n items {\n frontend_input\n label\n code\n ... on CustomerAttributeMetadata {\n multiline_count\n sort_order\n }\n }\n }\n }\n"; | ||
export declare const GET_ATTRIBUTES_FORM_SHORT = "\n query GET_ATTRIBUTES_FORM_SHORT {\n attributesForm(formCode: \"customer_register_address\") {\n items {\n frontend_input\n label\n code\n ... on CustomerAttributeMetadata {\n multiline_count\n sort_order\n }\n }\n }\n }\n"; | ||
//# sourceMappingURL=getAttributesForm.graphql.d.ts.map |
2 changes: 1 addition & 1 deletion
2
...opins__/storefront-account/api/getCustomerAddress/graphql/getCustomerAddress.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const GET_CUSTOMER_ADDRESS = "\n query GET_CUSTOMER_ADDRESS {\n customer {\n addresses {\n firstname\n lastname\n city\n company\n country_code\n region {\n region\n region_code\n region_id\n }\n custom_attributesV2 {\n ... on AttributeValue {\n code\n value\n }\n }\n telephone\n id\n vat_id\n postcode\n street\n default_shipping\n default_billing\n }\n }\n }\n"; | ||
export declare const GET_CUSTOMER_ADDRESS = "\n query GET_CUSTOMER_ADDRESS {\n customer {\n addresses {\n firstname\n lastname\n middlename\n fax\n prefix\n suffix\n city\n company\n country_code\n region {\n region\n region_code\n region_id\n }\n custom_attributesV2 {\n ... on AttributeValue {\n code\n value\n }\n }\n telephone\n id\n vat_id\n postcode\n street\n default_shipping\n default_billing\n }\n }\n }\n"; | ||
//# sourceMappingURL=getCustomerAddress.graphql.d.ts.map |
4 changes: 2 additions & 2 deletions
4
scripts/__dropins__/storefront-account/api/getOrderHistoryList/getOrderHistoryList.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,4 +1,4 @@ | ||
import { OrderHistory } from '../../data/models'; | ||
import { OrderHistoryModel } from '../../data/models'; | ||
|
||
export declare const getOrderHistoryList: (pageSize: number, selectOrdersDate: string, currentPage: number) => Promise<OrderHistory | null>; | ||
export declare const getOrderHistoryList: (pageSize: number, selectOrdersDate: string, currentPage: number) => Promise<OrderHistoryModel | null>; | ||
//# sourceMappingURL=getOrderHistoryList.d.ts.map |
2 changes: 0 additions & 2 deletions
2
..._/storefront-account/api/getOrderHistoryList/graphql/customerAddressFragment.graphql.d.ts
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
...ns__/storefront-account/api/getOrderHistoryList/graphql/orderSummaryFragment.graphql.d.ts
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...pts/__dropins__/storefront-account/api/getStoreConfig/graphql/getStoreConfig.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const GET_STORE_CONFIG = "\n query GET_STORE_CONFIG {\n storeConfig {\n autocomplete_on_storefront\n minimum_password_length\n required_character_classes_number\n }\n }\n"; | ||
export declare const GET_STORE_CONFIG = "\n query GET_STORE_CONFIG {\n storeConfig {\n base_media_url\n autocomplete_on_storefront\n minimum_password_length\n required_character_classes_number\n }\n }\n"; | ||
//# sourceMappingURL=getStoreConfig.graphql.d.ts.map |
2 changes: 2 additions & 0 deletions
2
scripts/__dropins__/storefront-account/api/graphql/CustomerAddressFragment.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 ADDRESS_FRAGMENT = "\n fragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }\n"; | ||
//# sourceMappingURL=CustomerAddressFragment.graphql.d.ts.map |
2 changes: 2 additions & 0 deletions
2
scripts/__dropins__/storefront-account/api/graphql/CustomerFragment.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 BASIC_CUSTOMER_INFO_FRAGMENT = "\n fragment BASIC_CUSTOMER_INFO_FRAGMENT on Customer {\n date_of_birth\n email\n firstname\n gender\n lastname\n middlename\n prefix\n suffix\n created_at\n }\n"; | ||
//# sourceMappingURL=CustomerFragment.graphql.d.ts.map |
2 changes: 2 additions & 0 deletions
2
scripts/__dropins__/storefront-account/api/graphql/OrderSummaryFragment.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 ORDER_SUMMARY_FRAGMENT = "\n fragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n __typename\n grand_total {\n value\n currency\n }\n subtotal {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }\n"; | ||
//# sourceMappingURL=OrderSummaryFragment.graphql.d.ts.map |
8 changes: 7 additions & 1 deletion
8
scripts/__dropins__/storefront-account/api/initialize/initialize.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
2 changes: 1 addition & 1 deletion
2
..._/storefront-account/api/removeCustomerAddress/graphql/removeCustomerAddress.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const REMOVE_CUSTOMER_ADDRESS = "\n mutation REMOVE_CUSTOMER_ADDRESS($id: Int!) {\n deleteCustomerAddress(id:$id)\n }\n"; | ||
export declare const REMOVE_CUSTOMER_ADDRESS = "\n mutation REMOVE_CUSTOMER_ADDRESS($id: Int!) {\n deleteCustomerAddress(id: $id)\n }\n"; | ||
//# sourceMappingURL=removeCustomerAddress.graphql.d.ts.map |
2 changes: 1 addition & 1 deletion
2
...pts/__dropins__/storefront-account/api/updateCustomer/graphql/updateCustomer.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const UPDATE_CUSTOMER_V2 = "\n mutation UPDATE_CUSTOMER_V2($input: CustomerUpdateInput!) {\n updateCustomerV2(input:$input) {\n customer {\n email\n }\n }\n }\n"; | ||
export declare const UPDATE_CUSTOMER_V2 = "\n mutation UPDATE_CUSTOMER_V2($input: CustomerUpdateInput!) {\n updateCustomerV2(input: $input) {\n customer {\n email\n }\n }\n }\n"; | ||
//# sourceMappingURL=updateCustomer.graphql.d.ts.map |
2 changes: 1 addition & 1 deletion
2
..._/storefront-account/api/updateCustomerAddress/graphql/updateCustomerAddress.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const UPDATE_CUSTOMER_ADDRESS = "\n mutation UPDATE_CUSTOMER_ADDRESS($id: Int!,\n $input: CustomerAddressInput) {\n updateCustomerAddress(id:$id, input:$input) {\n firstname\n }\n }\n"; | ||
export declare const UPDATE_CUSTOMER_ADDRESS = "\n mutation UPDATE_CUSTOMER_ADDRESS($id: Int!, $input: CustomerAddressInput) {\n updateCustomerAddress(id: $id, input: $input) {\n firstname\n }\n }\n"; | ||
//# sourceMappingURL=updateCustomerAddress.graphql.d.ts.map |
2 changes: 1 addition & 1 deletion
2
...ins__/storefront-account/api/updateCustomerEmail/graphql/updateCustomerEmail.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const UPDATE_CUSTOMER_EMAIL = "\n mutation UPDATE_CUSTOMER_EMAIL($email: String! $password: String!) {\n updateCustomerEmail(email:$email password:$password) {\n customer {\n email\n }\n }\n }\n"; | ||
export declare const UPDATE_CUSTOMER_EMAIL = "\n mutation UPDATE_CUSTOMER_EMAIL($email: String!, $password: String!) {\n updateCustomerEmail(email: $email, password: $password) {\n customer {\n email\n }\n }\n }\n"; | ||
//# sourceMappingURL=updateCustomerEmail.graphql.d.ts.map |
2 changes: 1 addition & 1 deletion
2
...storefront-account/api/updateCustomerPassword/graphql/updateCustomerPassword.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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare const CHANGE_CUSTOMER_PASSWORD = "\n mutation CHANGE_CUSTOMER_PASSWORD($currentPassword: String!, $newPassword: String!) {\n changeCustomerPassword(currentPassword: $currentPassword, newPassword: $newPassword) {\n email\n }\n }\n"; | ||
export declare const CHANGE_CUSTOMER_PASSWORD = "\n mutation CHANGE_CUSTOMER_PASSWORD(\n $currentPassword: String!\n $newPassword: String!\n ) {\n changeCustomerPassword(\n currentPassword: $currentPassword\n newPassword: $newPassword\n ) {\n email\n }\n }\n"; | ||
//# sourceMappingURL=updateCustomerPassword.graphql.d.ts.map |
4 changes: 3 additions & 1 deletion
4
scripts/__dropins__/storefront-account/chunks/CustomerInformationCard.js
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.