@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
@@ -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 ResetPasswordModel {
2
18
  message: string | '';
3
19
  success: boolean;
@@ -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 RevokeCustomerTokenModel {
2
18
  message: string | '';
3
19
  success: boolean;
@@ -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 StoreConfigModel {
2
18
  autocompleteOnStorefront: boolean;
3
19
  minLength: number;
@@ -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 './transform-auth';
2
18
  export * from './transform-store-config';
3
19
  export * from './transform-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 declare const loginContext: (ctx: any) => {
2
18
  personalEmail: {
3
19
  address: any;
@@ -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 useGetStoreConfigs: () => {
2
18
  passwordConfigs: {
3
19
  minLength: number;
@@ -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
  interface useEmailConfirmationProps {
2
18
  enableEmailConfirmation: boolean;
3
19
  }
package/lib/acdl.d.ts CHANGED
@@ -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 enum EventsList {
2
18
  CREATE_ACCOUNT_EVENT = "create-account",
3
19
  SIGN_IN = "sign-in",
@@ -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 checkIsFunction: (value: any) => value is Function;
2
18
  //# sourceMappingURL=checkIsFunction.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 clearUrlAndReplace: () => void;
2
18
  //# sourceMappingURL=clearUrlAndReplace.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 declare const convertToCamelCase: (key: string) => string;
2
18
  export declare const convertToSnakeCase: (key: string) => string;
3
19
  export declare const convertKeysCase: (data: any, type: 'snakeCase' | 'camelCase', dictionary?: Record<string, string>) => any;
@@ -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 convertToInputDateFormat: (dateTimeString: string) => string;
2
18
  //# sourceMappingURL=convertToInputDateFormat.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 declare const deleteCookie: (cookieName: string) => void;
2
18
  export declare const getCookiesLifetime: () => Promise<string>;
3
19
  //# sourceMappingURL=cookieUtils.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
  /** Actions */
2
18
  export declare const handleFetchError: (errors: Array<{
3
19
  message: string;
@@ -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 focusOnEmptyPasswordField: (event: Event, signUpPasswordValue: string, confirmPassword: string) => void;
2
18
  //# sourceMappingURL=focusOnEmptyPasswordField.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 generateRandomDigits: () => string;
2
18
  //# sourceMappingURL=generateRandomDigits.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 getFormValues: (form: any) => any;
2
18
  //# sourceMappingURL=getFormValues.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 getUrlParam: (url: string, param: string) => string;
2
18
  //# sourceMappingURL=getUrlParam.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
  declare const _default: (fieldsConfig: Array<{
2
18
  customUpperCode?: string;
3
19
  required?: boolean;
@@ -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 mergeFormObjects: (input: Record<string, any>, apiVersion2: boolean) => any;
2
18
  //# sourceMappingURL=mergeFormObjects.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
  /**
2
18
  * A function which can be attached to fetchGraphQL to handle thrown errors in
3
19
  * a generic way.
@@ -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 setReCaptchaToken: () => Promise<void>;
2
18
  //# sourceMappingURL=setReCaptchaToken.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 simplifyTransformAttributesForm: (defaultSignUpFields: any) => import('../data/models').AttributesFormModel[];
2
18
  //# sourceMappingURL=simplifyTransformAttributesForm.d.ts.map
@@ -0,0 +1,2 @@
1
+ export declare const transformDobForm: (form: Record<string, any>) => Record<string, any>;
2
+ //# sourceMappingURL=transformDobForm.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
  type TranslationList = Record<string, string>;
2
18
  type ErrorsList = Record<string, string>;
3
19
  export type ValidationFieldsConfig = {
@@ -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 validationUniqueSymbolsPassword: (password: string, uniqueSymbolsCount: number) => boolean;
2
18
  //# sourceMappingURL=validationUniqueSymbolsPassword.d.ts.map
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name": "@dropins/storefront-auth", "version": "1.0.0", "@dropins/elsie": "~0.37.0", "license": "SEE LICENSE IN LICENSE.md"}
1
+ {"name": "@dropins/storefront-auth", "version": "1.0.1-beta1", "@dropins/elsie": "~0.37.0", "license": "SEE LICENSE IN LICENSE.md"}
package/render/index.d.ts CHANGED
@@ -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 * from './render';
2
18
  //# 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 interface confirmEmailResponse {
2
18
  data: {
3
19
  confirmEmail: {
@@ -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
  type customAttributesProps = {
2
18
  custom_attributes: Record<string, string>[];
3
19
  };
@@ -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 CreateCustomerAddressResponse {
2
18
  data: {
3
19
  createCustomerAddress: {
@@ -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 ResponseAttributesFormItemsProps {
2
18
  code: string;
3
19
  sort_order: 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 interface getCustomerDataResponse {
2
18
  data: {
3
19
  customer: {