@baseplate-dev/plugin-auth 1.0.7 → 1.0.8

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 (834) hide show
  1. package/CHANGELOG.md +258 -8
  2. package/dist/auth/core/common.js +2 -3
  3. package/dist/auth/core/components/auth-definition-editor.js +9 -2
  4. package/dist/auth/core/components/role-editor-form/role-editor-form.js +2 -0
  5. package/dist/auth/core/node.js +1 -0
  6. package/dist/auth/core/schema/migrations.d.ts +3 -0
  7. package/dist/auth/core/schema/migrations.js +54 -0
  8. package/dist/auth/core/schema/plugin-definition.d.ts +5 -0
  9. package/dist/auth/core/schema/plugin-definition.js +4 -0
  10. package/dist/auth/core/schema/roles/constants.js +9 -0
  11. package/dist/auth/core/schema/roles/schema.d.ts +8 -0
  12. package/dist/auth/core/schema/roles/schema.js +1 -0
  13. package/dist/auth/core/web.js +31 -2
  14. package/dist/better-auth/admin/common.d.ts +5 -0
  15. package/dist/better-auth/admin/common.js +29 -0
  16. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/admin-crud-manage-roles-action.generator.d.ts +510 -0
  17. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/admin-crud-manage-roles-action.generator.js +123 -0
  18. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/index.d.ts +510 -0
  19. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/index.js +9 -0
  20. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/template-paths.d.ts +12 -0
  21. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/template-paths.js +24 -0
  22. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/template-renderers.d.ts +260 -0
  23. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/template-renderers.js +41 -0
  24. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/typed-templates.d.ts +249 -0
  25. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/generated/typed-templates.js +20 -0
  26. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/index.d.ts +2 -0
  27. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/index.js +2 -0
  28. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.d.ts +22 -0
  29. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.js +78 -0
  30. package/dist/better-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.tsx +162 -0
  31. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/admin-crud-reset-password-action.generator.d.ts +509 -0
  32. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/admin-crud-reset-password-action.generator.js +114 -0
  33. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/index.d.ts +510 -0
  34. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/index.js +9 -0
  35. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/template-paths.d.ts +12 -0
  36. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/template-paths.js +24 -0
  37. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/template-renderers.d.ts +260 -0
  38. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/template-renderers.js +41 -0
  39. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/typed-templates.d.ts +495 -0
  40. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/generated/typed-templates.js +22 -0
  41. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/index.d.ts +2 -0
  42. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/index.js +2 -0
  43. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.d.ts +22 -0
  44. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.js +89 -0
  45. package/dist/better-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.tsx +171 -0
  46. package/dist/better-auth/admin/generators/admin-crud-roles-column/admin-crud-roles-column.generator.d.ts +244 -0
  47. package/dist/better-auth/admin/generators/admin-crud-roles-column/admin-crud-roles-column.generator.js +54 -0
  48. package/dist/better-auth/admin/generators/admin-crud-roles-column/index.d.ts +2 -0
  49. package/dist/better-auth/admin/generators/admin-crud-roles-column/index.js +2 -0
  50. package/dist/better-auth/admin/node.d.ts +5 -0
  51. package/dist/better-auth/admin/node.js +57 -0
  52. package/dist/better-auth/admin/schema/manage-role-action.d.ts +12 -0
  53. package/dist/better-auth/admin/schema/manage-role-action.js +6 -0
  54. package/dist/better-auth/admin/schema/reset-password-action.d.ts +12 -0
  55. package/dist/better-auth/admin/schema/reset-password-action.js +6 -0
  56. package/dist/better-auth/admin/schema/roles-column.d.ts +9 -0
  57. package/dist/better-auth/admin/schema/roles-column.js +6 -0
  58. package/dist/better-auth/admin/web.d.ts +5 -0
  59. package/dist/better-auth/admin/web.js +39 -0
  60. package/dist/better-auth/constants/packages.d.ts +1 -1
  61. package/dist/better-auth/constants/packages.js +1 -1
  62. package/dist/better-auth/core/common.js +5 -2
  63. package/dist/better-auth/core/components/better-auth-definition-editor.js +17 -5
  64. package/dist/better-auth/core/node.js +21 -4
  65. package/dist/better-auth/core/schema/models.d.ts +1 -1
  66. package/dist/better-auth/core/schema/models.js +25 -10
  67. package/dist/better-auth/core/schema/plugin-definition.d.ts +4 -1
  68. package/dist/better-auth/core/schema/plugin-definition.js +7 -2
  69. package/dist/better-auth/core/schema/schema-issue-checker.d.ts +3 -0
  70. package/dist/better-auth/core/schema/schema-issue-checker.js +21 -0
  71. package/dist/better-auth/core/web.js +15 -2
  72. package/dist/better-auth/generators/fastify/better-auth-admin-module/better-auth-admin-module.generator.d.ts +73 -0
  73. package/dist/better-auth/generators/fastify/better-auth-admin-module/better-auth-admin-module.generator.js +56 -0
  74. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/index.d.ts +111 -0
  75. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/index.js +11 -0
  76. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/template-paths.d.ts +13 -0
  77. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/template-paths.js +25 -0
  78. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/template-renderers.d.ts +56 -0
  79. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/template-renderers.js +57 -0
  80. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/ts-import-providers.d.ts +21 -0
  81. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/ts-import-providers.js +30 -0
  82. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/typed-templates.d.ts +47 -0
  83. package/dist/better-auth/generators/fastify/better-auth-admin-module/generated/typed-templates.js +33 -0
  84. package/dist/better-auth/generators/fastify/better-auth-admin-module/index.d.ts +4 -0
  85. package/dist/better-auth/generators/fastify/better-auth-admin-module/index.js +3 -0
  86. package/dist/better-auth/generators/fastify/better-auth-admin-module/templates/module/schema/admin-auth.mutations.ts +48 -0
  87. package/dist/better-auth/generators/fastify/better-auth-admin-module/templates/module/services/admin-auth.service.ts +106 -0
  88. package/dist/better-auth/generators/fastify/better-auth-email-templates/better-auth-email-templates.generator.d.ts +44 -0
  89. package/dist/better-auth/generators/fastify/better-auth-email-templates/better-auth-email-templates.generator.js +48 -0
  90. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/index.d.ts +100 -0
  91. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/index.js +9 -0
  92. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/template-paths.d.ts +14 -0
  93. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/template-paths.js +26 -0
  94. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/template-renderers.d.ts +42 -0
  95. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/template-renderers.js +59 -0
  96. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/typed-templates.d.ts +63 -0
  97. package/dist/better-auth/generators/fastify/better-auth-email-templates/generated/typed-templates.js +42 -0
  98. package/dist/better-auth/generators/fastify/better-auth-email-templates/index.d.ts +2 -0
  99. package/dist/better-auth/generators/fastify/better-auth-email-templates/index.js +2 -0
  100. package/dist/better-auth/generators/fastify/better-auth-email-templates/templates/src/emails/auth/account-verification.email.tsx +55 -0
  101. package/dist/better-auth/generators/fastify/better-auth-email-templates/templates/src/emails/auth/password-changed.email.tsx +44 -0
  102. package/dist/better-auth/generators/fastify/better-auth-email-templates/templates/src/emails/auth/password-reset.email.tsx +55 -0
  103. package/dist/better-auth/generators/fastify/better-auth-module/better-auth-module.generator.d.ts +75 -9
  104. package/dist/better-auth/generators/fastify/better-auth-module/better-auth-module.generator.js +38 -4
  105. package/dist/better-auth/generators/fastify/better-auth-module/generated/index.d.ts +100 -8
  106. package/dist/better-auth/generators/fastify/better-auth-module/generated/template-renderers.d.ts +44 -1
  107. package/dist/better-auth/generators/fastify/better-auth-module/generated/template-renderers.js +9 -2
  108. package/dist/better-auth/generators/fastify/better-auth-module/generated/ts-import-providers.d.ts +24 -6
  109. package/dist/better-auth/generators/fastify/better-auth-module/generated/ts-import-providers.js +8 -5
  110. package/dist/better-auth/generators/fastify/better-auth-module/generated/typed-templates.d.ts +48 -3
  111. package/dist/better-auth/generators/fastify/better-auth-module/generated/typed-templates.js +17 -6
  112. package/dist/better-auth/generators/fastify/better-auth-module/templates/module/plugins/better-auth.plugin.ts +7 -4
  113. package/dist/better-auth/generators/fastify/better-auth-module/templates/module/services/auth.ts +86 -41
  114. package/dist/better-auth/generators/fastify/better-auth-module/templates/module/services/user-session.service.ts +58 -46
  115. package/dist/better-auth/generators/fastify/index.d.ts +3 -0
  116. package/dist/better-auth/generators/fastify/index.js +3 -0
  117. package/dist/better-auth/generators/fastify/seed-initial-user/generated/index.d.ts +66 -0
  118. package/dist/better-auth/generators/fastify/seed-initial-user/generated/index.js +9 -0
  119. package/dist/better-auth/generators/fastify/seed-initial-user/generated/template-paths.d.ts +12 -0
  120. package/dist/better-auth/generators/fastify/seed-initial-user/generated/template-paths.js +24 -0
  121. package/dist/better-auth/generators/fastify/seed-initial-user/generated/template-renderers.d.ts +38 -0
  122. package/dist/better-auth/generators/fastify/seed-initial-user/generated/template-renderers.js +43 -0
  123. package/dist/better-auth/generators/fastify/seed-initial-user/generated/typed-templates.d.ts +27 -0
  124. package/dist/better-auth/generators/fastify/seed-initial-user/generated/typed-templates.js +18 -0
  125. package/dist/better-auth/generators/fastify/seed-initial-user/index.d.ts +2 -0
  126. package/dist/better-auth/generators/fastify/seed-initial-user/index.js +2 -0
  127. package/dist/better-auth/generators/fastify/seed-initial-user/seed-initial-user.generator.d.ts +49 -0
  128. package/dist/better-auth/generators/fastify/seed-initial-user/seed-initial-user.generator.js +64 -0
  129. package/dist/better-auth/generators/fastify/seed-initial-user/templates/src/prisma/seed-initial-user.ts +64 -0
  130. package/dist/better-auth/generators/react/better-auth-pages/better-auth-pages.generator.d.ts +26 -15
  131. package/dist/better-auth/generators/react/better-auth-pages/generated/index.d.ts +812 -44
  132. package/dist/better-auth/generators/react/better-auth-pages/generated/template-paths.d.ts +3 -0
  133. package/dist/better-auth/generators/react/better-auth-pages/generated/template-paths.js +3 -0
  134. package/dist/better-auth/generators/react/better-auth-pages/generated/template-renderers.d.ts +26 -15
  135. package/dist/better-auth/generators/react/better-auth-pages/generated/typed-templates.d.ts +1600 -86
  136. package/dist/better-auth/generators/react/better-auth-pages/generated/typed-templates.js +49 -1
  137. package/dist/better-auth/generators/react/better-auth-pages/templates/routes/forgot-password.tsx +133 -0
  138. package/dist/better-auth/generators/react/better-auth-pages/templates/routes/login.tsx +9 -1
  139. package/dist/better-auth/generators/react/better-auth-pages/templates/routes/register.tsx +5 -1
  140. package/dist/better-auth/generators/react/better-auth-pages/templates/routes/reset-password.tsx +177 -0
  141. package/dist/better-auth/generators/react/better-auth-pages/templates/routes/verify-email.tsx +109 -0
  142. package/dist/better-auth/generators/react/react-better-auth/generated/index.d.ts +52 -30
  143. package/dist/better-auth/generators/react/react-better-auth/generated/template-renderers.d.ts +26 -15
  144. package/dist/better-auth/generators/react/react-better-auth/generated/typed-templates.d.ts +26 -15
  145. package/dist/better-auth/generators/react/react-better-auth/react-better-auth.generator.d.ts +26 -15
  146. package/dist/better-auth/plugin.json +1 -1
  147. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/admin-crud-manage-roles-action.generator.d.ts +52 -30
  148. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/index.d.ts +52 -30
  149. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/template-renderers.d.ts +26 -15
  150. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/typed-templates.d.ts +26 -15
  151. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.js +1 -1
  152. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.tsx +1 -3
  153. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/admin-crud-reset-password-action.generator.d.ts +52 -30
  154. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/index.d.ts +52 -30
  155. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/template-renderers.d.ts +26 -15
  156. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/typed-templates.d.ts +52 -30
  157. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.js +1 -1
  158. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.tsx +1 -1
  159. package/dist/local-auth/admin/generators/admin-crud-roles-column/admin-crud-roles-column.generator.d.ts +26 -15
  160. package/dist/local-auth/admin/node.js +1 -1
  161. package/dist/local-auth/core/common.js +5 -2
  162. package/dist/local-auth/core/components/local-auth-definition-editor.js +9 -5
  163. package/dist/local-auth/core/generators/auth-apollo/auth-apollo.generator.d.ts +0 -1
  164. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.d.ts +10 -24
  165. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.js +7 -1
  166. package/dist/local-auth/core/generators/auth-email-password/generated/index.d.ts +38 -70
  167. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts +9 -24
  168. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js +2 -8
  169. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts +49 -71
  170. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.js +6 -7
  171. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.js +2 -1
  172. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.ts +2 -1
  173. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/user-password.mutations.js +5 -1
  174. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/user-password.mutations.ts +5 -1
  175. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.d.ts +2 -2
  176. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.js +4 -4
  177. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.ts +10 -6
  178. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.d.ts +4 -3
  179. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.js +10 -6
  180. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.ts +16 -7
  181. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.d.ts +11 -0
  182. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.js +33 -14
  183. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.ts +49 -21
  184. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.d.ts +1 -0
  185. package/dist/local-auth/core/generators/auth-email-templates/generated/index.d.ts +4 -0
  186. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.d.ts +1 -0
  187. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.d.ts +3 -0
  188. package/dist/local-auth/core/generators/auth-module/auth-module.generator.d.ts +71 -9
  189. package/dist/local-auth/core/generators/auth-module/auth-module.generator.js +23 -11
  190. package/dist/local-auth/core/generators/auth-module/generated/index.d.ts +190 -13
  191. package/dist/local-auth/core/generators/auth-module/generated/template-paths.d.ts +1 -0
  192. package/dist/local-auth/core/generators/auth-module/generated/template-paths.js +1 -0
  193. package/dist/local-auth/core/generators/auth-module/generated/template-renderers.d.ts +61 -3
  194. package/dist/local-auth/core/generators/auth-module/generated/template-renderers.js +15 -4
  195. package/dist/local-auth/core/generators/auth-module/generated/ts-import-providers.d.ts +9 -3
  196. package/dist/local-auth/core/generators/auth-module/generated/ts-import-providers.js +6 -3
  197. package/dist/local-auth/core/generators/auth-module/generated/typed-templates.d.ts +144 -11
  198. package/dist/local-auth/core/generators/auth-module/generated/typed-templates.js +20 -5
  199. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.queue.d.ts +0 -4
  200. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.queue.js +2 -15
  201. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.queue.ts +2 -16
  202. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.worker.d.ts +6 -0
  203. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.worker.js +18 -0
  204. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.worker.ts +22 -0
  205. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.js +1 -2
  206. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.ts +4 -2
  207. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-roles.service.js +8 -3
  208. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-roles.service.ts +11 -4
  209. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-session.service.d.ts +0 -1
  210. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-session.service.js +18 -17
  211. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-session.service.ts +18 -18
  212. package/dist/local-auth/core/generators/auth-module/templates/module/utils/session-cookie.js +6 -6
  213. package/dist/local-auth/core/generators/auth-module/templates/module/utils/session-cookie.ts +6 -6
  214. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.d.ts +32 -16
  215. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.js +37 -4
  216. package/dist/local-auth/core/generators/auth-routes/generated/index.d.ts +172 -94
  217. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.d.ts +28 -15
  218. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.d.ts +260 -143
  219. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.js +5 -2
  220. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.js +1 -1
  221. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.tsx +1 -1
  222. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.js +19 -4
  223. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.tsx +23 -4
  224. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.js +4 -11
  225. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.tsx +7 -11
  226. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.js +7 -4
  227. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.tsx +13 -4
  228. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.js +1 -1
  229. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.tsx +1 -1
  230. package/dist/local-auth/core/generators/react-session/generated/index.d.ts +52 -30
  231. package/dist/local-auth/core/generators/react-session/generated/template-renderers.d.ts +26 -15
  232. package/dist/local-auth/core/generators/react-session/generated/typed-templates.d.ts +52 -30
  233. package/dist/local-auth/core/generators/react-session/react-session.generator.d.ts +26 -15
  234. package/dist/local-auth/core/generators/seed-initial-user/generated/index.d.ts +0 -9
  235. package/dist/local-auth/core/generators/seed-initial-user/generated/index.js +0 -2
  236. package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.js +0 -1
  237. package/dist/local-auth/core/generators/seed-initial-user/index.d.ts +0 -2
  238. package/dist/local-auth/core/generators/seed-initial-user/index.js +0 -1
  239. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.js +4 -0
  240. package/dist/local-auth/core/generators/seed-initial-user/templates/src/prisma/seed-initial-user.js +2 -1
  241. package/dist/local-auth/core/generators/seed-initial-user/templates/src/prisma/seed-initial-user.ts +3 -1
  242. package/dist/local-auth/core/node.js +12 -5
  243. package/dist/local-auth/core/schema/models.d.ts +1 -1
  244. package/dist/local-auth/core/schema/models.js +25 -10
  245. package/dist/local-auth/core/schema/plugin-definition.d.ts +2 -2
  246. package/dist/local-auth/core/schema/plugin-definition.js +2 -5
  247. package/dist/local-auth/core/schema/schema-issue-checker.d.ts +3 -0
  248. package/dist/local-auth/core/schema/schema-issue-checker.js +21 -0
  249. package/dist/local-auth/core/web.js +15 -2
  250. package/dist/local-auth/plugin.json +6 -1
  251. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/index.d.ts +2 -2
  252. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/ts-import-providers.d.ts +10 -2
  253. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/ts-import-providers.js +8 -5
  254. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/typed-templates.js +1 -1
  255. package/dist/placeholder-auth/core/generators/placeholder-auth-module/index.d.ts +3 -1
  256. package/dist/placeholder-auth/core/generators/placeholder-auth-module/index.js +2 -1
  257. package/dist/placeholder-auth/core/generators/placeholder-auth-module/{auth-module.generator.d.ts → placeholder-auth-module.generator.d.ts} +20 -3
  258. package/dist/placeholder-auth/core/generators/placeholder-auth-module/{auth-module.generator.js → placeholder-auth-module.generator.js} +18 -1
  259. package/dist/placeholder-auth/core/generators/placeholder-auth-module/templates/module/services/user-session.service.d.ts +5 -21
  260. package/dist/placeholder-auth/core/generators/placeholder-auth-module/templates/module/services/user-session.service.js +17 -26
  261. package/dist/placeholder-auth/core/generators/placeholder-auth-module/templates/module/services/user-session.service.ts +21 -31
  262. package/dist/placeholder-auth/core/schema/models.js +17 -2
  263. package/dist/placeholder-auth/core/web.js +13 -2
  264. package/dist/web/assets/_virtual_mf-localSharedImportMap___mfe_internal__plugin_mf_2_auth-DdyPR8Y-.js +242 -0
  265. package/dist/web/assets/_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js +384 -0
  266. package/dist/web/assets/_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib_mf_1_web__loadShare__.js-DZIcwf2B.js +125 -0
  267. package/dist/web/assets/_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_ui_mf_2_components__loadShare__.js-CXGct_48.js +80678 -0
  268. package/dist/web/assets/_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_tanstack_mf_1_react_mf_2_router__loadShare__.js-Ci5_qYaj.js +7380 -0
  269. package/dist/web/assets/_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare__zod__loadShare__.js-Do-7VDVw.js +13567 -0
  270. package/dist/web/assets/arduino-BP2nYunF.js +21 -0
  271. package/dist/web/assets/auth-8qJtXAgU.js +1 -0
  272. package/dist/web/assets/bash-Zh_IyzBN.js +192 -0
  273. package/dist/web/assets/basic-3mvohyEL.js +28 -0
  274. package/dist/web/assets/c-C7Ey31hW.js +74 -0
  275. package/dist/web/assets/clike-D9YNFwtw.js +41 -0
  276. package/dist/web/assets/common-23-wvKrM.js +39 -0
  277. package/dist/web/assets/common-B-NI9TR-.js +37 -0
  278. package/dist/web/assets/common-BBriDRRy.js +63 -0
  279. package/dist/web/assets/common-BvU-7KsV.js +39 -0
  280. package/dist/web/assets/common-DBBUvtGu.js +37 -0
  281. package/dist/web/assets/common-eFh2vwGb.js +18 -0
  282. package/dist/web/assets/cpp-_RjA_yNA.js +82 -0
  283. package/dist/web/assets/csharp-0LZzOc6Q.js +301 -0
  284. package/dist/web/assets/css-D7TbgetL.js +70 -0
  285. package/dist/web/assets/diff-CtSa_15w.js +54 -0
  286. package/dist/web/assets/dist-BjxypexQ.js +18953 -0
  287. package/dist/web/assets/dist-SBfmsOB2.js +3576 -0
  288. package/dist/web/assets/get-auth-plugin-definition-x8oAsN1R.js +14 -0
  289. package/dist/web/assets/go-CzER04EZ.js +36 -0
  290. package/dist/web/assets/hostInit-oh7k6PLP.js +99 -0
  291. package/dist/web/assets/index-D-gGyBWJ.js +2 -0
  292. package/dist/web/assets/ini-CU-wHLTy.js +51 -0
  293. package/dist/web/assets/java-HAvRESj1.js +116 -0
  294. package/dist/web/assets/javascript-BVAr0eZH.js +124 -0
  295. package/dist/web/assets/json-DN8T4yFI.js +38 -0
  296. package/dist/web/assets/kotlin-DkCMjTKK.js +83 -0
  297. package/dist/web/assets/less-ZXX1tgaG.js +42 -0
  298. package/dist/web/assets/lua-D9bD4wrb.js +28 -0
  299. package/dist/web/assets/makefile-CKoRpler.js +40 -0
  300. package/dist/web/assets/markdown-_2_uVr2L.js +278 -0
  301. package/dist/web/assets/markup-BVZ8HhdW.js +176 -0
  302. package/dist/web/assets/markup-templating-BDIRuVJH.js +94 -0
  303. package/dist/web/assets/mf-entry-bootstrap-0-f953ebce.js +35 -0
  304. package/dist/web/assets/model-names-BluImOzu.js +27 -0
  305. package/dist/web/assets/model-names-CUS5rSei.js +12 -0
  306. package/dist/web/assets/model-utils-dNFTOjqi.js +1599 -0
  307. package/dist/web/assets/models-BpslIbU7.js +304 -0
  308. package/dist/web/assets/models-CKab4MTC.js +285 -0
  309. package/dist/web/assets/objectivec-DPgB68It.js +25 -0
  310. package/dist/web/assets/perl-Cul_ma_h.js +92 -0
  311. package/dist/web/assets/php-JTON0zp9.js +298 -0
  312. package/dist/web/assets/plugin-definition-8Exesd6T.js +78 -0
  313. package/dist/web/assets/plugin-definition-ChBrbazJ.js +11 -0
  314. package/dist/web/assets/python-CURlmZ7M.js +73 -0
  315. package/dist/web/assets/r-8lr7pbGm.js +30 -0
  316. package/dist/web/assets/regex-CxQ7DXCx.js +96 -0
  317. package/dist/web/assets/rolldown-runtime-FZ4Itg2g.js +42 -0
  318. package/dist/web/assets/ruby-BoFHz67P.js +175 -0
  319. package/dist/web/assets/rust-CpZXpaj0.js +107 -0
  320. package/dist/web/assets/sass-DG0YAnL7.js +65 -0
  321. package/dist/web/assets/scss-BDRIqhak.js +70 -0
  322. package/dist/web/assets/sql-C-bL8_gT.js +40 -0
  323. package/dist/web/assets/{style-DiK_rD1L.css → styles-Cc26Bbxc.css} +1 -1
  324. package/dist/web/assets/styles-Cuq4wgvD.js +176 -0
  325. package/dist/web/assets/swift-rQ52kfab.js +107 -0
  326. package/dist/web/assets/typescript-CDkIWcT8.js +57 -0
  327. package/dist/web/assets/vbnet-_PL7-T9d.js +32 -0
  328. package/dist/web/assets/virtualExposes-BwIds34r.js +2 -0
  329. package/dist/web/assets/virtual_mf-REMOTE_ENTRY_ID___mfe_internal__plugin-auth__remoteEntry_js-RJNeuwba.js +259 -0
  330. package/dist/web/assets/virtual_mf-exposes-ssr___mfe_internal__plugin-auth__remoteEntry_js-RzPgl37a.js +129 -0
  331. package/dist/web/assets/virtual_mf-exposes___mfe_internal__plugin-auth__remoteEntry_js-DM6Ir1_S.js +203 -0
  332. package/dist/web/assets/vite-preload-helper-iIio8xkS.js +67 -0
  333. package/dist/web/assets/web-BZd3bM0n.js +410 -0
  334. package/dist/web/assets/web-BgWG7dYl.js +123 -0
  335. package/dist/web/assets/web-CXHw8SK7.js +118 -0
  336. package/dist/web/assets/web-CnB-sqCR.js +357 -0
  337. package/dist/web/assets/web-DHv2aVpi.js +106 -0
  338. package/dist/web/assets/web-DNrWXjpS.js +46 -0
  339. package/dist/web/assets/web-D_H-MoGI.js +46 -0
  340. package/dist/web/assets/workerBundle-GFUata9j.js +10 -0
  341. package/dist/web/assets/yaml-C9m3vuV5.js +90 -0
  342. package/dist/web/index.html +2 -2
  343. package/dist/web/remoteEntry.js +2 -0
  344. package/dist/web/remoteEntry.ssr.js +43 -0
  345. package/package.json +42 -42
  346. package/dist/auth/core/common.d.ts.map +0 -1
  347. package/dist/auth/core/common.js.map +0 -1
  348. package/dist/auth/core/components/auth-definition-editor.d.ts.map +0 -1
  349. package/dist/auth/core/components/auth-definition-editor.js.map +0 -1
  350. package/dist/auth/core/components/role-editor-form/role-dialog.d.ts.map +0 -1
  351. package/dist/auth/core/components/role-editor-form/role-dialog.js.map +0 -1
  352. package/dist/auth/core/components/role-editor-form/role-editor-form.d.ts.map +0 -1
  353. package/dist/auth/core/components/role-editor-form/role-editor-form.js.map +0 -1
  354. package/dist/auth/core/node.d.ts.map +0 -1
  355. package/dist/auth/core/node.js.map +0 -1
  356. package/dist/auth/core/schema/plugin-definition.d.ts.map +0 -1
  357. package/dist/auth/core/schema/plugin-definition.js.map +0 -1
  358. package/dist/auth/core/schema/roles/constants.d.ts.map +0 -1
  359. package/dist/auth/core/schema/roles/constants.js.map +0 -1
  360. package/dist/auth/core/schema/roles/index.d.ts.map +0 -1
  361. package/dist/auth/core/schema/roles/index.js.map +0 -1
  362. package/dist/auth/core/schema/roles/schema.d.ts.map +0 -1
  363. package/dist/auth/core/schema/roles/schema.js.map +0 -1
  364. package/dist/auth/core/web.d.ts.map +0 -1
  365. package/dist/auth/core/web.js.map +0 -1
  366. package/dist/auth/index.d.ts.map +0 -1
  367. package/dist/auth/index.js.map +0 -1
  368. package/dist/auth/utils/get-auth-plugin-definition.d.ts.map +0 -1
  369. package/dist/auth/utils/get-auth-plugin-definition.js.map +0 -1
  370. package/dist/auth/utils/index.d.ts.map +0 -1
  371. package/dist/auth/utils/index.js.map +0 -1
  372. package/dist/better-auth/constants/model-names.d.ts.map +0 -1
  373. package/dist/better-auth/constants/model-names.js.map +0 -1
  374. package/dist/better-auth/constants/packages.d.ts.map +0 -1
  375. package/dist/better-auth/constants/packages.js.map +0 -1
  376. package/dist/better-auth/core/common.d.ts.map +0 -1
  377. package/dist/better-auth/core/common.js.map +0 -1
  378. package/dist/better-auth/core/components/better-auth-definition-editor.d.ts.map +0 -1
  379. package/dist/better-auth/core/components/better-auth-definition-editor.js.map +0 -1
  380. package/dist/better-auth/core/index.d.ts.map +0 -1
  381. package/dist/better-auth/core/index.js.map +0 -1
  382. package/dist/better-auth/core/node.d.ts.map +0 -1
  383. package/dist/better-auth/core/node.js.map +0 -1
  384. package/dist/better-auth/core/schema/models.d.ts.map +0 -1
  385. package/dist/better-auth/core/schema/models.js.map +0 -1
  386. package/dist/better-auth/core/schema/plugin-definition.d.ts.map +0 -1
  387. package/dist/better-auth/core/schema/plugin-definition.js.map +0 -1
  388. package/dist/better-auth/core/web.d.ts.map +0 -1
  389. package/dist/better-auth/core/web.js.map +0 -1
  390. package/dist/better-auth/generators/fastify/better-auth-module/better-auth-module.generator.d.ts.map +0 -1
  391. package/dist/better-auth/generators/fastify/better-auth-module/better-auth-module.generator.js.map +0 -1
  392. package/dist/better-auth/generators/fastify/better-auth-module/generated/index.d.ts.map +0 -1
  393. package/dist/better-auth/generators/fastify/better-auth-module/generated/index.js.map +0 -1
  394. package/dist/better-auth/generators/fastify/better-auth-module/generated/template-paths.d.ts.map +0 -1
  395. package/dist/better-auth/generators/fastify/better-auth-module/generated/template-paths.js.map +0 -1
  396. package/dist/better-auth/generators/fastify/better-auth-module/generated/template-renderers.d.ts.map +0 -1
  397. package/dist/better-auth/generators/fastify/better-auth-module/generated/template-renderers.js.map +0 -1
  398. package/dist/better-auth/generators/fastify/better-auth-module/generated/ts-import-providers.d.ts.map +0 -1
  399. package/dist/better-auth/generators/fastify/better-auth-module/generated/ts-import-providers.js.map +0 -1
  400. package/dist/better-auth/generators/fastify/better-auth-module/generated/typed-templates.d.ts.map +0 -1
  401. package/dist/better-auth/generators/fastify/better-auth-module/generated/typed-templates.js.map +0 -1
  402. package/dist/better-auth/generators/fastify/better-auth-module/index.d.ts.map +0 -1
  403. package/dist/better-auth/generators/fastify/better-auth-module/index.js.map +0 -1
  404. package/dist/better-auth/generators/fastify/index.d.ts.map +0 -1
  405. package/dist/better-auth/generators/fastify/index.js.map +0 -1
  406. package/dist/better-auth/generators/index.d.ts.map +0 -1
  407. package/dist/better-auth/generators/index.js.map +0 -1
  408. package/dist/better-auth/generators/react/better-auth-hooks/better-auth-hooks.generator.d.ts.map +0 -1
  409. package/dist/better-auth/generators/react/better-auth-hooks/better-auth-hooks.generator.js.map +0 -1
  410. package/dist/better-auth/generators/react/better-auth-hooks/generated/index.d.ts.map +0 -1
  411. package/dist/better-auth/generators/react/better-auth-hooks/generated/index.js.map +0 -1
  412. package/dist/better-auth/generators/react/better-auth-hooks/generated/template-paths.d.ts.map +0 -1
  413. package/dist/better-auth/generators/react/better-auth-hooks/generated/template-paths.js.map +0 -1
  414. package/dist/better-auth/generators/react/better-auth-hooks/generated/template-renderers.d.ts.map +0 -1
  415. package/dist/better-auth/generators/react/better-auth-hooks/generated/template-renderers.js.map +0 -1
  416. package/dist/better-auth/generators/react/better-auth-hooks/generated/ts-import-providers.d.ts.map +0 -1
  417. package/dist/better-auth/generators/react/better-auth-hooks/generated/ts-import-providers.js.map +0 -1
  418. package/dist/better-auth/generators/react/better-auth-hooks/generated/typed-templates.d.ts.map +0 -1
  419. package/dist/better-auth/generators/react/better-auth-hooks/generated/typed-templates.js.map +0 -1
  420. package/dist/better-auth/generators/react/better-auth-hooks/index.d.ts.map +0 -1
  421. package/dist/better-auth/generators/react/better-auth-hooks/index.js.map +0 -1
  422. package/dist/better-auth/generators/react/better-auth-pages/better-auth-pages.generator.d.ts.map +0 -1
  423. package/dist/better-auth/generators/react/better-auth-pages/better-auth-pages.generator.js.map +0 -1
  424. package/dist/better-auth/generators/react/better-auth-pages/generated/index.d.ts.map +0 -1
  425. package/dist/better-auth/generators/react/better-auth-pages/generated/index.js.map +0 -1
  426. package/dist/better-auth/generators/react/better-auth-pages/generated/template-paths.d.ts.map +0 -1
  427. package/dist/better-auth/generators/react/better-auth-pages/generated/template-paths.js.map +0 -1
  428. package/dist/better-auth/generators/react/better-auth-pages/generated/template-renderers.d.ts.map +0 -1
  429. package/dist/better-auth/generators/react/better-auth-pages/generated/template-renderers.js.map +0 -1
  430. package/dist/better-auth/generators/react/better-auth-pages/generated/typed-templates.d.ts.map +0 -1
  431. package/dist/better-auth/generators/react/better-auth-pages/generated/typed-templates.js.map +0 -1
  432. package/dist/better-auth/generators/react/better-auth-pages/index.d.ts.map +0 -1
  433. package/dist/better-auth/generators/react/better-auth-pages/index.js.map +0 -1
  434. package/dist/better-auth/generators/react/index.d.ts.map +0 -1
  435. package/dist/better-auth/generators/react/index.js.map +0 -1
  436. package/dist/better-auth/generators/react/react-better-auth/generated/index.d.ts.map +0 -1
  437. package/dist/better-auth/generators/react/react-better-auth/generated/index.js.map +0 -1
  438. package/dist/better-auth/generators/react/react-better-auth/generated/template-paths.d.ts.map +0 -1
  439. package/dist/better-auth/generators/react/react-better-auth/generated/template-paths.js.map +0 -1
  440. package/dist/better-auth/generators/react/react-better-auth/generated/template-renderers.d.ts.map +0 -1
  441. package/dist/better-auth/generators/react/react-better-auth/generated/template-renderers.js.map +0 -1
  442. package/dist/better-auth/generators/react/react-better-auth/generated/ts-import-providers.d.ts.map +0 -1
  443. package/dist/better-auth/generators/react/react-better-auth/generated/ts-import-providers.js.map +0 -1
  444. package/dist/better-auth/generators/react/react-better-auth/generated/typed-templates.d.ts.map +0 -1
  445. package/dist/better-auth/generators/react/react-better-auth/generated/typed-templates.js.map +0 -1
  446. package/dist/better-auth/generators/react/react-better-auth/index.d.ts.map +0 -1
  447. package/dist/better-auth/generators/react/react-better-auth/index.js.map +0 -1
  448. package/dist/better-auth/generators/react/react-better-auth/react-better-auth.generator.d.ts.map +0 -1
  449. package/dist/better-auth/generators/react/react-better-auth/react-better-auth.generator.js.map +0 -1
  450. package/dist/better-auth/index.d.ts.map +0 -1
  451. package/dist/better-auth/index.js.map +0 -1
  452. package/dist/common/components/auth-config-tabs.d.ts.map +0 -1
  453. package/dist/common/components/auth-config-tabs.js.map +0 -1
  454. package/dist/local-auth/admin/common.d.ts.map +0 -1
  455. package/dist/local-auth/admin/common.js.map +0 -1
  456. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/admin-crud-manage-roles-action.generator.d.ts.map +0 -1
  457. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/admin-crud-manage-roles-action.generator.js.map +0 -1
  458. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/index.d.ts.map +0 -1
  459. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/index.js.map +0 -1
  460. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/template-paths.d.ts.map +0 -1
  461. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/template-paths.js.map +0 -1
  462. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/template-renderers.d.ts.map +0 -1
  463. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/template-renderers.js.map +0 -1
  464. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/typed-templates.d.ts.map +0 -1
  465. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/generated/typed-templates.js.map +0 -1
  466. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/index.d.ts.map +0 -1
  467. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/index.js.map +0 -1
  468. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.d.ts.map +0 -1
  469. package/dist/local-auth/admin/generators/admin-crud-manage-roles-action/templates/routes/-components/role-manager-dialog.js.map +0 -1
  470. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/admin-crud-reset-password-action.generator.d.ts.map +0 -1
  471. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/admin-crud-reset-password-action.generator.js.map +0 -1
  472. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/index.d.ts.map +0 -1
  473. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/index.js.map +0 -1
  474. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/template-paths.d.ts.map +0 -1
  475. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/template-paths.js.map +0 -1
  476. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/template-renderers.d.ts.map +0 -1
  477. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/template-renderers.js.map +0 -1
  478. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/typed-templates.d.ts.map +0 -1
  479. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/generated/typed-templates.js.map +0 -1
  480. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/index.d.ts.map +0 -1
  481. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/index.js.map +0 -1
  482. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.d.ts.map +0 -1
  483. package/dist/local-auth/admin/generators/admin-crud-reset-password-action/templates/routes/-components/password-reset-dialog.js.map +0 -1
  484. package/dist/local-auth/admin/generators/admin-crud-roles-column/admin-crud-roles-column.generator.d.ts.map +0 -1
  485. package/dist/local-auth/admin/generators/admin-crud-roles-column/admin-crud-roles-column.generator.js.map +0 -1
  486. package/dist/local-auth/admin/generators/admin-crud-roles-column/index.d.ts.map +0 -1
  487. package/dist/local-auth/admin/generators/admin-crud-roles-column/index.js.map +0 -1
  488. package/dist/local-auth/admin/node.d.ts.map +0 -1
  489. package/dist/local-auth/admin/node.js.map +0 -1
  490. package/dist/local-auth/admin/schema/manage-role-action.d.ts.map +0 -1
  491. package/dist/local-auth/admin/schema/manage-role-action.js.map +0 -1
  492. package/dist/local-auth/admin/schema/reset-password-action.d.ts.map +0 -1
  493. package/dist/local-auth/admin/schema/reset-password-action.js.map +0 -1
  494. package/dist/local-auth/admin/schema/roles-column.d.ts.map +0 -1
  495. package/dist/local-auth/admin/schema/roles-column.js.map +0 -1
  496. package/dist/local-auth/admin/web.d.ts.map +0 -1
  497. package/dist/local-auth/admin/web.js.map +0 -1
  498. package/dist/local-auth/constants/model-names.d.ts.map +0 -1
  499. package/dist/local-auth/constants/model-names.js.map +0 -1
  500. package/dist/local-auth/core/common.d.ts.map +0 -1
  501. package/dist/local-auth/core/common.js.map +0 -1
  502. package/dist/local-auth/core/components/local-auth-definition-editor.d.ts.map +0 -1
  503. package/dist/local-auth/core/components/local-auth-definition-editor.js.map +0 -1
  504. package/dist/local-auth/core/generators/auth-apollo/auth-apollo.generator.d.ts.map +0 -1
  505. package/dist/local-auth/core/generators/auth-apollo/auth-apollo.generator.js.map +0 -1
  506. package/dist/local-auth/core/generators/auth-apollo/index.d.ts.map +0 -1
  507. package/dist/local-auth/core/generators/auth-apollo/index.js.map +0 -1
  508. package/dist/local-auth/core/generators/auth-apollo/templates/session-error-link.d.ts.map +0 -1
  509. package/dist/local-auth/core/generators/auth-apollo/templates/session-error-link.js.map +0 -1
  510. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.d.ts.map +0 -1
  511. package/dist/local-auth/core/generators/auth-email-password/auth-email-password.generator.js.map +0 -1
  512. package/dist/local-auth/core/generators/auth-email-password/generated/index.d.ts.map +0 -1
  513. package/dist/local-auth/core/generators/auth-email-password/generated/index.js.map +0 -1
  514. package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.d.ts.map +0 -1
  515. package/dist/local-auth/core/generators/auth-email-password/generated/template-paths.js.map +0 -1
  516. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.d.ts.map +0 -1
  517. package/dist/local-auth/core/generators/auth-email-password/generated/template-renderers.js.map +0 -1
  518. package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.d.ts.map +0 -1
  519. package/dist/local-auth/core/generators/auth-email-password/generated/ts-import-providers.js.map +0 -1
  520. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.d.ts.map +0 -1
  521. package/dist/local-auth/core/generators/auth-email-password/generated/typed-templates.js.map +0 -1
  522. package/dist/local-auth/core/generators/auth-email-password/index.d.ts.map +0 -1
  523. package/dist/local-auth/core/generators/auth-email-password/index.js.map +0 -1
  524. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.d.ts.map +0 -1
  525. package/dist/local-auth/core/generators/auth-email-password/templates/module/constants/password.constants.js.map +0 -1
  526. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.d.ts.map +0 -1
  527. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/email-verification.mutations.js.map +0 -1
  528. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.d.ts.map +0 -1
  529. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/password-reset.mutations.js.map +0 -1
  530. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/user-password.mutations.d.ts.map +0 -1
  531. package/dist/local-auth/core/generators/auth-email-password/templates/module/schema/user-password.mutations.js.map +0 -1
  532. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.d.ts.map +0 -1
  533. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/email-verification.service.js.map +0 -1
  534. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.d.ts.map +0 -1
  535. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/password-reset.service.js.map +0 -1
  536. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.d.ts.map +0 -1
  537. package/dist/local-auth/core/generators/auth-email-password/templates/module/services/user-password.service.js.map +0 -1
  538. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.d.ts.map +0 -1
  539. package/dist/local-auth/core/generators/auth-email-templates/auth-email-templates.generator.js.map +0 -1
  540. package/dist/local-auth/core/generators/auth-email-templates/generated/index.d.ts.map +0 -1
  541. package/dist/local-auth/core/generators/auth-email-templates/generated/index.js.map +0 -1
  542. package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.d.ts.map +0 -1
  543. package/dist/local-auth/core/generators/auth-email-templates/generated/template-paths.js.map +0 -1
  544. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.d.ts.map +0 -1
  545. package/dist/local-auth/core/generators/auth-email-templates/generated/template-renderers.js.map +0 -1
  546. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.d.ts.map +0 -1
  547. package/dist/local-auth/core/generators/auth-email-templates/generated/typed-templates.js.map +0 -1
  548. package/dist/local-auth/core/generators/auth-email-templates/index.d.ts.map +0 -1
  549. package/dist/local-auth/core/generators/auth-email-templates/index.js.map +0 -1
  550. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.d.ts.map +0 -1
  551. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/account-verification.email.js.map +0 -1
  552. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.d.ts.map +0 -1
  553. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-changed.email.js.map +0 -1
  554. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.d.ts.map +0 -1
  555. package/dist/local-auth/core/generators/auth-email-templates/templates/src/emails/auth/password-reset.email.js.map +0 -1
  556. package/dist/local-auth/core/generators/auth-hooks/auth-hooks.generator.d.ts.map +0 -1
  557. package/dist/local-auth/core/generators/auth-hooks/auth-hooks.generator.js.map +0 -1
  558. package/dist/local-auth/core/generators/auth-hooks/generated/index.d.ts.map +0 -1
  559. package/dist/local-auth/core/generators/auth-hooks/generated/index.js.map +0 -1
  560. package/dist/local-auth/core/generators/auth-hooks/generated/template-paths.d.ts.map +0 -1
  561. package/dist/local-auth/core/generators/auth-hooks/generated/template-paths.js.map +0 -1
  562. package/dist/local-auth/core/generators/auth-hooks/generated/template-renderers.d.ts.map +0 -1
  563. package/dist/local-auth/core/generators/auth-hooks/generated/template-renderers.js.map +0 -1
  564. package/dist/local-auth/core/generators/auth-hooks/generated/ts-import-providers.d.ts.map +0 -1
  565. package/dist/local-auth/core/generators/auth-hooks/generated/ts-import-providers.js.map +0 -1
  566. package/dist/local-auth/core/generators/auth-hooks/generated/typed-templates.d.ts.map +0 -1
  567. package/dist/local-auth/core/generators/auth-hooks/generated/typed-templates.js.map +0 -1
  568. package/dist/local-auth/core/generators/auth-hooks/index.d.ts.map +0 -1
  569. package/dist/local-auth/core/generators/auth-hooks/index.js.map +0 -1
  570. package/dist/local-auth/core/generators/auth-hooks/templates/src/hooks/use-log-out.d.ts.map +0 -1
  571. package/dist/local-auth/core/generators/auth-hooks/templates/src/hooks/use-log-out.js.map +0 -1
  572. package/dist/local-auth/core/generators/auth-hooks/templates/src/hooks/use-session.d.ts.map +0 -1
  573. package/dist/local-auth/core/generators/auth-hooks/templates/src/hooks/use-session.js.map +0 -1
  574. package/dist/local-auth/core/generators/auth-hooks/templates/src/hooks/use-user-id-or-throw.d.ts.map +0 -1
  575. package/dist/local-auth/core/generators/auth-hooks/templates/src/hooks/use-user-id-or-throw.js.map +0 -1
  576. package/dist/local-auth/core/generators/auth-module/auth-module.generator.d.ts.map +0 -1
  577. package/dist/local-auth/core/generators/auth-module/auth-module.generator.js.map +0 -1
  578. package/dist/local-auth/core/generators/auth-module/generated/index.d.ts.map +0 -1
  579. package/dist/local-auth/core/generators/auth-module/generated/index.js.map +0 -1
  580. package/dist/local-auth/core/generators/auth-module/generated/template-paths.d.ts.map +0 -1
  581. package/dist/local-auth/core/generators/auth-module/generated/template-paths.js.map +0 -1
  582. package/dist/local-auth/core/generators/auth-module/generated/template-renderers.d.ts.map +0 -1
  583. package/dist/local-auth/core/generators/auth-module/generated/template-renderers.js.map +0 -1
  584. package/dist/local-auth/core/generators/auth-module/generated/ts-import-providers.d.ts.map +0 -1
  585. package/dist/local-auth/core/generators/auth-module/generated/ts-import-providers.js.map +0 -1
  586. package/dist/local-auth/core/generators/auth-module/generated/typed-templates.d.ts.map +0 -1
  587. package/dist/local-auth/core/generators/auth-module/generated/typed-templates.js.map +0 -1
  588. package/dist/local-auth/core/generators/auth-module/index.d.ts.map +0 -1
  589. package/dist/local-auth/core/generators/auth-module/index.js.map +0 -1
  590. package/dist/local-auth/core/generators/auth-module/templates/module/constants/user-session.constants.d.ts.map +0 -1
  591. package/dist/local-auth/core/generators/auth-module/templates/module/constants/user-session.constants.js.map +0 -1
  592. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.queue.d.ts.map +0 -1
  593. package/dist/local-auth/core/generators/auth-module/templates/module/queues/cleanup-auth-verification.queue.js.map +0 -1
  594. package/dist/local-auth/core/generators/auth-module/templates/module/schema/auth-role.enum.d.ts.map +0 -1
  595. package/dist/local-auth/core/generators/auth-module/templates/module/schema/auth-role.enum.js.map +0 -1
  596. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-roles.mutations.d.ts.map +0 -1
  597. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-roles.mutations.js.map +0 -1
  598. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session-payload.object-type.d.ts.map +0 -1
  599. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session-payload.object-type.js.map +0 -1
  600. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.d.ts.map +0 -1
  601. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.mutations.js.map +0 -1
  602. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.d.ts.map +0 -1
  603. package/dist/local-auth/core/generators/auth-module/templates/module/schema/user-session.queries.js.map +0 -1
  604. package/dist/local-auth/core/generators/auth-module/templates/module/services/auth-verification.service.d.ts.map +0 -1
  605. package/dist/local-auth/core/generators/auth-module/templates/module/services/auth-verification.service.js.map +0 -1
  606. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-roles.service.d.ts.map +0 -1
  607. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-roles.service.js.map +0 -1
  608. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-session.service.d.ts.map +0 -1
  609. package/dist/local-auth/core/generators/auth-module/templates/module/services/user-session.service.js.map +0 -1
  610. package/dist/local-auth/core/generators/auth-module/templates/module/utils/cookie-signer.d.ts.map +0 -1
  611. package/dist/local-auth/core/generators/auth-module/templates/module/utils/cookie-signer.js.map +0 -1
  612. package/dist/local-auth/core/generators/auth-module/templates/module/utils/session-cookie.d.ts.map +0 -1
  613. package/dist/local-auth/core/generators/auth-module/templates/module/utils/session-cookie.js.map +0 -1
  614. package/dist/local-auth/core/generators/auth-module/templates/module/utils/verify-request-origin.d.ts.map +0 -1
  615. package/dist/local-auth/core/generators/auth-module/templates/module/utils/verify-request-origin.js.map +0 -1
  616. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.d.ts.map +0 -1
  617. package/dist/local-auth/core/generators/auth-routes/auth-routes.generator.js.map +0 -1
  618. package/dist/local-auth/core/generators/auth-routes/generated/index.d.ts.map +0 -1
  619. package/dist/local-auth/core/generators/auth-routes/generated/index.js.map +0 -1
  620. package/dist/local-auth/core/generators/auth-routes/generated/template-paths.d.ts.map +0 -1
  621. package/dist/local-auth/core/generators/auth-routes/generated/template-paths.js.map +0 -1
  622. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.d.ts.map +0 -1
  623. package/dist/local-auth/core/generators/auth-routes/generated/template-renderers.js.map +0 -1
  624. package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.d.ts.map +0 -1
  625. package/dist/local-auth/core/generators/auth-routes/generated/ts-import-providers.js.map +0 -1
  626. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.d.ts.map +0 -1
  627. package/dist/local-auth/core/generators/auth-routes/generated/typed-templates.js.map +0 -1
  628. package/dist/local-auth/core/generators/auth-routes/index.d.ts.map +0 -1
  629. package/dist/local-auth/core/generators/auth-routes/index.js.map +0 -1
  630. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.d.ts.map +0 -1
  631. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/-constants.js.map +0 -1
  632. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.d.ts.map +0 -1
  633. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/forgot-password.js.map +0 -1
  634. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.d.ts.map +0 -1
  635. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/login.js.map +0 -1
  636. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.d.ts.map +0 -1
  637. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/register.js.map +0 -1
  638. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.d.ts.map +0 -1
  639. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/reset-password.js.map +0 -1
  640. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/route.d.ts.map +0 -1
  641. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/route.js.map +0 -1
  642. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.d.ts.map +0 -1
  643. package/dist/local-auth/core/generators/auth-routes/templates/routes/auth_/verify-email.js.map +0 -1
  644. package/dist/local-auth/core/generators/index.d.ts.map +0 -1
  645. package/dist/local-auth/core/generators/index.js.map +0 -1
  646. package/dist/local-auth/core/generators/react-auth/index.d.ts.map +0 -1
  647. package/dist/local-auth/core/generators/react-auth/index.js.map +0 -1
  648. package/dist/local-auth/core/generators/react-auth/react-auth.generator.d.ts.map +0 -1
  649. package/dist/local-auth/core/generators/react-auth/react-auth.generator.js.map +0 -1
  650. package/dist/local-auth/core/generators/react-session/generated/index.d.ts.map +0 -1
  651. package/dist/local-auth/core/generators/react-session/generated/index.js.map +0 -1
  652. package/dist/local-auth/core/generators/react-session/generated/template-paths.d.ts.map +0 -1
  653. package/dist/local-auth/core/generators/react-session/generated/template-paths.js.map +0 -1
  654. package/dist/local-auth/core/generators/react-session/generated/template-renderers.d.ts.map +0 -1
  655. package/dist/local-auth/core/generators/react-session/generated/template-renderers.js.map +0 -1
  656. package/dist/local-auth/core/generators/react-session/generated/ts-import-providers.d.ts.map +0 -1
  657. package/dist/local-auth/core/generators/react-session/generated/ts-import-providers.js.map +0 -1
  658. package/dist/local-auth/core/generators/react-session/generated/typed-templates.d.ts.map +0 -1
  659. package/dist/local-auth/core/generators/react-session/generated/typed-templates.js.map +0 -1
  660. package/dist/local-auth/core/generators/react-session/index.d.ts.map +0 -1
  661. package/dist/local-auth/core/generators/react-session/index.js.map +0 -1
  662. package/dist/local-auth/core/generators/react-session/react-session.generator.d.ts.map +0 -1
  663. package/dist/local-auth/core/generators/react-session/react-session.generator.js.map +0 -1
  664. package/dist/local-auth/core/generators/react-session/templates/src/app/user-session-provider.d.ts.map +0 -1
  665. package/dist/local-auth/core/generators/react-session/templates/src/app/user-session-provider.js.map +0 -1
  666. package/dist/local-auth/core/generators/react-session/templates/src/services/user-session-client.d.ts.map +0 -1
  667. package/dist/local-auth/core/generators/react-session/templates/src/services/user-session-client.js.map +0 -1
  668. package/dist/local-auth/core/generators/seed-initial-user/generated/index.d.ts.map +0 -1
  669. package/dist/local-auth/core/generators/seed-initial-user/generated/index.js.map +0 -1
  670. package/dist/local-auth/core/generators/seed-initial-user/generated/template-paths.d.ts.map +0 -1
  671. package/dist/local-auth/core/generators/seed-initial-user/generated/template-paths.js.map +0 -1
  672. package/dist/local-auth/core/generators/seed-initial-user/generated/template-renderers.d.ts.map +0 -1
  673. package/dist/local-auth/core/generators/seed-initial-user/generated/template-renderers.js.map +0 -1
  674. package/dist/local-auth/core/generators/seed-initial-user/generated/ts-import-providers.d.ts +0 -18
  675. package/dist/local-auth/core/generators/seed-initial-user/generated/ts-import-providers.d.ts.map +0 -1
  676. package/dist/local-auth/core/generators/seed-initial-user/generated/ts-import-providers.js +0 -26
  677. package/dist/local-auth/core/generators/seed-initial-user/generated/ts-import-providers.js.map +0 -1
  678. package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.d.ts.map +0 -1
  679. package/dist/local-auth/core/generators/seed-initial-user/generated/typed-templates.js.map +0 -1
  680. package/dist/local-auth/core/generators/seed-initial-user/index.d.ts.map +0 -1
  681. package/dist/local-auth/core/generators/seed-initial-user/index.js.map +0 -1
  682. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.d.ts.map +0 -1
  683. package/dist/local-auth/core/generators/seed-initial-user/seed-initial-user.generator.js.map +0 -1
  684. package/dist/local-auth/core/generators/seed-initial-user/templates/src/prisma/seed-initial-user.d.ts.map +0 -1
  685. package/dist/local-auth/core/generators/seed-initial-user/templates/src/prisma/seed-initial-user.js.map +0 -1
  686. package/dist/local-auth/core/index.d.ts.map +0 -1
  687. package/dist/local-auth/core/index.js.map +0 -1
  688. package/dist/local-auth/core/node.d.ts.map +0 -1
  689. package/dist/local-auth/core/node.js.map +0 -1
  690. package/dist/local-auth/core/schema/models.d.ts.map +0 -1
  691. package/dist/local-auth/core/schema/models.js.map +0 -1
  692. package/dist/local-auth/core/schema/plugin-definition.d.ts.map +0 -1
  693. package/dist/local-auth/core/schema/plugin-definition.js.map +0 -1
  694. package/dist/local-auth/core/web.d.ts.map +0 -1
  695. package/dist/local-auth/core/web.js.map +0 -1
  696. package/dist/local-auth/index.d.ts.map +0 -1
  697. package/dist/local-auth/index.js.map +0 -1
  698. package/dist/placeholder-auth/constants/model-names.d.ts.map +0 -1
  699. package/dist/placeholder-auth/constants/model-names.js.map +0 -1
  700. package/dist/placeholder-auth/core/common.d.ts.map +0 -1
  701. package/dist/placeholder-auth/core/common.js.map +0 -1
  702. package/dist/placeholder-auth/core/components/placeholder-auth-definition-editor.d.ts.map +0 -1
  703. package/dist/placeholder-auth/core/components/placeholder-auth-definition-editor.js.map +0 -1
  704. package/dist/placeholder-auth/core/generators/index.d.ts.map +0 -1
  705. package/dist/placeholder-auth/core/generators/index.js.map +0 -1
  706. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/index.d.ts.map +0 -1
  707. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/index.js.map +0 -1
  708. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/template-paths.d.ts.map +0 -1
  709. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/template-paths.js.map +0 -1
  710. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/template-renderers.d.ts.map +0 -1
  711. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/template-renderers.js.map +0 -1
  712. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/ts-import-providers.d.ts.map +0 -1
  713. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/ts-import-providers.js.map +0 -1
  714. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/typed-templates.d.ts.map +0 -1
  715. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/generated/typed-templates.js.map +0 -1
  716. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/index.d.ts.map +0 -1
  717. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/index.js.map +0 -1
  718. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/placeholder-auth-hooks.generator.d.ts.map +0 -1
  719. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/placeholder-auth-hooks.generator.js.map +0 -1
  720. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/templates/src/hooks/use-log-out.d.ts.map +0 -1
  721. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/templates/src/hooks/use-log-out.js.map +0 -1
  722. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/templates/src/hooks/use-session.d.ts.map +0 -1
  723. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/templates/src/hooks/use-session.js.map +0 -1
  724. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/templates/src/hooks/use-user-id-or-throw.d.ts.map +0 -1
  725. package/dist/placeholder-auth/core/generators/placeholder-auth-hooks/templates/src/hooks/use-user-id-or-throw.js.map +0 -1
  726. package/dist/placeholder-auth/core/generators/placeholder-auth-module/auth-module.generator.d.ts.map +0 -1
  727. package/dist/placeholder-auth/core/generators/placeholder-auth-module/auth-module.generator.js.map +0 -1
  728. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/index.d.ts.map +0 -1
  729. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/index.js.map +0 -1
  730. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/template-paths.d.ts.map +0 -1
  731. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/template-paths.js.map +0 -1
  732. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/template-renderers.d.ts.map +0 -1
  733. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/template-renderers.js.map +0 -1
  734. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/ts-import-providers.d.ts.map +0 -1
  735. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/ts-import-providers.js.map +0 -1
  736. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/typed-templates.d.ts.map +0 -1
  737. package/dist/placeholder-auth/core/generators/placeholder-auth-module/generated/typed-templates.js.map +0 -1
  738. package/dist/placeholder-auth/core/generators/placeholder-auth-module/index.d.ts.map +0 -1
  739. package/dist/placeholder-auth/core/generators/placeholder-auth-module/index.js.map +0 -1
  740. package/dist/placeholder-auth/core/generators/placeholder-auth-module/templates/module/services/user-session.service.d.ts.map +0 -1
  741. package/dist/placeholder-auth/core/generators/placeholder-auth-module/templates/module/services/user-session.service.js.map +0 -1
  742. package/dist/placeholder-auth/core/generators/placeholder-react-auth/index.d.ts.map +0 -1
  743. package/dist/placeholder-auth/core/generators/placeholder-react-auth/index.js.map +0 -1
  744. package/dist/placeholder-auth/core/generators/placeholder-react-auth/react-auth.generator.d.ts.map +0 -1
  745. package/dist/placeholder-auth/core/generators/placeholder-react-auth/react-auth.generator.js.map +0 -1
  746. package/dist/placeholder-auth/core/index.d.ts.map +0 -1
  747. package/dist/placeholder-auth/core/index.js.map +0 -1
  748. package/dist/placeholder-auth/core/node.d.ts.map +0 -1
  749. package/dist/placeholder-auth/core/node.js.map +0 -1
  750. package/dist/placeholder-auth/core/schema/models.d.ts.map +0 -1
  751. package/dist/placeholder-auth/core/schema/models.js.map +0 -1
  752. package/dist/placeholder-auth/core/schema/plugin-definition.d.ts.map +0 -1
  753. package/dist/placeholder-auth/core/schema/plugin-definition.js.map +0 -1
  754. package/dist/placeholder-auth/core/web.d.ts.map +0 -1
  755. package/dist/placeholder-auth/core/web.js.map +0 -1
  756. package/dist/placeholder-auth/index.d.ts.map +0 -1
  757. package/dist/placeholder-auth/index.js.map +0 -1
  758. package/dist/web/assets/__federation_expose_authCoreCommon-CnNoa4tF.js +0 -30
  759. package/dist/web/assets/__federation_expose_authCoreCommon-CnNoa4tF.js.map +0 -1
  760. package/dist/web/assets/__federation_expose_authCoreWeb-BL_U7yuj.js +0 -433
  761. package/dist/web/assets/__federation_expose_authCoreWeb-BL_U7yuj.js.map +0 -1
  762. package/dist/web/assets/__federation_expose_better-authCoreCommon-D-mTcxYO.js +0 -20
  763. package/dist/web/assets/__federation_expose_better-authCoreCommon-D-mTcxYO.js.map +0 -1
  764. package/dist/web/assets/__federation_expose_better-authCoreWeb-CXHL-Ghf.js +0 -402
  765. package/dist/web/assets/__federation_expose_better-authCoreWeb-CXHL-Ghf.js.map +0 -1
  766. package/dist/web/assets/__federation_expose_local-authAdminCommon-LIsARRNU.js +0 -63
  767. package/dist/web/assets/__federation_expose_local-authAdminCommon-LIsARRNU.js.map +0 -1
  768. package/dist/web/assets/__federation_expose_local-authAdminWeb-DyYUDLm9.js +0 -41
  769. package/dist/web/assets/__federation_expose_local-authAdminWeb-DyYUDLm9.js.map +0 -1
  770. package/dist/web/assets/__federation_expose_local-authCoreCommon-p_UbExc7.js +0 -21
  771. package/dist/web/assets/__federation_expose_local-authCoreCommon-p_UbExc7.js.map +0 -1
  772. package/dist/web/assets/__federation_expose_local-authCoreWeb-8TcUJFT6.js +0 -432
  773. package/dist/web/assets/__federation_expose_local-authCoreWeb-8TcUJFT6.js.map +0 -1
  774. package/dist/web/assets/__federation_expose_placeholder-authCoreCommon-CtZXaDUc.js +0 -23
  775. package/dist/web/assets/__federation_expose_placeholder-authCoreCommon-CtZXaDUc.js.map +0 -1
  776. package/dist/web/assets/__federation_expose_placeholder-authCoreWeb-CZAKokTb.js +0 -162
  777. package/dist/web/assets/__federation_expose_placeholder-authCoreWeb-CZAKokTb.js.map +0 -1
  778. package/dist/web/assets/__federation_fn_import-3DENgil8.js +0 -421
  779. package/dist/web/assets/__federation_fn_import-3DENgil8.js.map +0 -1
  780. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/web-B5bdbzFj.js +0 -357
  781. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib/web-B5bdbzFj.js.map +0 -1
  782. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib-DCA3vO4J.js +0 -21478
  783. package/dist/web/assets/__federation_shared_@baseplate-dev/project-builder-lib-DCA3vO4J.js.map +0 -1
  784. package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-BvL7RO9S.js +0 -73599
  785. package/dist/web/assets/__federation_shared_@baseplate-dev/ui-components-BvL7RO9S.js.map +0 -1
  786. package/dist/web/assets/__federation_shared_@baseplate-dev/utils-0-N5BG4T.js +0 -1822
  787. package/dist/web/assets/__federation_shared_@baseplate-dev/utils-0-N5BG4T.js.map +0 -1
  788. package/dist/web/assets/__federation_shared_@tanstack/react-router-DSniiJ6U.js +0 -6565
  789. package/dist/web/assets/__federation_shared_@tanstack/react-router-DSniiJ6U.js.map +0 -1
  790. package/dist/web/assets/__federation_shared_react-CJ2OfFKA.js +0 -8
  791. package/dist/web/assets/__federation_shared_react-CJ2OfFKA.js.map +0 -1
  792. package/dist/web/assets/__federation_shared_react-dom-B4vgf5Ln.js +0 -251
  793. package/dist/web/assets/__federation_shared_react-dom-B4vgf5Ln.js.map +0 -1
  794. package/dist/web/assets/__federation_shared_zod-Do7Aa1b5.js +0 -13250
  795. package/dist/web/assets/__federation_shared_zod-Do7Aa1b5.js.map +0 -1
  796. package/dist/web/assets/_commonjsHelpers-B85MJLTf.js +0 -6
  797. package/dist/web/assets/_commonjsHelpers-B85MJLTf.js.map +0 -1
  798. package/dist/web/assets/get-auth-plugin-definition-DHcbFujw.js +0 -13
  799. package/dist/web/assets/get-auth-plugin-definition-DHcbFujw.js.map +0 -1
  800. package/dist/web/assets/index-DQKNnI1w.js +0 -103
  801. package/dist/web/assets/index-DQKNnI1w.js.map +0 -1
  802. package/dist/web/assets/index-DUwCgkeV.js +0 -570
  803. package/dist/web/assets/index-DUwCgkeV.js.map +0 -1
  804. package/dist/web/assets/index-l0sNRNKZ.js.map +0 -1
  805. package/dist/web/assets/index.esm-Dpqxgpya.js +0 -2676
  806. package/dist/web/assets/index.esm-Dpqxgpya.js.map +0 -1
  807. package/dist/web/assets/isEqual-tnzoadW8.js +0 -242
  808. package/dist/web/assets/isEqual-tnzoadW8.js.map +0 -1
  809. package/dist/web/assets/jsx-runtime-XI9uIe3W.js +0 -60
  810. package/dist/web/assets/jsx-runtime-XI9uIe3W.js.map +0 -1
  811. package/dist/web/assets/mergeWith-VagwCqUi.js +0 -76
  812. package/dist/web/assets/mergeWith-VagwCqUi.js.map +0 -1
  813. package/dist/web/assets/model-names-DrcaRxt1.js +0 -25
  814. package/dist/web/assets/model-names-DrcaRxt1.js.map +0 -1
  815. package/dist/web/assets/model-utils-BFX3c3dn.js +0 -694
  816. package/dist/web/assets/model-utils-BFX3c3dn.js.map +0 -1
  817. package/dist/web/assets/plugin-definition-B86WQ7Ni.js +0 -79
  818. package/dist/web/assets/plugin-definition-B86WQ7Ni.js.map +0 -1
  819. package/dist/web/assets/plugin-definition-CEQb6mWV.js +0 -20
  820. package/dist/web/assets/plugin-definition-CEQb6mWV.js.map +0 -1
  821. package/dist/web/assets/plugin-definition-DrsKbcJc.js +0 -31
  822. package/dist/web/assets/plugin-definition-DrsKbcJc.js.map +0 -1
  823. package/dist/web/assets/plugin-definition-KEpaSB6p.js +0 -16
  824. package/dist/web/assets/plugin-definition-KEpaSB6p.js.map +0 -1
  825. package/dist/web/assets/react-hu8Hx0R4.js +0 -47
  826. package/dist/web/assets/react-hu8Hx0R4.js.map +0 -1
  827. package/dist/web/assets/registries-Tz_dluz3.js +0 -1119
  828. package/dist/web/assets/registries-Tz_dluz3.js.map +0 -1
  829. package/dist/web/assets/remoteEntry.js +0 -78
  830. package/dist/web/assets/remoteEntry.js.map +0 -1
  831. package/dist/web/assets/styles-CpKtlIgU.js +0 -69
  832. package/dist/web/assets/styles-CpKtlIgU.js.map +0 -1
  833. package/dist/web/assets/with-selector-DTXBONcE.js +0 -201
  834. package/dist/web/assets/with-selector-DTXBONcE.js.map +0 -1
