@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 getCustomerTokenResponse {
2
18
  data: {
3
19
  generateCustomerToken: {
@@ -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 PasswordResetEmailResponse {
2
18
  data?: {
3
19
  requestPasswordResetEmail: 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 resendConfirmationEmailResponse {
2
18
  data: {
3
19
  resendConfirmationEmail: 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 ResetPasswordResponse {
2
18
  data?: {
3
19
  resetPassword: 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 RevokeCustomerTokenResponse {
2
18
  data?: {
3
19
  revokeCustomerToken: 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 storeConfigProps {
2
18
  autocomplete_on_storefront: boolean;
3
19
  minimum_password_length: number;
package/types/index.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
  export * from './form.types';
2
18
  export * from './api/storeConfig.types';
3
19
  export * from './api/createCustomer.types';