@baseplate-dev/plugin-auth 4.0.1 → 4.0.2
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.
- package/CHANGELOG.md +621 -0
- package/dist/auth0/core/schema/plugin-definition.js +1 -1
- package/dist/auth0/core/schema/plugin-definition.js.map +1 -1
- package/dist/auth0/generators/fastify/auth0-module/templates/module/schema/user-session.queries.ts +1 -1
- package/dist/auth0/generators/react/auth0-hooks/auth0-hooks.generator.js +1 -1
- package/dist/auth0/generators/react/auth0-hooks/auth0-hooks.generator.js.map +1 -1
- package/dist/local-auth/constants/model-names.d.ts +4 -0
- package/dist/local-auth/constants/model-names.d.ts.map +1 -1
- package/dist/local-auth/constants/model-names.js +4 -0
- package/dist/local-auth/constants/model-names.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.d.ts +49 -0
- package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.js +17 -6
- package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/index.d.ts +209 -0
- package/dist/local-auth/core/generators/auth-email-password/generated/index.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.d.ts +5 -0
- package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.js +5 -0
- package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts +47 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js +48 -2
- package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts +18 -0
- package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js +12 -0
- package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts +253 -0
- package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.js +102 -4
- package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.d.ts +15 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.js +15 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.ts +18 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.d.ts +2 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.js +24 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.ts +35 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.d.ts +2 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.js +38 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.ts +54 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.d.ts +40 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.js +106 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.ts +146 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.d.ts +24 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.js +88 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.ts +141 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.d.ts +35 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.js +157 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.ts +233 -0
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.js +48 -14
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.js.map +1 -1
- package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.ts +79 -15
- package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.d.ts +43 -0
- package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.js +48 -0
- package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/index.d.ts +96 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/index.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/index.js +11 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/index.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.d.ts +14 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.js +26 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.d.ts +41 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.js +59 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.d.ts +60 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.js +42 -0
- package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/index.d.ts +2 -0
- package/dist/local-auth/core/generators/auth-email-templates/index.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/index.js +2 -0
- package/dist/local-auth/core/generators/auth-email-templates/index.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.d.ts +3 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.js +14 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.tsx +55 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.d.ts +3 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.js +12 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.tsx +44 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.d.ts +3 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.js +14 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.js.map +1 -0
- package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.tsx +55 -0
- package/dist/local-auth/core/generators/auth-module/auth-module.generator.d.ts +1 -0
- package/dist/local-auth/core/generators/auth-module/auth-module.generator.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-module/auth-module.generator.js +1 -1
- package/dist/local-auth/core/generators/auth-module/auth-module.generator.js.map +1 -1
- package/dist/local-auth/core/generators/auth-module/generated/index.d.ts +2 -0
- package/dist/local-auth/core/generators/auth-module/generated/index.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-module/generated/template-renderers.d.ts +1 -0
- package/dist/local-auth/core/generators/auth-module/generated/template-renderers.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-module/generated/typed-templates.d.ts +1 -0
- package/dist/local-auth/core/generators/auth-module/generated/typed-templates.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.js +1 -1
- package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.js.map +1 -1
- package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.ts +1 -1
- package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.js +2 -2
- package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.js.map +1 -1
- package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.ts +2 -2
- package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.js +1 -0
- package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/index.d.ts +722 -4
- package/dist/local-auth/core/generators/auth-routes/generated/index.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/index.js +2 -0
- package/dist/local-auth/core/generators/auth-routes/generated/index.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/template-paths.d.ts +4 -0
- package/dist/local-auth/core/generators/auth-routes/generated/template-paths.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/template-paths.js +4 -0
- package/dist/local-auth/core/generators/auth-routes/generated/template-paths.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.d.ts +4 -1
- package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.js +14 -0
- package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.d.ts +21 -0
- package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.js +30 -0
- package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.js.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.d.ts +1216 -34
- package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.js +70 -2
- package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/index.d.ts +2 -0
- package/dist/local-auth/core/generators/auth-routes/index.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/index.js +1 -0
- package/dist/local-auth/core/generators/auth-routes/index.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.d.ts +10 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.js +11 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.js.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.ts +12 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.d.ts +2 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.js +60 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.js.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.tsx +127 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.d.ts +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.js +6 -11
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.tsx +20 -19
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.d.ts +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.d.ts.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.js +2 -2
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.js.map +1 -1
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.tsx +2 -3
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.d.ts +7 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.js +131 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.js.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.tsx +240 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.d.ts +7 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.d.ts.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.js +106 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.js.map +1 -0
- package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.tsx +206 -0
- package/dist/local-auth/core/generators/index.d.ts +1 -0
- package/dist/local-auth/core/generators/index.d.ts.map +1 -1
- package/dist/local-auth/core/generators/index.js +1 -0
- package/dist/local-auth/core/generators/index.js.map +1 -1
- package/dist/local-auth/core/generators/seed-initial-user/generated/index.d.ts +12 -0
- package/dist/local-auth/core/generators/seed-initial-user/generated/index.d.ts.map +1 -1
- package/dist/local-auth/core/generators/seed-initial-user/generated/template-renderers.d.ts +6 -0
- package/dist/local-auth/core/generators/seed-initial-user/generated/template-renderers.d.ts.map +1 -1
- package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.d.ts +6 -0
- package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.d.ts.map +1 -1
- package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.d.ts +6 -0
- package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.d.ts.map +1 -1
- package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.js +1 -1
- package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.js.map +1 -1
- package/dist/local-auth/core/node.d.ts.map +1 -1
- package/dist/local-auth/core/node.js +11 -1
- package/dist/local-auth/core/node.js.map +1 -1
- package/dist/local-auth/core/schema/models.d.ts.map +1 -1
- package/dist/local-auth/core/schema/models.js +60 -0
- package/dist/local-auth/core/schema/models.js.map +1 -1
- package/dist/placeholder-auth/core/schema/plugin-definition.js +1 -1
- package/dist/placeholder-auth/core/schema/plugin-definition.js.map +1 -1
- package/dist/web/assets/{__federation_expose_auth0CoreCommon-DLSGXjCI.js → __federation_expose_auth0CoreCommon-DKJVe6Rd.js} +3 -3
- package/dist/web/assets/{__federation_expose_auth0CoreCommon-DLSGXjCI.js.map → __federation_expose_auth0CoreCommon-DKJVe6Rd.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_auth0CoreWeb-C7FfhlmF.js → __federation_expose_auth0CoreWeb-CfhSWZsK.js} +5 -5
- package/dist/web/assets/{__federation_expose_auth0CoreWeb-C7FfhlmF.js.map → __federation_expose_auth0CoreWeb-CfhSWZsK.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_authCoreCommon-BF58isGa.js → __federation_expose_authCoreCommon-D3-Gk9mI.js} +3 -3
- package/dist/web/assets/{__federation_expose_authCoreCommon-BF58isGa.js.map → __federation_expose_authCoreCommon-D3-Gk9mI.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_authCoreWeb-DMq9M88g.js → __federation_expose_authCoreWeb-DZoAij9e.js} +6 -6
- package/dist/web/assets/{__federation_expose_authCoreWeb-DMq9M88g.js.map → __federation_expose_authCoreWeb-DZoAij9e.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_local-authAdminCommon-sQw4q5YX.js → __federation_expose_local-authAdminCommon-BRHnF0Hn.js} +2 -2
- package/dist/web/assets/{__federation_expose_local-authAdminCommon-sQw4q5YX.js.map → __federation_expose_local-authAdminCommon-BRHnF0Hn.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_local-authAdminWeb-9FbO89NR.js → __federation_expose_local-authAdminWeb-dYAIxuqC.js} +3 -3
- package/dist/web/assets/{__federation_expose_local-authAdminWeb-9FbO89NR.js.map → __federation_expose_local-authAdminWeb-dYAIxuqC.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_local-authCoreCommon-CpUK09_4.js → __federation_expose_local-authCoreCommon-CIwvOx0d.js} +4 -4
- package/dist/web/assets/{__federation_expose_local-authCoreCommon-CpUK09_4.js.map → __federation_expose_local-authCoreCommon-CIwvOx0d.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_local-authCoreWeb-Czp0GaY1.js → __federation_expose_local-authCoreWeb-Bwooi2qZ.js} +66 -6
- package/dist/web/assets/__federation_expose_local-authCoreWeb-Bwooi2qZ.js.map +1 -0
- package/dist/web/assets/{__federation_expose_placeholder-authCoreCommon-CFDDdOMo.js → __federation_expose_placeholder-authCoreCommon-gFDSzGjB.js} +3 -3
- package/dist/web/assets/{__federation_expose_placeholder-authCoreCommon-CFDDdOMo.js.map → __federation_expose_placeholder-authCoreCommon-gFDSzGjB.js.map} +1 -1
- package/dist/web/assets/{__federation_expose_placeholder-authCoreWeb-Bcn1_oDP.js → __federation_expose_placeholder-authCoreWeb-BZLwIkLk.js} +5 -5
- package/dist/web/assets/{__federation_expose_placeholder-authCoreWeb-Bcn1_oDP.js.map → __federation_expose_placeholder-authCoreWeb-BZLwIkLk.js.map} +1 -1
- package/dist/web/assets/{__federation_fn_import-DsXcpNlB.js → __federation_fn_import-pxYUpmb_.js} +2 -2
- package/dist/web/assets/{__federation_fn_import-DsXcpNlB.js.map → __federation_fn_import-pxYUpmb_.js.map} +1 -1
- package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/{web-zqe3PPcn.js → web-BXi2UCP-.js} +7 -7
- package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/web-BXi2UCP-.js.map +1 -0
- package/dist/web/assets/__federation_shared_@baseplate-dev/{project-builder-lib-CmgMfkI5.js → project-builder-lib-O0clDXMb.js} +7137 -136
- package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib-O0clDXMb.js.map +1 -0
- package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-BpuFQk6s.js +52536 -0
- package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-BpuFQk6s.js.map +1 -0
- package/dist/web/assets/__federation_shared_@baseplate-dev/{utils-BO5VHrCf.js → utils-UiZ-8JBg.js} +5 -6
- package/dist/web/assets/__federation_shared_@baseplate-dev/utils-UiZ-8JBg.js.map +1 -0
- package/dist/web/assets/__federation_shared_@tanstack/{react-router-CNzDweD5.js → react-router-BPEAtEJI.js} +1069 -746
- package/dist/web/assets/__federation_shared_@tanstack/react-router-BPEAtEJI.js.map +1 -0
- package/dist/web/assets/{get-auth-plugin-definition-BV2O8wTa.js → get-auth-plugin-definition-DPsrvQbo.js} +2 -2
- package/dist/web/assets/{get-auth-plugin-definition-BV2O8wTa.js.map → get-auth-plugin-definition-DPsrvQbo.js.map} +1 -1
- package/dist/web/assets/{index-BL7fotl7.js → index-CSfs0UAV.js} +2 -2
- package/dist/web/assets/{index-BL7fotl7.js.map → index-CSfs0UAV.js.map} +1 -1
- package/dist/web/assets/{index.esm-B4RpOlq_.js → index.esm-BoRQu8mM.js} +2 -2
- package/dist/web/assets/{index.esm-B4RpOlq_.js.map → index.esm-BoRQu8mM.js.map} +1 -1
- package/dist/web/assets/{model-merger-BwRNqcBu.js → model-merger-CdjliK9v.js} +80 -23
- package/dist/web/assets/model-merger-CdjliK9v.js.map +1 -0
- package/dist/web/assets/{model-names-CEoSIalq.js → model-names-DrcaRxt1.js} +6 -2
- package/dist/web/assets/{model-names-CEoSIalq.js.map → model-names-DrcaRxt1.js.map} +1 -1
- package/dist/web/assets/{plugin-definition-CHD5r-h7.js → plugin-definition-BG6tu7Hh.js} +3 -3
- package/dist/web/assets/plugin-definition-BG6tu7Hh.js.map +1 -0
- package/dist/web/assets/{plugin-definition-DA9rJBcS.js → plugin-definition-BMYDEj3f.js} +3 -3
- package/dist/web/assets/plugin-definition-BMYDEj3f.js.map +1 -0
- package/dist/web/assets/{plugin-definition-B9d2CoQL.js → plugin-definition-DRhTuQas.js} +2 -2
- package/dist/web/assets/{plugin-definition-B9d2CoQL.js.map → plugin-definition-DRhTuQas.js.map} +1 -1
- package/dist/web/assets/{plugin-definition-BMTsmwyH.js → plugin-definition-j1nJ0FFI.js} +2 -2
- package/dist/web/assets/{plugin-definition-BMTsmwyH.js.map → plugin-definition-j1nJ0FFI.js.map} +1 -1
- package/dist/web/assets/{react-B9vhIZMy.js → react-CBhSWxr_.js} +2 -2
- package/dist/web/assets/{react-B9vhIZMy.js.map → react-CBhSWxr_.js.map} +1 -1
- package/dist/web/assets/remoteEntry.js +20 -20
- package/dist/web/assets/{style-DZ-aOCkd.css → style-DiK_rD1L.css} +1 -1
- package/dist/web/assets/{styles-CEm5K1iU.js → styles-BbHyE-2h.js} +3 -3
- package/dist/web/assets/{styles-CEm5K1iU.js.map → styles-BbHyE-2h.js.map} +1 -1
- package/dist/web/index.html +1 -1
- package/package.json +21 -19
- package/dist/web/assets/__federation_expose_local-authCoreWeb-Czp0GaY1.js.map +0 -1
- package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/web-zqe3PPcn.js.map +0 -1
- package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib-CmgMfkI5.js.map +0 -1
- package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-D1Dayhn9.js +0 -24082
- package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-D1Dayhn9.js.map +0 -1
- package/dist/web/assets/__federation_shared_@baseplate-dev/utils-BO5VHrCf.js.map +0 -1
- package/dist/web/assets/__federation_shared_@tanstack/react-router-CNzDweD5.js.map +0 -1
- package/dist/web/assets/model-merger-BwRNqcBu.js.map +0 -1
- package/dist/web/assets/plugin-definition-CHD5r-h7.js.map +0 -1
- package/dist/web/assets/plugin-definition-DA9rJBcS.js.map +0 -1
package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-renderers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/template-renderers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"template-renderers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/template-renderers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,+BAA+B,EAC/B,gCAAgC,EACjC,MAAM,gCAAgC,CAAC;AACxC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAqBzD,OAAO,EAAE,6CAA6C,EAAE,MAAM,sBAAsB,CAAC;AAErF,MAAM,WAAW,uCAAuC;IACtD,WAAW,EAAE;QACX,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,gCAAgC,CAC9B,OAAO,6CAA6C,CAAC,WAAW,CACjE,EACD,oBAAoB,GAAG,OAAO,GAAG,OAAO,GAAG,gBAAgB,CAC5D,KACE,aAAa,CAAC;KACpB,CAAC;IACF,gCAAgC,EAAE;QAChC,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,+BAA+B,CAC7B,OAAO,6CAA6C,CAAC,gCAAgC,CACtF,EACD,aAAa,GAAG,oBAAoB,GAAG,UAAU,GAAG,gBAAgB,CACrE,KACE,aAAa,CAAC;KACpB,CAAC;IACF,wBAAwB,EAAE;QACxB,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,+BAA+B,CAC7B,OAAO,6CAA6C,CAAC,wBAAwB,CAC9E,EACD,aAAa,GAAG,oBAAoB,GAAG,UAAU,GAAG,gBAAgB,CACrE,KACE,aAAa,CAAC;KACpB,CAAC;IACF,yBAAyB,EAAE;QACzB,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,+BAA+B,CAC7B,OAAO,6CAA6C,CAAC,yBAAyB,CAC/E,EACD,aAAa,GAAG,oBAAoB,GAAG,UAAU,GAAG,gBAAgB,CACrE,KACE,aAAa,CAAC;KACpB,CAAC;CACH;AAyHD,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGzD,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { typescriptFileProvider } from '@baseplate-dev/core-generators';
|
|
2
|
-
import { errorHandlerServiceImportsProvider, passwordHasherServiceImportsProvider, pothosImportsProvider, prismaGeneratedImportsProvider, prismaImportsProvider, requestServiceContextImportsProvider, userSessionServiceImportsProvider, userSessionTypesImportsProvider, } from '@baseplate-dev/fastify-generators';
|
|
2
|
+
import { configServiceImportsProvider, errorHandlerServiceImportsProvider, passwordHasherServiceImportsProvider, pothosImportsProvider, prismaGeneratedImportsProvider, prismaImportsProvider, requestServiceContextImportsProvider, userSessionServiceImportsProvider, userSessionTypesImportsProvider, } from '@baseplate-dev/fastify-generators';
|
|
3
|
+
import { emailModuleImportsProvider } from '@baseplate-dev/plugin-email';
|
|
4
|
+
import { rateLimitImportsProvider } from '@baseplate-dev/plugin-rate-limit';
|
|
3
5
|
import { createGeneratorTask, createProviderType } from '@baseplate-dev/sync';
|
|
4
6
|
import { authModuleImportsProvider } from '#src/local-auth/core/generators/auth-module/generated/ts-import-providers.js';
|
|
5
7
|
import { LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_PATHS } from './template-paths.js';
|
|
@@ -8,12 +10,15 @@ const localAuthCoreAuthEmailPasswordRenderers = createProviderType('local-auth-c
|
|
|
8
10
|
const localAuthCoreAuthEmailPasswordRenderersTask = createGeneratorTask({
|
|
9
11
|
dependencies: {
|
|
10
12
|
authModuleImports: authModuleImportsProvider,
|
|
13
|
+
configServiceImports: configServiceImportsProvider,
|
|
14
|
+
emailModuleImports: emailModuleImportsProvider,
|
|
11
15
|
errorHandlerServiceImports: errorHandlerServiceImportsProvider,
|
|
12
16
|
passwordHasherServiceImports: passwordHasherServiceImportsProvider,
|
|
13
17
|
paths: LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_PATHS.provider,
|
|
14
18
|
pothosImports: pothosImportsProvider,
|
|
15
19
|
prismaGeneratedImports: prismaGeneratedImportsProvider,
|
|
16
20
|
prismaImports: prismaImportsProvider,
|
|
21
|
+
rateLimitImports: rateLimitImportsProvider,
|
|
17
22
|
requestServiceContextImports: requestServiceContextImportsProvider,
|
|
18
23
|
typescriptFile: typescriptFileProvider,
|
|
19
24
|
userSessionServiceImports: userSessionServiceImportsProvider,
|
|
@@ -22,7 +27,7 @@ const localAuthCoreAuthEmailPasswordRenderersTask = createGeneratorTask({
|
|
|
22
27
|
exports: {
|
|
23
28
|
localAuthCoreAuthEmailPasswordRenderers: localAuthCoreAuthEmailPasswordRenderers.export(),
|
|
24
29
|
},
|
|
25
|
-
run({ authModuleImports, errorHandlerServiceImports, passwordHasherServiceImports, paths, pothosImports, prismaGeneratedImports, prismaImports, requestServiceContextImports, typescriptFile, userSessionServiceImports, userSessionTypesImports, }) {
|
|
30
|
+
run({ authModuleImports, configServiceImports, emailModuleImports, errorHandlerServiceImports, passwordHasherServiceImports, paths, pothosImports, prismaGeneratedImports, prismaImports, rateLimitImports, requestServiceContextImports, typescriptFile, userSessionServiceImports, userSessionTypesImports, }) {
|
|
26
31
|
return {
|
|
27
32
|
providers: {
|
|
28
33
|
localAuthCoreAuthEmailPasswordRenderers: {
|
|
@@ -32,11 +37,14 @@ const localAuthCoreAuthEmailPasswordRenderersTask = createGeneratorTask({
|
|
|
32
37
|
paths,
|
|
33
38
|
importMapProviders: {
|
|
34
39
|
authModuleImports,
|
|
40
|
+
configServiceImports,
|
|
41
|
+
emailModuleImports,
|
|
35
42
|
errorHandlerServiceImports,
|
|
36
43
|
passwordHasherServiceImports,
|
|
37
44
|
pothosImports,
|
|
38
45
|
prismaGeneratedImports,
|
|
39
46
|
prismaImports,
|
|
47
|
+
rateLimitImports,
|
|
40
48
|
requestServiceContextImports,
|
|
41
49
|
userSessionServiceImports,
|
|
42
50
|
userSessionTypesImports,
|
|
@@ -45,6 +53,44 @@ const localAuthCoreAuthEmailPasswordRenderersTask = createGeneratorTask({
|
|
|
45
53
|
...options,
|
|
46
54
|
}),
|
|
47
55
|
},
|
|
56
|
+
schemaEmailVerificationMutations: {
|
|
57
|
+
render: (options) => typescriptFile.renderTemplateFile({
|
|
58
|
+
template: LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES.schemaEmailVerificationMutations,
|
|
59
|
+
destination: paths.schemaEmailVerificationMutations,
|
|
60
|
+
importMapProviders: {
|
|
61
|
+
pothosImports,
|
|
62
|
+
},
|
|
63
|
+
generatorPaths: paths,
|
|
64
|
+
...options,
|
|
65
|
+
}),
|
|
66
|
+
},
|
|
67
|
+
servicesAuthVerification: {
|
|
68
|
+
render: (options) => typescriptFile.renderTemplateFile({
|
|
69
|
+
template: LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES.servicesAuthVerification,
|
|
70
|
+
destination: paths.servicesAuthVerification,
|
|
71
|
+
importMapProviders: {
|
|
72
|
+
prismaGeneratedImports,
|
|
73
|
+
prismaImports,
|
|
74
|
+
},
|
|
75
|
+
...options,
|
|
76
|
+
}),
|
|
77
|
+
},
|
|
78
|
+
servicesEmailVerification: {
|
|
79
|
+
render: (options) => typescriptFile.renderTemplateFile({
|
|
80
|
+
template: LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES.servicesEmailVerification,
|
|
81
|
+
destination: paths.servicesEmailVerification,
|
|
82
|
+
importMapProviders: {
|
|
83
|
+
configServiceImports,
|
|
84
|
+
emailModuleImports,
|
|
85
|
+
errorHandlerServiceImports,
|
|
86
|
+
prismaImports,
|
|
87
|
+
rateLimitImports,
|
|
88
|
+
requestServiceContextImports,
|
|
89
|
+
},
|
|
90
|
+
generatorPaths: paths,
|
|
91
|
+
...options,
|
|
92
|
+
}),
|
|
93
|
+
},
|
|
48
94
|
},
|
|
49
95
|
},
|
|
50
96
|
};
|
package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-renderers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/template-renderers.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"template-renderers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/template-renderers.ts"],"names":[],"mappings":"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"}
|
package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts
CHANGED
|
@@ -1,24 +1,42 @@
|
|
|
1
1
|
import type { TsImportMapProviderFromSchema } from '@baseplate-dev/core-generators';
|
|
2
2
|
export declare const authEmailPasswordImportsSchema: {
|
|
3
3
|
authenticateUserWithEmailAndPassword: {};
|
|
4
|
+
cleanupExpiredPasswordResetTokens: {};
|
|
5
|
+
completePasswordReset: {};
|
|
4
6
|
createUserWithEmailAndPassword: {};
|
|
7
|
+
PASSWORD_MAX_LENGTH: {};
|
|
5
8
|
PASSWORD_MIN_LENGTH: {};
|
|
9
|
+
PASSWORD_RESET_TOKEN_EXPIRY_SEC: {};
|
|
6
10
|
registerUserWithEmailAndPassword: {};
|
|
11
|
+
requestPasswordReset: {};
|
|
12
|
+
validatePasswordResetToken: {};
|
|
7
13
|
};
|
|
8
14
|
export type AuthEmailPasswordImportsProvider = TsImportMapProviderFromSchema<typeof authEmailPasswordImportsSchema>;
|
|
9
15
|
export declare const authEmailPasswordImportsProvider: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
10
16
|
authenticateUserWithEmailAndPassword: {};
|
|
17
|
+
cleanupExpiredPasswordResetTokens: {};
|
|
18
|
+
completePasswordReset: {};
|
|
11
19
|
createUserWithEmailAndPassword: {};
|
|
20
|
+
PASSWORD_MAX_LENGTH: {};
|
|
12
21
|
PASSWORD_MIN_LENGTH: {};
|
|
22
|
+
PASSWORD_RESET_TOKEN_EXPIRY_SEC: {};
|
|
13
23
|
registerUserWithEmailAndPassword: {};
|
|
24
|
+
requestPasswordReset: {};
|
|
25
|
+
validatePasswordResetToken: {};
|
|
14
26
|
}>>;
|
|
15
27
|
export declare const LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_IMPORTS: {
|
|
16
28
|
task: import("@baseplate-dev/sync").GeneratorTask<{
|
|
17
29
|
authEmailPasswordImports: import("@baseplate-dev/sync").ProviderExport<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
18
30
|
authenticateUserWithEmailAndPassword: {};
|
|
31
|
+
cleanupExpiredPasswordResetTokens: {};
|
|
32
|
+
completePasswordReset: {};
|
|
19
33
|
createUserWithEmailAndPassword: {};
|
|
34
|
+
PASSWORD_MAX_LENGTH: {};
|
|
20
35
|
PASSWORD_MIN_LENGTH: {};
|
|
36
|
+
PASSWORD_RESET_TOKEN_EXPIRY_SEC: {};
|
|
21
37
|
registerUserWithEmailAndPassword: {};
|
|
38
|
+
requestPasswordReset: {};
|
|
39
|
+
validatePasswordResetToken: {};
|
|
22
40
|
}>>;
|
|
23
41
|
}, {
|
|
24
42
|
paths: import("@baseplate-dev/sync").ProviderType<import("./template-paths.js").LocalAuthCoreAuthEmailPasswordPaths>;
|
package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ts-import-providers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/ts-import-providers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAcpF,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"ts-import-providers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/ts-import-providers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAcpF,eAAO,MAAM,8BAA8B;;;;;;;;;;;CAWzC,CAAC;AAEH,MAAM,MAAM,gCAAgC,GAAG,6BAA6B,CAC1E,OAAO,8BAA8B,CACtC,CAAC;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;GAG1C,CAAC;AAiCJ,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;CAEvD,CAAC"}
|
package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js
CHANGED
|
@@ -3,9 +3,15 @@ import { createGeneratorTask, createReadOnlyProviderType, } from '@baseplate-dev
|
|
|
3
3
|
import { LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_PATHS } from './template-paths.js';
|
|
4
4
|
export const authEmailPasswordImportsSchema = createTsImportMapSchema({
|
|
5
5
|
authenticateUserWithEmailAndPassword: {},
|
|
6
|
+
cleanupExpiredPasswordResetTokens: {},
|
|
7
|
+
completePasswordReset: {},
|
|
6
8
|
createUserWithEmailAndPassword: {},
|
|
9
|
+
PASSWORD_MAX_LENGTH: {},
|
|
7
10
|
PASSWORD_MIN_LENGTH: {},
|
|
11
|
+
PASSWORD_RESET_TOKEN_EXPIRY_SEC: {},
|
|
8
12
|
registerUserWithEmailAndPassword: {},
|
|
13
|
+
requestPasswordReset: {},
|
|
14
|
+
validatePasswordResetToken: {},
|
|
9
15
|
});
|
|
10
16
|
export const authEmailPasswordImportsProvider = createReadOnlyProviderType('auth-email-password-imports');
|
|
11
17
|
const localAuthCoreAuthEmailPasswordImportsTask = createGeneratorTask({
|
|
@@ -20,9 +26,15 @@ const localAuthCoreAuthEmailPasswordImportsTask = createGeneratorTask({
|
|
|
20
26
|
providers: {
|
|
21
27
|
authEmailPasswordImports: createTsImportMap(authEmailPasswordImportsSchema, {
|
|
22
28
|
authenticateUserWithEmailAndPassword: paths.servicesUserPassword,
|
|
29
|
+
cleanupExpiredPasswordResetTokens: paths.servicesPasswordReset,
|
|
30
|
+
completePasswordReset: paths.servicesPasswordReset,
|
|
23
31
|
createUserWithEmailAndPassword: paths.servicesUserPassword,
|
|
32
|
+
PASSWORD_MAX_LENGTH: paths.constantsPassword,
|
|
24
33
|
PASSWORD_MIN_LENGTH: paths.constantsPassword,
|
|
34
|
+
PASSWORD_RESET_TOKEN_EXPIRY_SEC: paths.constantsPassword,
|
|
25
35
|
registerUserWithEmailAndPassword: paths.servicesUserPassword,
|
|
36
|
+
requestPasswordReset: paths.servicesPasswordReset,
|
|
37
|
+
validatePasswordResetToken: paths.servicesPasswordReset,
|
|
26
38
|
}),
|
|
27
39
|
},
|
|
28
40
|
};
|
package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ts-import-providers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/ts-import-providers.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,iBAAiB,EACjB,uBAAuB,EACvB,YAAY,GACb,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,mBAAmB,EACnB,0BAA0B,GAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,yCAAyC,EAAE,MAAM,qBAAqB,CAAC;AAEhF,MAAM,CAAC,MAAM,8BAA8B,GAAG,uBAAuB,CAAC;IACpE,oCAAoC,EAAE,EAAE;IACxC,8BAA8B,EAAE,EAAE;IAClC,mBAAmB,EAAE,EAAE;IACvB,gCAAgC,EAAE,EAAE;
|
|
1
|
+
{"version":3,"file":"ts-import-providers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/ts-import-providers.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,iBAAiB,EACjB,uBAAuB,EACvB,YAAY,GACb,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,mBAAmB,EACnB,0BAA0B,GAC3B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,yCAAyC,EAAE,MAAM,qBAAqB,CAAC;AAEhF,MAAM,CAAC,MAAM,8BAA8B,GAAG,uBAAuB,CAAC;IACpE,oCAAoC,EAAE,EAAE;IACxC,iCAAiC,EAAE,EAAE;IACrC,qBAAqB,EAAE,EAAE;IACzB,8BAA8B,EAAE,EAAE;IAClC,mBAAmB,EAAE,EAAE;IACvB,mBAAmB,EAAE,EAAE;IACvB,+BAA+B,EAAE,EAAE;IACnC,gCAAgC,EAAE,EAAE;IACpC,oBAAoB,EAAE,EAAE;IACxB,0BAA0B,EAAE,EAAE;CAC/B,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,gCAAgC,GAC3C,0BAA0B,CACxB,6BAA6B,CAC9B,CAAC;AAEJ,MAAM,yCAAyC,GAAG,mBAAmB,CAAC;IACpE,YAAY,EAAE;QACZ,KAAK,EAAE,yCAAyC,CAAC,QAAQ;KAC1D;IACD,OAAO,EAAE;QACP,wBAAwB,EACtB,gCAAgC,CAAC,MAAM,CAAC,YAAY,CAAC;KACxD;IACD,GAAG,CAAC,EAAE,KAAK,EAAE;QACX,OAAO;YACL,SAAS,EAAE;gBACT,wBAAwB,EAAE,iBAAiB,CACzC,8BAA8B,EAC9B;oBACE,oCAAoC,EAAE,KAAK,CAAC,oBAAoB;oBAChE,iCAAiC,EAAE,KAAK,CAAC,qBAAqB;oBAC9D,qBAAqB,EAAE,KAAK,CAAC,qBAAqB;oBAClD,8BAA8B,EAAE,KAAK,CAAC,oBAAoB;oBAC1D,mBAAmB,EAAE,KAAK,CAAC,iBAAiB;oBAC5C,mBAAmB,EAAE,KAAK,CAAC,iBAAiB;oBAC5C,+BAA+B,EAAE,KAAK,CAAC,iBAAiB;oBACxD,gCAAgC,EAAE,KAAK,CAAC,oBAAoB;oBAC5D,oBAAoB,EAAE,KAAK,CAAC,qBAAqB;oBACjD,0BAA0B,EAAE,KAAK,CAAC,qBAAqB;iBACxD,CACF;aACF;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2CAA2C,GAAG;IACzD,IAAI,EAAE,yCAAyC;CAChD,CAAC"}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export declare const moduleGroup: {
|
|
2
2
|
constantsPassword: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {}, Record<never, Record<never, never>>>;
|
|
3
|
+
schemaPasswordResetMutations: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
4
|
+
pothosImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
5
|
+
builder: {};
|
|
6
|
+
}>>;
|
|
7
|
+
}, {
|
|
8
|
+
servicesPasswordReset: {};
|
|
9
|
+
}>;
|
|
3
10
|
schemaUserPasswordMutations: import("@baseplate-dev/core-generators").TsTemplateFile<{
|
|
4
11
|
TPL_ADMIN_ROLES: {};
|
|
5
12
|
TPL_USER_OBJECT_TYPE: {};
|
|
@@ -13,6 +20,71 @@ export declare const moduleGroup: {
|
|
|
13
20
|
}, {
|
|
14
21
|
servicesUserPassword: {};
|
|
15
22
|
}>;
|
|
23
|
+
servicesPasswordReset: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
24
|
+
configServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
25
|
+
config: {};
|
|
26
|
+
}>>;
|
|
27
|
+
emailModuleImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
28
|
+
EmailAdapter: {
|
|
29
|
+
isTypeOnly: true;
|
|
30
|
+
};
|
|
31
|
+
EmailAttachment: {
|
|
32
|
+
isTypeOnly: true;
|
|
33
|
+
};
|
|
34
|
+
EmailRawOptions: {
|
|
35
|
+
isTypeOnly: true;
|
|
36
|
+
};
|
|
37
|
+
EmailSendOptions: {
|
|
38
|
+
isTypeOnly: true;
|
|
39
|
+
};
|
|
40
|
+
sendEmail: {};
|
|
41
|
+
sendEmailQueue: {};
|
|
42
|
+
sendRawEmail: {};
|
|
43
|
+
TransformedEmailMessage: {
|
|
44
|
+
isTypeOnly: true;
|
|
45
|
+
};
|
|
46
|
+
}>>;
|
|
47
|
+
errorHandlerServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
48
|
+
BadRequestError: {};
|
|
49
|
+
ForbiddenError: {};
|
|
50
|
+
handleZodRequestValidationError: {};
|
|
51
|
+
HttpError: {};
|
|
52
|
+
InternalServerError: {};
|
|
53
|
+
logError: {};
|
|
54
|
+
NotFoundError: {};
|
|
55
|
+
TooManyRequestsError: {};
|
|
56
|
+
UnauthorizedError: {};
|
|
57
|
+
}>>;
|
|
58
|
+
passwordHasherServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
59
|
+
createPasswordHash: {};
|
|
60
|
+
verifyPasswordHash: {};
|
|
61
|
+
}>>;
|
|
62
|
+
prismaImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
63
|
+
prisma: {};
|
|
64
|
+
}>>;
|
|
65
|
+
rateLimitImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
66
|
+
createRateLimiter: {};
|
|
67
|
+
memoizeRateLimiter: {};
|
|
68
|
+
RateLimiter: {
|
|
69
|
+
isTypeOnly: true;
|
|
70
|
+
};
|
|
71
|
+
RateLimiterConfig: {
|
|
72
|
+
isTypeOnly: true;
|
|
73
|
+
};
|
|
74
|
+
RateLimitResult: {
|
|
75
|
+
isTypeOnly: true;
|
|
76
|
+
};
|
|
77
|
+
}>>;
|
|
78
|
+
requestServiceContextImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
79
|
+
createContextFromRequest: {};
|
|
80
|
+
RequestServiceContext: {
|
|
81
|
+
isTypeOnly: true;
|
|
82
|
+
};
|
|
83
|
+
}>>;
|
|
84
|
+
}, {
|
|
85
|
+
constantsPassword: {};
|
|
86
|
+
servicesAuthVerification: {};
|
|
87
|
+
}>;
|
|
16
88
|
servicesUserPassword: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
17
89
|
errorHandlerServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
18
90
|
BadRequestError: {};
|
|
@@ -22,6 +94,7 @@ export declare const moduleGroup: {
|
|
|
22
94
|
InternalServerError: {};
|
|
23
95
|
logError: {};
|
|
24
96
|
NotFoundError: {};
|
|
97
|
+
TooManyRequestsError: {};
|
|
25
98
|
UnauthorizedError: {};
|
|
26
99
|
}>>;
|
|
27
100
|
passwordHasherServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
@@ -37,6 +110,19 @@ export declare const moduleGroup: {
|
|
|
37
110
|
prismaImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
38
111
|
prisma: {};
|
|
39
112
|
}>>;
|
|
113
|
+
rateLimitImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
114
|
+
createRateLimiter: {};
|
|
115
|
+
memoizeRateLimiter: {};
|
|
116
|
+
RateLimiter: {
|
|
117
|
+
isTypeOnly: true;
|
|
118
|
+
};
|
|
119
|
+
RateLimiterConfig: {
|
|
120
|
+
isTypeOnly: true;
|
|
121
|
+
};
|
|
122
|
+
RateLimitResult: {
|
|
123
|
+
isTypeOnly: true;
|
|
124
|
+
};
|
|
125
|
+
}>>;
|
|
40
126
|
requestServiceContextImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
41
127
|
createContextFromRequest: {};
|
|
42
128
|
RequestServiceContext: {
|
|
@@ -56,11 +142,19 @@ export declare const moduleGroup: {
|
|
|
56
142
|
}>>;
|
|
57
143
|
}, {
|
|
58
144
|
constantsPassword: {};
|
|
145
|
+
servicesEmailVerification: {};
|
|
59
146
|
}>;
|
|
60
147
|
};
|
|
61
148
|
export declare const LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES: {
|
|
62
149
|
moduleGroup: {
|
|
63
150
|
constantsPassword: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {}, Record<never, Record<never, never>>>;
|
|
151
|
+
schemaPasswordResetMutations: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
152
|
+
pothosImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
153
|
+
builder: {};
|
|
154
|
+
}>>;
|
|
155
|
+
}, {
|
|
156
|
+
servicesPasswordReset: {};
|
|
157
|
+
}>;
|
|
64
158
|
schemaUserPasswordMutations: import("@baseplate-dev/core-generators").TsTemplateFile<{
|
|
65
159
|
TPL_ADMIN_ROLES: {};
|
|
66
160
|
TPL_USER_OBJECT_TYPE: {};
|
|
@@ -74,6 +168,71 @@ export declare const LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES: {
|
|
|
74
168
|
}, {
|
|
75
169
|
servicesUserPassword: {};
|
|
76
170
|
}>;
|
|
171
|
+
servicesPasswordReset: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
172
|
+
configServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
173
|
+
config: {};
|
|
174
|
+
}>>;
|
|
175
|
+
emailModuleImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
176
|
+
EmailAdapter: {
|
|
177
|
+
isTypeOnly: true;
|
|
178
|
+
};
|
|
179
|
+
EmailAttachment: {
|
|
180
|
+
isTypeOnly: true;
|
|
181
|
+
};
|
|
182
|
+
EmailRawOptions: {
|
|
183
|
+
isTypeOnly: true;
|
|
184
|
+
};
|
|
185
|
+
EmailSendOptions: {
|
|
186
|
+
isTypeOnly: true;
|
|
187
|
+
};
|
|
188
|
+
sendEmail: {};
|
|
189
|
+
sendEmailQueue: {};
|
|
190
|
+
sendRawEmail: {};
|
|
191
|
+
TransformedEmailMessage: {
|
|
192
|
+
isTypeOnly: true;
|
|
193
|
+
};
|
|
194
|
+
}>>;
|
|
195
|
+
errorHandlerServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
196
|
+
BadRequestError: {};
|
|
197
|
+
ForbiddenError: {};
|
|
198
|
+
handleZodRequestValidationError: {};
|
|
199
|
+
HttpError: {};
|
|
200
|
+
InternalServerError: {};
|
|
201
|
+
logError: {};
|
|
202
|
+
NotFoundError: {};
|
|
203
|
+
TooManyRequestsError: {};
|
|
204
|
+
UnauthorizedError: {};
|
|
205
|
+
}>>;
|
|
206
|
+
passwordHasherServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
207
|
+
createPasswordHash: {};
|
|
208
|
+
verifyPasswordHash: {};
|
|
209
|
+
}>>;
|
|
210
|
+
prismaImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
211
|
+
prisma: {};
|
|
212
|
+
}>>;
|
|
213
|
+
rateLimitImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
214
|
+
createRateLimiter: {};
|
|
215
|
+
memoizeRateLimiter: {};
|
|
216
|
+
RateLimiter: {
|
|
217
|
+
isTypeOnly: true;
|
|
218
|
+
};
|
|
219
|
+
RateLimiterConfig: {
|
|
220
|
+
isTypeOnly: true;
|
|
221
|
+
};
|
|
222
|
+
RateLimitResult: {
|
|
223
|
+
isTypeOnly: true;
|
|
224
|
+
};
|
|
225
|
+
}>>;
|
|
226
|
+
requestServiceContextImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
227
|
+
createContextFromRequest: {};
|
|
228
|
+
RequestServiceContext: {
|
|
229
|
+
isTypeOnly: true;
|
|
230
|
+
};
|
|
231
|
+
}>>;
|
|
232
|
+
}, {
|
|
233
|
+
constantsPassword: {};
|
|
234
|
+
servicesAuthVerification: {};
|
|
235
|
+
}>;
|
|
77
236
|
servicesUserPassword: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
78
237
|
errorHandlerServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
79
238
|
BadRequestError: {};
|
|
@@ -83,6 +242,7 @@ export declare const LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES: {
|
|
|
83
242
|
InternalServerError: {};
|
|
84
243
|
logError: {};
|
|
85
244
|
NotFoundError: {};
|
|
245
|
+
TooManyRequestsError: {};
|
|
86
246
|
UnauthorizedError: {};
|
|
87
247
|
}>>;
|
|
88
248
|
passwordHasherServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
@@ -98,6 +258,19 @@ export declare const LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES: {
|
|
|
98
258
|
prismaImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
99
259
|
prisma: {};
|
|
100
260
|
}>>;
|
|
261
|
+
rateLimitImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
262
|
+
createRateLimiter: {};
|
|
263
|
+
memoizeRateLimiter: {};
|
|
264
|
+
RateLimiter: {
|
|
265
|
+
isTypeOnly: true;
|
|
266
|
+
};
|
|
267
|
+
RateLimiterConfig: {
|
|
268
|
+
isTypeOnly: true;
|
|
269
|
+
};
|
|
270
|
+
RateLimitResult: {
|
|
271
|
+
isTypeOnly: true;
|
|
272
|
+
};
|
|
273
|
+
}>>;
|
|
101
274
|
requestServiceContextImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
102
275
|
createContextFromRequest: {};
|
|
103
276
|
RequestServiceContext: {
|
|
@@ -117,7 +290,87 @@ export declare const LOCAL_AUTH_CORE_AUTH_EMAIL_PASSWORD_TEMPLATES: {
|
|
|
117
290
|
}>>;
|
|
118
291
|
}, {
|
|
119
292
|
constantsPassword: {};
|
|
293
|
+
servicesEmailVerification: {};
|
|
120
294
|
}>;
|
|
121
295
|
};
|
|
296
|
+
schemaEmailVerificationMutations: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
297
|
+
pothosImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
298
|
+
builder: {};
|
|
299
|
+
}>>;
|
|
300
|
+
}, {
|
|
301
|
+
servicesEmailVerification: {};
|
|
302
|
+
}>;
|
|
303
|
+
servicesAuthVerification: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
304
|
+
prismaGeneratedImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
305
|
+
PrismaClient: {};
|
|
306
|
+
Prisma: {};
|
|
307
|
+
'*': {};
|
|
308
|
+
$Enums: {};
|
|
309
|
+
}>>;
|
|
310
|
+
prismaImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
311
|
+
prisma: {};
|
|
312
|
+
}>>;
|
|
313
|
+
}, Record<never, Record<never, never>>>;
|
|
314
|
+
servicesEmailVerification: import("@baseplate-dev/core-generators").TsTemplateFile<{}, {
|
|
315
|
+
configServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
316
|
+
config: {};
|
|
317
|
+
}>>;
|
|
318
|
+
emailModuleImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
319
|
+
EmailAdapter: {
|
|
320
|
+
isTypeOnly: true;
|
|
321
|
+
};
|
|
322
|
+
EmailAttachment: {
|
|
323
|
+
isTypeOnly: true;
|
|
324
|
+
};
|
|
325
|
+
EmailRawOptions: {
|
|
326
|
+
isTypeOnly: true;
|
|
327
|
+
};
|
|
328
|
+
EmailSendOptions: {
|
|
329
|
+
isTypeOnly: true;
|
|
330
|
+
};
|
|
331
|
+
sendEmail: {};
|
|
332
|
+
sendEmailQueue: {};
|
|
333
|
+
sendRawEmail: {};
|
|
334
|
+
TransformedEmailMessage: {
|
|
335
|
+
isTypeOnly: true;
|
|
336
|
+
};
|
|
337
|
+
}>>;
|
|
338
|
+
errorHandlerServiceImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
339
|
+
BadRequestError: {};
|
|
340
|
+
ForbiddenError: {};
|
|
341
|
+
handleZodRequestValidationError: {};
|
|
342
|
+
HttpError: {};
|
|
343
|
+
InternalServerError: {};
|
|
344
|
+
logError: {};
|
|
345
|
+
NotFoundError: {};
|
|
346
|
+
TooManyRequestsError: {};
|
|
347
|
+
UnauthorizedError: {};
|
|
348
|
+
}>>;
|
|
349
|
+
prismaImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
350
|
+
prisma: {};
|
|
351
|
+
}>>;
|
|
352
|
+
rateLimitImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
353
|
+
createRateLimiter: {};
|
|
354
|
+
memoizeRateLimiter: {};
|
|
355
|
+
RateLimiter: {
|
|
356
|
+
isTypeOnly: true;
|
|
357
|
+
};
|
|
358
|
+
RateLimiterConfig: {
|
|
359
|
+
isTypeOnly: true;
|
|
360
|
+
};
|
|
361
|
+
RateLimitResult: {
|
|
362
|
+
isTypeOnly: true;
|
|
363
|
+
};
|
|
364
|
+
}>>;
|
|
365
|
+
requestServiceContextImports: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
|
|
366
|
+
createContextFromRequest: {};
|
|
367
|
+
RequestServiceContext: {
|
|
368
|
+
isTypeOnly: true;
|
|
369
|
+
};
|
|
370
|
+
}>>;
|
|
371
|
+
}, {
|
|
372
|
+
constantsPassword: {};
|
|
373
|
+
servicesAuthVerification: {};
|
|
374
|
+
}>;
|
|
122
375
|
};
|
|
123
376
|
//# sourceMappingURL=typed-templates.d.ts.map
|
package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typed-templates.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/typed-templates.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"typed-templates.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-email-password/generated/typed-templates.ts"],"names":[],"mappings":"AAsIA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvB,CAAC;AAwDF,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzD,CAAC"}
|