@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.
Files changed (268) hide show
  1. package/CHANGELOG.md +621 -0
  2. package/dist/auth0/core/schema/plugin-definition.js +1 -1
  3. package/dist/auth0/core/schema/plugin-definition.js.map +1 -1
  4. package/dist/auth0/generators/fastify/auth0-module/templates/module/schema/user-session.queries.ts +1 -1
  5. package/dist/auth0/generators/react/auth0-hooks/auth0-hooks.generator.js +1 -1
  6. package/dist/auth0/generators/react/auth0-hooks/auth0-hooks.generator.js.map +1 -1
  7. package/dist/local-auth/constants/model-names.d.ts +4 -0
  8. package/dist/local-auth/constants/model-names.d.ts.map +1 -1
  9. package/dist/local-auth/constants/model-names.js +4 -0
  10. package/dist/local-auth/constants/model-names.js.map +1 -1
  11. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.d.ts +49 -0
  12. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.d.ts.map +1 -1
  13. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.js +17 -6
  14. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.js.map +1 -1
  15. package/dist/local-auth/core/generators/auth-email-password/generated/index.d.ts +209 -0
  16. package/dist/local-auth/core/generators/auth-email-password/generated/index.d.ts.map +1 -1
  17. package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.d.ts +5 -0
  18. package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.d.ts.map +1 -1
  19. package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.js +5 -0
  20. package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.js.map +1 -1
  21. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts +47 -1
  22. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts.map +1 -1
  23. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js +48 -2
  24. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js.map +1 -1
  25. package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts +18 -0
  26. package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts.map +1 -1
  27. package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js +12 -0
  28. package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js.map +1 -1
  29. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts +253 -0
  30. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts.map +1 -1
  31. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.js +102 -4
  32. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.js.map +1 -1
  33. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.d.ts +15 -0
  34. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.d.ts.map +1 -1
  35. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.js +15 -0
  36. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.js.map +1 -1
  37. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.ts +18 -0
  38. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.d.ts +2 -0
  39. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.d.ts.map +1 -0
  40. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.js +24 -0
  41. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.js.map +1 -0
  42. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.ts +35 -0
  43. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.d.ts +2 -0
  44. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.d.ts.map +1 -0
  45. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.js +38 -0
  46. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.js.map +1 -0
  47. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.ts +54 -0
  48. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.d.ts +40 -0
  49. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.d.ts.map +1 -0
  50. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.js +106 -0
  51. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.js.map +1 -0
  52. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/auth-verification.service.ts +146 -0
  53. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.d.ts +24 -0
  54. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.d.ts.map +1 -0
  55. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.js +88 -0
  56. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.js.map +1 -0
  57. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.ts +141 -0
  58. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.d.ts +35 -0
  59. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.d.ts.map +1 -0
  60. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.js +157 -0
  61. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.js.map +1 -0
  62. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.ts +233 -0
  63. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.d.ts.map +1 -1
  64. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.js +48 -14
  65. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.js.map +1 -1
  66. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.ts +79 -15
  67. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.d.ts +43 -0
  68. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.d.ts.map +1 -0
  69. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.js +48 -0
  70. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.js.map +1 -0
  71. package/dist/local-auth/core/generators/auth-email-templates/generated/index.d.ts +96 -0
  72. package/dist/local-auth/core/generators/auth-email-templates/generated/index.d.ts.map +1 -0
  73. package/dist/local-auth/core/generators/auth-email-templates/generated/index.js +11 -0
  74. package/dist/local-auth/core/generators/auth-email-templates/generated/index.js.map +1 -0
  75. package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.d.ts +14 -0
  76. package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.d.ts.map +1 -0
  77. package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.js +26 -0
  78. package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.js.map +1 -0
  79. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.d.ts +41 -0
  80. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.d.ts.map +1 -0
  81. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.js +59 -0
  82. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.js.map +1 -0
  83. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.d.ts +60 -0
  84. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.d.ts.map +1 -0
  85. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.js +42 -0
  86. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.js.map +1 -0
  87. package/dist/local-auth/core/generators/auth-email-templates/index.d.ts +2 -0
  88. package/dist/local-auth/core/generators/auth-email-templates/index.d.ts.map +1 -0
  89. package/dist/local-auth/core/generators/auth-email-templates/index.js +2 -0
  90. package/dist/local-auth/core/generators/auth-email-templates/index.js.map +1 -0
  91. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.d.ts +3 -0
  92. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.d.ts.map +1 -0
  93. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.js +14 -0
  94. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.js.map +1 -0
  95. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.tsx +55 -0
  96. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.d.ts +3 -0
  97. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.d.ts.map +1 -0
  98. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.js +12 -0
  99. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.js.map +1 -0
  100. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.tsx +44 -0
  101. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.d.ts +3 -0
  102. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.d.ts.map +1 -0
  103. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.js +14 -0
  104. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.js.map +1 -0
  105. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.tsx +55 -0
  106. package/dist/local-auth/core/generators/auth-module/auth-module.generator.d.ts +1 -0
  107. package/dist/local-auth/core/generators/auth-module/auth-module.generator.d.ts.map +1 -1
  108. package/dist/local-auth/core/generators/auth-module/auth-module.generator.js +1 -1
  109. package/dist/local-auth/core/generators/auth-module/auth-module.generator.js.map +1 -1
  110. package/dist/local-auth/core/generators/auth-module/generated/index.d.ts +2 -0
  111. package/dist/local-auth/core/generators/auth-module/generated/index.d.ts.map +1 -1
  112. package/dist/local-auth/core/generators/auth-module/generated/template-renderers.d.ts +1 -0
  113. package/dist/local-auth/core/generators/auth-module/generated/template-renderers.d.ts.map +1 -1
  114. package/dist/local-auth/core/generators/auth-module/generated/typed-templates.d.ts +1 -0
  115. package/dist/local-auth/core/generators/auth-module/generated/typed-templates.d.ts.map +1 -1
  116. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.js +1 -1
  117. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.js.map +1 -1
  118. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.ts +1 -1
  119. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.js +2 -2
  120. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.js.map +1 -1
  121. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.ts +2 -2
  122. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.d.ts.map +1 -1
  123. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.js +1 -0
  124. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.js.map +1 -1
  125. package/dist/local-auth/core/generators/auth-routes/generated/index.d.ts +722 -4
  126. package/dist/local-auth/core/generators/auth-routes/generated/index.d.ts.map +1 -1
  127. package/dist/local-auth/core/generators/auth-routes/generated/index.js +2 -0
  128. package/dist/local-auth/core/generators/auth-routes/generated/index.js.map +1 -1
  129. package/dist/local-auth/core/generators/auth-routes/generated/template-paths.d.ts +4 -0
  130. package/dist/local-auth/core/generators/auth-routes/generated/template-paths.d.ts.map +1 -1
  131. package/dist/local-auth/core/generators/auth-routes/generated/template-paths.js +4 -0
  132. package/dist/local-auth/core/generators/auth-routes/generated/template-paths.js.map +1 -1
  133. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.d.ts +4 -1
  134. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.d.ts.map +1 -1
  135. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.js +14 -0
  136. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.js.map +1 -1
  137. package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.d.ts +21 -0
  138. package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.d.ts.map +1 -0
  139. package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.js +30 -0
  140. package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.js.map +1 -0
  141. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.d.ts +1216 -34
  142. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.d.ts.map +1 -1
  143. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.js +70 -2
  144. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.js.map +1 -1
  145. package/dist/local-auth/core/generators/auth-routes/index.d.ts +2 -0
  146. package/dist/local-auth/core/generators/auth-routes/index.d.ts.map +1 -1
  147. package/dist/local-auth/core/generators/auth-routes/index.js +1 -0
  148. package/dist/local-auth/core/generators/auth-routes/index.js.map +1 -1
  149. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.d.ts +10 -0
  150. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.d.ts.map +1 -0
  151. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.js +11 -0
  152. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.js.map +1 -0
  153. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.ts +12 -0
  154. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.d.ts +2 -0
  155. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.d.ts.map +1 -0
  156. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.js +60 -0
  157. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.js.map +1 -0
  158. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.tsx +127 -0
  159. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.d.ts +1 -1
  160. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.d.ts.map +1 -1
  161. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.js +6 -11
  162. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.js.map +1 -1
  163. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.tsx +20 -19
  164. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.d.ts +1 -1
  165. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.d.ts.map +1 -1
  166. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.js +2 -2
  167. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.js.map +1 -1
  168. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.tsx +2 -3
  169. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.d.ts +7 -0
  170. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.d.ts.map +1 -0
  171. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.js +131 -0
  172. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.js.map +1 -0
  173. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.tsx +240 -0
  174. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.d.ts +7 -0
  175. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.d.ts.map +1 -0
  176. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.js +106 -0
  177. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.js.map +1 -0
  178. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.tsx +206 -0
  179. package/dist/local-auth/core/generators/index.d.ts +1 -0
  180. package/dist/local-auth/core/generators/index.d.ts.map +1 -1
  181. package/dist/local-auth/core/generators/index.js +1 -0
  182. package/dist/local-auth/core/generators/index.js.map +1 -1
  183. package/dist/local-auth/core/generators/seed-initial-user/generated/index.d.ts +12 -0
  184. package/dist/local-auth/core/generators/seed-initial-user/generated/index.d.ts.map +1 -1
  185. package/dist/local-auth/core/generators/seed-initial-user/generated/template-renderers.d.ts +6 -0
  186. package/dist/local-auth/core/generators/seed-initial-user/generated/template-renderers.d.ts.map +1 -1
  187. package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.d.ts +6 -0
  188. package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.d.ts.map +1 -1
  189. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.d.ts +6 -0
  190. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.d.ts.map +1 -1
  191. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.js +1 -1
  192. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.js.map +1 -1
  193. package/dist/local-auth/core/node.d.ts.map +1 -1
  194. package/dist/local-auth/core/node.js +11 -1
  195. package/dist/local-auth/core/node.js.map +1 -1
  196. package/dist/local-auth/core/schema/models.d.ts.map +1 -1
  197. package/dist/local-auth/core/schema/models.js +60 -0
  198. package/dist/local-auth/core/schema/models.js.map +1 -1
  199. package/dist/placeholder-auth/core/schema/plugin-definition.js +1 -1
  200. package/dist/placeholder-auth/core/schema/plugin-definition.js.map +1 -1
  201. package/dist/web/assets/{__federation_expose_auth0CoreCommon-DLSGXjCI.js → __federation_expose_auth0CoreCommon-DKJVe6Rd.js} +3 -3
  202. package/dist/web/assets/{__federation_expose_auth0CoreCommon-DLSGXjCI.js.map → __federation_expose_auth0CoreCommon-DKJVe6Rd.js.map} +1 -1
  203. package/dist/web/assets/{__federation_expose_auth0CoreWeb-C7FfhlmF.js → __federation_expose_auth0CoreWeb-CfhSWZsK.js} +5 -5
  204. package/dist/web/assets/{__federation_expose_auth0CoreWeb-C7FfhlmF.js.map → __federation_expose_auth0CoreWeb-CfhSWZsK.js.map} +1 -1
  205. package/dist/web/assets/{__federation_expose_authCoreCommon-BF58isGa.js → __federation_expose_authCoreCommon-D3-Gk9mI.js} +3 -3
  206. package/dist/web/assets/{__federation_expose_authCoreCommon-BF58isGa.js.map → __federation_expose_authCoreCommon-D3-Gk9mI.js.map} +1 -1
  207. package/dist/web/assets/{__federation_expose_authCoreWeb-DMq9M88g.js → __federation_expose_authCoreWeb-DZoAij9e.js} +6 -6
  208. package/dist/web/assets/{__federation_expose_authCoreWeb-DMq9M88g.js.map → __federation_expose_authCoreWeb-DZoAij9e.js.map} +1 -1
  209. package/dist/web/assets/{__federation_expose_local-authAdminCommon-sQw4q5YX.js → __federation_expose_local-authAdminCommon-BRHnF0Hn.js} +2 -2
  210. package/dist/web/assets/{__federation_expose_local-authAdminCommon-sQw4q5YX.js.map → __federation_expose_local-authAdminCommon-BRHnF0Hn.js.map} +1 -1
  211. package/dist/web/assets/{__federation_expose_local-authAdminWeb-9FbO89NR.js → __federation_expose_local-authAdminWeb-dYAIxuqC.js} +3 -3
  212. package/dist/web/assets/{__federation_expose_local-authAdminWeb-9FbO89NR.js.map → __federation_expose_local-authAdminWeb-dYAIxuqC.js.map} +1 -1
  213. package/dist/web/assets/{__federation_expose_local-authCoreCommon-CpUK09_4.js → __federation_expose_local-authCoreCommon-CIwvOx0d.js} +4 -4
  214. package/dist/web/assets/{__federation_expose_local-authCoreCommon-CpUK09_4.js.map → __federation_expose_local-authCoreCommon-CIwvOx0d.js.map} +1 -1
  215. package/dist/web/assets/{__federation_expose_local-authCoreWeb-Czp0GaY1.js → __federation_expose_local-authCoreWeb-Bwooi2qZ.js} +66 -6
  216. package/dist/web/assets/__federation_expose_local-authCoreWeb-Bwooi2qZ.js.map +1 -0
  217. package/dist/web/assets/{__federation_expose_placeholder-authCoreCommon-CFDDdOMo.js → __federation_expose_placeholder-authCoreCommon-gFDSzGjB.js} +3 -3
  218. package/dist/web/assets/{__federation_expose_placeholder-authCoreCommon-CFDDdOMo.js.map → __federation_expose_placeholder-authCoreCommon-gFDSzGjB.js.map} +1 -1
  219. package/dist/web/assets/{__federation_expose_placeholder-authCoreWeb-Bcn1_oDP.js → __federation_expose_placeholder-authCoreWeb-BZLwIkLk.js} +5 -5
  220. package/dist/web/assets/{__federation_expose_placeholder-authCoreWeb-Bcn1_oDP.js.map → __federation_expose_placeholder-authCoreWeb-BZLwIkLk.js.map} +1 -1
  221. package/dist/web/assets/{__federation_fn_import-DsXcpNlB.js → __federation_fn_import-pxYUpmb_.js} +2 -2
  222. package/dist/web/assets/{__federation_fn_import-DsXcpNlB.js.map → __federation_fn_import-pxYUpmb_.js.map} +1 -1
  223. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/{web-zqe3PPcn.js → web-BXi2UCP-.js} +7 -7
  224. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/web-BXi2UCP-.js.map +1 -0
  225. package/dist/web/assets/__federation_shared_@baseplate-dev/{project-builder-lib-CmgMfkI5.js → project-builder-lib-O0clDXMb.js} +7137 -136
  226. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib-O0clDXMb.js.map +1 -0
  227. package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-BpuFQk6s.js +52536 -0
  228. package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-BpuFQk6s.js.map +1 -0
  229. package/dist/web/assets/__federation_shared_@baseplate-dev/{utils-BO5VHrCf.js → utils-UiZ-8JBg.js} +5 -6
  230. package/dist/web/assets/__federation_shared_@baseplate-dev/utils-UiZ-8JBg.js.map +1 -0
  231. package/dist/web/assets/__federation_shared_@tanstack/{react-router-CNzDweD5.js → react-router-BPEAtEJI.js} +1069 -746
  232. package/dist/web/assets/__federation_shared_@tanstack/react-router-BPEAtEJI.js.map +1 -0
  233. package/dist/web/assets/{get-auth-plugin-definition-BV2O8wTa.js → get-auth-plugin-definition-DPsrvQbo.js} +2 -2
  234. package/dist/web/assets/{get-auth-plugin-definition-BV2O8wTa.js.map → get-auth-plugin-definition-DPsrvQbo.js.map} +1 -1
  235. package/dist/web/assets/{index-BL7fotl7.js → index-CSfs0UAV.js} +2 -2
  236. package/dist/web/assets/{index-BL7fotl7.js.map → index-CSfs0UAV.js.map} +1 -1
  237. package/dist/web/assets/{index.esm-B4RpOlq_.js → index.esm-BoRQu8mM.js} +2 -2
  238. package/dist/web/assets/{index.esm-B4RpOlq_.js.map → index.esm-BoRQu8mM.js.map} +1 -1
  239. package/dist/web/assets/{model-merger-BwRNqcBu.js → model-merger-CdjliK9v.js} +80 -23
  240. package/dist/web/assets/model-merger-CdjliK9v.js.map +1 -0
  241. package/dist/web/assets/{model-names-CEoSIalq.js → model-names-DrcaRxt1.js} +6 -2
  242. package/dist/web/assets/{model-names-CEoSIalq.js.map → model-names-DrcaRxt1.js.map} +1 -1
  243. package/dist/web/assets/{plugin-definition-CHD5r-h7.js → plugin-definition-BG6tu7Hh.js} +3 -3
  244. package/dist/web/assets/plugin-definition-BG6tu7Hh.js.map +1 -0
  245. package/dist/web/assets/{plugin-definition-DA9rJBcS.js → plugin-definition-BMYDEj3f.js} +3 -3
  246. package/dist/web/assets/plugin-definition-BMYDEj3f.js.map +1 -0
  247. package/dist/web/assets/{plugin-definition-B9d2CoQL.js → plugin-definition-DRhTuQas.js} +2 -2
  248. package/dist/web/assets/{plugin-definition-B9d2CoQL.js.map → plugin-definition-DRhTuQas.js.map} +1 -1
  249. package/dist/web/assets/{plugin-definition-BMTsmwyH.js → plugin-definition-j1nJ0FFI.js} +2 -2
  250. package/dist/web/assets/{plugin-definition-BMTsmwyH.js.map → plugin-definition-j1nJ0FFI.js.map} +1 -1
  251. package/dist/web/assets/{react-B9vhIZMy.js → react-CBhSWxr_.js} +2 -2
  252. package/dist/web/assets/{react-B9vhIZMy.js.map → react-CBhSWxr_.js.map} +1 -1
  253. package/dist/web/assets/remoteEntry.js +20 -20
  254. package/dist/web/assets/{style-DZ-aOCkd.css → style-DiK_rD1L.css} +1 -1
  255. package/dist/web/assets/{styles-CEm5K1iU.js → styles-BbHyE-2h.js} +3 -3
  256. package/dist/web/assets/{styles-CEm5K1iU.js.map → styles-BbHyE-2h.js.map} +1 -1
  257. package/dist/web/index.html +1 -1
  258. package/package.json +21 -19
  259. package/dist/web/assets/__federation_expose_local-authCoreWeb-Czp0GaY1.js.map +0 -1
  260. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/web-zqe3PPcn.js.map +0 -1
  261. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib-CmgMfkI5.js.map +0 -1
  262. package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-D1Dayhn9.js +0 -24082
  263. package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-D1Dayhn9.js.map +0 -1
  264. package/dist/web/assets/__federation_shared_@baseplate-dev/utils-BO5VHrCf.js.map +0 -1
  265. package/dist/web/assets/__federation_shared_@tanstack/react-router-CNzDweD5.js.map +0 -1
  266. package/dist/web/assets/model-merger-BwRNqcBu.js.map +0 -1
  267. package/dist/web/assets/plugin-definition-CHD5r-h7.js.map +0 -1
  268. package/dist/web/assets/plugin-definition-DA9rJBcS.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI3C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAC"}