@@ -0,0 +1,21 @@
1
+ import cpp from "./cpp-_RjA_yNA.js";
2
+ //#region ../../node_modules/.pnpm/refractor@5.0.0/node_modules/refractor/lang/arduino.js
3
+ /**
4
+ * @import {Refractor} from '../lib/core.js'
5
+ */
6
+ arduino.displayName = "arduino";
7
+ arduino.aliases = ["ino"];
8
+ /** @param {Refractor} Prism */
9
+ function arduino(Prism) {
10
+ Prism.register(cpp);
11
+ Prism.languages.arduino = Prism.languages.extend("cpp", {
12
+ keyword: /\b(?:String|array|bool|boolean|break|byte|case|catch|continue|default|do|double|else|finally|for|function|goto|if|in|instanceof|int|integer|long|loop|new|null|return|setup|string|switch|throw|try|void|while|word)\b/,
13
+ constant: /\b(?:ANALOG_MESSAGE|DEFAULT|DIGITAL_MESSAGE|EXTERNAL|FIRMATA_STRING|HIGH|INPUT|INPUT_PULLUP|INTERNAL|INTERNAL1V1|INTERNAL2V56|LED_BUILTIN|LOW|OUTPUT|REPORT_ANALOG|REPORT_DIGITAL|SET_PIN_MODE|SYSEX_START|SYSTEM_RESET)\b/,
14
+ builtin: /\b(?:Audio|BSSID|Bridge|Client|Console|EEPROM|Esplora|EsploraTFT|Ethernet|EthernetClient|EthernetServer|EthernetUDP|File|FileIO|FileSystem|Firmata|GPRS|GSM|GSMBand|GSMClient|GSMModem|GSMPIN|GSMScanner|GSMServer|GSMVoiceCall|GSM_SMS|HttpClient|IPAddress|IRread|Keyboard|KeyboardController|LiquidCrystal|LiquidCrystal_I2C|Mailbox|Mouse|MouseController|PImage|Process|RSSI|RobotControl|RobotMotor|SD|SPI|SSID|Scheduler|Serial|Server|Servo|SoftwareSerial|Stepper|Stream|TFT|Task|USBHost|WiFi|WiFiClient|WiFiServer|WiFiUDP|Wire|YunClient|YunServer|abs|addParameter|analogRead|analogReadResolution|analogReference|analogWrite|analogWriteResolution|answerCall|attach|attachGPRS|attachInterrupt|attached|autoscroll|available|background|beep|begin|beginPacket|beginSD|beginSMS|beginSpeaker|beginTFT|beginTransmission|beginWrite|bit|bitClear|bitRead|bitSet|bitWrite|blink|blinkVersion|buffer|changePIN|checkPIN|checkPUK|checkReg|circle|cityNameRead|cityNameWrite|clear|clearScreen|click|close|compassRead|config|connect|connected|constrain|cos|countryNameRead|countryNameWrite|createChar|cursor|debugPrint|delay|delayMicroseconds|detach|detachInterrupt|digitalRead|digitalWrite|disconnect|display|displayLogos|drawBMP|drawCompass|encryptionType|end|endPacket|endSMS|endTransmission|endWrite|exists|exitValue|fill|find|findUntil|flush|gatewayIP|get|getAsynchronously|getBand|getButton|getCurrentCarrier|getIMEI|getKey|getModifiers|getOemKey|getPINUsed|getResult|getSignalStrength|getSocket|getVoiceCallStatus|getXChange|getYChange|hangCall|height|highByte|home|image|interrupts|isActionDone|isDirectory|isListening|isPIN|isPressed|isValid|keyPressed|keyReleased|keyboardRead|knobRead|leftToRight|line|lineFollowConfig|listen|listenOnLocalhost|loadImage|localIP|lowByte|macAddress|maintain|map|max|messageAvailable|micros|millis|min|mkdir|motorsStop|motorsWrite|mouseDragged|mouseMoved|mousePressed|mouseReleased|move|noAutoscroll|noBlink|noBuffer|noCursor|noDisplay|noFill|noInterrupts|noListenOnLocalhost|noStroke|noTone|onReceive|onRequest|open|openNextFile|overflow|parseCommand|parseFloat|parseInt|parsePacket|pauseMode|peek|pinMode|playFile|playMelody|point|pointTo|position|pow|prepare|press|print|printFirmwareVersion|printVersion|println|process|processInput|pulseIn|put|random|randomSeed|read|readAccelerometer|readBlue|readButton|readBytes|readBytesUntil|readGreen|readJoystickButton|readJoystickSwitch|readJoystickX|readJoystickY|readLightSensor|readMessage|readMicrophone|readNetworks|readRed|readSlider|readString|readStringUntil|readTemperature|ready|rect|release|releaseAll|remoteIP|remoteNumber|remotePort|remove|requestFrom|retrieveCallingNumber|rewindDirectory|rightToLeft|rmdir|robotNameRead|robotNameWrite|run|runAsynchronously|runShellCommand|runShellCommandAsynchronously|running|scanNetworks|scrollDisplayLeft|scrollDisplayRight|seek|sendAnalog|sendDigitalPortPair|sendDigitalPorts|sendString|sendSysex|serialEvent|setBand|setBitOrder|setClockDivider|setCursor|setDNS|setDataMode|setFirmwareVersion|setMode|setPINUsed|setSpeed|setTextSize|setTimeout|shiftIn|shiftOut|shutdown|sin|size|sqrt|startLoop|step|stop|stroke|subnetMask|switchPIN|tan|tempoWrite|text|tone|transfer|tuneWrite|turn|updateIR|userNameRead|userNameWrite|voiceCall|waitContinue|width|write|writeBlue|writeGreen|writeJSON|writeMessage|writeMicroseconds|writeRGB|writeRed|yield)\b/
15
+ });
16
+ Prism.languages.ino = Prism.languages.arduino;
17
+ }
18
+ //#endregion
19
+ export { arduino as default };
20
+
21
+ //# sourceMappingURL=arduino-BP2nYunF.js.map
@@ -0,0 +1 @@
1
+ import "./get-auth-plugin-definition-x8oAsN1R.js";
@@ -0,0 +1,192 @@
1
+ //#region ../../node_modules/.pnpm/refractor@5.0.0/node_modules/refractor/lang/bash.js
2
+ /**
3
+ * @import {Refractor} from '../lib/core.js'
4
+ */
5
+ bash.displayName = "bash";
6
+ bash.aliases = ["sh", "shell"];
7
+ /** @param {Refractor} Prism */
8
+ function bash(Prism) {
9
+ (function(Prism) {
10
+ var envVars = "\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b";
11
+ var commandAfterHeredoc = {
12
+ pattern: /(^(["']?)\w+\2)[ \t]+\S.*/,
13
+ lookbehind: true,
14
+ alias: "punctuation",
15
+ inside: null
16
+ };
17
+ var insideString = {
18
+ bash: commandAfterHeredoc,
19
+ environment: {
20
+ pattern: RegExp("\\$" + envVars),
21
+ alias: "constant"
22
+ },
23
+ variable: [
24
+ {
25
+ pattern: /\$?\(\([\s\S]+?\)\)/,
26
+ greedy: true,
27
+ inside: {
28
+ variable: [{
29
+ pattern: /(^\$\(\([\s\S]+)\)\)/,
30
+ lookbehind: true
31
+ }, /^\$\(\(/],
32
+ number: /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
33
+ operator: /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
34
+ punctuation: /\(\(?|\)\)?|,|;/
35
+ }
36
+ },
37
+ {
38
+ pattern: /\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,
39
+ greedy: true,
40
+ inside: { variable: /^\$\(|^`|\)$|`$/ }
41
+ },
42
+ {
43
+ pattern: /\$\{[^}]+\}/,
44
+ greedy: true,
45
+ inside: {
46
+ operator: /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
47
+ punctuation: /[\[\]]/,
48
+ environment: {
49
+ pattern: RegExp("(\\{)" + envVars),
50
+ lookbehind: true,
51
+ alias: "constant"
52
+ }
53
+ }
54
+ },
55
+ /\$(?:\w+|[#?*!@$])/
56
+ ],
57
+ entity: /\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/
58
+ };
59
+ Prism.languages.bash = {
60
+ shebang: {
61
+ pattern: /^#!\s*\/.*/,
62
+ alias: "important"
63
+ },
64
+ comment: {
65
+ pattern: /(^|[^"{\\$])#.*/,
66
+ lookbehind: true
67
+ },
68
+ "function-name": [{
69
+ pattern: /(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,
70
+ lookbehind: true,
71
+ alias: "function"
72
+ }, {
73
+ pattern: /\b[\w-]+(?=\s*\(\s*\)\s*\{)/,
74
+ alias: "function"
75
+ }],
76
+ "for-or-select": {
77
+ pattern: /(\b(?:for|select)\s+)\w+(?=\s+in\s)/,
78
+ alias: "variable",
79
+ lookbehind: true
80
+ },
81
+ "assign-left": {
82
+ pattern: /(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,
83
+ inside: { environment: {
84
+ pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + envVars),
85
+ lookbehind: true,
86
+ alias: "constant"
87
+ } },
88
+ alias: "variable",
89
+ lookbehind: true
90
+ },
91
+ parameter: {
92
+ pattern: /(^|\s)-{1,2}(?:\w+:[+-]?)?\w+(?:\.\w+)*(?=[=\s]|$)/,
93
+ alias: "variable",
94
+ lookbehind: true
95
+ },
96
+ string: [
97
+ {
98
+ pattern: /((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,
99
+ lookbehind: true,
100
+ greedy: true,
101
+ inside: insideString
102
+ },
103
+ {
104
+ pattern: /((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,
105
+ lookbehind: true,
106
+ greedy: true,
107
+ inside: { bash: commandAfterHeredoc }
108
+ },
109
+ {
110
+ pattern: /(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,
111
+ lookbehind: true,
112
+ greedy: true,
113
+ inside: insideString
114
+ },
115
+ {
116
+ pattern: /(^|[^$\\])'[^']*'/,
117
+ lookbehind: true,
118
+ greedy: true
119
+ },
120
+ {
121
+ pattern: /\$'(?:[^'\\]|\\[\s\S])*'/,
122
+ greedy: true,
123
+ inside: { entity: insideString.entity }
124
+ }
125
+ ],
126
+ environment: {
127
+ pattern: RegExp("\\$?" + envVars),
128
+ alias: "constant"
129
+ },
130
+ variable: insideString.variable,
131
+ function: {
132
+ pattern: /(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cargo|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|java|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|sysctl|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,
133
+ lookbehind: true
134
+ },
135
+ keyword: {
136
+ pattern: /(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,
137
+ lookbehind: true
138
+ },
139
+ builtin: {
140
+ pattern: /(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,
141
+ lookbehind: true,
142
+ alias: "class-name"
143
+ },
144
+ boolean: {
145
+ pattern: /(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,
146
+ lookbehind: true
147
+ },
148
+ "file-descriptor": {
149
+ pattern: /\B&\d\b/,
150
+ alias: "important"
151
+ },
152
+ operator: {
153
+ pattern: /\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,
154
+ inside: { "file-descriptor": {
155
+ pattern: /^\d/,
156
+ alias: "important"
157
+ } }
158
+ },
159
+ punctuation: /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
160
+ number: {
161
+ pattern: /(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,
162
+ lookbehind: true
163
+ }
164
+ };
165
+ commandAfterHeredoc.inside = Prism.languages.bash;
166
+ var toBeCopied = [
167
+ "comment",
168
+ "function-name",
169
+ "for-or-select",
170
+ "assign-left",
171
+ "parameter",
172
+ "string",
173
+ "environment",
174
+ "function",
175
+ "keyword",
176
+ "builtin",
177
+ "boolean",
178
+ "file-descriptor",
179
+ "operator",
180
+ "punctuation",
181
+ "number"
182
+ ];
183
+ var inside = insideString.variable[1].inside;
184
+ for (var i = 0; i < toBeCopied.length; i++) inside[toBeCopied[i]] = Prism.languages.bash[toBeCopied[i]];
185
+ Prism.languages.sh = Prism.languages.bash;
186
+ Prism.languages.shell = Prism.languages.bash;
187
+ })(Prism);
188
+ }
189
+ //#endregion
190
+ export { bash as default };
191
+
192
+ //# sourceMappingURL=bash-Zh_IyzBN.js.map
@@ -0,0 +1,28 @@
1
+ //#region ../../node_modules/.pnpm/refractor@5.0.0/node_modules/refractor/lang/basic.js
2
+ /**
3
+ * @import {Refractor} from '../lib/core.js'
4
+ */
5
+ basic.displayName = "basic";
6
+ basic.aliases = [];
7
+ /** @param {Refractor} Prism */
8
+ function basic(Prism) {
9
+ Prism.languages.basic = {
10
+ comment: {
11
+ pattern: /(?:!|REM\b).+/i,
12
+ inside: { keyword: /^REM/i }
13
+ },
14
+ string: {
15
+ pattern: /"(?:""|[!#$%&'()*,\/:;<=>?^\w +\-.])*"/,
16
+ greedy: true
17
+ },
18
+ number: /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:E[+-]?\d+)?/i,
19
+ keyword: /\b(?:AS|BEEP|BLOAD|BSAVE|CALL(?: ABSOLUTE)?|CASE|CHAIN|CHDIR|CLEAR|CLOSE|CLS|COM|COMMON|CONST|DATA|DECLARE|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DIM|DO|DOUBLE|ELSE|ELSEIF|END|ENVIRON|ERASE|ERROR|EXIT|FIELD|FILES|FOR|FUNCTION|GET|GOSUB|GOTO|IF|INPUT|INTEGER|IOCTL|KEY|KILL|LINE INPUT|LOCATE|LOCK|LONG|LOOP|LSET|MKDIR|NAME|NEXT|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPEN|OPTION BASE|OUT|POKE|PUT|READ|REDIM|REM|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SELECT CASE|SHARED|SHELL|SINGLE|SLEEP|STATIC|STEP|STOP|STRING|SUB|SWAP|SYSTEM|THEN|TIMER|TO|TROFF|TRON|TYPE|UNLOCK|UNTIL|USING|VIEW PRINT|WAIT|WEND|WHILE|WRITE)(?:\$|\b)/i,
20
+ function: /\b(?:ABS|ACCESS|ACOS|ANGLE|AREA|ARITHMETIC|ARRAY|ASIN|ASK|AT|ATN|BASE|BEGIN|BREAK|CAUSE|CEIL|CHR|CLIP|COLLATE|COLOR|CON|COS|COSH|COT|CSC|DATE|DATUM|DEBUG|DECIMAL|DEF|DEG|DEGREES|DELETE|DET|DEVICE|DISPLAY|DOT|ELAPSED|EPS|ERASABLE|EXLINE|EXP|EXTERNAL|EXTYPE|FILETYPE|FIXED|FP|GO|GRAPH|HANDLER|IDN|IMAGE|IN|INT|INTERNAL|IP|IS|KEYED|LBOUND|LCASE|LEFT|LEN|LENGTH|LET|LINE|LINES|LOG|LOG10|LOG2|LTRIM|MARGIN|MAT|MAX|MAXNUM|MID|MIN|MISSING|MOD|NATIVE|NUL|NUMERIC|OF|OPTION|ORD|ORGANIZATION|OUTIN|OUTPUT|PI|POINT|POINTER|POINTS|POS|PRINT|PROGRAM|PROMPT|RAD|RADIANS|RANDOMIZE|RECORD|RECSIZE|RECTYPE|RELATIVE|REMAINDER|REPEAT|REST|RETRY|REWRITE|RIGHT|RND|ROUND|RTRIM|SAME|SEC|SELECT|SEQUENTIAL|SET|SETTER|SGN|SIN|SINH|SIZE|SKIP|SQR|STANDARD|STATUS|STR|STREAM|STYLE|TAB|TAN|TANH|TEMPLATE|TEXT|THERE|TIME|TIMEOUT|TRACE|TRANSFORM|TRUNCATE|UBOUND|UCASE|USE|VAL|VARIABLE|VIEWPORT|WHEN|WINDOW|WITH|ZER|ZONEWIDTH)(?:\$|\b)/i,
21
+ operator: /<[=>]?|>=?|[+\-*\/^=&]|\b(?:AND|EQV|IMP|NOT|OR|XOR)\b/i,
22
+ punctuation: /[,;:()]/
23
+ };
24
+ }
25
+ //#endregion
26
+ export { basic as default };
27
+
28
+ //# sourceMappingURL=basic-3mvohyEL.js.map
@@ -0,0 +1,74 @@
1
+ import { r as __exportAll } from "./rolldown-runtime-FZ4Itg2g.js";
2
+ import { t as clike } from "./clike-D9YNFwtw.js";
3
+ //#region ../../node_modules/.pnpm/refractor@5.0.0/node_modules/refractor/lang/c.js
4
+ /**
5
+ * @import {Refractor} from '../lib/core.js'
6
+ */
7
+ var c_exports = /* @__PURE__ */ __exportAll({ default: () => c });
8
+ c.displayName = "c";
9
+ c.aliases = [];
10
+ /** @param {Refractor} Prism */
11
+ function c(Prism) {
12
+ Prism.register(clike);
13
+ Prism.languages.c = Prism.languages.extend("clike", {
14
+ comment: {
15
+ pattern: /\/\/(?:[^\r\n\\]|\\(?:\r\n?|\n|(?![\r\n])))*|\/\*[\s\S]*?(?:\*\/|$)/,
16
+ greedy: true
17
+ },
18
+ string: {
19
+ pattern: /"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
20
+ greedy: true
21
+ },
22
+ "class-name": {
23
+ pattern: /(\b(?:enum|struct)\s+(?:__attribute__\s*\(\([\s\S]*?\)\)\s*)?)\w+|\b[a-z]\w*_t\b/,
24
+ lookbehind: true
25
+ },
26
+ keyword: /\b(?:_Alignas|_Alignof|_Atomic|_Bool|_Complex|_Generic|_Imaginary|_Noreturn|_Static_assert|_Thread_local|__attribute__|asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|inline|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|typeof|union|unsigned|void|volatile|while)\b/,
27
+ function: /\b[a-z_]\w*(?=\s*\()/i,
28
+ number: /(?:\b0x(?:[\da-f]+(?:\.[\da-f]*)?|\.[\da-f]+)(?:p[+-]?\d+)?|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?)[ful]{0,4}/i,
29
+ operator: />>=?|<<=?|->|([-+&|:])\1|[?:~]|[-+*/%&|^!=<>]=?/
30
+ });
31
+ Prism.languages.insertBefore("c", "string", { char: {
32
+ pattern: /'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n]){0,32}'/,
33
+ greedy: true
34
+ } });
35
+ Prism.languages.insertBefore("c", "string", { macro: {
36
+ pattern: /(^[\t ]*)#\s*[a-z](?:[^\r\n\\/]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|\\(?:\r\n|[\s\S]))*/im,
37
+ lookbehind: true,
38
+ greedy: true,
39
+ alias: "property",
40
+ inside: {
41
+ string: [{
42
+ pattern: /^(#\s*include\s*)<[^>]+>/,
43
+ lookbehind: true
44
+ }, Prism.languages.c["string"]],
45
+ char: Prism.languages.c["char"],
46
+ comment: Prism.languages.c["comment"],
47
+ "macro-name": [{
48
+ pattern: /(^#\s*define\s+)\w+\b(?!\()/i,
49
+ lookbehind: true
50
+ }, {
51
+ pattern: /(^#\s*define\s+)\w+\b(?=\()/i,
52
+ lookbehind: true,
53
+ alias: "function"
54
+ }],
55
+ directive: {
56
+ pattern: /^(#\s*)[a-z]+/,
57
+ lookbehind: true,
58
+ alias: "keyword"
59
+ },
60
+ "directive-hash": /^#/,
61
+ punctuation: /##|\\(?=[\r\n])/,
62
+ expression: {
63
+ pattern: /\S[\s\S]*/,
64
+ inside: Prism.languages.c
65
+ }
66
+ }
67
+ } });
68
+ Prism.languages.insertBefore("c", "function", { constant: /\b(?:EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|__DATE__|__FILE__|__LINE__|__TIMESTAMP__|__TIME__|__func__|stderr|stdin|stdout)\b/ });
69
+ delete Prism.languages.c["boolean"];
70
+ }
71
+ //#endregion
72
+ export { c_exports as n, c as t };
73
+
74
+ //# sourceMappingURL=c-C7Ey31hW.js.map
@@ -0,0 +1,41 @@
1
+ import { r as __exportAll } from "./rolldown-runtime-FZ4Itg2g.js";
2
+ //#region ../../node_modules/.pnpm/refractor@5.0.0/node_modules/refractor/lang/clike.js
3
+ var clike_exports = /* @__PURE__ */ __exportAll({ default: () => clike });
4
+ /**
5
+ * @import {Refractor} from '../lib/core.js'
6
+ */
7
+ clike.displayName = "clike";
8
+ clike.aliases = [];
9
+ /** @param {Refractor} Prism */
10
+ function clike(Prism) {
11
+ Prism.languages.clike = {
12
+ comment: [{
13
+ pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,
14
+ lookbehind: true,
15
+ greedy: true
16
+ }, {
17
+ pattern: /(^|[^\\:])\/\/.*/,
18
+ lookbehind: true,
19
+ greedy: true
20
+ }],
21
+ string: {
22
+ pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
23
+ greedy: true
24
+ },
25
+ "class-name": {
26
+ pattern: /(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,
27
+ lookbehind: true,
28
+ inside: { punctuation: /[.\\]/ }
29
+ },
30
+ keyword: /\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,
31
+ boolean: /\b(?:false|true)\b/,
32
+ function: /\b\w+(?=\()/,
33
+ number: /\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,
34
+ operator: /[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,
35
+ punctuation: /[{}[\];(),.:]/
36
+ };
37
+ }
38
+ //#endregion
39
+ export { clike_exports as n, clike as t };
40
+
41
+ //# sourceMappingURL=clike-D9YNFwtw.js.map
@@ -0,0 +1,39 @@
1
+ import { n as __mf_142, o as __mf_17, r as __mf_161, t as __mf_141, u as __mf_232, v as __mf_58 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js";
2
+ import { t as getAuthPluginDefinition } from "./get-auth-plugin-definition-x8oAsN1R.js";
3
+ import "./auth-8qJtXAgU.js";
4
+ import { t as LOCAL_AUTH_MODELS } from "./model-names-BluImOzu.js";
5
+ import { n as createLocalAuthPluginDefinitionSchema, t as createLocalAuthPartialDefinition } from "./models-CKab4MTC.js";
6
+ //#region src/local-auth/core/schema/schema-issue-checker.ts
7
+ function createLocalAuthSchemaChecker(pluginKey) {
8
+ return __mf_141({
9
+ pluginKey,
10
+ pluginLabel: "Local Auth",
11
+ buildPartialDef: (container) => {
12
+ const authConfig = getAuthPluginDefinition(container.definition);
13
+ try {
14
+ return createLocalAuthPartialDefinition(__mf_17.getFeaturePathByIdOrThrow(container.definition, authConfig.authFeatureRef), __mf_17.getFeaturePathByIdOrThrow(container.definition, authConfig.accountsFeatureRef));
15
+ } catch {
16
+ return;
17
+ }
18
+ }
19
+ });
20
+ }
21
+ //#endregion
22
+ //#region src/local-auth/core/common.ts
23
+ var common_default = __mf_142({
24
+ name: "common",
25
+ dependencies: {
26
+ pluginConfig: __mf_232,
27
+ authModels: __mf_58,
28
+ issueCheckers: __mf_161
29
+ },
30
+ initialize: ({ pluginConfig, authModels, issueCheckers }, { pluginKey }) => {
31
+ pluginConfig.schemas.set(pluginKey, createLocalAuthPluginDefinitionSchema);
32
+ authModels.getAuthModels.set(() => ({ user: LOCAL_AUTH_MODELS.user }));
33
+ issueCheckers.checkers.set(pluginKey, createLocalAuthSchemaChecker(pluginKey));
34
+ }
35
+ });
36
+ //#endregion
37
+ export { common_default as default };
38
+
39
+ //# sourceMappingURL=common-23-wvKrM.js.map
@@ -0,0 +1,37 @@
1
+ import { n as __mf_0 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare__zod__loadShare__.js-Do-7VDVw.js";
2
+ import { C as __mf_91, S as __mf_88, b as __mf_61, h as __mf_41, i as __mf_163, m as __mf_38, n as __mf_142, x as __mf_62 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js";
3
+ //#region src/local-auth/admin/schema/manage-role-action.ts
4
+ var createAdminCrudManageRolesActionSchema = __mf_163(() => __mf_61.extend({ type: __mf_0.literal("manage-roles") }));
5
+ //#endregion
6
+ //#region src/local-auth/admin/schema/reset-password-action.ts
7
+ var createAdminCrudResetPasswordActionSchema = __mf_163(() => __mf_61.extend({ type: __mf_0.literal("reset-password") }));
8
+ //#endregion
9
+ //#region src/local-auth/admin/schema/roles-column.ts
10
+ var createAdminCrudRolesColumnSchema = __mf_163(() => __mf_62.extend({ type: __mf_0.literal("roles") }));
11
+ //#endregion
12
+ //#region src/local-auth/admin/common.ts
13
+ var common_default = __mf_142({
14
+ name: "common",
15
+ dependencies: {
16
+ adminCrudAction: __mf_38,
17
+ adminCrudColumn: __mf_41
18
+ },
19
+ initialize: ({ adminCrudAction, adminCrudColumn }) => {
20
+ adminCrudAction.actions.add(__mf_88({
21
+ name: "manage-roles",
22
+ createSchema: createAdminCrudManageRolesActionSchema
23
+ }));
24
+ adminCrudAction.actions.add(__mf_88({
25
+ name: "reset-password",
26
+ createSchema: createAdminCrudResetPasswordActionSchema
27
+ }));
28
+ adminCrudColumn.columns.add(__mf_91({
29
+ name: "roles",
30
+ createSchema: createAdminCrudRolesColumnSchema
31
+ }));
32
+ }
33
+ });
34
+ //#endregion
35
+ export { common_default as default };
36
+
37
+ //# sourceMappingURL=common-B-NI9TR-.js.map
@@ -0,0 +1,63 @@
1
+ import { _ as __mf_57, f as __mf_26, n as __mf_142, s as __mf_172, u as __mf_232 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js";
2
+ import { t as createAuthPluginDefinitionSchema } from "./plugin-definition-8Exesd6T.js";
3
+ //#region src/auth/core/schema/migrations.ts
4
+ var AUTH_PLUGIN_CONFIG_MIGRATIONS = [{
5
+ name: "add-accounts-feature-ref",
6
+ version: 1,
7
+ migrate: (config, projectDefinition) => {
8
+ const typedConfig = config;
9
+ const features = projectDefinition.features ?? [];
10
+ const accountsFeature = features.find((f) => f.name === "accounts" && !f.parentRef);
11
+ const accountsId = accountsFeature?.id ?? __mf_172.generateNewId();
12
+ const accountsAuthFeature = features.find((f) => f.name === "accounts/auth");
13
+ const accountsAuthId = accountsAuthFeature?.id ?? __mf_172.generateNewId();
14
+ const accountsUsersFeature = features.find((f) => f.name === "accounts/users");
15
+ const accountsUsersId = accountsUsersFeature?.id ?? __mf_172.generateNewId();
16
+ return {
17
+ updatedConfig: {
18
+ ...typedConfig,
19
+ authFeatureRef: "accounts/auth",
20
+ accountsFeatureRef: "accounts/users"
21
+ },
22
+ updateProjectDefinition: (draft) => {
23
+ const draftDef = draft;
24
+ draftDef.features ??= [];
25
+ if (!accountsFeature) draftDef.features.push({
26
+ id: accountsId,
27
+ name: "accounts"
28
+ });
29
+ if (!accountsAuthFeature) draftDef.features.push({
30
+ id: accountsAuthId,
31
+ name: "accounts/auth",
32
+ parentRef: "accounts"
33
+ });
34
+ if (!accountsUsersFeature) draftDef.features.push({
35
+ id: accountsUsersId,
36
+ name: "accounts/users",
37
+ parentRef: "accounts"
38
+ });
39
+ }
40
+ };
41
+ }
42
+ }];
43
+ //#endregion
44
+ //#region src/auth/core/common.ts
45
+ var common_default = __mf_142({
46
+ name: "common",
47
+ dependencies: {
48
+ pluginConfig: __mf_232,
49
+ authConfig: __mf_57
50
+ },
51
+ initialize: ({ authConfig, pluginConfig }, { pluginKey }) => {
52
+ pluginConfig.schemas.set(pluginKey, createAuthPluginDefinitionSchema);
53
+ pluginConfig.migrations.set(pluginKey, AUTH_PLUGIN_CONFIG_MIGRATIONS);
54
+ authConfig.pluginKey.set(pluginKey);
55
+ authConfig.getAuthConfig.set((definition) => {
56
+ return { roles: __mf_26.configByKeyOrThrow(definition, pluginKey).roles };
57
+ });
58
+ }
59
+ });
60
+ //#endregion
61
+ export { common_default as default };
62
+
63
+ //# sourceMappingURL=common-BBriDRRy.js.map
@@ -0,0 +1,39 @@
1
+ import { n as __mf_142, o as __mf_17, r as __mf_161, t as __mf_141, u as __mf_232, v as __mf_58 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js";
2
+ import { t as BETTER_AUTH_MODELS } from "./model-names-CUS5rSei.js";
3
+ import { n as createBetterAuthPluginDefinitionSchema, t as createBetterAuthPartialDefinition } from "./models-BpslIbU7.js";
4
+ import { t as getAuthPluginDefinition } from "./get-auth-plugin-definition-x8oAsN1R.js";
5
+ import "./auth-8qJtXAgU.js";
6
+ //#region src/better-auth/core/schema/schema-issue-checker.ts
7
+ function createBetterAuthSchemaChecker(pluginKey) {
8
+ return __mf_141({
9
+ pluginKey,
10
+ pluginLabel: "Better Auth",
11
+ buildPartialDef: (container) => {
12
+ const authConfig = getAuthPluginDefinition(container.definition);
13
+ try {
14
+ return createBetterAuthPartialDefinition(__mf_17.getFeaturePathByIdOrThrow(container.definition, authConfig.authFeatureRef), __mf_17.getFeaturePathByIdOrThrow(container.definition, authConfig.accountsFeatureRef));
15
+ } catch {
16
+ return;
17
+ }
18
+ }
19
+ });
20
+ }
21
+ //#endregion
22
+ //#region src/better-auth/core/common.ts
23
+ var common_default = __mf_142({
24
+ name: "common",
25
+ dependencies: {
26
+ pluginConfig: __mf_232,
27
+ authModels: __mf_58,
28
+ issueCheckers: __mf_161
29
+ },
30
+ initialize: ({ pluginConfig, authModels, issueCheckers }, { pluginKey }) => {
31
+ pluginConfig.schemas.set(pluginKey, createBetterAuthPluginDefinitionSchema);
32
+ authModels.getAuthModels.set(() => ({ user: BETTER_AUTH_MODELS.user }));
33
+ issueCheckers.checkers.set(pluginKey, createBetterAuthSchemaChecker(pluginKey));
34
+ }
35
+ });
36
+ //#endregion
37
+ export { common_default as default };
38
+
39
+ //# sourceMappingURL=common-BvU-7KsV.js.map
@@ -0,0 +1,37 @@
1
+ import { n as __mf_0 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare__zod__loadShare__.js-Do-7VDVw.js";
2
+ import { C as __mf_91, S as __mf_88, b as __mf_61, h as __mf_41, i as __mf_163, m as __mf_38, n as __mf_142, x as __mf_62 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js";
3
+ //#region src/better-auth/admin/schema/manage-role-action.ts
4
+ var createAdminCrudManageRolesActionSchema = __mf_163(() => __mf_61.extend({ type: __mf_0.literal("manage-roles") }));
5
+ //#endregion
6
+ //#region src/better-auth/admin/schema/reset-password-action.ts
7
+ var createAdminCrudResetPasswordActionSchema = __mf_163(() => __mf_61.extend({ type: __mf_0.literal("reset-password") }));
8
+ //#endregion
9
+ //#region src/better-auth/admin/schema/roles-column.ts
10
+ var createAdminCrudRolesColumnSchema = __mf_163(() => __mf_62.extend({ type: __mf_0.literal("roles") }));
11
+ //#endregion
12
+ //#region src/better-auth/admin/common.ts
13
+ var common_default = __mf_142({
14
+ name: "common",
15
+ dependencies: {
16
+ adminCrudAction: __mf_38,
17
+ adminCrudColumn: __mf_41
18
+ },
19
+ initialize: ({ adminCrudAction, adminCrudColumn }) => {
20
+ adminCrudAction.actions.add(__mf_88({
21
+ name: "manage-roles",
22
+ createSchema: createAdminCrudManageRolesActionSchema
23
+ }));
24
+ adminCrudAction.actions.add(__mf_88({
25
+ name: "reset-password",
26
+ createSchema: createAdminCrudResetPasswordActionSchema
27
+ }));
28
+ adminCrudColumn.columns.add(__mf_91({
29
+ name: "roles",
30
+ createSchema: createAdminCrudRolesColumnSchema
31
+ }));
32
+ }
33
+ });
34
+ //#endregion
35
+ export { common_default as default };
36
+
37
+ //# sourceMappingURL=common-DBBUvtGu.js.map
@@ -0,0 +1,18 @@
1
+ import { n as __mf_142, u as __mf_232, v as __mf_58 } from "./_virtual_mf___mfe_internal__plugin_mf_2_auth__loadShare___mf_0_baseplate_mf_2_dev_mf_1_project_mf_2_builder_mf_2_lib__loadShare__.js-BfSk5vRC.js";
2
+ import { n as PLACEHOLDER_AUTH_MODELS, t as createPlaceholderAuthPluginDefinitionSchema } from "./plugin-definition-ChBrbazJ.js";
3
+ //#region src/placeholder-auth/core/common.ts
4
+ var common_default = __mf_142({
5
+ name: "common",
6
+ dependencies: {
7
+ pluginConfig: __mf_232,
8
+ authModels: __mf_58
9
+ },
10
+ initialize: ({ pluginConfig, authModels }, { pluginKey }) => {
11
+ pluginConfig.schemas.set(pluginKey, createPlaceholderAuthPluginDefinitionSchema);
12
+ authModels.getAuthModels.set(() => ({ user: PLACEHOLDER_AUTH_MODELS.user }));
13
+ }
14
+ });
15
+ //#endregion
16
+ export { common_default as default };
17
+
18
+ //# sourceMappingURL=common-eFh2vwGb.js.map