Skip to content

Commit 1337e92

Browse files
committed
Update order, account and auth dropins
1 parent 19d1799 commit 1337e92

File tree

318 files changed

+4789
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

318 files changed

+4789
-34
lines changed

package-lock.json

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
"dependencies": {
3636
"@adobe/magento-storefront-event-collector": "^1.8.0",
3737
"@adobe/magento-storefront-events-sdk": "^1.8.0",
38-
"@dropins/storefront-account": "~1.0.0",
39-
"@dropins/storefront-auth": "~1.0.0",
38+
"@dropins/storefront-account": "~1.0.1-beta1",
39+
"@dropins/storefront-auth": "~1.0.1-beta1",
4040
"@dropins/storefront-cart": "~1.0.1",
4141
"@dropins/storefront-checkout": "~1.0.0",
42-
"@dropins/storefront-order": "~1.0.0",
42+
"@dropins/storefront-order": "~1.0.1-beta1",
4343
"@dropins/storefront-pdp": "~1.0.0",
4444
"@dropins/tools": "^0.38.0"
4545
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export declare const CREATE_CUSTOMER_ADDRESS = "\n mutation CREATE_CUSTOMER_ADDRESS($input: CustomerAddressInput!) {\n createCustomerAddress(input: $input) {\n firstname\n }\n }\n";
218
//# sourceMappingURL=createCustomerAddress.graphql.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './createCustomerAddress';
218
//# sourceMappingURL=index.d.ts.map

scripts/__dropins__/storefront-account/api/fetch-graphql/fetch-graphql.d.ts

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export declare const setEndpoint: (endpoint: string) => void, setFetchGraphQlHeader: (key: string, value: string | null) => void, removeFetchGraphQlHeader: (key: string) => void, setFetchGraphQlHeaders: (header: import('@adobe/fetch-graphql').Header) => void, fetchGraphQl: <T = any>(query: string, options?: import('@adobe/fetch-graphql').FetchOptions | undefined) => Promise<{
218
errors?: import('@adobe/fetch-graphql').FetchQueryError | undefined;
319
data: T;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './fetch-graphql';
218
//# sourceMappingURL=index.d.ts.map

scripts/__dropins__/storefront-account/api/fragments.d.ts

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export { BASIC_CUSTOMER_INFO_FRAGMENT } from './graphql/CustomerFragment.graphql';
218
export { ADDRESS_FRAGMENT } from './graphql/CustomerAddressFragment.graphql';
319
export { ORDER_SUMMARY_FRAGMENT } from './graphql/OrderSummaryFragment.graphql';
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
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";
218
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";
319
//# sourceMappingURL=getAttributesForm.graphql.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './getAttributesForm';
218
//# sourceMappingURL=index.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export declare const GET_COUNTRIES_QUERY = "\n query GET_COUNTRIES_QUERY {\n countries {\n two_letter_abbreviation\n full_name_locale\n }\n storeConfig {\n countries_with_required_region\n optional_zip_countries\n }\n }\n";
218
//# sourceMappingURL=getCountries.graphql.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './getCountries';
218
//# sourceMappingURL=index.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export declare const GET_CUSTOMER: string;
218
//# sourceMappingURL=getCustomer.graphql.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './getCustomer';
218
//# sourceMappingURL=index.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
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";
218
//# sourceMappingURL=getCustomerAddress.graphql.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './getCustomerAddress';
218
//# sourceMappingURL=index.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export declare const GET_CUSTOMER_ORDERS_LIST: string;
218
//# sourceMappingURL=getOrderHistoryList.graphql.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export * from './getOrderHistoryList';
218
//# sourceMappingURL=index.d.ts.map
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1+
/********************************************************************
2+
* ADOBE CONFIDENTIAL
3+
* __________________
4+
*
5+
* Copyright 2024 Adobe
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: All information contained herein is, and remains
9+
* the property of Adobe and its suppliers, if any. The intellectual
10+
* and technical concepts contained herein are proprietary to Adobe
11+
* and its suppliers and are protected by all applicable intellectual
12+
* property laws, including trade secret and copyright laws.
13+
* Dissemination of this information or reproduction of this material
14+
* is strictly forbidden unless prior written permission is obtained
15+
* from Adobe.
16+
*******************************************************************/
117
export declare const GET_REGIONS = "\n query GET_REGIONS($countryCode: String!) {\n country(id: $countryCode) {\n id\n available_regions {\n id\n code\n name\n }\n }\n }\n";
218
//# sourceMappingURL=getRegions.graphql.d.ts.map

0 commit comments

Comments
 (0)