@@ -1,7 +1,9 @@
1
1
  import { AUTH_CORE_AUTH_ROUTES_PATHS } from './template-paths.js';
2
2
  import { AUTH_CORE_AUTH_ROUTES_RENDERERS } from './template-renderers.js';
3
+ import { AUTH_CORE_AUTH_ROUTES_IMPORTS } from './ts-import-providers.js';
3
4
  import { AUTH_CORE_AUTH_ROUTES_TEMPLATES } from './typed-templates.js';
4
5
  export const AUTH_CORE_AUTH_ROUTES_GENERATED = {
6
+ imports: AUTH_CORE_AUTH_ROUTES_IMPORTS,
5
7
  paths: AUTH_CORE_AUTH_ROUTES_PATHS,
6
8
  renderers: AUTH_CORE_AUTH_ROUTES_RENDERERS,
7
9
  templates: AUTH_CORE_AUTH_ROUTES_TEMPLATES,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,+BAA+B,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,EAAE,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAEvE,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,KAAK,EAAE,2BAA2B;IAClC,SAAS,EAAE,+BAA+B;IAC1C,SAAS,EAAE,+BAA+B;CAC3C,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,+BAA+B,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,EAAE,6BAA6B,EAAE,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAEvE,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,OAAO,EAAE,6BAA6B;IACtC,KAAK,EAAE,2BAA2B;IAClC,SAAS,EAAE,+BAA+B;IAC1C,SAAS,EAAE,+BAA+B;CAC3C,CAAC"}
@@ -1,7 +1,11 @@
1
1
  export interface AuthCoreAuthRoutesPaths {
2
+ constants: string;
3
+ forgotPassword: string;
2
4
  login: string;
3
5
  register: string;
6
+ resetPassword: string;
4
7
  route: string;
8
+ verifyEmail: string;
5
9
  }
6
10
  export declare const AUTH_CORE_AUTH_ROUTES_PATHS: {
7
11
  provider: import("@baseplate-dev/sync").ProviderType<AuthCoreAuthRoutesPaths>;
@@ -1 +1 @@
1
- {"version":3,"file":"template-paths.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-paths.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACf;AAwBD,eAAO,MAAM,2BAA2B;;;;;;;CAGvC,CAAC"}
1
+ {"version":3,"file":"template-paths.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-paths.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;CACrB;AA4BD,eAAO,MAAM,2BAA2B;;;;;;;CAGvC,CAAC"}
@@ -9,9 +9,13 @@ const authCoreAuthRoutesPathsTask = createGeneratorTask({
9
9
  return {
10
10
  providers: {
11
11
  authCoreAuthRoutesPaths: {
12
+ constants: `${routesRoot}/auth_/-constants.ts`,
13
+ forgotPassword: `${routesRoot}/auth_/forgot-password.tsx`,
12
14
  login: `${routesRoot}/auth_/login.tsx`,
13
15
  register: `${routesRoot}/auth_/register.tsx`,
16
+ resetPassword: `${routesRoot}/auth_/reset-password.tsx`,
14
17
  route: `${routesRoot}/auth_/route.tsx`,
18
+ verifyEmail: `${routesRoot}/auth_/verify-email.tsx`,
15
19
  },
16
20
  },
17
21
  };
@@ -1 +1 @@
1
- {"version":3,"file":"template-paths.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-paths.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAQ9E,MAAM,uBAAuB,GAAG,kBAAkB,CAChD,6BAA6B,CAC9B,CAAC;AAEF,MAAM,2BAA2B,GAAG,mBAAmB,CAAC;IACtD,YAAY,EAAE,EAAE,WAAW,EAAE,mBAAmB,EAAE;IAClD,OAAO,EAAE,EAAE,uBAAuB,EAAE,uBAAuB,CAAC,MAAM,EAAE,EAAE;IACtE,GAAG,CAAC,EAAE,WAAW,EAAE;QACjB,MAAM,UAAU,GAAG,WAAW,CAAC,qBAAqB,EAAE,CAAC;QAEvD,OAAO;YACL,SAAS,EAAE;gBACT,uBAAuB,EAAE;oBACvB,KAAK,EAAE,GAAG,UAAU,kBAAkB;oBACtC,QAAQ,EAAE,GAAG,UAAU,qBAAqB;oBAC5C,KAAK,EAAE,GAAG,UAAU,kBAAkB;iBACvC;aACF;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,QAAQ,EAAE,uBAAuB;IACjC,IAAI,EAAE,2BAA2B;CAClC,CAAC"}
1
+ {"version":3,"file":"template-paths.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-paths.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAY9E,MAAM,uBAAuB,GAAG,kBAAkB,CAChD,6BAA6B,CAC9B,CAAC;AAEF,MAAM,2BAA2B,GAAG,mBAAmB,CAAC;IACtD,YAAY,EAAE,EAAE,WAAW,EAAE,mBAAmB,EAAE;IAClD,OAAO,EAAE,EAAE,uBAAuB,EAAE,uBAAuB,CAAC,MAAM,EAAE,EAAE;IACtE,GAAG,CAAC,EAAE,WAAW,EAAE;QACjB,MAAM,UAAU,GAAG,WAAW,CAAC,qBAAqB,EAAE,CAAC;QAEvD,OAAO;YACL,SAAS,EAAE;gBACT,uBAAuB,EAAE;oBACvB,SAAS,EAAE,GAAG,UAAU,sBAAsB;oBAC9C,cAAc,EAAE,GAAG,UAAU,4BAA4B;oBACzD,KAAK,EAAE,GAAG,UAAU,kBAAkB;oBACtC,QAAQ,EAAE,GAAG,UAAU,qBAAqB;oBAC5C,aAAa,EAAE,GAAG,UAAU,2BAA2B;oBACvD,KAAK,EAAE,GAAG,UAAU,kBAAkB;oBACtC,WAAW,EAAE,GAAG,UAAU,yBAAyB;iBACpD;aACF;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,QAAQ,EAAE,uBAAuB;IACjC,IAAI,EAAE,2BAA2B;CAClC,CAAC"}
@@ -1,10 +1,13 @@
1
- import type { RenderTsTemplateGroupActionInput } from '@baseplate-dev/core-generators';
1
+ import type { RenderTsTemplateFileActionInput, RenderTsTemplateGroupActionInput } from '@baseplate-dev/core-generators';
2
2
  import type { BuilderAction } from '@baseplate-dev/sync';
3
3
  import { AUTH_CORE_AUTH_ROUTES_TEMPLATES } from './typed-templates.js';
4
4
  export interface AuthCoreAuthRoutesRenderers {
5
5
  mainGroup: {
6
6
  render: (options: Omit<RenderTsTemplateGroupActionInput<typeof AUTH_CORE_AUTH_ROUTES_TEMPLATES.mainGroup>, 'importMapProviders' | 'group' | 'paths' | 'generatorPaths'>) => BuilderAction;
7
7
  };
8
+ verifyEmail: {
9
+ render: (options: Omit<RenderTsTemplateFileActionInput<typeof AUTH_CORE_AUTH_ROUTES_TEMPLATES.verifyEmail>, 'destination' | 'importMapProviders' | 'template' | 'generatorPaths'>) => BuilderAction;
10
+ };
8
11
  }
9
12
  export declare const AUTH_CORE_AUTH_ROUTES_RENDERERS: {
10
13
  provider: import("@baseplate-dev/sync").ProviderType<AuthCoreAuthRoutesRenderers>;
@@ -1 +1 @@
1
- {"version":3,"file":"template-renderers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-renderers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,gCAAgC,CAAC;AACvF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAczD,OAAO,EAAE,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAEvE,MAAM,WAAW,2BAA2B;IAC1C,SAAS,EAAE;QACT,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,gCAAgC,CAC9B,OAAO,+BAA+B,CAAC,SAAS,CACjD,EACD,oBAAoB,GAAG,OAAO,GAAG,OAAO,GAAG,gBAAgB,CAC5D,KACE,aAAa,CAAC;KACpB,CAAC;CACH;AAqDD,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3C,CAAC"}
1
+ {"version":3,"file":"template-renderers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/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;AAczD,OAAO,EAAE,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAEvE,MAAM,WAAW,2BAA2B;IAC1C,SAAS,EAAE;QACT,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,gCAAgC,CAC9B,OAAO,+BAA+B,CAAC,SAAS,CACjD,EACD,oBAAoB,GAAG,OAAO,GAAG,OAAO,GAAG,gBAAgB,CAC5D,KACE,aAAa,CAAC;KACpB,CAAC;IACF,WAAW,EAAE;QACX,MAAM,EAAE,CACN,OAAO,EAAE,IAAI,CACX,+BAA+B,CAC7B,OAAO,+BAA+B,CAAC,WAAW,CACnD,EACD,aAAa,GAAG,oBAAoB,GAAG,UAAU,GAAG,gBAAgB,CACrE,KACE,aAAa,CAAC;KACpB,CAAC;CACH;AAoED,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3C,CAAC"}
@@ -33,6 +33,20 @@ const authCoreAuthRoutesRenderersTask = createGeneratorTask({
33
33
  reactErrorImports,
34
34
  reactSessionImports,
35
35
  },
36
+ generatorPaths: paths,
37
+ ...options,
38
+ }),
39
+ },
40
+ verifyEmail: {
41
+ render: (options) => typescriptFile.renderTemplateFile({
42
+ template: AUTH_CORE_AUTH_ROUTES_TEMPLATES.verifyEmail,
43
+ destination: paths.verifyEmail,
44
+ importMapProviders: {
45
+ apolloErrorImports,
46
+ graphqlImports,
47
+ reactComponentsImports,
48
+ reactErrorImports,
49
+ },
36
50
  ...options,
37
51
  }),
38
52
  },
@@ -1 +1 @@
1
- {"version":3,"file":"template-renderers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-renderers.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EACL,0BAA0B,EAC1B,sBAAsB,EACtB,8BAA8B,EAC9B,yBAAyB,GAC1B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAE9E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gFAAgF,CAAC;AAE7H,OAAO,EAAE,2BAA2B,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAevE,MAAM,2BAA2B,GAC/B,kBAAkB,CAChB,iCAAiC,CAClC,CAAC;AAEJ,MAAM,+BAA+B,GAAG,mBAAmB,CAAC;IAC1D,YAAY,EAAE;QACZ,kBAAkB,EAAE,0BAA0B;QAC9C,cAAc,EAAE,sBAAsB;QACtC,KAAK,EAAE,2BAA2B,CAAC,QAAQ;QAC3C,sBAAsB,EAAE,8BAA8B;QACtD,iBAAiB,EAAE,yBAAyB;QAC5C,mBAAmB,EAAE,2BAA2B;QAChD,cAAc,EAAE,sBAAsB;KACvC;IACD,OAAO,EAAE;QACP,2BAA2B,EAAE,2BAA2B,CAAC,MAAM,EAAE;KAClE;IACD,GAAG,CAAC,EACF,kBAAkB,EAClB,cAAc,EACd,KAAK,EACL,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,cAAc,GACf;QACC,OAAO;YACL,SAAS,EAAE;gBACT,2BAA2B,EAAE;oBAC3B,SAAS,EAAE;wBACT,MAAM,EAAE,CAAC,OAAO,EAAE,EAAE,CAClB,cAAc,CAAC,mBAAmB,CAAC;4BACjC,KAAK,EAAE,+BAA+B,CAAC,SAAS;4BAChD,KAAK;4BACL,kBAAkB,EAAE;gCAClB,kBAAkB;gCAClB,cAAc;gCACd,sBAAsB;gCACtB,iBAAiB;gCACjB,mBAAmB;6BACpB;4BACD,GAAG,OAAO;yBACX,CAAC;qBACL;iBACF;aACF;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,QAAQ,EAAE,2BAA2B;IACrC,IAAI,EAAE,+BAA+B;CACtC,CAAC"}
1
+ {"version":3,"file":"template-renderers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/template-renderers.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EACL,0BAA0B,EAC1B,sBAAsB,EACtB,8BAA8B,EAC9B,yBAAyB,GAC1B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAE9E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gFAAgF,CAAC;AAE7H,OAAO,EAAE,2BAA2B,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAyBvE,MAAM,2BAA2B,GAC/B,kBAAkB,CAChB,iCAAiC,CAClC,CAAC;AAEJ,MAAM,+BAA+B,GAAG,mBAAmB,CAAC;IAC1D,YAAY,EAAE;QACZ,kBAAkB,EAAE,0BAA0B;QAC9C,cAAc,EAAE,sBAAsB;QACtC,KAAK,EAAE,2BAA2B,CAAC,QAAQ;QAC3C,sBAAsB,EAAE,8BAA8B;QACtD,iBAAiB,EAAE,yBAAyB;QAC5C,mBAAmB,EAAE,2BAA2B;QAChD,cAAc,EAAE,sBAAsB;KACvC;IACD,OAAO,EAAE;QACP,2BAA2B,EAAE,2BAA2B,CAAC,MAAM,EAAE;KAClE;IACD,GAAG,CAAC,EACF,kBAAkB,EAClB,cAAc,EACd,KAAK,EACL,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,cAAc,GACf;QACC,OAAO;YACL,SAAS,EAAE;gBACT,2BAA2B,EAAE;oBAC3B,SAAS,EAAE;wBACT,MAAM,EAAE,CAAC,OAAO,EAAE,EAAE,CAClB,cAAc,CAAC,mBAAmB,CAAC;4BACjC,KAAK,EAAE,+BAA+B,CAAC,SAAS;4BAChD,KAAK;4BACL,kBAAkB,EAAE;gCAClB,kBAAkB;gCAClB,cAAc;gCACd,sBAAsB;gCACtB,iBAAiB;gCACjB,mBAAmB;6BACpB;4BACD,cAAc,EAAE,KAAK;4BACrB,GAAG,OAAO;yBACX,CAAC;qBACL;oBACD,WAAW,EAAE;wBACX,MAAM,EAAE,CAAC,OAAO,EAAE,EAAE,CAClB,cAAc,CAAC,kBAAkB,CAAC;4BAChC,QAAQ,EAAE,+BAA+B,CAAC,WAAW;4BACrD,WAAW,EAAE,KAAK,CAAC,WAAW;4BAC9B,kBAAkB,EAAE;gCAClB,kBAAkB;gCAClB,cAAc;gCACd,sBAAsB;gCACtB,iBAAiB;6BAClB;4BACD,GAAG,OAAO;yBACX,CAAC;qBACL;iBACF;aACF;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,QAAQ,EAAE,2BAA2B;IACrC,IAAI,EAAE,+BAA+B;CACtC,CAAC"}
@@ -0,0 +1,21 @@
1
+ import type { TsImportMapProviderFromSchema } from '@baseplate-dev/core-generators';
2
+ export declare const authRoutesImportsSchema: {
3
+ PASSWORD_MAX_LENGTH: {};
4
+ PASSWORD_MIN_LENGTH: {};
5
+ };
6
+ export type AuthRoutesImportsProvider = TsImportMapProviderFromSchema<typeof authRoutesImportsSchema>;
7
+ export declare const authRoutesImportsProvider: import("@baseplate-dev/sync").ProviderType<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
8
+ PASSWORD_MAX_LENGTH: {};
9
+ PASSWORD_MIN_LENGTH: {};
10
+ }>>;
11
+ export declare const AUTH_CORE_AUTH_ROUTES_IMPORTS: {
12
+ task: import("@baseplate-dev/sync").GeneratorTask<{
13
+ authRoutesImports: import("@baseplate-dev/sync").ProviderExport<import("@baseplate-dev/core-generators").InferTsImportMapFromSchema<{
14
+ PASSWORD_MAX_LENGTH: {};
15
+ PASSWORD_MIN_LENGTH: {};
16
+ }>>;
17
+ }, {
18
+ paths: import("@baseplate-dev/sync").ProviderType<import("./template-paths.js").AuthCoreAuthRoutesPaths>;
19
+ }, undefined>;
20
+ };
21
+ //# sourceMappingURL=ts-import-providers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ts-import-providers.d.ts","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/generated/ts-import-providers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAcpF,eAAO,MAAM,uBAAuB;;;CAGlC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,6BAA6B,CACnE,OAAO,uBAAuB,CAC/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;GACwC,CAAC;AAqB/E,eAAO,MAAM,6BAA6B;;;;;;;;;CAEzC,CAAC"}
@@ -0,0 +1,30 @@
1
+ import { createTsImportMap, createTsImportMapSchema, packageScope, } from '@baseplate-dev/core-generators';
2
+ import { createGeneratorTask, createReadOnlyProviderType, } from '@baseplate-dev/sync';
3
+ import { AUTH_CORE_AUTH_ROUTES_PATHS } from './template-paths.js';
4
+ export const authRoutesImportsSchema = createTsImportMapSchema({
5
+ PASSWORD_MAX_LENGTH: {},
6
+ PASSWORD_MIN_LENGTH: {},
7
+ });
8
+ export const authRoutesImportsProvider = createReadOnlyProviderType('auth-routes-imports');
9
+ const authCoreAuthRoutesImportsTask = createGeneratorTask({
10
+ dependencies: {
11
+ paths: AUTH_CORE_AUTH_ROUTES_PATHS.provider,
12
+ },
13
+ exports: {
14
+ authRoutesImports: authRoutesImportsProvider.export(packageScope),
15
+ },
16
+ run({ paths }) {
17
+ return {
18
+ providers: {
19
+ authRoutesImports: createTsImportMap(authRoutesImportsSchema, {
20
+ PASSWORD_MAX_LENGTH: paths.constants,
21
+ PASSWORD_MIN_LENGTH: paths.constants,
22
+ }),
23
+ },
24
+ };
25
+ },
26
+ });
27
+ export const AUTH_CORE_AUTH_ROUTES_IMPORTS = {
28
+ task: authCoreAuthRoutesImportsTask,
29
+ };
30
+ //# sourceMappingURL=ts-import-providers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ts-import-providers.js","sourceRoot":"","sources":["../../../../../../src/local-auth/core/generators/auth-routes/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,2BAA2B,EAAE,MAAM,qBAAqB,CAAC;AAElE,MAAM,CAAC,MAAM,uBAAuB,GAAG,uBAAuB,CAAC;IAC7D,mBAAmB,EAAE,EAAE;IACvB,mBAAmB,EAAE,EAAE;CACxB,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,yBAAyB,GACpC,0BAA0B,CAA4B,qBAAqB,CAAC,CAAC;AAE/E,MAAM,6BAA6B,GAAG,mBAAmB,CAAC;IACxD,YAAY,EAAE;QACZ,KAAK,EAAE,2BAA2B,CAAC,QAAQ;KAC5C;IACD,OAAO,EAAE;QACP,iBAAiB,EAAE,yBAAyB,CAAC,MAAM,CAAC,YAAY,CAAC;KAClE;IACD,GAAG,CAAC,EAAE,KAAK,EAAE;QACX,OAAO;YACL,SAAS,EAAE;gBACT,iBAAiB,EAAE,iBAAiB,CAAC,uBAAuB,EAAE;oBAC5D,mBAAmB,EAAE,KAAK,CAAC,SAAS;oBACpC,mBAAmB,EAAE,KAAK,CAAC,SAAS;iBACrC,CAAC;aACH;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG;IAC3C,IAAI,EAAE,6BAA6B;CACpC,CAAC"}