diff --git a/blocks/commerce-checkout-success/commerce-checkout-success.css b/blocks/commerce-checkout-success/commerce-checkout-success.css
new file mode 100644
index 0000000000..4bab52ba8d
--- /dev/null
+++ b/blocks/commerce-checkout-success/commerce-checkout-success.css
@@ -0,0 +1,77 @@
+/* stylelint-disable selector-class-pattern */
+
+.order-confirmation {
+ display: grid;
+ align-items: start;
+ grid-template-columns: repeat(var(--grid-4-columns), 1fr);
+ grid-template-areas: 'main aside';
+ grid-column-gap: var(--grid-4-gutters);
+ margin-bottom: var(--spacing-xbig);
+ padding-top: var(--spacing-xxlarge);
+}
+
+.order-confirmation__main {
+ display: grid;
+ grid-row-gap: var(--spacing-xbig);
+ grid-column: 1 / span 7;
+}
+
+.order-confirmation__aside {
+ display: grid;
+ grid-row-gap: var(--spacing-xbig);
+ grid-column: 9 / span 4;
+}
+
+.order-confirmation__footer {
+ display: grid;
+ gap: var(--spacing-small);
+ text-align: center;
+}
+
+.order-confirmation__footer p {
+ margin: 0;
+}
+
+.order-confirmation__footer .order-confirmation-footer__continue-button {
+ margin: 0 auto;
+ text-align: center;
+ display: inline-block;
+}
+
+.order-confirmation-footer__contact-support {
+ font: var(--type-body-2-default-font);
+ letter-spacing: var(--type-body-2-default-letter-spacing);
+ color: var(--color-neutral-700);
+}
+
+.order-confirmation-footer__contact-support a {
+ font: var(--type-body-2-strong-font);
+ letter-spacing: var(--type-body-2-strong-letter-spacing);
+ color: var(--color-brand-500);
+ cursor: pointer;
+}
+
+/* Hide empty blocks */
+.order-confirmation__block:empty {
+ display: none;
+}
+
+@media only screen and (width >= 320px) and (width <= 768px) {
+ .order-confirmation {
+ grid-template-columns: repeat(var(--grid-1-columns), 1fr);
+ padding-top: 0;
+ }
+
+ .order-confirmation__main,
+ .order-confirmation__aside {
+ grid-row-gap: var(--spacing-medium);
+ }
+
+ .order-confirmation > div {
+ grid-column: 1 / span 4;
+ }
+
+ .order-confirmation__block .dropin-card {
+ border: 0;
+ }
+}
diff --git a/blocks/commerce-checkout-success/commerce-checkout-success.js b/blocks/commerce-checkout-success/commerce-checkout-success.js
new file mode 100644
index 0000000000..941cb7ba1c
--- /dev/null
+++ b/blocks/commerce-checkout-success/commerce-checkout-success.js
@@ -0,0 +1,146 @@
+// Dropin Components
+import { Button, provider as UI } from '@dropins/tools/components.js';
+
+// Auth Dropin
+import SignUp from '@dropins/storefront-auth/containers/SignUp.js';
+import { render as AuthProvider } from '@dropins/storefront-auth/render.js';
+
+// Order Dropin Modules
+import * as orderApi from '@dropins/storefront-order/api.js';
+import CustomerDetails from '@dropins/storefront-order/containers/CustomerDetails.js';
+import OrderCostSummary from '@dropins/storefront-order/containers/OrderCostSummary.js';
+import OrderHeader from '@dropins/storefront-order/containers/OrderHeader.js';
+import OrderProductList from '@dropins/storefront-order/containers/OrderProductList.js';
+import OrderStatus from '@dropins/storefront-order/containers/OrderStatus.js';
+import ShippingStatus from '@dropins/storefront-order/containers/ShippingStatus.js';
+import { render as OrderProvider } from '@dropins/storefront-order/render.js';
+
+// Block-level
+import createModal from '../modal/modal.js';
+
+let modal;
+async function showModal(content) {
+ modal = await createModal([content]);
+ modal.showModal();
+}
+
+export default async function decorate(block) {
+ // Initializers
+ import('../../scripts/initializers/order.js');
+
+ const orderConfirmationFragment = document.createRange()
+ .createContextualFragment(`
+
+ `);
+
+ // Order confirmation elements
+ const $orderConfirmationHeader = orderConfirmationFragment.querySelector(
+ '.order-confirmation__header',
+ );
+ const $orderStatus = orderConfirmationFragment.querySelector(
+ '.order-confirmation__order-status',
+ );
+ const $shippingStatus = orderConfirmationFragment.querySelector(
+ '.order-confirmation__shipping-status',
+ );
+ const $customerDetails = orderConfirmationFragment.querySelector(
+ '.order-confirmation__customer-details',
+ );
+ const $orderCostSummary = orderConfirmationFragment.querySelector(
+ '.order-confirmation__order-cost-summary',
+ );
+ const $orderProductList = orderConfirmationFragment.querySelector(
+ '.order-confirmation__order-product-list',
+ );
+ const $orderConfirmationFooter = orderConfirmationFragment.querySelector(
+ '.order-confirmation__footer',
+ );
+
+ block.replaceChildren(orderConfirmationFragment);
+
+ const handleSignUpClick = async ({
+ inputsDefaultValueSet,
+ addressesData,
+ }) => {
+ const signUpForm = document.createElement('div');
+ AuthProvider.render(SignUp, {
+ routeSignIn: () => '/customer/login',
+ routeRedirectOnEmailConfirmationClose: () => '/customer/account',
+ inputsDefaultValueSet,
+ addressesData,
+ })(signUpForm);
+
+ await showModal(signUpForm);
+ };
+
+ OrderProvider.render(OrderHeader, {
+ handleEmailAvailability: async (email) => {
+ const { data } = await orderApi.fetchGraphQl(
+ `
+ query isEmailAvailable($email: String!) {
+ isEmailAvailable(email: $email) {
+ is_email_available
+ }
+ }`,
+ {
+ method: 'GET',
+ variables: { email },
+ },
+ );
+
+ return Boolean(data?.isEmailAvailable?.is_email_available);
+ },
+ handleSignUpClick,
+ })($orderConfirmationHeader);
+
+ OrderProvider.render(OrderStatus, { slots: { OrderActions: () => null } })(
+ $orderStatus,
+ );
+ OrderProvider.render(ShippingStatus)($shippingStatus);
+ OrderProvider.render(CustomerDetails)($customerDetails);
+ OrderProvider.render(OrderCostSummary)($orderCostSummary);
+ OrderProvider.render(OrderProductList)($orderProductList);
+
+ $orderConfirmationFooter.innerHTML = `
+
+
+ `;
+
+ const $orderConfirmationFooterContinueBtn = $orderConfirmationFooter.querySelector(
+ '.order-confirmation-footer__continue-button',
+ );
+
+ UI.render(Button, {
+ children: 'Continue shopping',
+ 'data-testid': 'order-confirmation-footer__continue-button',
+ className: 'order-confirmation-footer__continue-button',
+ size: 'medium',
+ variant: 'primary',
+ type: 'submit',
+ href: '/',
+ })($orderConfirmationFooterContinueBtn);
+}
diff --git a/blocks/modal/modal.js b/blocks/modal/modal.js
index 2941ac27b2..a584e390f6 100644
--- a/blocks/modal/modal.js
+++ b/blocks/modal/modal.js
@@ -1,7 +1,7 @@
import { loadCSS, buildBlock } from '../../scripts/aem.js';
export default async function createModal(contentNodes) {
- await loadCSS('./blocks/modal/modal.css');
+ await loadCSS(`${window.location.origin}/blocks/modal/modal.css`);
const dialog = document.createElement('dialog');
dialog.setAttribute('tabindex', 1);
dialog.setAttribute('role', 'dialog');
diff --git a/package-lock.json b/package-lock.json
index 543d90b493..f2338dd317 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -16,7 +16,7 @@
"@dropins/storefront-auth": "~1.0.0",
"@dropins/storefront-cart": "~1.0.1",
"@dropins/storefront-checkout": "~1.0.0",
- "@dropins/storefront-order": "~1.0.0",
+ "@dropins/storefront-order": "v1.0.1-beta1",
"@dropins/storefront-pdp": "~1.0.0",
"@dropins/tools": "^0.38.0"
},
@@ -1817,9 +1817,9 @@
"integrity": "sha512-tNCmgVEWEW2OzyNll69jTUTsT3wNG8yJ4HRZ/MrBJF+5/B/o3O+dfYTs4RUpIohXC8sGPkAjXCn5k6BQyo7QUA=="
},
"node_modules/@dropins/storefront-order": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@dropins/storefront-order/-/storefront-order-1.0.0.tgz",
- "integrity": "sha512-3bhRUqiFkOLvJ5ovZpVplPBs5DcbSfSnlEX7pkl1fyJ3upFDM1CPBFjQEv3+iQF2OarzlOaYCeFdzke3LNxVcg=="
+ "version": "1.0.1-beta1",
+ "resolved": "https://registry.npmjs.org/@dropins/storefront-order/-/storefront-order-1.0.1-beta1.tgz",
+ "integrity": "sha512-h6HYZrNk5QOoTDFaf7Ktlt6O+NEG2qHsmFGIyf6Vf8LnKRTrydYzsDjTU43qLdEI46aOW3/V9IVV+c7XLNAd7g=="
},
"node_modules/@dropins/storefront-pdp": {
"version": "1.0.0",
diff --git a/package.json b/package.json
index bfb5474d3e..5d3c5f493b 100644
--- a/package.json
+++ b/package.json
@@ -39,7 +39,7 @@
"@dropins/storefront-auth": "~1.0.0",
"@dropins/storefront-cart": "~1.0.1",
"@dropins/storefront-checkout": "~1.0.0",
- "@dropins/storefront-order": "~1.0.0",
+ "@dropins/storefront-order": "v1.0.1-beta1",
"@dropins/storefront-pdp": "~1.0.0",
"@dropins/tools": "^0.38.0"
}
diff --git a/scripts/__dropins__/storefront-order/api/cancelOrder/graphql/cancelOrderMutation.d.ts b/scripts/__dropins__/storefront-order/api/cancelOrder/graphql/cancelOrderMutation.d.ts
index d6b19727f3..821182bb40 100644
--- a/scripts/__dropins__/storefront-order/api/cancelOrder/graphql/cancelOrderMutation.d.ts
+++ b/scripts/__dropins__/storefront-order/api/cancelOrder/graphql/cancelOrderMutation.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const CANCEL_ORDER_MUTATION: string;
//# sourceMappingURL=cancelOrderMutation.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/confirmGuestReturn/confirmGuestReturn.d.ts b/scripts/__dropins__/storefront-order/api/confirmGuestReturn/confirmGuestReturn.d.ts
index 2711506a10..91a6069529 100644
--- a/scripts/__dropins__/storefront-order/api/confirmGuestReturn/confirmGuestReturn.d.ts
+++ b/scripts/__dropins__/storefront-order/api/confirmGuestReturn/confirmGuestReturn.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const confirmGuestReturn: (orderId: string, confirmationKey: string) => Promise;
//# sourceMappingURL=confirmGuestReturn.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/confirmGuestReturn/graphql/confirmGuestReturn.graphql.d.ts b/scripts/__dropins__/storefront-order/api/confirmGuestReturn/graphql/confirmGuestReturn.graphql.d.ts
index 95af93e910..436f45d49d 100644
--- a/scripts/__dropins__/storefront-order/api/confirmGuestReturn/graphql/confirmGuestReturn.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/confirmGuestReturn/graphql/confirmGuestReturn.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const CONFIRM_RETURN_GUEST_ORDER: string;
//# sourceMappingURL=confirmGuestReturn.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/confirmGuestReturn/index.d.ts b/scripts/__dropins__/storefront-order/api/confirmGuestReturn/index.d.ts
index 03db300d09..697a26881c 100644
--- a/scripts/__dropins__/storefront-order/api/confirmGuestReturn/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/confirmGuestReturn/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './confirmGuestReturn';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/fetch-graphql/fetch-graphql.d.ts b/scripts/__dropins__/storefront-order/api/fetch-graphql/fetch-graphql.d.ts
index c1cc3ef7c6..b7460ae089 100644
--- a/scripts/__dropins__/storefront-order/api/fetch-graphql/fetch-graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/fetch-graphql/fetch-graphql.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
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: (query: string, options?: import('@adobe/fetch-graphql').FetchOptions | undefined) => Promise<{
errors?: import('@adobe/fetch-graphql').FetchQueryError | undefined;
data: T;
diff --git a/scripts/__dropins__/storefront-order/api/fetch-graphql/index.d.ts b/scripts/__dropins__/storefront-order/api/fetch-graphql/index.d.ts
index ea5ac123d4..d7de36c37d 100644
--- a/scripts/__dropins__/storefront-order/api/fetch-graphql/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/fetch-graphql/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './fetch-graphql';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/fragments.d.ts b/scripts/__dropins__/storefront-order/api/fragments.d.ts
index 3901508e5b..b6db02a890 100644
--- a/scripts/__dropins__/storefront-order/api/fragments.d.ts
+++ b/scripts/__dropins__/storefront-order/api/fragments.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export { REQUEST_RETURN_ORDER_FRAGMENT } from './graphql/RequestReturnOrderFragment.graphql';
export { ADDRESS_FRAGMENT } from './graphql/CustomerAddressFragment.graphql';
export { PRODUCT_DETAILS_FRAGMENT, PRICE_DETAILS_FRAGMENT, GIFT_CARD_DETAILS_FRAGMENT, ORDER_ITEM_DETAILS_FRAGMENT, BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT, } from './graphql/OrderItemsFragment.graphql';
diff --git a/scripts/__dropins__/storefront-order/api/getAttributesForm/graphql/getAttributesForm.graphql.d.ts b/scripts/__dropins__/storefront-order/api/getAttributesForm/graphql/getAttributesForm.graphql.d.ts
index de5037a870..a7a73fce4a 100644
--- a/scripts/__dropins__/storefront-order/api/getAttributesForm/graphql/getAttributesForm.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getAttributesForm/graphql/getAttributesForm.graphql.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
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";
//# sourceMappingURL=getAttributesForm.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getAttributesForm/index.d.ts b/scripts/__dropins__/storefront-order/api/getAttributesForm/index.d.ts
index 8eefd8da6b..1ef750dc9a 100644
--- a/scripts/__dropins__/storefront-order/api/getAttributesForm/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getAttributesForm/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getAttributesForm';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getAttributesList/graphql/getAttributesList.graphql.d.ts b/scripts/__dropins__/storefront-order/api/getAttributesList/graphql/getAttributesList.graphql.d.ts
index cc05caa302..f46e77c9f1 100644
--- a/scripts/__dropins__/storefront-order/api/getAttributesList/graphql/getAttributesList.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getAttributesList/graphql/getAttributesList.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const GET_ATTRIBUTES_LIST = "\n query GET_ATTRIBUTES_LIST($entityType: AttributeEntityTypeEnum!) {\n attributesList(entityType: $entityType) {\n items {\n ... on CustomerAttributeMetadata {\n multiline_count\n sort_order\n validate_rules {\n name\n value\n }\n }\n ... on ReturnItemAttributeMetadata {\n sort_order\n }\n code\n label\n default_value\n frontend_input\n is_unique\n is_required\n options {\n is_default\n label\n value\n }\n }\n errors {\n type\n message\n }\n }\n }\n";
//# sourceMappingURL=getAttributesList.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getAttributesList/index.d.ts b/scripts/__dropins__/storefront-order/api/getAttributesList/index.d.ts
index c226df6d13..9b67ab44df 100644
--- a/scripts/__dropins__/storefront-order/api/getAttributesList/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getAttributesList/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getAttributesList';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getCustomer/graphql/getCustomer.graphql.d.ts b/scripts/__dropins__/storefront-order/api/getCustomer/graphql/getCustomer.graphql.d.ts
index c7eb0fa664..2d5c4c85cd 100644
--- a/scripts/__dropins__/storefront-order/api/getCustomer/graphql/getCustomer.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getCustomer/graphql/getCustomer.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const GET_CUSTOMER = "\n query GET_CUSTOMER {\n customer {\n firstname\n lastname\n email\n }\n }\n";
//# sourceMappingURL=getCustomer.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getCustomer/index.d.ts b/scripts/__dropins__/storefront-order/api/getCustomer/index.d.ts
index 125c344455..f07cd41b30 100644
--- a/scripts/__dropins__/storefront-order/api/getCustomer/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getCustomer/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getCustomer';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/graphql/getCustomerOrdersReturn.graphql.d.ts b/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/graphql/getCustomerOrdersReturn.graphql.d.ts
index a46527f5fe..5b28cb0aa5 100644
--- a/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/graphql/getCustomerOrdersReturn.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/graphql/getCustomerOrdersReturn.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const GET_CUSTOMER_ORDERS_RETURN: string;
//# sourceMappingURL=getCustomerOrdersReturn.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/index.d.ts b/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/index.d.ts
index d6a7f2ee55..4d7f9a3305 100644
--- a/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getCustomerOrdersReturn/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getCustomerOrdersReturn';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/getGuestOrder.graphql.d.ts b/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/getGuestOrder.graphql.d.ts
index 0970dc5aff..d03b3bcd11 100644
--- a/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/getGuestOrder.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/getGuestOrder.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const GET_GUEST_ORDER: string;
//# sourceMappingURL=getGuestOrder.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/index.d.ts b/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/index.d.ts
index 6b3fe62e0d..b6910bc4c7 100644
--- a/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getGuestOrder/graphql/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getGuestOrder.graphql';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getGuestOrder/index.d.ts b/scripts/__dropins__/storefront-order/api/getGuestOrder/index.d.ts
index 76881e3322..3b00a1ca68 100644
--- a/scripts/__dropins__/storefront-order/api/getGuestOrder/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getGuestOrder/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getGuestOrder';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getOrderDetailsById/graphql/orderByNumber.graphql.d.ts b/scripts/__dropins__/storefront-order/api/getOrderDetailsById/graphql/orderByNumber.graphql.d.ts
index 6717e64099..7af3f632a0 100644
--- a/scripts/__dropins__/storefront-order/api/getOrderDetailsById/graphql/orderByNumber.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getOrderDetailsById/graphql/orderByNumber.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const ORDER_BY_NUMBER: string;
//# sourceMappingURL=orderByNumber.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getOrderDetailsById/index.d.ts b/scripts/__dropins__/storefront-order/api/getOrderDetailsById/index.d.ts
index 2bf647ae7f..03f27ea426 100644
--- a/scripts/__dropins__/storefront-order/api/getOrderDetailsById/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getOrderDetailsById/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getOrderDetailsById';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getStoreConfig/graphql/StoreConfigQuery.d.ts b/scripts/__dropins__/storefront-order/api/getStoreConfig/graphql/StoreConfigQuery.d.ts
index 4ffb839df6..0fc47013ac 100644
--- a/scripts/__dropins__/storefront-order/api/getStoreConfig/graphql/StoreConfigQuery.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getStoreConfig/graphql/StoreConfigQuery.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const STORE_CONFIG_QUERY = "\n query 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
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/getStoreConfig/index.d.ts b/scripts/__dropins__/storefront-order/api/getStoreConfig/index.d.ts
index 572f234893..78a11dd5c0 100644
--- a/scripts/__dropins__/storefront-order/api/getStoreConfig/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/getStoreConfig/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './getStoreConfig';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/graphql/CustomerAddressFragment.graphql.d.ts b/scripts/__dropins__/storefront-order/api/graphql/CustomerAddressFragment.graphql.d.ts
index 33dd3d63a5..1f79dc512e 100644
--- a/scripts/__dropins__/storefront-order/api/graphql/CustomerAddressFragment.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/graphql/CustomerAddressFragment.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
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
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/graphql/GurestOrderFragment.graphql.d.ts b/scripts/__dropins__/storefront-order/api/graphql/GurestOrderFragment.graphql.d.ts
index 6e9b547df1..2d36c9f39f 100644
--- a/scripts/__dropins__/storefront-order/api/graphql/GurestOrderFragment.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/graphql/GurestOrderFragment.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const GUEST_ORDER_FRAGMENT: string;
//# sourceMappingURL=GurestOrderFragment.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/graphql/OrderItemsFragment.graphql.d.ts b/scripts/__dropins__/storefront-order/api/graphql/OrderItemsFragment.graphql.d.ts
index 46518c21b1..032c0a4cf8 100644
--- a/scripts/__dropins__/storefront-order/api/graphql/OrderItemsFragment.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/graphql/OrderItemsFragment.graphql.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const PRODUCT_DETAILS_FRAGMENT = "\n fragment PRODUCT_DETAILS_FRAGMENT on ProductInterface {\n __typename\n canonical_url\n url_key\n uid\n name\n sku\n only_x_left_in_stock\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n maximum_price {\n regular_price {\n currency\n value\n }\n }\n }\n }\n";
export declare const PRICE_DETAILS_FRAGMENT = "\n fragment PRICE_DETAILS_FRAGMENT on OrderItemInterface {\n prices {\n price_including_tax {\n value\n currency\n }\n original_price {\n value\n currency\n }\n original_price_including_tax {\n value\n currency\n }\n price {\n value\n currency\n }\n }\n }\n";
export declare const GIFT_CARD_DETAILS_FRAGMENT = "\n fragment GIFT_CARD_DETAILS_FRAGMENT on GiftCardOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n gift_message {\n message\n }\n gift_card {\n recipient_name\n recipient_email\n sender_name\n sender_email\n message\n }\n }\n";
diff --git a/scripts/__dropins__/storefront-order/api/graphql/OrderSummaryFragment.graphql.d.ts b/scripts/__dropins__/storefront-order/api/graphql/OrderSummaryFragment.graphql.d.ts
index 716d4ebe38..b7650ed67b 100644
--- a/scripts/__dropins__/storefront-order/api/graphql/OrderSummaryFragment.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/graphql/OrderSummaryFragment.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const ORDER_SUMMARY_FRAGMENT = "\n fragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n grand_total {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\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
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/graphql/RequestReturnOrderFragment.graphql.d.ts b/scripts/__dropins__/storefront-order/api/graphql/RequestReturnOrderFragment.graphql.d.ts
index 3266d431f6..24313bc1e2 100644
--- a/scripts/__dropins__/storefront-order/api/graphql/RequestReturnOrderFragment.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/graphql/RequestReturnOrderFragment.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const REQUEST_RETURN_ORDER_FRAGMENT = "\n fragment REQUEST_RETURN_ORDER_FRAGMENT on Return {\n __typename\n uid\n status\n number\n created_at\n }\n";
//# sourceMappingURL=RequestReturnOrderFragment.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/graphql/ReturnsFragment.graphql.d.ts b/scripts/__dropins__/storefront-order/api/graphql/ReturnsFragment.graphql.d.ts
index 02bf061131..52ff90080d 100644
--- a/scripts/__dropins__/storefront-order/api/graphql/ReturnsFragment.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/graphql/ReturnsFragment.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const RETURNS_FRAGMENT = "\n fragment RETURNS_FRAGMENT on Returns {\n __typename\n items {\n number\n status\n created_at\n shipping {\n tracking {\n status {\n text\n type\n }\n carrier {\n uid\n label\n }\n tracking_number\n }\n }\n order {\n number\n token\n }\n items {\n uid\n quantity\n status\n request_quantity\n order_item {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n }\n }\n }\n }\n";
//# sourceMappingURL=ReturnsFragment.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/guestOrderByToken/graphql/guestOrderByToken.graphql.d.ts b/scripts/__dropins__/storefront-order/api/guestOrderByToken/graphql/guestOrderByToken.graphql.d.ts
index e137bb29ed..67a906662b 100644
--- a/scripts/__dropins__/storefront-order/api/guestOrderByToken/graphql/guestOrderByToken.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/guestOrderByToken/graphql/guestOrderByToken.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const ORDER_BY_TOKEN: string;
//# sourceMappingURL=guestOrderByToken.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/guestOrderByToken/index.d.ts b/scripts/__dropins__/storefront-order/api/guestOrderByToken/index.d.ts
index 332fea0b85..cb32cb26c2 100644
--- a/scripts/__dropins__/storefront-order/api/guestOrderByToken/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/guestOrderByToken/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './guestOrderByToken';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/index.d.ts b/scripts/__dropins__/storefront-order/api/index.d.ts
index 3a572a4507..95e09cb9a8 100644
--- a/scripts/__dropins__/storefront-order/api/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './cancelOrder';
export * from './fetch-graphql';
export * from './getAttributesForm';
diff --git a/scripts/__dropins__/storefront-order/api/initialize/index.d.ts b/scripts/__dropins__/storefront-order/api/initialize/index.d.ts
index 66c241dc2d..e68130e499 100644
--- a/scripts/__dropins__/storefront-order/api/initialize/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/initialize/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './initialize';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/placeOrder/graphql/placeOrderMutation.d.ts b/scripts/__dropins__/storefront-order/api/placeOrder/graphql/placeOrderMutation.d.ts
index b4b1eddb62..37eb5f8e41 100644
--- a/scripts/__dropins__/storefront-order/api/placeOrder/graphql/placeOrderMutation.d.ts
+++ b/scripts/__dropins__/storefront-order/api/placeOrder/graphql/placeOrderMutation.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const PLACE_ORDER_MUTATION: string;
//# sourceMappingURL=placeOrderMutation.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/placeOrder/index.d.ts b/scripts/__dropins__/storefront-order/api/placeOrder/index.d.ts
index 65c2281404..16c973907b 100644
--- a/scripts/__dropins__/storefront-order/api/placeOrder/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/placeOrder/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './placeOrder';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/reorderItems/graphql/reorderItems.graphql.d.ts b/scripts/__dropins__/storefront-order/api/reorderItems/graphql/reorderItems.graphql.d.ts
index b99af32348..5070204d30 100644
--- a/scripts/__dropins__/storefront-order/api/reorderItems/graphql/reorderItems.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/reorderItems/graphql/reorderItems.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const REORDER_ITEMS_MUTATION = "\n mutation REORDER_ITEMS_MUTATION($orderNumber: String!) {\n reorderItems(orderNumber: $orderNumber) {\n cart {\n itemsV2 {\n items {\n uid\n }\n }\n }\n userInputErrors {\n code\n message\n path\n }\n }\n }\n";
//# sourceMappingURL=reorderItems.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/reorderItems/index.d.ts b/scripts/__dropins__/storefront-order/api/reorderItems/index.d.ts
index 7b7db498bd..71140b701d 100644
--- a/scripts/__dropins__/storefront-order/api/reorderItems/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/reorderItems/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './reorderItems';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/graphql/requestGuestOrderCancelMutation.d.ts b/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/graphql/requestGuestOrderCancelMutation.d.ts
index 974b2ce4b8..9c761a6e32 100644
--- a/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/graphql/requestGuestOrderCancelMutation.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/graphql/requestGuestOrderCancelMutation.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const REQUEST_GUEST_ORDER_CANCEL_MUTATION: string;
//# sourceMappingURL=requestGuestOrderCancelMutation.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/index.d.ts b/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/index.d.ts
index 16cc78d955..0880736f84 100644
--- a/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './requestGuestOrderCancel';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/requestGuestOrderCancel.d.ts b/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/requestGuestOrderCancel.d.ts
index a26d9cba59..ca6cff4a82 100644
--- a/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/requestGuestOrderCancel.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestGuestOrderCancel/requestGuestOrderCancel.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const requestGuestOrderCancel: (token: string, reason: string, onSuccess: Function, onError: Function) => Promise;
//# sourceMappingURL=requestGuestOrderCancel.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestGuestReturn/graphql/requestGuestReturn.graphql.d.ts b/scripts/__dropins__/storefront-order/api/requestGuestReturn/graphql/requestGuestReturn.graphql.d.ts
index b9a8c0f202..91e7aa52cc 100644
--- a/scripts/__dropins__/storefront-order/api/requestGuestReturn/graphql/requestGuestReturn.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestGuestReturn/graphql/requestGuestReturn.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const REQUEST_RETURN_GUEST_ORDER: string;
//# sourceMappingURL=requestGuestReturn.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestGuestReturn/index.d.ts b/scripts/__dropins__/storefront-order/api/requestGuestReturn/index.d.ts
index bcca4ec752..7ee3a18959 100644
--- a/scripts/__dropins__/storefront-order/api/requestGuestReturn/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestGuestReturn/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './requestGuestReturn';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestReturn/graphql/requestReturn.graphql.d.ts b/scripts/__dropins__/storefront-order/api/requestReturn/graphql/requestReturn.graphql.d.ts
index 2053c33748..a7e99a3149 100644
--- a/scripts/__dropins__/storefront-order/api/requestReturn/graphql/requestReturn.graphql.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestReturn/graphql/requestReturn.graphql.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const REQUEST_RETURN_ORDER: string;
//# sourceMappingURL=requestReturn.graphql.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/api/requestReturn/index.d.ts b/scripts/__dropins__/storefront-order/api/requestReturn/index.d.ts
index 46e713fe3f..ce02c31895 100644
--- a/scripts/__dropins__/storefront-order/api/requestReturn/index.d.ts
+++ b/scripts/__dropins__/storefront-order/api/requestReturn/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './requestReturn';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/CustomerDetailsContent/index.d.ts b/scripts/__dropins__/storefront-order/components/CustomerDetailsContent/index.d.ts
index 5df4dafac1..c84d12bbaa 100644
--- a/scripts/__dropins__/storefront-order/components/CustomerDetailsContent/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/CustomerDetailsContent/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './CustomerDetailsContent';
export { CustomerDetailsContent as default } from './CustomerDetailsContent';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/EmptyList/index.d.ts b/scripts/__dropins__/storefront-order/components/EmptyList/index.d.ts
index fe530e4f6b..5649b9fcbb 100644
--- a/scripts/__dropins__/storefront-order/components/EmptyList/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/EmptyList/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './EmptyList';
export { EmptyList as default } from './EmptyList';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/Form/FormInputs/index.d.ts b/scripts/__dropins__/storefront-order/components/Form/FormInputs/index.d.ts
index 4bb7b35a49..cb508c9142 100644
--- a/scripts/__dropins__/storefront-order/components/Form/FormInputs/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/Form/FormInputs/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './FormInputs';
export { FormInputs as default } from './FormInputs';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/Form/index.d.ts b/scripts/__dropins__/storefront-order/components/Form/index.d.ts
index 4ba0696ed0..f583e85b54 100644
--- a/scripts/__dropins__/storefront-order/components/Form/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/Form/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './Form';
export { Form as default } from './Form';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderActions/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderActions/index.d.ts
index 8937366625..8eb1f6a31b 100644
--- a/scripts/__dropins__/storefront-order/components/OrderActions/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderActions/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderActions';
export { OrderActions as default } from './OrderActions';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderCancel/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderCancel/index.d.ts
index 78ba444dd6..c7043bdbe9 100644
--- a/scripts/__dropins__/storefront-order/components/OrderCancel/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderCancel/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderCancel';
export { OrderCancel as default } from './OrderCancel';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderCostSummaryContent/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderCostSummaryContent/index.d.ts
index 939894f3d3..d6b6d474fe 100644
--- a/scripts/__dropins__/storefront-order/components/OrderCostSummaryContent/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderCostSummaryContent/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderCostSummaryContent';
export { OrderCostSummaryContent as default } from './OrderCostSummaryContent';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderHeader/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderHeader/index.d.ts
index 17a315206a..dc03fc6c66 100644
--- a/scripts/__dropins__/storefront-order/components/OrderHeader/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderHeader/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderHeader';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderLoaders/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderLoaders/index.d.ts
index 56173faaae..34b7c5d12e 100644
--- a/scripts/__dropins__/storefront-order/components/OrderLoaders/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderLoaders/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderLoaders';
export { CardLoader as default } from './OrderLoaders';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderProductListContent/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderProductListContent/index.d.ts
index c9aadb59ce..ba54c61306 100644
--- a/scripts/__dropins__/storefront-order/components/OrderProductListContent/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderProductListContent/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderProductListContent';
export * from './CartSummaryItem';
export { OrderProductListContent as default } from './OrderProductListContent';
diff --git a/scripts/__dropins__/storefront-order/components/OrderSearchForm/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderSearchForm/index.d.ts
index 16ea0175c5..aafb07bc94 100644
--- a/scripts/__dropins__/storefront-order/components/OrderSearchForm/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderSearchForm/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderSearchForm';
export { OrderSearchForm as default } from './OrderSearchForm';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/OrderStatusContent/index.d.ts b/scripts/__dropins__/storefront-order/components/OrderStatusContent/index.d.ts
index b7a3ca88b3..9902308b2c 100644
--- a/scripts/__dropins__/storefront-order/components/OrderStatusContent/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/OrderStatusContent/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderStatusContent';
export { OrderStatusContent as default } from './OrderStatusContent';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/Reorder/index.d.ts b/scripts/__dropins__/storefront-order/components/Reorder/index.d.ts
index 0ce496a22b..7a14864189 100644
--- a/scripts/__dropins__/storefront-order/components/Reorder/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/Reorder/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './Reorder';
export { Reorder as default } from '.';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/ReturnOrderMessage/index.d.ts b/scripts/__dropins__/storefront-order/components/ReturnOrderMessage/index.d.ts
index 3f22f19673..acece1bd36 100644
--- a/scripts/__dropins__/storefront-order/components/ReturnOrderMessage/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/ReturnOrderMessage/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './ReturnOrderMessage';
export { ReturnOrderMessage as default } from './ReturnOrderMessage';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/ReturnOrderProductList/index.d.ts b/scripts/__dropins__/storefront-order/components/ReturnOrderProductList/index.d.ts
index c876e7fe1d..6312e03861 100644
--- a/scripts/__dropins__/storefront-order/components/ReturnOrderProductList/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/ReturnOrderProductList/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './ReturnOrderProductList';
export { ReturnOrderProductList as default } from './ReturnOrderProductList';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/ReturnReasonForm/index.d.ts b/scripts/__dropins__/storefront-order/components/ReturnReasonForm/index.d.ts
index fcad1c79c9..0e17eff0a5 100644
--- a/scripts/__dropins__/storefront-order/components/ReturnReasonForm/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/ReturnReasonForm/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './ReturnReasonForm';
export { ReturnReasonForm as default } from './ReturnReasonForm';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/ReturnsListContent/index.d.ts b/scripts/__dropins__/storefront-order/components/ReturnsListContent/index.d.ts
index 4bcac4ef3f..038f6b7f11 100644
--- a/scripts/__dropins__/storefront-order/components/ReturnsListContent/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/ReturnsListContent/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './ReturnsListContent';
export { ReturnsListContent as default } from './ReturnsListContent';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/components/ShippingStatusCard/index.d.ts b/scripts/__dropins__/storefront-order/components/ShippingStatusCard/index.d.ts
index b6675dd7c0..0fb33948c2 100644
--- a/scripts/__dropins__/storefront-order/components/ShippingStatusCard/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/ShippingStatusCard/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './ShippingStatusCard';
export * from './ShippingStatusReturnCard';
export { ShippingStatusCard as default } from './ShippingStatusCard';
diff --git a/scripts/__dropins__/storefront-order/components/index.d.ts b/scripts/__dropins__/storefront-order/components/index.d.ts
index b27b68b1a2..508aa37dd5 100644
--- a/scripts/__dropins__/storefront-order/components/index.d.ts
+++ b/scripts/__dropins__/storefront-order/components/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './CustomerDetailsContent';
export * from './EmptyList';
export * from './Form';
diff --git a/scripts/__dropins__/storefront-order/configs/defaultAttributePreset.config.d.ts b/scripts/__dropins__/storefront-order/configs/defaultAttributePreset.config.d.ts
index a32ced3bba..a813eba735 100644
--- a/scripts/__dropins__/storefront-order/configs/defaultAttributePreset.config.d.ts
+++ b/scripts/__dropins__/storefront-order/configs/defaultAttributePreset.config.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const defaultAttributePreset: string[];
//# sourceMappingURL=defaultAttributePreset.config.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/configs/mock.config.d.ts b/scripts/__dropins__/storefront-order/configs/mock.config.d.ts
index 866bcf6d7e..1e9c4f96cd 100644
--- a/scripts/__dropins__/storefront-order/configs/mock.config.d.ts
+++ b/scripts/__dropins__/storefront-order/configs/mock.config.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const mockOrder: {
data: {
guestOrder: {
diff --git a/scripts/__dropins__/storefront-order/containers/CreateReturn/index.d.ts b/scripts/__dropins__/storefront-order/containers/CreateReturn/index.d.ts
index 54f99d5c03..2fe07099cd 100644
--- a/scripts/__dropins__/storefront-order/containers/CreateReturn/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/CreateReturn/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './CreateReturn';
export { CreateReturn as default } from './CreateReturn';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/CustomerDetails/index.d.ts b/scripts/__dropins__/storefront-order/containers/CustomerDetails/index.d.ts
index 2a8a156d7a..471c18b904 100644
--- a/scripts/__dropins__/storefront-order/containers/CustomerDetails/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/CustomerDetails/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './CustomerDetails';
export { CustomerDetails as default } from './CustomerDetails';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderCancelForm/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderCancelForm/index.d.ts
index b5fb104867..131c79a775 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderCancelForm/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderCancelForm/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderCancelForm';
export { OrderCancelForm as default } from './OrderCancelForm';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderCostSummary/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderCostSummary/index.d.ts
index c93765846d..52da0e08cf 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderCostSummary/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderCostSummary/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderCostSummary';
export { OrderCostSummary as default } from './OrderCostSummary';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderHeader.js b/scripts/__dropins__/storefront-order/containers/OrderHeader.js
index ea4ab4300c..d73431e6fa 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderHeader.js
+++ b/scripts/__dropins__/storefront-order/containers/OrderHeader.js
@@ -1,3 +1,3 @@
/*! Copyright 2024 Adobe
All Rights Reserved. */
-import{jsx as u,jsxs as k}from"@dropins/tools/preact-jsx-runtime.js";import"@dropins/tools/lib.js";import{Icon as O,Header as H,Button as d}from"@dropins/tools/components.js";import{useState as f,useEffect as p}from"@dropins/tools/preact-hooks.js";import"../chunks/ShippingStatusCard.js";import*as c from"@dropins/tools/preact-compat.js";import"@dropins/tools/preact.js";import{events as _}from"@dropins/tools/event-bus.js";import{b}from"../chunks/OrderLoaders.js";import{useText as w,Text as L}from"@dropins/tools/i18n.js";const V=e=>c.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},c.createElement("g",{clipPath:"url(#clip0_4797_15077)"},c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M10.15 20.85L1.5 17.53V6.63L10.15 10V20.85Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M1.5 6.63001L10.15 3.20001L18.8 6.63001L10.15 10L1.5 6.63001Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M6.17969 4.77002L14.8297 8.15002V11.47",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M18.7896 12.64V6.63L10.1396 10V20.85L14.8296 19.05",stroke:"currentColor",strokeLinejoin:"round"}),c.createElement("path",{className:"success-icon",vectorEffect:"non-scaling-stroke",d:"M15.71 17.26C15.71 15.38 17.23 13.86 19.11 13.86C20.99 13.86 22.51 15.38 22.51 17.26C22.51 19.14 20.99 20.66 19.11 20.66C17.23 20.66 15.71 19.14 15.71 17.26Z",stroke:"currentColor"}),c.createElement("path",{className:"success-icon",vectorEffect:"non-scaling-stroke",d:"M17.4805 17.49L18.5605 18.41L20.7205 16.33",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),c.createElement("defs",null,c.createElement("clipPath",{id:"clip0_4797_15077"},c.createElement("rect",{width:22,height:18.65,fill:"white",transform:"translate(1 2.70001)"}))));function s(e){var r;return{region:{region_id:e!=null&&e.regionId?Number(e==null?void 0:e.regionId):null,region:e==null?void 0:e.region},city:e==null?void 0:e.city,company:e==null?void 0:e.company,country_code:e==null?void 0:e.country,firstname:e==null?void 0:e.firstName,lastname:e==null?void 0:e.lastName,middlename:e==null?void 0:e.middleName,postcode:e==null?void 0:e.postCode,street:e==null?void 0:e.street,telephone:e==null?void 0:e.telephone,custom_attributesV2:((r=e==null?void 0:e.customAttributes)==null?void 0:r.map(i=>({attribute_code:i.code,value:i.value})))||[]}}const M=({orderData:e,handleEmailAvailability:r,handleSignUpClick:i})=>{const[t,N]=f(e),[l,v]=f(),[C,h]=f(r?void 0:!0),a=t==null?void 0:t.email,E=i&&t!==void 0&&l===!1&&C===!0?()=>{const o=t.shippingAddress,n=t.billingAddress,A=[{code:"email",defaultValue:t.email},{code:"firstname",defaultValue:(n==null?void 0:n.firstName)??""},{code:"lastname",defaultValue:(n==null?void 0:n.lastName)??""}];let m=[];if(o){const g={...s(o),default_shipping:!0};m=[{...s(n),default_billing:!0},g]}else m=[{...s(n),default_billing:!0,default_shipping:!0}];i({inputsDefaultValueSet:A,addressesData:m})}:void 0;return p(()=>{const o=_.on("authenticated",n=>{v(n)},{eager:!0});return()=>{o==null||o.off()}},[]),p(()=>{const o=_.on("order/data",n=>{N(n)},{eager:!0});return()=>{o==null||o.off()}},[]),p(()=>{r&&l!==void 0&&(l||!a||r(a).then(o=>h(o)).catch(()=>h(!0)))},[l,r,a]),{order:t,onSignUpClickHandler:E}},R=e=>{var t;const{order:r,onSignUpClickHandler:i}=M(e);return r?u(j,{customerName:(t=r.billingAddress)==null?void 0:t.firstName,onSignUpClick:i,orderNumber:r.number}):u(b,{})},j=({customerName:e,orderNumber:r,onSignUpClick:i})=>{const t=w({title:u(L,{id:"Order.OrderHeader.title",fields:{name:e}}),defaultTitle:"Order.OrderHeader.defaultTitle",order:u(L,{id:"Order.OrderHeader.order",fields:{order:r}}),createAccountMessage:"Order.OrderHeader.CreateAccount.message",createAccountButton:"Order.OrderHeader.CreateAccount.button"});return k("div",{"data-testid":"order-header",className:"order-header order-header__card",children:[u(O,{source:V,size:"64",className:"order-header__icon"}),u(H,{className:"order-header__title",title:t.title,size:"large",divider:!1,children:e?t.title:t.defaultTitle}),u("p",{className:"order-header__order",children:t.order}),i&&k("div",{className:"order-header-create-account",children:[u("p",{className:"order-header-create-account__message",children:t.createAccountMessage}),u(d,{"data-testid":"create-account-button",className:"order-header-create-account__button",size:"medium",variant:"secondary",type:"submit",onClick:i,children:t.createAccountButton})]})]})};export{R as OrderHeader,R as default};
+import{jsx as l,jsxs as k}from"@dropins/tools/preact-jsx-runtime.js";import"@dropins/tools/lib.js";import{Icon as O,Header as d,Button as H}from"@dropins/tools/components.js";import{useState as f,useEffect as p}from"@dropins/tools/preact-hooks.js";import"../chunks/ShippingStatusCard.js";import*as c from"@dropins/tools/preact-compat.js";import"@dropins/tools/preact.js";import{events as _}from"@dropins/tools/event-bus.js";import{b}from"../chunks/OrderLoaders.js";import{useText as w,Text as L}from"@dropins/tools/i18n.js";const V=e=>c.createElement("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e},c.createElement("g",{clipPath:"url(#clip0_4797_15077)"},c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M10.15 20.85L1.5 17.53V6.63L10.15 10V20.85Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M1.5 6.63001L10.15 3.20001L18.8 6.63001L10.15 10L1.5 6.63001Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M6.17969 4.77002L14.8297 8.15002V11.47",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.createElement("path",{vectorEffect:"non-scaling-stroke",d:"M18.7896 12.64V6.63L10.1396 10V20.85L14.8296 19.05",stroke:"currentColor",strokeLinejoin:"round"}),c.createElement("path",{className:"success-icon",vectorEffect:"non-scaling-stroke",d:"M15.71 17.26C15.71 15.38 17.23 13.86 19.11 13.86C20.99 13.86 22.51 15.38 22.51 17.26C22.51 19.14 20.99 20.66 19.11 20.66C17.23 20.66 15.71 19.14 15.71 17.26Z",stroke:"currentColor"}),c.createElement("path",{className:"success-icon",vectorEffect:"non-scaling-stroke",d:"M17.4805 17.49L18.5605 18.41L20.7205 16.33",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),c.createElement("defs",null,c.createElement("clipPath",{id:"clip0_4797_15077"},c.createElement("rect",{width:22,height:18.65,fill:"white",transform:"translate(1 2.70001)"}))));function s(e){var r;return{region:{region_id:e!=null&&e.regionId?Number(e==null?void 0:e.regionId):null,region:e==null?void 0:e.region},city:e==null?void 0:e.city,company:e==null?void 0:e.company,country_code:e==null?void 0:e.country,firstname:e==null?void 0:e.firstName,lastname:e==null?void 0:e.lastName,middlename:e==null?void 0:e.middleName,postcode:e==null?void 0:e.postCode,street:e==null?void 0:e.street,telephone:e==null?void 0:e.telephone,custom_attributesV2:((r=e==null?void 0:e.customAttributes)==null?void 0:r.map(i=>({attribute_code:i.code,value:i.value})))||[]}}const M=({orderData:e,handleEmailAvailability:r,handleSignUpClick:i})=>{const[t,v]=f(e),[u,N]=f(),[C,h]=f(r?void 0:!0),a=t==null?void 0:t.email,E=i&&t!==void 0&&u===!1&&C===!0?()=>{const o=t.shippingAddress,n=t.billingAddress,A=[{code:"email",defaultValue:t.email},{code:"firstname",defaultValue:(n==null?void 0:n.firstName)??""},{code:"lastname",defaultValue:(n==null?void 0:n.lastName)??""}];let m=[];if(o){const g={...s(o),default_shipping:!0};m=[{...s(n),default_billing:!0},g]}else m=[{...s(n),default_billing:!0,default_shipping:!0}];i({inputsDefaultValueSet:A,addressesData:m})}:void 0;return p(()=>{const o=_.on("authenticated",n=>{N(n)},{eager:!0});return()=>{o==null||o.off()}},[]),p(()=>{const o=_.on("order/data",n=>{v(n)},{eager:!0});return()=>{o==null||o.off()}},[]),p(()=>{r&&u!==void 0&&(u||!a||r(a).then(o=>h(o)).catch(()=>h(!0)))},[u,r,a]),{order:t,onSignUpClickHandler:E}},R=e=>{var t;const{order:r,onSignUpClickHandler:i}=M(e);return l("div",{children:r?l(j,{customerName:(t=r.billingAddress)==null?void 0:t.firstName,onSignUpClick:i,orderNumber:r.number}):l(b,{})})},j=({customerName:e,orderNumber:r,onSignUpClick:i})=>{const t=w({title:l(L,{id:"Order.OrderHeader.title",fields:{name:e}}),defaultTitle:"Order.OrderHeader.defaultTitle",order:l(L,{id:"Order.OrderHeader.order",fields:{order:r}}),createAccountMessage:"Order.OrderHeader.CreateAccount.message",createAccountButton:"Order.OrderHeader.CreateAccount.button"});return k("div",{"data-testid":"order-header",className:"order-header order-header__card",children:[l(O,{source:V,size:"64",className:"order-header__icon"}),l(d,{className:"order-header__title",title:t.title,size:"large",divider:!1,children:e?t.title:t.defaultTitle}),l("p",{className:"order-header__order",children:t.order}),i&&k("div",{className:"order-header-create-account",children:[l("p",{className:"order-header-create-account__message",children:t.createAccountMessage}),l(H,{"data-testid":"create-account-button",className:"order-header-create-account__button",size:"medium",variant:"secondary",type:"submit",onClick:i,children:t.createAccountButton})]})]})};export{R as OrderHeader,R as default};
diff --git a/scripts/__dropins__/storefront-order/containers/OrderHeader/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderHeader/index.d.ts
index 829eff409c..8c5ca7e842 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderHeader/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderHeader/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderHeader';
export { OrderHeader as default } from './OrderHeader';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderProductList/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderProductList/index.d.ts
index 2731d80415..22f25c5c4d 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderProductList/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderProductList/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderProductList';
export { OrderProductList as default } from './OrderProductList';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderReturns/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderReturns/index.d.ts
index f7aebae2c8..3b6c51b94e 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderReturns/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderReturns/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderReturns';
export { OrderReturns as default } from './OrderReturns';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderSearch/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderSearch/index.d.ts
index aee00663ff..c18df2f836 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderSearch/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderSearch/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderSearch';
export { OrderSearch as default } from './OrderSearch';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/OrderStatus/index.d.ts b/scripts/__dropins__/storefront-order/containers/OrderStatus/index.d.ts
index 03c6d4ea05..f76c917996 100644
--- a/scripts/__dropins__/storefront-order/containers/OrderStatus/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/OrderStatus/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './OrderStatus';
export { OrderStatus as default } from './OrderStatus';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/ReturnsList/index.d.ts b/scripts/__dropins__/storefront-order/containers/ReturnsList/index.d.ts
index bd7d43fff2..32df58d4c6 100644
--- a/scripts/__dropins__/storefront-order/containers/ReturnsList/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/ReturnsList/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from '.';
export { ReturnsList as default } from './ReturnsList';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/ShippingStatus/index.d.ts b/scripts/__dropins__/storefront-order/containers/ShippingStatus/index.d.ts
index e516692942..ee96a8b4a2 100644
--- a/scripts/__dropins__/storefront-order/containers/ShippingStatus/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/ShippingStatus/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './ShippingStatus';
export { ShippingStatus as default } from './ShippingStatus';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/containers/index.d.ts b/scripts/__dropins__/storefront-order/containers/index.d.ts
index 33f75b0a3d..1b49edee73 100644
--- a/scripts/__dropins__/storefront-order/containers/index.d.ts
+++ b/scripts/__dropins__/storefront-order/containers/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './CreateReturn';
export * from './CustomerDetails';
export * from './OrderCancelForm';
diff --git a/scripts/__dropins__/storefront-order/data/models/acdl.d.ts b/scripts/__dropins__/storefront-order/data/models/acdl.d.ts
index ac95ccd8ce..67fa0bc476 100644
--- a/scripts/__dropins__/storefront-order/data/models/acdl.d.ts
+++ b/scripts/__dropins__/storefront-order/data/models/acdl.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
/**
* This module contains the schema type definitions to build the ShoppingCart
* and Order contexts, which are required to trigger the "place-order" event.
diff --git a/scripts/__dropins__/storefront-order/data/models/customer.d.ts b/scripts/__dropins__/storefront-order/data/models/customer.d.ts
index 5e1f1813dc..9f87d38aa7 100644
--- a/scripts/__dropins__/storefront-order/data/models/customer.d.ts
+++ b/scripts/__dropins__/storefront-order/data/models/customer.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface CustomerDataModelShort {
firstname: string;
lastname: string;
diff --git a/scripts/__dropins__/storefront-order/data/models/index.d.ts b/scripts/__dropins__/storefront-order/data/models/index.d.ts
index 33d6b55695..b33eddcea8 100644
--- a/scripts/__dropins__/storefront-order/data/models/index.d.ts
+++ b/scripts/__dropins__/storefront-order/data/models/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './acdl';
export * from './attributes-form';
export * from './customer';
diff --git a/scripts/__dropins__/storefront-order/data/models/request-return.d.ts b/scripts/__dropins__/storefront-order/data/models/request-return.d.ts
index b1b956b633..59da58d2bc 100644
--- a/scripts/__dropins__/storefront-order/data/models/request-return.d.ts
+++ b/scripts/__dropins__/storefront-order/data/models/request-return.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface RequestReturnModel {
uid: string;
number: string;
diff --git a/scripts/__dropins__/storefront-order/data/models/store-config.d.ts b/scripts/__dropins__/storefront-order/data/models/store-config.d.ts
index 1770b4f2ec..9365f2ea14 100644
--- a/scripts/__dropins__/storefront-order/data/models/store-config.d.ts
+++ b/scripts/__dropins__/storefront-order/data/models/store-config.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface StoreConfigModel {
baseMediaUrl: string;
orderCancellationEnabled: boolean;
diff --git a/scripts/__dropins__/storefront-order/data/transforms/index.d.ts b/scripts/__dropins__/storefront-order/data/transforms/index.d.ts
index a10f2a7e82..26ffd7872c 100644
--- a/scripts/__dropins__/storefront-order/data/transforms/index.d.ts
+++ b/scripts/__dropins__/storefront-order/data/transforms/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './transform-acdl';
export * from './transform-attributes-form';
export * from './transform-customer';
diff --git a/scripts/__dropins__/storefront-order/hooks/index.d.ts b/scripts/__dropins__/storefront-order/hooks/index.d.ts
index a67ffe6df1..c51fe0060c 100644
--- a/scripts/__dropins__/storefront-order/hooks/index.d.ts
+++ b/scripts/__dropins__/storefront-order/hooks/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './containers/useCreateReturn';
export * from './containers/useCustomerDetails';
export * from './containers/useOrderCostSummary';
diff --git a/scripts/__dropins__/storefront-order/hooks/useIsMobile.d.ts b/scripts/__dropins__/storefront-order/hooks/useIsMobile.d.ts
index ca0c2d8088..d929f2e819 100644
--- a/scripts/__dropins__/storefront-order/hooks/useIsMobile.d.ts
+++ b/scripts/__dropins__/storefront-order/hooks/useIsMobile.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const useIsMobile: () => boolean;
//# sourceMappingURL=useIsMobile.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/capitalizeFirst.d.ts b/scripts/__dropins__/storefront-order/lib/capitalizeFirst.d.ts
index 18269aab6f..3e8358eb92 100644
--- a/scripts/__dropins__/storefront-order/lib/capitalizeFirst.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/capitalizeFirst.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const capitalizeFirst: (str: string) => string;
//# sourceMappingURL=capitalizeFirst.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/checkIsFunction.d.ts b/scripts/__dropins__/storefront-order/lib/checkIsFunction.d.ts
index 49cefb714e..5c317df0c9 100644
--- a/scripts/__dropins__/storefront-order/lib/checkIsFunction.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/checkIsFunction.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const checkIsFunction: (value: any) => value is Function;
//# sourceMappingURL=checkIsFunction.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/convertCase.d.ts b/scripts/__dropins__/storefront-order/lib/convertCase.d.ts
index 44782068b7..716098d1fa 100644
--- a/scripts/__dropins__/storefront-order/lib/convertCase.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/convertCase.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const convertToCamelCase: (key: string) => string;
export declare const convertToSnakeCase: (key: string) => string;
export declare const convertKeysCase: (data: any, type: 'snakeCase' | 'camelCase', dictionary?: Record) => any;
diff --git a/scripts/__dropins__/storefront-order/lib/fetch-error.d.ts b/scripts/__dropins__/storefront-order/lib/fetch-error.d.ts
index 0a9e09a300..e5a896fea2 100644
--- a/scripts/__dropins__/storefront-order/lib/fetch-error.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/fetch-error.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
/** Actions */
export declare const handleFetchError: (errors: Array<{
message: string;
diff --git a/scripts/__dropins__/storefront-order/lib/formatDateToLocale.d.ts b/scripts/__dropins__/storefront-order/lib/formatDateToLocale.d.ts
index c32256ba3c..98243c58b4 100644
--- a/scripts/__dropins__/storefront-order/lib/formatDateToLocale.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/formatDateToLocale.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
/**
* Formats a date string according to a specified locale and options.
* Returns "Invalid Date" if the input date string is invalid.
diff --git a/scripts/__dropins__/storefront-order/lib/getFormValues.d.ts b/scripts/__dropins__/storefront-order/lib/getFormValues.d.ts
index 748a077634..2b79098355 100644
--- a/scripts/__dropins__/storefront-order/lib/getFormValues.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/getFormValues.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const getFormValues: (form: HTMLFormElement) => any;
//# sourceMappingURL=getFormValues.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/getQueryParam.d.ts b/scripts/__dropins__/storefront-order/lib/getQueryParam.d.ts
index 8089cdd4f0..4fd3236201 100644
--- a/scripts/__dropins__/storefront-order/lib/getQueryParam.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/getQueryParam.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const getQueryParam: (param: string) => string;
//# sourceMappingURL=getQueryParam.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/network-error.d.ts b/scripts/__dropins__/storefront-order/lib/network-error.d.ts
index 772ab565ae..1b04b8c0e3 100644
--- a/scripts/__dropins__/storefront-order/lib/network-error.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/network-error.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
/**
* A function which can be attached to fetchGraphQL to handle thrown errors in
* a generic way.
diff --git a/scripts/__dropins__/storefront-order/lib/redirectTo.d.ts b/scripts/__dropins__/storefront-order/lib/redirectTo.d.ts
index 16b9507c5e..0f7a63fc87 100644
--- a/scripts/__dropins__/storefront-order/lib/redirectTo.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/redirectTo.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export type QueryParams = Record;
export declare const redirectTo: (getUrl?: ((params?: any) => string) | undefined, queryParams?: QueryParams, functionParams?: any) => void;
//# sourceMappingURL=redirectTo.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/removeQueryParams.d.ts b/scripts/__dropins__/storefront-order/lib/removeQueryParams.d.ts
index 5f56141e93..20062fc2f8 100644
--- a/scripts/__dropins__/storefront-order/lib/removeQueryParams.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/removeQueryParams.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare const removeQueryParams: (params: string[]) => void;
//# sourceMappingURL=removeQueryParams.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/lib/returnOrdersHelper.d.ts b/scripts/__dropins__/storefront-order/lib/returnOrdersHelper.d.ts
index db99e66969..0419d64d6a 100644
--- a/scripts/__dropins__/storefront-order/lib/returnOrdersHelper.d.ts
+++ b/scripts/__dropins__/storefront-order/lib/returnOrdersHelper.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
declare const returnStatus: {
readonly PENDING: "pending";
readonly AUTHORIZED: "authorized";
diff --git a/scripts/__dropins__/storefront-order/render/index.d.ts b/scripts/__dropins__/storefront-order/render/index.d.ts
index b758d268a3..407ec63b4a 100644
--- a/scripts/__dropins__/storefront-order/render/index.d.ts
+++ b/scripts/__dropins__/storefront-order/render/index.d.ts
@@ -1,2 +1,17 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './render';
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file
diff --git a/scripts/__dropins__/storefront-order/types/api/getAttributesForm.types.d.ts b/scripts/__dropins__/storefront-order/types/api/getAttributesForm.types.d.ts
index 5d973409a6..68486a1b7f 100644
--- a/scripts/__dropins__/storefront-order/types/api/getAttributesForm.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/api/getAttributesForm.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface ResponseAttributesFormItemsProps {
code: string;
sort_order: string;
diff --git a/scripts/__dropins__/storefront-order/types/api/getAttributesList.types.d.ts b/scripts/__dropins__/storefront-order/types/api/getAttributesList.types.d.ts
index b9285c104e..2b9bef72a7 100644
--- a/scripts/__dropins__/storefront-order/types/api/getAttributesList.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/api/getAttributesList.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export type AttributesListItems = {
code: string;
sort_order: string;
diff --git a/scripts/__dropins__/storefront-order/types/api/getCustomer.types.d.ts b/scripts/__dropins__/storefront-order/types/api/getCustomer.types.d.ts
index 88baa26ea3..99fa7ab6e3 100644
--- a/scripts/__dropins__/storefront-order/types/api/getCustomer.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/api/getCustomer.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface getCustomerShortResponse {
data: {
customer: {
diff --git a/scripts/__dropins__/storefront-order/types/api/getOrderDetails.types.d.ts b/scripts/__dropins__/storefront-order/types/api/getOrderDetails.types.d.ts
index e53a8b3893..a4d5c227a8 100644
--- a/scripts/__dropins__/storefront-order/types/api/getOrderDetails.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/api/getOrderDetails.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export type QueryType = 'orderData';
export interface UserAddressesProps {
city?: string;
diff --git a/scripts/__dropins__/storefront-order/types/api/reorderItems.types.d.ts b/scripts/__dropins__/storefront-order/types/api/reorderItems.types.d.ts
index 0e6aea61fd..5163ec5b45 100644
--- a/scripts/__dropins__/storefront-order/types/api/reorderItems.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/api/reorderItems.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface UserInputErrorProps {
code: string;
message: string;
diff --git a/scripts/__dropins__/storefront-order/types/api/requestReturn.types.d.ts b/scripts/__dropins__/storefront-order/types/api/requestReturn.types.d.ts
index b9227060f0..fb284515ce 100644
--- a/scripts/__dropins__/storefront-order/types/api/requestReturn.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/api/requestReturn.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface RequestReturnProps {
orderUid?: string;
contactEmail: string;
diff --git a/scripts/__dropins__/storefront-order/types/emptyList.types.d.ts b/scripts/__dropins__/storefront-order/types/emptyList.types.d.ts
index 7438083876..e077ed1934 100644
--- a/scripts/__dropins__/storefront-order/types/emptyList.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/emptyList.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface EmptyListProps {
isEmpty: boolean;
typeList: 'orders';
diff --git a/scripts/__dropins__/storefront-order/types/form.types.d.ts b/scripts/__dropins__/storefront-order/types/form.types.d.ts
index 273ea23b2f..225dd202bc 100644
--- a/scripts/__dropins__/storefront-order/types/form.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/form.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export declare enum FieldEnumList {
BOOLEAN = "BOOLEAN",
DATE = "DATE",
diff --git a/scripts/__dropins__/storefront-order/types/index.d.ts b/scripts/__dropins__/storefront-order/types/index.d.ts
index b1b829585e..89d78a6780 100644
--- a/scripts/__dropins__/storefront-order/types/index.d.ts
+++ b/scripts/__dropins__/storefront-order/types/index.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export * from './api/getAttributesForm.types';
export * from './api/getAttributesList.types';
export * from './api/getCustomer.types';
diff --git a/scripts/__dropins__/storefront-order/types/orderEmailActionHandler.types.d.ts b/scripts/__dropins__/storefront-order/types/orderEmailActionHandler.types.d.ts
index 3210948ee1..a0c91a925c 100644
--- a/scripts/__dropins__/storefront-order/types/orderEmailActionHandler.types.d.ts
+++ b/scripts/__dropins__/storefront-order/types/orderEmailActionHandler.types.d.ts
@@ -1,3 +1,18 @@
+/********************************************************************
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2024 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
+ *******************************************************************/
export interface OrderEmailActionHandlerProps {
routeRedirect: (orderToken: string, orderNumber: string, orderData: any) => string;
}