@dropins/storefront-auth 1.0.0 → 1.0.1-beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/api/confirmEmail/graphql/confirmEmail.graphql.d.ts +16 -0
  2. package/api/confirmEmail/index.d.ts +16 -0
  3. package/api/createCustomer/graphql/createCustomer.graphql.d.ts +16 -0
  4. package/api/createCustomer/graphql/createCustomerV2.graphql.d.ts +16 -0
  5. package/api/createCustomer/index.d.ts +16 -0
  6. package/api/createCustomerAddress/graphql/createCustomerAddress.graphql.d.ts +16 -0
  7. package/api/createCustomerAddress/index.d.ts +16 -0
  8. package/api/fetch-graphql/fetch-graphql.d.ts +16 -0
  9. package/api/fetch-graphql/index.d.ts +16 -0
  10. package/api/fragments.d.ts +16 -0
  11. package/api/getAttributesForm/graphql/getAttributesForm.graphql.d.ts +16 -0
  12. package/api/getAttributesForm/index.d.ts +16 -0
  13. package/api/getCustomerData/graphql/getCustomerData.graphql.d.ts +16 -0
  14. package/api/getCustomerData/index.d.ts +16 -0
  15. package/api/getCustomerToken/graphql/getCustomerToken.graphql.d.ts +16 -0
  16. package/api/getCustomerToken/index.d.ts +16 -0
  17. package/api/getStoreConfig/graphql/getStoreConfig.graphql.d.ts +16 -0
  18. package/api/getStoreConfig/index.d.ts +16 -0
  19. package/api/graphql/CustomerFragment.graphql.d.ts +16 -0
  20. package/api/index.d.ts +16 -0
  21. package/api/initialize/index.d.ts +16 -0
  22. package/api/requestPasswordResetEmail/graphql/requestPasswordResetEmail.graphql.d.ts +16 -0
  23. package/api/requestPasswordResetEmail/index.d.ts +16 -0
  24. package/api/resendConfirmationEmail/graphql/resendConfirmationEmail.graphql.d.ts +16 -0
  25. package/api/resendConfirmationEmail/index.d.ts +16 -0
  26. package/api/resetPassword/graphql/resetPassword.graphql.d.ts +16 -0
  27. package/api/resetPassword/index.d.ts +16 -0
  28. package/api/revokeCustomerToken/graphql/revokeCustomerToken.graphql.d.ts +16 -0
  29. package/api/revokeCustomerToken/index.d.ts +16 -0
  30. package/chunks/SignUpForm.js +1 -1
  31. package/chunks/createCustomerAddress.js +3 -3
  32. package/components/Button/index.d.ts +16 -0
  33. package/components/EmailConfirmationForm/index.d.ts +16 -0
  34. package/components/Form/FormInputs/index.d.ts +16 -0
  35. package/components/Form/index.d.ts +16 -0
  36. package/components/ResetPasswordForm/index.d.ts +16 -0
  37. package/components/SignInForm/index.d.ts +16 -0
  38. package/components/SignUpForm/index.d.ts +16 -0
  39. package/components/SkeletonLoader/Skeletons/ResetPasswordSkeleton.d.ts +16 -0
  40. package/components/SkeletonLoader/Skeletons/SignInSkeleton.d.ts +16 -0
  41. package/components/SkeletonLoader/Skeletons/SignUpSkeleton.d.ts +16 -0
  42. package/components/SkeletonLoader/Skeletons/index.d.ts +16 -0
  43. package/components/SkeletonLoader/index.d.ts +16 -0
  44. package/components/SuccessNotificationForm/index.d.ts +16 -0
  45. package/components/UpdatePasswordForm/index.d.ts +16 -0
  46. package/components/index.d.ts +16 -0
  47. package/configs/cookieConfigs.d.ts +16 -0
  48. package/configs/defaultCreateUserConfigs.d.ts +16 -0
  49. package/configs/excludedFocusClasses.d.ts +16 -0
  50. package/configs/patternConfigs.d.ts +16 -0
  51. package/containers/AuthCombine/index.d.ts +16 -0
  52. package/containers/ResetPassword/index.d.ts +16 -0
  53. package/containers/SignIn/index.d.ts +16 -0
  54. package/containers/SignUp/index.d.ts +16 -0
  55. package/containers/SuccessNotification/index.d.ts +16 -0
  56. package/containers/UpdatePassword/index.d.ts +16 -0
  57. package/containers/index.d.ts +16 -0
  58. package/data/models/attributes-form.d.ts +16 -0
  59. package/data/models/customer-data.d.ts +16 -0
  60. package/data/models/index.d.ts +16 -0
  61. package/data/models/password-reset-email.d.ts +16 -0
  62. package/data/models/reset-password.d.ts +16 -0
  63. package/data/models/revoke-customer-token.d.ts +16 -0
  64. package/data/models/store-config.d.ts +16 -0
  65. package/data/transforms/index.d.ts +16 -0
  66. package/data/transforms/transform-auth.d.ts +16 -0
  67. package/hooks/api/useGetStoreConfigs.d.ts +16 -0
  68. package/hooks/useEmailConfirmation.d.ts +16 -0
  69. package/lib/acdl.d.ts +16 -0
  70. package/lib/checkIsFunction.d.ts +16 -0
  71. package/lib/clearUrlAndReplace.d.ts +16 -0
  72. package/lib/convertCase.d.ts +16 -0
  73. package/lib/convertToInputDateFormat.d.ts +16 -0
  74. package/lib/cookieUtils.d.ts +16 -0
  75. package/lib/fetch-error.d.ts +16 -0
  76. package/lib/focusOnEmptyPasswordField.d.ts +16 -0
  77. package/lib/generateRandomDigits.d.ts +16 -0
  78. package/lib/getFormValues.d.ts +16 -0
  79. package/lib/getUrlParam.d.ts +16 -0
  80. package/lib/initializeFormDataAndErrors.d.ts +16 -0
  81. package/lib/mergeFormObjects.d.ts +16 -0
  82. package/lib/network-error.d.ts +16 -0
  83. package/lib/setReCaptchaToken.d.ts +16 -0
  84. package/lib/simplifyTransformAttributesForm.d.ts +16 -0
  85. package/lib/transformDobForm.d.ts +2 -0
  86. package/lib/validationFields.d.ts +16 -0
  87. package/lib/validationUniqueSymbolsPassword.d.ts +16 -0
  88. package/package.json +1 -1
  89. package/render/index.d.ts +16 -0
  90. package/types/api/confirmEmail.types.d.ts +16 -0
  91. package/types/api/createCustomer.types.d.ts +16 -0
  92. package/types/api/createCustomerAddress.types.d.ts +16 -0
  93. package/types/api/getAttributesForm.types.d.ts +16 -0
  94. package/types/api/getCustomerData.types.d.ts +16 -0
  95. package/types/api/getCustomerToken.types.d.ts +16 -0
  96. package/types/api/passwordResetEmail.types.d.ts +16 -0
  97. package/types/api/resendConfirmationEmail.types.d.ts +16 -0
  98. package/types/api/resetPassword.types.d.ts +16 -0
  99. package/types/api/revokeCustomerToken.types.d.ts +16 -0
  100. package/types/api/storeConfig.types.d.ts +16 -0
  101. package/types/index.d.ts +16 -0
@@ -18,7 +18,7 @@ import{CUSTOMER_INFORMATION_FRAGMENT as N}from"../fragments.js";import{f as m,h
18
18
  }
19
19
  }
20
20
  ${N}
21
- `,G=(r,e)=>{var i,a,c,n,C,l,f,E,T,_,R,A,h,S,b,M,O,d,s,p;let o;if(e){const{data:t}=r;o={firstName:((a=(i=t==null?void 0:t.createCustomerV2)==null?void 0:i.customer)==null?void 0:a.firstname)??"",lastName:((n=(c=t==null?void 0:t.createCustomerV2)==null?void 0:c.customer)==null?void 0:n.lastname)??"",email:((l=(C=t==null?void 0:t.createCustomerV2)==null?void 0:C.customer)==null?void 0:l.email)??"",isSubscribed:((E=(f=t==null?void 0:t.createCustomerV2)==null?void 0:f.customer)==null?void 0:E.is_subscribed)??!1,customAttributes:((T=t==null?void 0:t.createCustomerV2)==null?void 0:T.custom_attributes)??[],errors:(r==null?void 0:r.errors)??[]}}else{const{data:t}=r;o={firstName:((R=(_=t==null?void 0:t.createCustomer)==null?void 0:_.customer)==null?void 0:R.firstname)??"",lastName:((h=(A=t==null?void 0:t.createCustomer)==null?void 0:A.customer)==null?void 0:h.lastname)??"",email:((b=(S=t==null?void 0:t.createCustomer)==null?void 0:S.customer)==null?void 0:b.email)??"",isSubscribed:((O=(M=t==null?void 0:t.createCustomer)==null?void 0:M.customer)==null?void 0:O.is_subscribed)??!1,errors:(r==null?void 0:r.errors)??[]}}return U(o,(p=(s=(d=g.getConfig().models)==null?void 0:d.CustomerModel)==null?void 0:s.transformer)==null?void 0:p.call(s,r))},H=async(r,e)=>{await I();const o=await m(e?y:v,{method:"POST",variables:{input:{...r}}}).catch(u);return G(o,e)},V=`
21
+ `,G=(r,e)=>{var i,a,c,n,C,l,_,f,E,T,R,A,b,h,d,S,M,O,s,p;let o;if(e){const{data:t}=r;o={firstName:((a=(i=t==null?void 0:t.createCustomerV2)==null?void 0:i.customer)==null?void 0:a.firstname)??"",lastName:((n=(c=t==null?void 0:t.createCustomerV2)==null?void 0:c.customer)==null?void 0:n.lastname)??"",email:((l=(C=t==null?void 0:t.createCustomerV2)==null?void 0:C.customer)==null?void 0:l.email)??"",isSubscribed:((f=(_=t==null?void 0:t.createCustomerV2)==null?void 0:_.customer)==null?void 0:f.is_subscribed)??!1,customAttributes:((E=t==null?void 0:t.createCustomerV2)==null?void 0:E.custom_attributes)??[],errors:(r==null?void 0:r.errors)??[]}}else{const{data:t}=r;o={firstName:((R=(T=t==null?void 0:t.createCustomer)==null?void 0:T.customer)==null?void 0:R.firstname)??"",lastName:((b=(A=t==null?void 0:t.createCustomer)==null?void 0:A.customer)==null?void 0:b.lastname)??"",email:((d=(h=t==null?void 0:t.createCustomer)==null?void 0:h.customer)==null?void 0:d.email)??"",isSubscribed:((M=(S=t==null?void 0:t.createCustomer)==null?void 0:S.customer)==null?void 0:M.is_subscribed)??!1,errors:(r==null?void 0:r.errors)??[]}}return U(o,(p=(s=(O=g.getConfig().models)==null?void 0:O.CustomerModel)==null?void 0:s.transformer)==null?void 0:p.call(s,r))},V=r=>{if(!r.dob)return r;const{dob:e,...o}=r;return{...o,date_of_birth:e}},J=async(r,e)=>{await I();const o=await m(e?y:v,{method:"POST",variables:{input:{...V(r)}}}).catch(u);return G(o,e)},w=`
22
22
  query GET_ATTRIBUTES_FORM($formCode: String!) {
23
23
  attributesForm(formCode: $formCode) {
24
24
  items {
@@ -50,10 +50,10 @@ import{CUSTOMER_INFORMATION_FRAGMENT as N}from"../fragments.js";import{f as m,h
50
50
  }
51
51
  }
52
52
  }
53
- `,J=async r=>await m(V,{method:"GET",cache:"force-cache",variables:{formCode:r}}).then(e=>{var o;return(o=e.errors)!=null&&o.length?F(e.errors):$(e)}).catch(u),w=`
53
+ `,K=async r=>await m(w,{method:"GET",cache:"force-cache",variables:{formCode:r}}).then(e=>{var o;return(o=e.errors)!=null&&o.length?F(e.errors):$(e)}).catch(u),D=`
54
54
  mutation CREATE_CUSTOMER_ADDRESS($input: CustomerAddressInput!) {
55
55
  createCustomerAddress(input: $input) {
56
56
  firstname
57
57
  }
58
58
  }
59
- `,K=async r=>await m(w,{method:"POST",variables:{input:r}}).then(e=>{var o;return(o=e.errors)!=null&&o.length?F(e.errors):e.data.createCustomerAddress.firstname||""}).catch(u);export{K as a,H as c,J as g};
59
+ `,L=async r=>await m(D,{method:"POST",variables:{input:r}}).then(e=>{var o;return(o=e.errors)!=null&&o.length?F(e.errors):e.data.createCustomerAddress.firstname||""}).catch(u);export{L as a,J as c,K as g};
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './Button';
2
18
  export { Button as default } from './Button';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './EmailConfirmationForm';
2
18
  export { EmailConfirmationForm as default } from './EmailConfirmationForm';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './FormInputs';
2
18
  export { FormInputs as default } from './FormInputs';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './Form';
2
18
  export { Form as default } from './Form';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './ResetPasswordForm';
2
18
  export { ResetPasswordForm as default } from './ResetPasswordForm';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SignInForm';
2
18
  export { SignInForm as default } from './SignInForm';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SignUpForm';
2
18
  export { SignUpForm as default } from './SignUpForm';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export declare const ResetPasswordSkeleton: () => import("preact").JSX.Element;
2
18
  //# sourceMappingURL=ResetPasswordSkeleton.d.ts.map
@@ -1,2 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export declare const SignInSkeleton: () => import("preact").JSX.Element;
2
18
  //# sourceMappingURL=SignInSkeleton.d.ts.map
@@ -1,2 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export declare const SignUpSkeleton: () => import("preact").JSX.Element;
2
18
  //# sourceMappingURL=SignUpSkeleton.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export { SignUpSkeleton } from './SignUpSkeleton';
2
18
  export { SignInSkeleton } from './SignInSkeleton';
3
19
  export { ResetPasswordSkeleton } from './ResetPasswordSkeleton';
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SkeletonLoader';
2
18
  export { SkeletonLoader as default } from './SkeletonLoader';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SuccessNotificationForm';
2
18
  export { SuccessNotificationForm as default } from './SuccessNotificationForm';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './UpdatePasswordForm';
2
18
  export { UpdatePasswordForm as default } from './UpdatePasswordForm';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './EmailConfirmationForm';
2
18
  export * from './UpdatePasswordForm';
3
19
  export * from './SuccessNotificationForm';
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  declare const COOKIE_NAMES: {
2
18
  auth_dropin_user_token: string;
3
19
  auth_dropin_firstname: string;
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export declare const DEFAULT__SIGN_IN_EMAIL_FIELD: {
2
18
  customUpperCode: string;
3
19
  code: string;
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  /**
2
18
  * This file defines an array of class names that should be excluded
3
19
  * from specific init Recaptcha logic.
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  declare const EMAIL_PATTERN: RegExp;
2
18
  export { EMAIL_PATTERN };
3
19
  //# sourceMappingURL=patternConfigs.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './AuthCombine';
2
18
  export { AuthCombine as default } from './AuthCombine';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './ResetPassword';
2
18
  export { ResetPassword as default } from './ResetPassword';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SignIn';
2
18
  export { SignIn as default } from './SignIn';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SignUp';
2
18
  export { SignUp as default } from './SignUp';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './SuccessNotification';
2
18
  export { SuccessNotification as default } from './SuccessNotification';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './UpdatePassword';
2
18
  export { UpdatePassword as default } from './UpdatePassword';
3
19
  //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './UpdatePassword';
2
18
  export * from './SuccessNotification';
3
19
  export * from './SignUp';
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export declare enum FieldEnumList {
2
18
  BOOLEAN = "BOOLEAN",
3
19
  DATE = "DATE",
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export interface CustomerModel {
2
18
  firstName: string;
3
19
  lastName: string;
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export * from './store-config';
2
18
  export * from './reset-password';
3
19
  export * from './password-reset-email';
@@ -1,3 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
1
17
  export interface PasswordResetEmailModel {
2
18
  message: string | '';
3
19
  success: boolean;