payload-auth 1.0.1 → 1.1.0

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 (538) hide show
  1. package/dist/authjs/index.d.ts +1 -0
  2. package/dist/authjs/index.d.ts.map +1 -0
  3. package/dist/authjs/index.js +1 -1
  4. package/dist/better-auth/adapter/generate-schema/generate-schema-builder.d.ts +1 -0
  5. package/dist/better-auth/adapter/generate-schema/generate-schema-builder.d.ts.map +1 -0
  6. package/dist/better-auth/adapter/generate-schema/generate-schema-builder.js +1 -1
  7. package/dist/better-auth/adapter/generate-schema/get-payload-schema.d.ts +1 -0
  8. package/dist/better-auth/adapter/generate-schema/get-payload-schema.d.ts.map +1 -0
  9. package/dist/better-auth/adapter/generate-schema/get-payload-schema.js +1 -1
  10. package/dist/better-auth/adapter/generate-schema/index.d.ts +1 -0
  11. package/dist/better-auth/adapter/generate-schema/index.d.ts.map +1 -0
  12. package/dist/better-auth/adapter/generate-schema/index.js +3 -3
  13. package/dist/better-auth/adapter/generate-schema/utils.d.ts +1 -0
  14. package/dist/better-auth/adapter/generate-schema/utils.d.ts.map +1 -0
  15. package/dist/better-auth/adapter/generate-schema/utils.js +1 -1
  16. package/dist/better-auth/adapter/index.d.ts +3 -2
  17. package/dist/better-auth/adapter/index.d.ts.map +1 -0
  18. package/dist/better-auth/adapter/index.js +115 -69
  19. package/dist/better-auth/adapter/transform/index.d.ts +19 -6
  20. package/dist/better-auth/adapter/transform/index.d.ts.map +1 -0
  21. package/dist/better-auth/adapter/transform/index.js +387 -96
  22. package/dist/better-auth/adapter/types.d.ts +3 -1
  23. package/dist/better-auth/adapter/types.d.ts.map +1 -0
  24. package/dist/better-auth/adapter/types.js +1 -1
  25. package/dist/better-auth/index.d.ts +1 -0
  26. package/dist/better-auth/index.d.ts.map +1 -0
  27. package/dist/better-auth/index.js +1 -1
  28. package/dist/better-auth/plugin/helpers/check-passkey-plugin.d.ts +3 -0
  29. package/dist/better-auth/plugin/helpers/check-passkey-plugin.d.ts.map +1 -0
  30. package/dist/better-auth/plugin/helpers/check-passkey-plugin.js +5 -0
  31. package/dist/better-auth/plugin/helpers/check-username-plugin.d.ts +3 -0
  32. package/dist/better-auth/plugin/helpers/check-username-plugin.d.ts.map +1 -0
  33. package/dist/better-auth/plugin/helpers/check-username-plugin.js +5 -0
  34. package/dist/better-auth/plugin/helpers/generate-verify-email-url.d.ts +1 -0
  35. package/dist/better-auth/plugin/helpers/generate-verify-email-url.d.ts.map +1 -0
  36. package/dist/better-auth/plugin/helpers/generate-verify-email-url.js +8 -8
  37. package/dist/better-auth/plugin/helpers/get-admin-access.d.ts +8 -0
  38. package/dist/better-auth/plugin/helpers/get-admin-access.d.ts.map +1 -0
  39. package/dist/better-auth/plugin/helpers/get-admin-access.js +22 -0
  40. package/dist/better-auth/plugin/helpers/get-admin-routes.d.ts +14 -0
  41. package/dist/better-auth/plugin/helpers/get-admin-routes.d.ts.map +1 -0
  42. package/dist/better-auth/plugin/helpers/get-admin-routes.js +6 -0
  43. package/dist/better-auth/plugin/helpers/get-all-roles.d.ts +6 -0
  44. package/dist/better-auth/plugin/helpers/get-all-roles.d.ts.map +1 -0
  45. package/dist/better-auth/plugin/helpers/get-all-roles.js +20 -0
  46. package/dist/better-auth/plugin/helpers/get-ip.d.ts +2 -1
  47. package/dist/better-auth/plugin/helpers/get-ip.d.ts.map +1 -0
  48. package/dist/better-auth/plugin/helpers/get-ip.js +14 -14
  49. package/dist/better-auth/plugin/helpers/get-requst-collection.d.ts +3 -0
  50. package/dist/better-auth/plugin/helpers/get-requst-collection.d.ts.map +1 -0
  51. package/dist/better-auth/plugin/helpers/get-requst-collection.js +14 -0
  52. package/dist/better-auth/plugin/helpers/index.d.ts +2 -1
  53. package/dist/better-auth/plugin/helpers/index.d.ts.map +1 -0
  54. package/dist/better-auth/plugin/helpers/index.js +2 -2
  55. package/dist/better-auth/plugin/{lib → helpers}/prepare-session-data.d.ts +3 -2
  56. package/dist/better-auth/plugin/helpers/prepare-session-data.d.ts.map +1 -0
  57. package/dist/better-auth/plugin/helpers/prepare-session-data.js +42 -0
  58. package/dist/better-auth/plugin/helpers/serialize-cookie.d.ts +3 -2
  59. package/dist/better-auth/plugin/helpers/serialize-cookie.d.ts.map +1 -0
  60. package/dist/better-auth/plugin/helpers/serialize-cookie.js +34 -34
  61. package/dist/better-auth/plugin/index.d.ts +8 -7
  62. package/dist/better-auth/plugin/index.d.ts.map +1 -0
  63. package/dist/better-auth/plugin/index.js +145 -37
  64. package/dist/better-auth/plugin/{collections → lib/build-collections}/accounts/hooks/sync-password-to-user.d.ts +2 -1
  65. package/dist/better-auth/plugin/lib/build-collections/accounts/hooks/sync-password-to-user.d.ts.map +1 -0
  66. package/dist/better-auth/plugin/lib/build-collections/accounts/hooks/sync-password-to-user.js +47 -0
  67. package/dist/better-auth/plugin/lib/build-collections/accounts/index.d.ts +7 -0
  68. package/dist/better-auth/plugin/lib/build-collections/accounts/index.d.ts.map +1 -0
  69. package/dist/better-auth/plugin/lib/build-collections/accounts/index.js +159 -0
  70. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-after-read.d.ts +6 -0
  71. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-after-read.d.ts.map +1 -0
  72. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-after-read.js +11 -0
  73. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-before-change.d.ts +3 -0
  74. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-before-change.d.ts.map +1 -0
  75. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-before-change.js +8 -0
  76. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/index.d.ts +7 -0
  77. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/index.d.ts.map +1 -0
  78. package/dist/better-auth/plugin/lib/build-collections/admin-invitations/index.js +107 -0
  79. package/dist/better-auth/plugin/lib/build-collections/api-keys.d.ts +6 -0
  80. package/dist/better-auth/plugin/lib/build-collections/api-keys.d.ts.map +1 -0
  81. package/dist/better-auth/plugin/lib/build-collections/api-keys.js +196 -0
  82. package/dist/better-auth/plugin/lib/build-collections/index.d.ts +12 -0
  83. package/dist/better-auth/plugin/lib/build-collections/index.d.ts.map +1 -0
  84. package/dist/better-auth/plugin/lib/build-collections/index.js +96 -0
  85. package/dist/better-auth/plugin/lib/build-collections/invitations.d.ts +6 -0
  86. package/dist/better-auth/plugin/lib/build-collections/invitations.d.ts.map +1 -0
  87. package/dist/better-auth/plugin/lib/build-collections/invitations.js +91 -0
  88. package/dist/better-auth/plugin/lib/build-collections/jwks.d.ts +6 -0
  89. package/dist/better-auth/plugin/lib/build-collections/jwks.d.ts.map +1 -0
  90. package/dist/better-auth/plugin/lib/build-collections/jwks.js +43 -0
  91. package/dist/better-auth/plugin/lib/build-collections/members.d.ts +6 -0
  92. package/dist/better-auth/plugin/lib/build-collections/members.d.ts.map +1 -0
  93. package/dist/better-auth/plugin/lib/build-collections/members.js +71 -0
  94. package/dist/better-auth/plugin/lib/build-collections/oauth-access-tokens.d.ts +6 -0
  95. package/dist/better-auth/plugin/lib/build-collections/oauth-access-tokens.d.ts.map +1 -0
  96. package/dist/better-auth/plugin/lib/build-collections/oauth-access-tokens.js +98 -0
  97. package/dist/better-auth/plugin/lib/build-collections/oauth-applications.d.ts +6 -0
  98. package/dist/better-auth/plugin/lib/build-collections/oauth-applications.d.ts.map +1 -0
  99. package/dist/better-auth/plugin/lib/build-collections/oauth-applications.js +113 -0
  100. package/dist/better-auth/plugin/lib/build-collections/oauth-consents.d.ts +6 -0
  101. package/dist/better-auth/plugin/lib/build-collections/oauth-consents.d.ts.map +1 -0
  102. package/dist/better-auth/plugin/lib/build-collections/oauth-consents.js +67 -0
  103. package/dist/better-auth/plugin/lib/build-collections/organizations.d.ts +6 -0
  104. package/dist/better-auth/plugin/lib/build-collections/organizations.d.ts.map +1 -0
  105. package/dist/better-auth/plugin/lib/build-collections/organizations.js +59 -0
  106. package/dist/better-auth/plugin/lib/build-collections/passkeys.d.ts +6 -0
  107. package/dist/better-auth/plugin/lib/build-collections/passkeys.d.ts.map +1 -0
  108. package/dist/better-auth/plugin/lib/build-collections/passkeys.js +108 -0
  109. package/dist/better-auth/plugin/lib/build-collections/sessions.d.ts +8 -0
  110. package/dist/better-auth/plugin/lib/build-collections/sessions.d.ts.map +1 -0
  111. package/dist/better-auth/plugin/lib/build-collections/sessions.js +123 -0
  112. package/dist/better-auth/plugin/lib/build-collections/sso-providers.d.ts +6 -0
  113. package/dist/better-auth/plugin/lib/build-collections/sso-providers.d.ts.map +1 -0
  114. package/dist/better-auth/plugin/lib/build-collections/sso-providers.js +83 -0
  115. package/dist/better-auth/plugin/lib/build-collections/teams.d.ts +6 -0
  116. package/dist/better-auth/plugin/lib/build-collections/teams.d.ts.map +1 -0
  117. package/dist/better-auth/plugin/lib/build-collections/teams.js +45 -0
  118. package/dist/better-auth/plugin/lib/build-collections/two-factors.d.ts +6 -0
  119. package/dist/better-auth/plugin/lib/build-collections/two-factors.d.ts.map +1 -0
  120. package/dist/better-auth/plugin/lib/build-collections/two-factors.js +56 -0
  121. package/dist/better-auth/plugin/lib/build-collections/users/better-auth-strategy.d.ts +8 -0
  122. package/dist/better-auth/plugin/lib/build-collections/users/better-auth-strategy.d.ts.map +1 -0
  123. package/dist/better-auth/plugin/lib/build-collections/users/better-auth-strategy.js +52 -0
  124. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/forgot-password.d.ts +3 -0
  125. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/forgot-password.d.ts.map +1 -0
  126. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/forgot-password.js +96 -0
  127. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/generate-invite-url.d.ts +13 -0
  128. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/generate-invite-url.d.ts.map +1 -0
  129. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/generate-invite-url.js +67 -0
  130. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/login.d.ts +4 -0
  131. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/login.d.ts.map +1 -0
  132. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/login.js +115 -0
  133. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/refresh-token.d.ts +3 -0
  134. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/refresh-token.d.ts.map +1 -0
  135. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/refresh-token.js +110 -0
  136. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/reset-password.d.ts +3 -0
  137. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/reset-password.d.ts.map +1 -0
  138. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/reset-password.js +62 -0
  139. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/send-invite-url.d.ts +3 -0
  140. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/send-invite-url.d.ts.map +1 -0
  141. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/send-invite-url.js +42 -0
  142. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/set-admin-role.d.ts +4 -0
  143. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/set-admin-role.d.ts.map +1 -0
  144. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/set-admin-role.js +79 -0
  145. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/signup.d.ts +4 -0
  146. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/signup.d.ts.map +1 -0
  147. package/dist/better-auth/plugin/lib/build-collections/users/endpoints/signup.js +153 -0
  148. package/dist/better-auth/plugin/{collections → lib/build-collections}/users/hooks/after-login.d.ts +2 -1
  149. package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-login.d.ts.map +1 -0
  150. package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-login.js +75 -0
  151. package/dist/better-auth/plugin/{collections → lib/build-collections}/users/hooks/after-logout.d.ts +2 -1
  152. package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-logout.d.ts.map +1 -0
  153. package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-logout.js +74 -0
  154. package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-delete.d.ts +7 -0
  155. package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-delete.d.ts.map +1 -0
  156. package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-delete.js +45 -0
  157. package/dist/better-auth/plugin/{collections → lib/build-collections}/users/hooks/before-login.d.ts +2 -1
  158. package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-login.d.ts.map +1 -0
  159. package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-login.js +18 -0
  160. package/dist/better-auth/plugin/lib/build-collections/users/hooks/on-verified-change.d.ts +3 -0
  161. package/dist/better-auth/plugin/lib/build-collections/users/hooks/on-verified-change.d.ts.map +1 -0
  162. package/dist/better-auth/plugin/lib/build-collections/users/hooks/on-verified-change.js +14 -0
  163. package/dist/better-auth/plugin/{collections → lib/build-collections}/users/hooks/sync-account.d.ts +2 -1
  164. package/dist/better-auth/plugin/lib/build-collections/users/hooks/sync-account.d.ts.map +1 -0
  165. package/dist/better-auth/plugin/lib/build-collections/users/hooks/sync-account.js +82 -0
  166. package/dist/better-auth/plugin/lib/build-collections/users/index.d.ts +8 -0
  167. package/dist/better-auth/plugin/lib/build-collections/users/index.d.ts.map +1 -0
  168. package/dist/better-auth/plugin/lib/build-collections/users/index.js +345 -0
  169. package/dist/better-auth/plugin/lib/build-collections/utils/get-timestamp-fields.d.ts +8 -0
  170. package/dist/better-auth/plugin/lib/build-collections/utils/get-timestamp-fields.d.ts.map +1 -0
  171. package/dist/better-auth/plugin/lib/build-collections/utils/get-timestamp-fields.js +31 -0
  172. package/dist/better-auth/plugin/lib/{payload-access.d.ts → build-collections/utils/payload-access.d.ts} +2 -1
  173. package/dist/better-auth/plugin/lib/build-collections/utils/payload-access.d.ts.map +1 -0
  174. package/dist/better-auth/plugin/lib/build-collections/utils/payload-access.js +64 -0
  175. package/dist/better-auth/plugin/lib/build-collections/verifications.d.ts +7 -0
  176. package/dist/better-auth/plugin/lib/build-collections/verifications.d.ts.map +1 -0
  177. package/dist/better-auth/plugin/lib/build-collections/verifications.js +63 -0
  178. package/dist/better-auth/plugin/lib/{config.d.ts → constants.d.ts} +14 -0
  179. package/dist/better-auth/plugin/lib/constants.d.ts.map +1 -0
  180. package/dist/better-auth/plugin/lib/constants.js +56 -0
  181. package/dist/better-auth/plugin/lib/get-payload-auth.d.ts +3 -2
  182. package/dist/better-auth/plugin/lib/get-payload-auth.d.ts.map +1 -0
  183. package/dist/better-auth/plugin/lib/get-payload-auth.js +2 -2
  184. package/dist/better-auth/plugin/lib/get-required-collection-slugs.d.ts +5 -4
  185. package/dist/better-auth/plugin/lib/get-required-collection-slugs.d.ts.map +1 -0
  186. package/dist/better-auth/plugin/lib/get-required-collection-slugs.js +26 -43
  187. package/dist/better-auth/plugin/lib/init-better-auth.d.ts +5 -3
  188. package/dist/better-auth/plugin/lib/init-better-auth.d.ts.map +1 -0
  189. package/dist/better-auth/plugin/lib/init-better-auth.js +6 -6
  190. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/admin-plugin.d.ts +3 -0
  191. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/admin-plugin.d.ts.map +1 -0
  192. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/admin-plugin.js +8 -0
  193. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/api-key-plugin.d.ts +2 -0
  194. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/api-key-plugin.d.ts.map +1 -0
  195. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/api-key-plugin.js +17 -0
  196. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/index.d.ts +10 -0
  197. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/index.d.ts.map +1 -0
  198. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/index.js +118 -0
  199. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/oidc-plugin.d.ts +2 -0
  200. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/oidc-plugin.d.ts.map +1 -0
  201. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/oidc-plugin.js +58 -0
  202. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/organizations-plugin.d.ts +2 -0
  203. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/organizations-plugin.d.ts.map +1 -0
  204. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/organizations-plugin.js +86 -0
  205. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/passkey-plugin.d.ts +2 -0
  206. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/passkey-plugin.d.ts.map +1 -0
  207. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/passkey-plugin.js +17 -0
  208. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/sso-plugin.d.ts +2 -0
  209. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/sso-plugin.d.ts.map +1 -0
  210. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/sso-plugin.js +17 -0
  211. package/dist/better-auth/plugin/lib/{ensure-password-set-before-create.d.ts → sanitize-better-auth-options/utils/ensure-password-set-before-create.d.ts} +2 -1
  212. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/ensure-password-set-before-create.d.ts.map +1 -0
  213. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/ensure-password-set-before-create.js +23 -0
  214. package/dist/better-auth/plugin/lib/{password.d.ts → sanitize-better-auth-options/utils/password.d.ts} +1 -0
  215. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/password.d.ts.map +1 -0
  216. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/password.js +62 -0
  217. package/dist/better-auth/plugin/lib/{respect-save-to-jwt-fields-middleware.d.ts → sanitize-better-auth-options/utils/save-to-jwt-middleware.d.ts} +6 -5
  218. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/save-to-jwt-middleware.d.ts.map +1 -0
  219. package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/save-to-jwt-middleware.js +30 -0
  220. package/dist/better-auth/plugin/payload/components/admin-buttons/index.d.ts +8 -0
  221. package/dist/better-auth/plugin/payload/components/admin-buttons/index.d.ts.map +1 -0
  222. package/dist/better-auth/plugin/payload/components/admin-buttons/index.js +115 -0
  223. package/dist/better-auth/plugin/payload/components/admin-buttons/index.scss +31 -0
  224. package/dist/better-auth/plugin/payload/components/admin-invite-button/index.d.ts +11 -0
  225. package/dist/better-auth/plugin/payload/components/admin-invite-button/index.d.ts.map +1 -0
  226. package/dist/better-auth/plugin/payload/components/admin-invite-button/index.js +196 -0
  227. package/dist/better-auth/plugin/payload/components/admin-invite-button/index.scss +131 -0
  228. package/dist/better-auth/plugin/payload/components/admin-social-provider-buttons/index.d.ts +14 -0
  229. package/dist/better-auth/plugin/payload/components/admin-social-provider-buttons/index.d.ts.map +1 -0
  230. package/dist/better-auth/plugin/payload/components/admin-social-provider-buttons/index.js +111 -0
  231. package/dist/better-auth/plugin/payload/components/admin-social-provider-buttons/index.scss +51 -0
  232. package/dist/better-auth/plugin/payload/components/form-header/index.d.ts +9 -0
  233. package/dist/better-auth/plugin/payload/components/form-header/index.d.ts.map +1 -0
  234. package/dist/better-auth/plugin/payload/components/form-header/index.js +23 -0
  235. package/dist/better-auth/plugin/payload/components/form-header/index.scss +8 -0
  236. package/dist/better-auth/plugin/payload/components/icons.d.ts +9 -0
  237. package/dist/better-auth/plugin/payload/components/icons.d.ts.map +1 -0
  238. package/dist/better-auth/plugin/payload/components/icons.js +437 -0
  239. package/dist/better-auth/plugin/payload/components/logo.d.ts +4 -1
  240. package/dist/better-auth/plugin/payload/components/logo.d.ts.map +1 -0
  241. package/dist/better-auth/plugin/payload/components/logo.js +22 -34
  242. package/dist/better-auth/plugin/payload/components/logout-button.d.ts +6 -0
  243. package/dist/better-auth/plugin/payload/components/logout-button.d.ts.map +1 -0
  244. package/dist/better-auth/plugin/payload/components/logout-button.js +27 -0
  245. package/dist/better-auth/plugin/payload/components/rsc-redirect.d.ts +7 -0
  246. package/dist/better-auth/plugin/payload/components/rsc-redirect.d.ts.map +1 -0
  247. package/dist/better-auth/plugin/payload/components/rsc-redirect.js +8 -0
  248. package/dist/better-auth/plugin/payload/components/styles.css +2 -2
  249. package/dist/better-auth/plugin/payload/components/token-field.d.ts +5 -0
  250. package/dist/better-auth/plugin/payload/components/token-field.d.ts.map +1 -0
  251. package/dist/better-auth/plugin/payload/components/token-field.js +30 -0
  252. package/dist/better-auth/plugin/payload/exports/client.d.ts +7 -3
  253. package/dist/better-auth/plugin/payload/exports/client.d.ts.map +1 -0
  254. package/dist/better-auth/plugin/payload/exports/client.js +7 -4
  255. package/dist/better-auth/plugin/payload/exports/rsc.d.ts +10 -5
  256. package/dist/better-auth/plugin/payload/exports/rsc.d.ts.map +1 -0
  257. package/dist/better-auth/plugin/payload/exports/rsc.js +10 -6
  258. package/dist/better-auth/plugin/payload/utils/generate-admin-invite-url.d.ts +3 -0
  259. package/dist/better-auth/plugin/payload/utils/generate-admin-invite-url.d.ts.map +1 -0
  260. package/dist/better-auth/plugin/payload/utils/generate-admin-invite-url.js +8 -0
  261. package/dist/better-auth/plugin/payload/utils/generate-metadata.d.ts +15 -0
  262. package/dist/better-auth/plugin/payload/utils/generate-metadata.d.ts.map +1 -0
  263. package/dist/better-auth/plugin/payload/utils/generate-metadata.js +74 -0
  264. package/dist/better-auth/plugin/payload/utils/get-safe-redirect.d.ts +2 -0
  265. package/dist/better-auth/plugin/payload/utils/get-safe-redirect.d.ts.map +1 -0
  266. package/dist/better-auth/plugin/payload/utils/get-safe-redirect.js +23 -0
  267. package/dist/better-auth/plugin/payload/views/admin-invite/client.d.ts +12 -0
  268. package/dist/better-auth/plugin/payload/views/admin-invite/client.d.ts.map +1 -0
  269. package/dist/better-auth/plugin/payload/views/admin-invite/client.js +92 -0
  270. package/dist/better-auth/plugin/payload/views/admin-invite/index.d.ts +11 -0
  271. package/dist/better-auth/plugin/payload/views/admin-invite/index.d.ts.map +1 -0
  272. package/dist/better-auth/plugin/payload/views/admin-invite/index.js +84 -0
  273. package/dist/better-auth/plugin/payload/views/admin-invite/index.scss +25 -0
  274. package/dist/better-auth/plugin/payload/views/create-first-admin/client.d.ts +14 -0
  275. package/dist/better-auth/plugin/payload/views/create-first-admin/client.d.ts.map +1 -0
  276. package/dist/better-auth/plugin/payload/views/create-first-admin/client.js +95 -0
  277. package/dist/better-auth/plugin/payload/views/create-first-admin/index.d.ts +11 -3
  278. package/dist/better-auth/plugin/payload/views/create-first-admin/index.d.ts.map +1 -0
  279. package/dist/better-auth/plugin/payload/views/create-first-admin/index.js +124 -92
  280. package/dist/better-auth/plugin/payload/views/create-first-admin/index.scss +29 -0
  281. package/dist/better-auth/plugin/payload/views/forgot-password/client.d.ts +8 -0
  282. package/dist/better-auth/plugin/payload/views/forgot-password/client.d.ts.map +1 -0
  283. package/dist/better-auth/plugin/payload/views/forgot-password/client.js +119 -0
  284. package/dist/better-auth/plugin/payload/views/forgot-password/index.d.ts +9 -0
  285. package/dist/better-auth/plugin/payload/views/forgot-password/index.d.ts.map +1 -0
  286. package/dist/better-auth/plugin/payload/views/forgot-password/index.js +69 -0
  287. package/dist/better-auth/plugin/payload/views/forgot-password/index.scss +0 -0
  288. package/dist/better-auth/plugin/payload/views/inactivity/index.d.ts +5 -0
  289. package/dist/better-auth/plugin/payload/views/inactivity/index.d.ts.map +1 -0
  290. package/dist/better-auth/plugin/payload/views/inactivity/index.js +12 -0
  291. package/dist/better-auth/plugin/payload/views/login/form/fields/login-field.d.ts +9 -0
  292. package/dist/better-auth/plugin/payload/views/login/form/fields/login-field.d.ts.map +1 -0
  293. package/dist/better-auth/plugin/payload/views/login/form/fields/login-field.js +54 -0
  294. package/dist/better-auth/plugin/payload/views/login/form/fields/password/index.d.ts +1 -0
  295. package/dist/better-auth/plugin/payload/views/login/form/fields/password/index.d.ts.map +1 -0
  296. package/dist/better-auth/plugin/payload/views/login/form/fields/password/index.js +121 -0
  297. package/dist/better-auth/plugin/payload/views/login/form/fields/password/index.scss +31 -0
  298. package/dist/better-auth/plugin/payload/views/login/form/fields/password/types.d.ts +56 -0
  299. package/dist/better-auth/plugin/payload/views/login/form/fields/password/types.d.ts.map +1 -0
  300. package/dist/better-auth/plugin/payload/views/login/form/fields/password/types.js +3 -0
  301. package/dist/better-auth/plugin/payload/views/login/form/index.d.ts +17 -0
  302. package/dist/better-auth/plugin/payload/views/login/form/index.d.ts.map +1 -0
  303. package/dist/better-auth/plugin/payload/views/login/form/index.js +137 -0
  304. package/dist/better-auth/plugin/payload/views/login/form/index.scss +23 -0
  305. package/dist/better-auth/plugin/payload/views/login/index.d.ts +11 -4
  306. package/dist/better-auth/plugin/payload/views/login/index.d.ts.map +1 -0
  307. package/dist/better-auth/plugin/payload/views/login/index.js +81 -61
  308. package/dist/better-auth/plugin/payload/views/login/index.scss +10 -0
  309. package/dist/better-auth/plugin/payload/views/logout/client.d.ts +8 -0
  310. package/dist/better-auth/plugin/payload/views/logout/client.d.ts.map +1 -0
  311. package/dist/better-auth/plugin/payload/views/logout/client.js +76 -0
  312. package/dist/better-auth/plugin/payload/views/logout/index.d.ts +8 -0
  313. package/dist/better-auth/plugin/payload/views/logout/index.d.ts.map +1 -0
  314. package/dist/better-auth/plugin/payload/views/logout/index.js +14 -0
  315. package/dist/better-auth/plugin/payload/views/logout/index.scss +0 -0
  316. package/dist/better-auth/plugin/payload/views/reset-password/client.d.ts +7 -0
  317. package/dist/better-auth/plugin/payload/views/reset-password/client.d.ts.map +1 -0
  318. package/dist/better-auth/plugin/payload/views/reset-password/client.js +72 -0
  319. package/dist/better-auth/plugin/payload/views/reset-password/index.d.ts +5 -0
  320. package/dist/better-auth/plugin/payload/views/reset-password/index.d.ts.map +1 -0
  321. package/dist/better-auth/plugin/payload/views/reset-password/index.js +81 -0
  322. package/dist/better-auth/plugin/payload/views/reset-password/index.scss +9 -0
  323. package/dist/better-auth/plugin/payload/views/reset-password/metadata.d.ts +3 -0
  324. package/dist/better-auth/plugin/payload/views/reset-password/metadata.d.ts.map +1 -0
  325. package/dist/better-auth/plugin/payload/views/reset-password/metadata.js +11 -0
  326. package/dist/better-auth/plugin/types.d.ts +171 -33
  327. package/dist/better-auth/plugin/types.d.ts.map +1 -0
  328. package/dist/better-auth/plugin/types.js +1 -1
  329. package/dist/better-auth/types.d.ts +1 -0
  330. package/dist/better-auth/types.d.ts.map +1 -0
  331. package/dist/better-auth/types.js +1 -1
  332. package/dist/clerk/admin-ui.d.ts +4 -0
  333. package/dist/clerk/admin-ui.d.ts.map +1 -0
  334. package/dist/clerk/admin-ui.js +5 -0
  335. package/dist/clerk/index.d.ts +7 -1
  336. package/dist/clerk/index.d.ts.map +1 -0
  337. package/dist/clerk/index.js +7 -2
  338. package/dist/clerk/plugin/auth-strategy.d.ts +11 -0
  339. package/dist/clerk/plugin/auth-strategy.d.ts.map +1 -0
  340. package/dist/clerk/plugin/auth-strategy.js +45 -0
  341. package/dist/clerk/plugin/collections/users/access.d.ts +14 -0
  342. package/dist/clerk/plugin/collections/users/access.d.ts.map +1 -0
  343. package/dist/clerk/plugin/collections/users/access.js +36 -0
  344. package/dist/clerk/plugin/collections/users/endpoints/sync-from-clerk.d.ts +14 -0
  345. package/dist/clerk/plugin/collections/users/endpoints/sync-from-clerk.d.ts.map +1 -0
  346. package/dist/clerk/plugin/collections/users/endpoints/sync-from-clerk.js +108 -0
  347. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/index.d.ts +4 -0
  348. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/index.d.ts.map +1 -0
  349. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/index.js +5 -0
  350. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userCreated.d.ts +13 -0
  351. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userCreated.d.ts.map +1 -0
  352. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userCreated.js +33 -0
  353. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userDeleted.d.ts +11 -0
  354. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userDeleted.d.ts.map +1 -0
  355. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userDeleted.js +27 -0
  356. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userUpdated.d.ts +13 -0
  357. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userUpdated.d.ts.map +1 -0
  358. package/dist/clerk/plugin/collections/users/endpoints/webhook/handlers/userUpdated.js +35 -0
  359. package/dist/clerk/plugin/collections/users/endpoints/webhook/index.d.ts +12 -0
  360. package/dist/clerk/plugin/collections/users/endpoints/webhook/index.d.ts.map +1 -0
  361. package/dist/clerk/plugin/collections/users/endpoints/webhook/index.js +86 -0
  362. package/dist/clerk/plugin/collections/users/fields.d.ts +6 -0
  363. package/dist/clerk/plugin/collections/users/fields.d.ts.map +1 -0
  364. package/dist/clerk/plugin/collections/users/fields.js +81 -0
  365. package/dist/clerk/plugin/collections/users/index.d.ts +10 -0
  366. package/dist/clerk/plugin/collections/users/index.d.ts.map +1 -0
  367. package/dist/clerk/plugin/collections/users/index.js +95 -0
  368. package/dist/clerk/plugin/components/after-login-form.d.ts +4 -0
  369. package/dist/clerk/plugin/components/after-login-form.d.ts.map +1 -0
  370. package/dist/clerk/plugin/components/after-login-form.js +65 -0
  371. package/dist/clerk/plugin/components/logout-button.d.ts +2 -0
  372. package/dist/clerk/plugin/components/logout-button.d.ts.map +1 -0
  373. package/dist/clerk/plugin/components/logout-button.js +49 -0
  374. package/dist/clerk/plugin/components/sync-clerk-users-button.d.ts +6 -0
  375. package/dist/clerk/plugin/components/sync-clerk-users-button.d.ts.map +1 -0
  376. package/dist/clerk/plugin/components/sync-clerk-users-button.js +75 -0
  377. package/dist/clerk/plugin.d.ts +6 -0
  378. package/dist/clerk/plugin.d.ts.map +1 -0
  379. package/dist/clerk/plugin.js +63 -0
  380. package/dist/clerk/types.d.ts +63 -0
  381. package/dist/clerk/types.d.ts.map +1 -0
  382. package/dist/clerk/types.js +3 -0
  383. package/dist/clerk/utils/clerk-user.d.ts +21 -0
  384. package/dist/clerk/utils/clerk-user.d.ts.map +1 -0
  385. package/dist/clerk/utils/clerk-user.js +45 -0
  386. package/dist/clerk/utils/index.d.ts +4 -0
  387. package/dist/clerk/utils/index.d.ts.map +1 -0
  388. package/dist/clerk/utils/index.js +5 -0
  389. package/dist/clerk/utils/load-clerk-instance.d.ts +8 -0
  390. package/dist/clerk/utils/load-clerk-instance.d.ts.map +1 -0
  391. package/dist/clerk/utils/load-clerk-instance.js +11 -0
  392. package/dist/clerk/utils/svix.d.ts +9 -0
  393. package/dist/clerk/utils/svix.d.ts.map +1 -0
  394. package/dist/clerk/utils/svix.js +40 -0
  395. package/dist/clerk/utils/user.d.ts +17 -0
  396. package/dist/clerk/utils/user.d.ts.map +1 -0
  397. package/dist/clerk/utils/user.js +46 -0
  398. package/dist/index.d.ts +5 -0
  399. package/dist/index.d.ts.map +1 -0
  400. package/dist/index.js +5 -5
  401. package/dist/kinde/index.d.ts +1 -0
  402. package/dist/kinde/index.d.ts.map +1 -0
  403. package/dist/kinde/index.js +1 -1
  404. package/package.json +44 -18
  405. package/LICENSE.md +0 -17
  406. package/dist/authjs/index.js.map +0 -1
  407. package/dist/better-auth/adapter/dev/bin/run.d.ts +0 -1
  408. package/dist/better-auth/adapter/dev/bin/run.js +0 -64
  409. package/dist/better-auth/adapter/dev/bin/run.js.map +0 -1
  410. package/dist/better-auth/adapter/dev/bin/schema.d.ts +0 -22
  411. package/dist/better-auth/adapter/dev/bin/schema.js +0 -160
  412. package/dist/better-auth/adapter/dev/bin/schema.js.map +0 -1
  413. package/dist/better-auth/adapter/dev/collections.d.ts +0 -3
  414. package/dist/better-auth/adapter/dev/collections.js +0 -212
  415. package/dist/better-auth/adapter/dev/collections.js.map +0 -1
  416. package/dist/better-auth/adapter/dev/index.d.ts +0 -3
  417. package/dist/better-auth/adapter/dev/index.js +0 -168
  418. package/dist/better-auth/adapter/dev/index.js.map +0 -1
  419. package/dist/better-auth/adapter/generate-schema/generate-schema-builder.js.map +0 -1
  420. package/dist/better-auth/adapter/generate-schema/get-payload-schema.js.map +0 -1
  421. package/dist/better-auth/adapter/generate-schema/index.js.map +0 -1
  422. package/dist/better-auth/adapter/generate-schema/utils.js.map +0 -1
  423. package/dist/better-auth/adapter/index.js.map +0 -1
  424. package/dist/better-auth/adapter/test/adapter.test.d.ts +0 -1
  425. package/dist/better-auth/adapter/test/adapter.test.js +0 -181
  426. package/dist/better-auth/adapter/test/adapter.test.js.map +0 -1
  427. package/dist/better-auth/adapter/test/better-auth-adapter-test.d.ts +0 -7
  428. package/dist/better-auth/adapter/test/better-auth-adapter-test.js +0 -425
  429. package/dist/better-auth/adapter/test/better-auth-adapter-test.js.map +0 -1
  430. package/dist/better-auth/adapter/test/schema.test.d.ts +0 -1
  431. package/dist/better-auth/adapter/test/schema.test.js +0 -796
  432. package/dist/better-auth/adapter/test/schema.test.js.map +0 -1
  433. package/dist/better-auth/adapter/test/test_payload1/schema.d.ts +0 -23
  434. package/dist/better-auth/adapter/test/test_payload1/schema.js +0 -177
  435. package/dist/better-auth/adapter/test/test_payload1/schema.js.map +0 -1
  436. package/dist/better-auth/adapter/test/test_payload2/schema.d.ts +0 -23
  437. package/dist/better-auth/adapter/test/test_payload2/schema.js +0 -167
  438. package/dist/better-auth/adapter/test/test_payload2/schema.js.map +0 -1
  439. package/dist/better-auth/adapter/test/test_payload3/schema.d.ts +0 -23
  440. package/dist/better-auth/adapter/test/test_payload3/schema.js +0 -198
  441. package/dist/better-auth/adapter/test/test_payload3/schema.js.map +0 -1
  442. package/dist/better-auth/adapter/transform/index.js.map +0 -1
  443. package/dist/better-auth/adapter/types.js.map +0 -1
  444. package/dist/better-auth/index.js.map +0 -1
  445. package/dist/better-auth/plugin/collections/accounts/hooks/sync-password-to-user.js +0 -47
  446. package/dist/better-auth/plugin/collections/accounts/hooks/sync-password-to-user.js.map +0 -1
  447. package/dist/better-auth/plugin/collections/users/endpoints/refresh-token.d.ts +0 -6
  448. package/dist/better-auth/plugin/collections/users/endpoints/refresh-token.js +0 -106
  449. package/dist/better-auth/plugin/collections/users/endpoints/refresh-token.js.map +0 -1
  450. package/dist/better-auth/plugin/collections/users/hooks/after-login.js +0 -71
  451. package/dist/better-auth/plugin/collections/users/hooks/after-login.js.map +0 -1
  452. package/dist/better-auth/plugin/collections/users/hooks/after-logout.js +0 -49
  453. package/dist/better-auth/plugin/collections/users/hooks/after-logout.js.map +0 -1
  454. package/dist/better-auth/plugin/collections/users/hooks/before-login.js +0 -18
  455. package/dist/better-auth/plugin/collections/users/hooks/before-login.js.map +0 -1
  456. package/dist/better-auth/plugin/collections/users/hooks/clean-up-user-after-delete.d.ts +0 -5
  457. package/dist/better-auth/plugin/collections/users/hooks/clean-up-user-after-delete.js +0 -33
  458. package/dist/better-auth/plugin/collections/users/hooks/clean-up-user-after-delete.js.map +0 -1
  459. package/dist/better-auth/plugin/collections/users/hooks/on-verified-change.d.ts +0 -2
  460. package/dist/better-auth/plugin/collections/users/hooks/on-verified-change.js +0 -14
  461. package/dist/better-auth/plugin/collections/users/hooks/on-verified-change.js.map +0 -1
  462. package/dist/better-auth/plugin/collections/users/hooks/sync-account.js +0 -82
  463. package/dist/better-auth/plugin/collections/users/hooks/sync-account.js.map +0 -1
  464. package/dist/better-auth/plugin/helpers/generate-verify-email-url.js.map +0 -1
  465. package/dist/better-auth/plugin/helpers/get-ip.js.map +0 -1
  466. package/dist/better-auth/plugin/helpers/index.js.map +0 -1
  467. package/dist/better-auth/plugin/helpers/serialize-cookie.js.map +0 -1
  468. package/dist/better-auth/plugin/index.js.map +0 -1
  469. package/dist/better-auth/plugin/lib/auth-strategy.d.ts +0 -8
  470. package/dist/better-auth/plugin/lib/auth-strategy.js +0 -48
  471. package/dist/better-auth/plugin/lib/auth-strategy.js.map +0 -1
  472. package/dist/better-auth/plugin/lib/build-collection-configs.d.ts +0 -11
  473. package/dist/better-auth/plugin/lib/build-collection-configs.js +0 -1558
  474. package/dist/better-auth/plugin/lib/build-collection-configs.js.map +0 -1
  475. package/dist/better-auth/plugin/lib/config.js +0 -43
  476. package/dist/better-auth/plugin/lib/config.js.map +0 -1
  477. package/dist/better-auth/plugin/lib/ensure-password-set-before-create.js +0 -24
  478. package/dist/better-auth/plugin/lib/ensure-password-set-before-create.js.map +0 -1
  479. package/dist/better-auth/plugin/lib/get-payload-auth.js.map +0 -1
  480. package/dist/better-auth/plugin/lib/get-required-collection-slugs.js.map +0 -1
  481. package/dist/better-auth/plugin/lib/init-better-auth.js.map +0 -1
  482. package/dist/better-auth/plugin/lib/password.js +0 -63
  483. package/dist/better-auth/plugin/lib/password.js.map +0 -1
  484. package/dist/better-auth/plugin/lib/payload-access.js +0 -64
  485. package/dist/better-auth/plugin/lib/payload-access.js.map +0 -1
  486. package/dist/better-auth/plugin/lib/prepare-session-data.js +0 -42
  487. package/dist/better-auth/plugin/lib/prepare-session-data.js.map +0 -1
  488. package/dist/better-auth/plugin/lib/respect-save-to-jwt-fields-middleware.js +0 -30
  489. package/dist/better-auth/plugin/lib/respect-save-to-jwt-fields-middleware.js.map +0 -1
  490. package/dist/better-auth/plugin/lib/sanitize-auth-options.d.ts +0 -5
  491. package/dist/better-auth/plugin/lib/sanitize-auth-options.js +0 -298
  492. package/dist/better-auth/plugin/lib/sanitize-auth-options.js.map +0 -1
  493. package/dist/better-auth/plugin/payload/components/admin-buttons.d.ts +0 -5
  494. package/dist/better-auth/plugin/payload/components/admin-buttons.js +0 -222
  495. package/dist/better-auth/plugin/payload/components/admin-buttons.js.map +0 -1
  496. package/dist/better-auth/plugin/payload/components/login-redirect.d.ts +0 -1
  497. package/dist/better-auth/plugin/payload/components/login-redirect.js +0 -6
  498. package/dist/better-auth/plugin/payload/components/login-redirect.js.map +0 -1
  499. package/dist/better-auth/plugin/payload/components/logo.js.map +0 -1
  500. package/dist/better-auth/plugin/payload/components/logout.d.ts +0 -1
  501. package/dist/better-auth/plugin/payload/components/logout.js +0 -61
  502. package/dist/better-auth/plugin/payload/components/logout.js.map +0 -1
  503. package/dist/better-auth/plugin/payload/components/sign-in.d.ts +0 -3
  504. package/dist/better-auth/plugin/payload/components/sign-in.js +0 -384
  505. package/dist/better-auth/plugin/payload/components/sign-in.js.map +0 -1
  506. package/dist/better-auth/plugin/payload/components/sign-up.d.ts +0 -6
  507. package/dist/better-auth/plugin/payload/components/sign-up.js +0 -502
  508. package/dist/better-auth/plugin/payload/components/sign-up.js.map +0 -1
  509. package/dist/better-auth/plugin/payload/components/ui/button.d.ts +0 -10
  510. package/dist/better-auth/plugin/payload/components/ui/button.js +0 -42
  511. package/dist/better-auth/plugin/payload/components/ui/button.js.map +0 -1
  512. package/dist/better-auth/plugin/payload/components/ui/card.d.ts +0 -9
  513. package/dist/better-auth/plugin/payload/components/ui/card.js +0 -55
  514. package/dist/better-auth/plugin/payload/components/ui/card.js.map +0 -1
  515. package/dist/better-auth/plugin/payload/components/ui/checkbox.d.ts +0 -4
  516. package/dist/better-auth/plugin/payload/components/ui/checkbox.js +0 -23
  517. package/dist/better-auth/plugin/payload/components/ui/checkbox.js.map +0 -1
  518. package/dist/better-auth/plugin/payload/components/ui/cn.d.ts +0 -2
  519. package/dist/better-auth/plugin/payload/components/ui/cn.js +0 -7
  520. package/dist/better-auth/plugin/payload/components/ui/cn.js.map +0 -1
  521. package/dist/better-auth/plugin/payload/components/ui/input.d.ts +0 -3
  522. package/dist/better-auth/plugin/payload/components/ui/input.js +0 -14
  523. package/dist/better-auth/plugin/payload/components/ui/input.js.map +0 -1
  524. package/dist/better-auth/plugin/payload/components/ui/label.d.ts +0 -4
  525. package/dist/better-auth/plugin/payload/components/ui/label.js +0 -15
  526. package/dist/better-auth/plugin/payload/components/ui/label.js.map +0 -1
  527. package/dist/better-auth/plugin/payload/components/ui/password-input.d.ts +0 -2
  528. package/dist/better-auth/plugin/payload/components/ui/password-input.js +0 -55
  529. package/dist/better-auth/plugin/payload/components/ui/password-input.js.map +0 -1
  530. package/dist/better-auth/plugin/payload/exports/client.js.map +0 -1
  531. package/dist/better-auth/plugin/payload/exports/rsc.js.map +0 -1
  532. package/dist/better-auth/plugin/payload/views/create-first-admin/index.js.map +0 -1
  533. package/dist/better-auth/plugin/payload/views/login/index.js.map +0 -1
  534. package/dist/better-auth/plugin/types.js.map +0 -1
  535. package/dist/better-auth/types.js.map +0 -1
  536. package/dist/clerk/index.js.map +0 -1
  537. package/dist/index.js.map +0 -1
  538. package/dist/kinde/index.js.map +0 -1
@@ -1,6 +1,8 @@
1
1
  import type { BasePayload } from "payload";
2
2
  import type { AdapterInstance } from "better-auth";
3
3
  export type PayloadAdapterOptions = {
4
+ idType: "number" | "text";
4
5
  enableDebugLogs?: boolean;
5
6
  };
6
- export type PayloadAdapter = (payloadClient: BasePayload | Promise<BasePayload> | (() => Promise<BasePayload>), config?: PayloadAdapterOptions) => AdapterInstance;
7
+ export type PayloadAdapter = (payloadClient: BasePayload | Promise<BasePayload> | (() => Promise<BasePayload>), config: PayloadAdapterOptions) => AdapterInstance;
8
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/better-auth/adapter/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAC3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAEnD,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,CAC3B,aAAa,EACT,WAAW,GACX,OAAO,CAAC,WAAW,CAAC,GACpB,CAAC,MAAM,OAAO,CAAC,WAAW,CAAC,CAAC,EAChC,MAAM,EAAE,qBAAqB,KAC1B,eAAe,CAAC"}
@@ -1,3 +1,3 @@
1
1
  export { };
2
2
 
3
- //# sourceMappingURL=types.js.map
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9hZGFwdGVyL3R5cGVzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgQmFzZVBheWxvYWQgfSBmcm9tIFwicGF5bG9hZFwiO1xuaW1wb3J0IHR5cGUgeyBBZGFwdGVySW5zdGFuY2UgfSBmcm9tIFwiYmV0dGVyLWF1dGhcIjtcblxuZXhwb3J0IHR5cGUgUGF5bG9hZEFkYXB0ZXJPcHRpb25zID0ge1xuICBpZFR5cGU6IFwibnVtYmVyXCIgfCBcInRleHRcIjtcbiAgZW5hYmxlRGVidWdMb2dzPzogYm9vbGVhbjtcbn07XG5cbmV4cG9ydCB0eXBlIFBheWxvYWRBZGFwdGVyID0gKFxuICBwYXlsb2FkQ2xpZW50OlxuICAgIHwgQmFzZVBheWxvYWRcbiAgICB8IFByb21pc2U8QmFzZVBheWxvYWQ+XG4gICAgfCAoKCkgPT4gUHJvbWlzZTxCYXNlUGF5bG9hZD4pLFxuICBjb25maWc6IFBheWxvYWRBZGFwdGVyT3B0aW9uc1xuKSA9PiBBZGFwdGVySW5zdGFuY2U7Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVFBLFdBTXFCIn0=
@@ -1,3 +1,4 @@
1
1
  export * from './adapter';
2
2
  export * from './plugin';
3
3
  export * from './types';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/better-auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA"}
@@ -2,4 +2,4 @@ export * from './adapter';
2
2
  export * from './plugin';
3
3
  export * from './types';
4
4
 
5
- //# sourceMappingURL=index.js.map
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9iZXR0ZXItYXV0aC9pbmRleC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2FkYXB0ZXInXG5leHBvcnQgKiBmcm9tICcuL3BsdWdpbidcbmV4cG9ydCAqIGZyb20gJy4vdHlwZXMnIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsWUFBVztBQUN6QixjQUFjLFdBQVU7QUFDeEIsY0FBYyxVQUFTIn0=
@@ -0,0 +1,3 @@
1
+ import { SanitizedBetterAuthOptions } from "../types";
2
+ export declare function checkPasskeyPlugin(options: SanitizedBetterAuthOptions): boolean;
3
+ //# sourceMappingURL=check-passkey-plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"check-passkey-plugin.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/check-passkey-plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,UAAU,CAAC;AAEtD,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,0BAA0B,WAErE"}
@@ -0,0 +1,5 @@
1
+ export function checkPasskeyPlugin(options) {
2
+ return options.plugins?.some((plugin)=>plugin.id === "passkey") || false;
3
+ }
4
+
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9jaGVjay1wYXNza2V5LXBsdWdpbi50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTYW5pdGl6ZWRCZXR0ZXJBdXRoT3B0aW9ucyB9IGZyb20gXCIuLi90eXBlc1wiO1xuXG5leHBvcnQgZnVuY3Rpb24gY2hlY2tQYXNza2V5UGx1Z2luKG9wdGlvbnM6IFNhbml0aXplZEJldHRlckF1dGhPcHRpb25zKSB7XG4gIHJldHVybiBvcHRpb25zLnBsdWdpbnM/LnNvbWUoKHBsdWdpbikgPT4gcGx1Z2luLmlkID09PSBcInBhc3NrZXlcIikgfHwgZmFsc2U7XG59XG4iXSwibmFtZXMiOlsiY2hlY2tQYXNza2V5UGx1Z2luIiwib3B0aW9ucyIsInBsdWdpbnMiLCJzb21lIiwicGx1Z2luIiwiaWQiXSwibWFwcGluZ3MiOiJBQUVBLE9BQU8sU0FBU0EsbUJBQW1CQyxPQUFtQztJQUNwRSxPQUFPQSxRQUFRQyxPQUFPLEVBQUVDLEtBQUssQ0FBQ0MsU0FBV0EsT0FBT0MsRUFBRSxLQUFLLGNBQWM7QUFDdkUifQ==
@@ -0,0 +1,3 @@
1
+ import { SanitizedBetterAuthOptions } from "../types";
2
+ export declare function checkUsernamePlugin(options: SanitizedBetterAuthOptions): boolean;
3
+ //# sourceMappingURL=check-username-plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"check-username-plugin.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/check-username-plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,UAAU,CAAC;AAEtD,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,0BAA0B,WAEtE"}
@@ -0,0 +1,5 @@
1
+ export function checkUsernamePlugin(options) {
2
+ return options.plugins?.some((plugin)=>plugin.id === "username") || false;
3
+ }
4
+
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9jaGVjay11c2VybmFtZS1wbHVnaW4udHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2FuaXRpemVkQmV0dGVyQXV0aE9wdGlvbnMgfSBmcm9tIFwiLi4vdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGNoZWNrVXNlcm5hbWVQbHVnaW4ob3B0aW9uczogU2FuaXRpemVkQmV0dGVyQXV0aE9wdGlvbnMpIHtcbiAgcmV0dXJuIG9wdGlvbnMucGx1Z2lucz8uc29tZSgocGx1Z2luKSA9PiBwbHVnaW4uaWQgPT09IFwidXNlcm5hbWVcIikgfHwgZmFsc2U7XG59XG4iXSwibmFtZXMiOlsiY2hlY2tVc2VybmFtZVBsdWdpbiIsIm9wdGlvbnMiLCJwbHVnaW5zIiwic29tZSIsInBsdWdpbiIsImlkIl0sIm1hcHBpbmdzIjoiQUFFQSxPQUFPLFNBQVNBLG9CQUFvQkMsT0FBbUM7SUFDckUsT0FBT0EsUUFBUUMsT0FBTyxFQUFFQyxLQUFLLENBQUNDLFNBQVdBLE9BQU9DLEVBQUUsS0FBSyxlQUFlO0FBQ3hFIn0=
@@ -27,3 +27,4 @@ export declare const generateVerifyEmailUrl: ({ userEmail, secret, expiresIn, ve
27
27
  verifyRouteUrl: string;
28
28
  callbackURL?: string;
29
29
  }) => Promise<string>;
30
+ //# sourceMappingURL=generate-verify-email-url.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-verify-email-url.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/generate-verify-email-url.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,sBAAsB,GAAU,gEAM1C;IACD,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,KAAG,OAAO,CAAC,MAAM,CA4BjB,CAAC"}
@@ -1,4 +1,4 @@
1
- import { SignJWT } from 'jose';
1
+ import { SignJWT } from "jose";
2
2
  /**
3
3
  * Generates a verification URL for email verification
4
4
  *
@@ -20,15 +20,15 @@ import { SignJWT } from 'jose';
20
20
  * verifyRouteUrl: 'https://your-app.com/api/auth/verify-email',
21
21
  * callbackURL: '/profile'
22
22
  * });
23
- */ export const generateVerifyEmailUrl = async ({ userEmail, secret, expiresIn = 3600, verifyRouteUrl, callbackURL = '/' })=>{
23
+ */ export const generateVerifyEmailUrl = async ({ userEmail, secret, expiresIn = 3600, verifyRouteUrl, callbackURL = "/" })=>{
24
24
  if (!userEmail) {
25
- throw new Error('userEmail is required to generate a verification URL');
25
+ throw new Error("userEmail is required to generate a verification URL");
26
26
  }
27
27
  if (!secret) {
28
- throw new Error('secret is required to sign the JWT token');
28
+ throw new Error("secret is required to sign the JWT token");
29
29
  }
30
30
  if (!verifyRouteUrl) {
31
- throw new Error('verifyRouteUrl is required to generate a verification URL');
31
+ throw new Error("verifyRouteUrl is required to generate a verification URL");
32
32
  }
33
33
  // Create and sign the JWT token
34
34
  const jwt = await new SignJWT({
@@ -36,11 +36,11 @@ import { SignJWT } from 'jose';
36
36
  iat: Math.floor(Date.now() / 1000),
37
37
  exp: Math.floor(Date.now() / 1000) + expiresIn
38
38
  }).setProtectedHeader({
39
- alg: 'HS256'
39
+ alg: "HS256"
40
40
  }).sign(new TextEncoder().encode(secret));
41
41
  // Build the verification URL
42
- const verifyUrl = `${verifyRouteUrl}?token=${jwt}${callbackURL ? `&callbackURL=${encodeURIComponent(callbackURL)}` : ''}`;
42
+ const verifyUrl = `${verifyRouteUrl}?token=${jwt}${callbackURL ? `&callbackURL=${encodeURIComponent(callbackURL)}` : ""}`;
43
43
  return verifyUrl;
44
44
  };
45
45
 
46
- //# sourceMappingURL=generate-verify-email-url.js.map
46
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9nZW5lcmF0ZS12ZXJpZnktZW1haWwtdXJsLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNpZ25KV1QgfSBmcm9tIFwiam9zZVwiO1xuXG4vKipcbiAqIEdlbmVyYXRlcyBhIHZlcmlmaWNhdGlvbiBVUkwgZm9yIGVtYWlsIHZlcmlmaWNhdGlvblxuICpcbiAqIFRoaXMgdXRpbGl0eSBmdW5jdGlvbiBjcmVhdGVzIGEgSldUIHRva2VuIGNvbnRhaW5pbmcgdGhlIHVzZXIncyBlbWFpbCBhbmRcbiAqIGV4cGlyYXRpb24gaW5mb3JtYXRpb24sIHNpZ25zIGl0IHdpdGggdGhlIHByb3ZpZGVkIHNlY3JldCwgYW5kIGNvbnN0cnVjdHNcbiAqIGEgdmVyaWZpY2F0aW9uIFVSTCB3aXRoIHRoZSB0b2tlbiBhcyBhIHF1ZXJ5IHBhcmFtZXRlci5cbiAqXG4gKiBAcGFyYW0gdXNlckVtYWlsIC0gVGhlIGVtYWlsIGFkZHJlc3Mgb2YgdGhlIHVzZXIgdG8gdmVyaWZ5XG4gKiBAcGFyYW0gc2VjcmV0IC0gVGhlIHNlY3JldCB1c2VkIHRvIHNpZ24gdGhlIEpXVFxuICogQHBhcmFtIGV4cGlyZXNJbiAtIER1cmF0aW9uIGluIHNlY29uZHMgZm9yIHRva2VuIGV4cGlyYXRpb24gKGRlZmF1bHQ6IDM2MDApXG4gKiBAcGFyYW0gdmVyaWZ5Um91dGVVcmwgLSBUaGUgYmFzZSBVUkwgZm9yIHRoZSB2ZXJpZmljYXRpb24gZW5kcG9pbnRcbiAqIEBwYXJhbSBjYWxsYmFja1VSTCAtIE9wdGlvbmFsIGNhbGxiYWNrIFVSTCBhZnRlciB2ZXJpZmljYXRpb24gKGRlZmF1bHQ6IFwiL1wiKVxuICogQHJldHVybnMgVGhlIGNvbXBsZXRlIHZlcmlmaWNhdGlvbiBVUkwgd2l0aCB0b2tlblxuICpcbiAqIEBleGFtcGxlXG4gKiBjb25zdCB1cmwgPSBhd2FpdCBnZW5lcmF0ZVZlcmlmeUVtYWlsVXJsKHtcbiAqICAgdXNlckVtYWlsOiAndXNlckBleGFtcGxlLmNvbScsXG4gKiAgIHNlY3JldDogJ3lvdXItc2VjcmV0LWtleScsXG4gKiAgIHZlcmlmeVJvdXRlVXJsOiAnaHR0cHM6Ly95b3VyLWFwcC5jb20vYXBpL2F1dGgvdmVyaWZ5LWVtYWlsJyxcbiAqICAgY2FsbGJhY2tVUkw6ICcvcHJvZmlsZSdcbiAqIH0pO1xuICovXG5leHBvcnQgY29uc3QgZ2VuZXJhdGVWZXJpZnlFbWFpbFVybCA9IGFzeW5jICh7XG4gIHVzZXJFbWFpbCxcbiAgc2VjcmV0LFxuICBleHBpcmVzSW4gPSAzNjAwLFxuICB2ZXJpZnlSb3V0ZVVybCxcbiAgY2FsbGJhY2tVUkwgPSBcIi9cIixcbn06IHtcbiAgdXNlckVtYWlsOiBzdHJpbmc7XG4gIHNlY3JldDogc3RyaW5nO1xuICBleHBpcmVzSW4/OiBudW1iZXI7XG4gIHZlcmlmeVJvdXRlVXJsOiBzdHJpbmc7XG4gIGNhbGxiYWNrVVJMPzogc3RyaW5nO1xufSk6IFByb21pc2U8c3RyaW5nPiA9PiB7XG4gIGlmICghdXNlckVtYWlsKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFwidXNlckVtYWlsIGlzIHJlcXVpcmVkIHRvIGdlbmVyYXRlIGEgdmVyaWZpY2F0aW9uIFVSTFwiKTtcbiAgfVxuXG4gIGlmICghc2VjcmV0KSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFwic2VjcmV0IGlzIHJlcXVpcmVkIHRvIHNpZ24gdGhlIEpXVCB0b2tlblwiKTtcbiAgfVxuXG4gIGlmICghdmVyaWZ5Um91dGVVcmwpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICBcInZlcmlmeVJvdXRlVXJsIGlzIHJlcXVpcmVkIHRvIGdlbmVyYXRlIGEgdmVyaWZpY2F0aW9uIFVSTFwiXG4gICAgKTtcbiAgfVxuXG4gIC8vIENyZWF0ZSBhbmQgc2lnbiB0aGUgSldUIHRva2VuXG4gIGNvbnN0IGp3dCA9IGF3YWl0IG5ldyBTaWduSldUKHtcbiAgICBlbWFpbDogdXNlckVtYWlsLFxuICAgIGlhdDogTWF0aC5mbG9vcihEYXRlLm5vdygpIC8gMTAwMCksXG4gICAgZXhwOiBNYXRoLmZsb29yKERhdGUubm93KCkgLyAxMDAwKSArIGV4cGlyZXNJbixcbiAgfSlcbiAgICAuc2V0UHJvdGVjdGVkSGVhZGVyKHsgYWxnOiBcIkhTMjU2XCIgfSlcbiAgICAuc2lnbihuZXcgVGV4dEVuY29kZXIoKS5lbmNvZGUoc2VjcmV0KSk7XG5cbiAgLy8gQnVpbGQgdGhlIHZlcmlmaWNhdGlvbiBVUkxcbiAgY29uc3QgdmVyaWZ5VXJsID0gYCR7dmVyaWZ5Um91dGVVcmx9P3Rva2VuPSR7and0fSR7Y2FsbGJhY2tVUkwgPyBgJmNhbGxiYWNrVVJMPSR7ZW5jb2RlVVJJQ29tcG9uZW50KGNhbGxiYWNrVVJMKX1gIDogXCJcIn1gO1xuXG4gIHJldHVybiB2ZXJpZnlVcmw7XG59O1xuIl0sIm5hbWVzIjpbIlNpZ25KV1QiLCJnZW5lcmF0ZVZlcmlmeUVtYWlsVXJsIiwidXNlckVtYWlsIiwic2VjcmV0IiwiZXhwaXJlc0luIiwidmVyaWZ5Um91dGVVcmwiLCJjYWxsYmFja1VSTCIsIkVycm9yIiwiand0IiwiZW1haWwiLCJpYXQiLCJNYXRoIiwiZmxvb3IiLCJEYXRlIiwibm93IiwiZXhwIiwic2V0UHJvdGVjdGVkSGVhZGVyIiwiYWxnIiwic2lnbiIsIlRleHRFbmNvZGVyIiwiZW5jb2RlIiwidmVyaWZ5VXJsIiwiZW5jb2RlVVJJQ29tcG9uZW50Il0sIm1hcHBpbmdzIjoiQUFBQSxTQUFTQSxPQUFPLFFBQVEsT0FBTztBQUUvQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBcUJDLEdBQ0QsT0FBTyxNQUFNQyx5QkFBeUIsT0FBTyxFQUMzQ0MsU0FBUyxFQUNUQyxNQUFNLEVBQ05DLFlBQVksSUFBSSxFQUNoQkMsY0FBYyxFQUNkQyxjQUFjLEdBQUcsRUFPbEI7SUFDQyxJQUFJLENBQUNKLFdBQVc7UUFDZCxNQUFNLElBQUlLLE1BQU07SUFDbEI7SUFFQSxJQUFJLENBQUNKLFFBQVE7UUFDWCxNQUFNLElBQUlJLE1BQU07SUFDbEI7SUFFQSxJQUFJLENBQUNGLGdCQUFnQjtRQUNuQixNQUFNLElBQUlFLE1BQ1I7SUFFSjtJQUVBLGdDQUFnQztJQUNoQyxNQUFNQyxNQUFNLE1BQU0sSUFBSVIsUUFBUTtRQUM1QlMsT0FBT1A7UUFDUFEsS0FBS0MsS0FBS0MsS0FBSyxDQUFDQyxLQUFLQyxHQUFHLEtBQUs7UUFDN0JDLEtBQUtKLEtBQUtDLEtBQUssQ0FBQ0MsS0FBS0MsR0FBRyxLQUFLLFFBQVFWO0lBQ3ZDLEdBQ0dZLGtCQUFrQixDQUFDO1FBQUVDLEtBQUs7SUFBUSxHQUNsQ0MsSUFBSSxDQUFDLElBQUlDLGNBQWNDLE1BQU0sQ0FBQ2pCO0lBRWpDLDZCQUE2QjtJQUM3QixNQUFNa0IsWUFBWSxHQUFHaEIsZUFBZSxPQUFPLEVBQUVHLE1BQU1GLGNBQWMsQ0FBQyxhQUFhLEVBQUVnQixtQkFBbUJoQixjQUFjLEdBQUcsSUFBSTtJQUV6SCxPQUFPZTtBQUNULEVBQUUifQ==
@@ -0,0 +1,8 @@
1
+ import { BetterAuthPluginOptions } from "..";
2
+ export declare function getAdminAccess(pluginOptions: BetterAuthPluginOptions): {
3
+ create: import("payload").FieldAccess;
4
+ read: import("payload").FieldAccess;
5
+ update: import("payload").FieldAccess;
6
+ delete: import("payload").FieldAccess;
7
+ };
8
+ //# sourceMappingURL=get-admin-access.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-admin-access.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/get-admin-access.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,IAAI,CAAC;AAG7C,wBAAgB,cAAc,CAAC,aAAa,EAAE,uBAAuB;;;;;EAgBpE"}
@@ -0,0 +1,22 @@
1
+ import { isAdminWithRoles } from "../lib/build-collections/utils/payload-access";
2
+ export function getAdminAccess(pluginOptions) {
3
+ const adminRoles = pluginOptions.users?.adminRoles ?? [
4
+ "admin"
5
+ ];
6
+ return {
7
+ create: isAdminWithRoles({
8
+ adminRoles
9
+ }),
10
+ read: isAdminWithRoles({
11
+ adminRoles
12
+ }),
13
+ update: isAdminWithRoles({
14
+ adminRoles
15
+ }),
16
+ delete: isAdminWithRoles({
17
+ adminRoles
18
+ })
19
+ };
20
+ }
21
+
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9nZXQtYWRtaW4tYWNjZXNzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJldHRlckF1dGhQbHVnaW5PcHRpb25zIH0gZnJvbSBcIi4uXCI7XG5pbXBvcnQgeyBpc0FkbWluV2l0aFJvbGVzIH0gZnJvbSBcIi4uL2xpYi9idWlsZC1jb2xsZWN0aW9ucy91dGlscy9wYXlsb2FkLWFjY2Vzc1wiO1xuXG5leHBvcnQgZnVuY3Rpb24gZ2V0QWRtaW5BY2Nlc3MocGx1Z2luT3B0aW9uczogQmV0dGVyQXV0aFBsdWdpbk9wdGlvbnMpIHtcbiAgY29uc3QgYWRtaW5Sb2xlcyA9IHBsdWdpbk9wdGlvbnMudXNlcnM/LmFkbWluUm9sZXMgPz8gW1wiYWRtaW5cIl07XG4gIHJldHVybiB7XG4gICAgY3JlYXRlOiBpc0FkbWluV2l0aFJvbGVzKHtcbiAgICAgIGFkbWluUm9sZXMsXG4gICAgfSksXG4gICAgcmVhZDogaXNBZG1pbldpdGhSb2xlcyh7XG4gICAgICBhZG1pblJvbGVzLFxuICAgIH0pLFxuICAgIHVwZGF0ZTogaXNBZG1pbldpdGhSb2xlcyh7XG4gICAgICBhZG1pblJvbGVzLFxuICAgIH0pLFxuICAgIGRlbGV0ZTogaXNBZG1pbldpdGhSb2xlcyh7XG4gICAgICBhZG1pblJvbGVzLFxuICAgIH0pLFxuICB9O1xufVxuIl0sIm5hbWVzIjpbImlzQWRtaW5XaXRoUm9sZXMiLCJnZXRBZG1pbkFjY2VzcyIsInBsdWdpbk9wdGlvbnMiLCJhZG1pblJvbGVzIiwidXNlcnMiLCJjcmVhdGUiLCJyZWFkIiwidXBkYXRlIiwiZGVsZXRlIl0sIm1hcHBpbmdzIjoiQUFDQSxTQUFTQSxnQkFBZ0IsUUFBUSxnREFBZ0Q7QUFFakYsT0FBTyxTQUFTQyxlQUFlQyxhQUFzQztJQUNuRSxNQUFNQyxhQUFhRCxjQUFjRSxLQUFLLEVBQUVELGNBQWM7UUFBQztLQUFRO0lBQy9ELE9BQU87UUFDTEUsUUFBUUwsaUJBQWlCO1lBQ3ZCRztRQUNGO1FBQ0FHLE1BQU1OLGlCQUFpQjtZQUNyQkc7UUFDRjtRQUNBSSxRQUFRUCxpQkFBaUI7WUFDdkJHO1FBQ0Y7UUFDQUssUUFBUVIsaUJBQWlCO1lBQ3ZCRztRQUNGO0lBQ0Y7QUFDRiJ9
@@ -0,0 +1,14 @@
1
+ export declare function getAdminRoutes(custom: {
2
+ [key: string]: any;
3
+ }): {
4
+ readonly forgotPassword: string;
5
+ readonly resetPassword: string;
6
+ readonly login: string;
7
+ readonly loginRedirect: string;
8
+ readonly logout: string;
9
+ readonly createFirstAdmin: string;
10
+ readonly adminInvite: string;
11
+ readonly verifyEmail: string;
12
+ readonly inactivity: string;
13
+ };
14
+ //# sourceMappingURL=get-admin-routes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-admin-routes.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/get-admin-routes.ts"],"names":[],"mappings":"AAEA,wBAAgB,cAAc,CAAC,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE;;;;;;;;;;EAG5D"}
@@ -0,0 +1,6 @@
1
+ export function getAdminRoutes(custom) {
2
+ const typedCustom = custom;
3
+ return typedCustom.betterAuth.adminRoutes;
4
+ }
5
+
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9nZXQtYWRtaW4tcm91dGVzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbmZpZ0FkbWluQ3VzdG9tIH0gZnJvbSBcIi4uL3R5cGVzXCI7XG5cbmV4cG9ydCBmdW5jdGlvbiBnZXRBZG1pblJvdXRlcyhjdXN0b206IHsgW2tleTogc3RyaW5nXTogYW55IH0pIHtcbiAgY29uc3QgdHlwZWRDdXN0b20gPSBjdXN0b20gYXMgQ29uZmlnQWRtaW5DdXN0b207XG4gIHJldHVybiB0eXBlZEN1c3RvbS5iZXR0ZXJBdXRoLmFkbWluUm91dGVzO1xufVxuIl0sIm5hbWVzIjpbImdldEFkbWluUm91dGVzIiwiY3VzdG9tIiwidHlwZWRDdXN0b20iLCJiZXR0ZXJBdXRoIiwiYWRtaW5Sb3V0ZXMiXSwibWFwcGluZ3MiOiJBQUVBLE9BQU8sU0FBU0EsZUFBZUMsTUFBOEI7SUFDM0QsTUFBTUMsY0FBY0Q7SUFDcEIsT0FBT0MsWUFBWUMsVUFBVSxDQUFDQyxXQUFXO0FBQzNDIn0=
@@ -0,0 +1,6 @@
1
+ import { BetterAuthPluginOptions } from "../types";
2
+ export declare function getAllRoleOptions(pluginOptions: BetterAuthPluginOptions): {
3
+ label: string;
4
+ value: string;
5
+ }[];
6
+ //# sourceMappingURL=get-all-roles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-all-roles.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/get-all-roles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAEnD,wBAAgB,iBAAiB,CAAC,aAAa,EAAE,uBAAuB;;;IAavE"}
@@ -0,0 +1,20 @@
1
+ export function getAllRoleOptions(pluginOptions) {
2
+ const adminRoles = pluginOptions.users?.adminRoles ?? [
3
+ "admin"
4
+ ];
5
+ const roles = pluginOptions.users?.roles ?? [
6
+ "user"
7
+ ];
8
+ const allRoleOptions = [
9
+ ...new Set([
10
+ ...adminRoles,
11
+ ...roles
12
+ ])
13
+ ].map((role)=>({
14
+ label: role.split(/[-_\s]/).map((word)=>word.charAt(0).toUpperCase() + word.slice(1)).join(" "),
15
+ value: role
16
+ }));
17
+ return allRoleOptions;
18
+ }
19
+
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9nZXQtYWxsLXJvbGVzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJldHRlckF1dGhQbHVnaW5PcHRpb25zIH0gZnJvbSBcIi4uL3R5cGVzXCI7XG5cbmV4cG9ydCBmdW5jdGlvbiBnZXRBbGxSb2xlT3B0aW9ucyhwbHVnaW5PcHRpb25zOiBCZXR0ZXJBdXRoUGx1Z2luT3B0aW9ucykge1xuICBjb25zdCBhZG1pblJvbGVzID0gcGx1Z2luT3B0aW9ucy51c2Vycz8uYWRtaW5Sb2xlcyA/PyBbXCJhZG1pblwiXTtcbiAgY29uc3Qgcm9sZXMgPSBwbHVnaW5PcHRpb25zLnVzZXJzPy5yb2xlcyA/PyBbXCJ1c2VyXCJdO1xuICBjb25zdCBhbGxSb2xlT3B0aW9ucyA9IFsuLi5uZXcgU2V0KFsuLi5hZG1pblJvbGVzLCAuLi5yb2xlc10pXS5tYXAoXG4gICAgKHJvbGUpID0+ICh7XG4gICAgICBsYWJlbDogcm9sZVxuICAgICAgICAuc3BsaXQoL1stX1xcc10vKVxuICAgICAgICAubWFwKCh3b3JkKSA9PiB3b3JkLmNoYXJBdCgwKS50b1VwcGVyQ2FzZSgpICsgd29yZC5zbGljZSgxKSlcbiAgICAgICAgLmpvaW4oXCIgXCIpLFxuICAgICAgdmFsdWU6IHJvbGUsXG4gICAgfSlcbiAgKTtcbiAgcmV0dXJuIGFsbFJvbGVPcHRpb25zO1xufVxuIl0sIm5hbWVzIjpbImdldEFsbFJvbGVPcHRpb25zIiwicGx1Z2luT3B0aW9ucyIsImFkbWluUm9sZXMiLCJ1c2VycyIsInJvbGVzIiwiYWxsUm9sZU9wdGlvbnMiLCJTZXQiLCJtYXAiLCJyb2xlIiwibGFiZWwiLCJzcGxpdCIsIndvcmQiLCJjaGFyQXQiLCJ0b1VwcGVyQ2FzZSIsInNsaWNlIiwiam9pbiIsInZhbHVlIl0sIm1hcHBpbmdzIjoiQUFFQSxPQUFPLFNBQVNBLGtCQUFrQkMsYUFBc0M7SUFDdEUsTUFBTUMsYUFBYUQsY0FBY0UsS0FBSyxFQUFFRCxjQUFjO1FBQUM7S0FBUTtJQUMvRCxNQUFNRSxRQUFRSCxjQUFjRSxLQUFLLEVBQUVDLFNBQVM7UUFBQztLQUFPO0lBQ3BELE1BQU1DLGlCQUFpQjtXQUFJLElBQUlDLElBQUk7ZUFBSUo7ZUFBZUU7U0FBTTtLQUFFLENBQUNHLEdBQUcsQ0FDaEUsQ0FBQ0MsT0FBVSxDQUFBO1lBQ1RDLE9BQU9ELEtBQ0pFLEtBQUssQ0FBQyxVQUNOSCxHQUFHLENBQUMsQ0FBQ0ksT0FBU0EsS0FBS0MsTUFBTSxDQUFDLEdBQUdDLFdBQVcsS0FBS0YsS0FBS0csS0FBSyxDQUFDLElBQ3hEQyxJQUFJLENBQUM7WUFDUkMsT0FBT1I7UUFDVCxDQUFBO0lBRUYsT0FBT0g7QUFDVCJ9
@@ -1,2 +1,3 @@
1
- import type { BetterAuthOptions } from 'better-auth';
1
+ import type { BetterAuthOptions } from "better-auth";
2
2
  export declare function getIp(headers: Headers, options: BetterAuthOptions): string | null;
3
+ //# sourceMappingURL=get-ip.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-ip.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/get-ip.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,wBAAgB,KAAK,CACnB,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,iBAAiB,GACzB,MAAM,GAAG,IAAI,CAgCf"}
@@ -2,30 +2,30 @@ export function getIp(headers, options) {
2
2
  if (options.advanced?.ipAddress?.disableIpTracking) {
3
3
  return null;
4
4
  }
5
- const testIP = '127.0.0.1';
6
- if ((process.env.NODE_ENV === 'test' || process.env.NODE_ENV === 'development') ?? false) {
5
+ const testIP = "127.0.0.1";
6
+ if ((process.env.NODE_ENV === "test" || process.env.NODE_ENV === "development") ?? false) {
7
7
  return testIP;
8
8
  }
9
9
  const ipHeaders = options.advanced?.ipAddress?.ipAddressHeaders;
10
10
  const keys = ipHeaders || [
11
- 'x-client-ip',
12
- 'x-forwarded-for',
13
- 'cf-connecting-ip',
14
- 'fastly-client-ip',
15
- 'x-real-ip',
16
- 'x-cluster-client-ip',
17
- 'x-forwarded',
18
- 'forwarded-for',
19
- 'forwarded'
11
+ "x-client-ip",
12
+ "x-forwarded-for",
13
+ "cf-connecting-ip",
14
+ "fastly-client-ip",
15
+ "x-real-ip",
16
+ "x-cluster-client-ip",
17
+ "x-forwarded",
18
+ "forwarded-for",
19
+ "forwarded"
20
20
  ];
21
21
  for (const key of keys){
22
22
  const value = headers.get(key);
23
- if (typeof value === 'string') {
24
- const ip = value.split(',')[0].trim();
23
+ if (typeof value === "string") {
24
+ const ip = value.split(",")[0]?.trim();
25
25
  if (ip) return ip;
26
26
  }
27
27
  }
28
28
  return null;
29
29
  }
30
30
 
31
- //# sourceMappingURL=get-ip.js.map
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9nZXQtaXAudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBCZXR0ZXJBdXRoT3B0aW9ucyB9IGZyb20gXCJiZXR0ZXItYXV0aFwiO1xuXG5leHBvcnQgZnVuY3Rpb24gZ2V0SXAoXG4gIGhlYWRlcnM6IEhlYWRlcnMsXG4gIG9wdGlvbnM6IEJldHRlckF1dGhPcHRpb25zXG4pOiBzdHJpbmcgfCBudWxsIHtcbiAgaWYgKG9wdGlvbnMuYWR2YW5jZWQ/LmlwQWRkcmVzcz8uZGlzYWJsZUlwVHJhY2tpbmcpIHtcbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuICBjb25zdCB0ZXN0SVAgPSBcIjEyNy4wLjAuMVwiO1xuICBpZiAoXG4gICAgKHByb2Nlc3MuZW52Lk5PREVfRU5WID09PSBcInRlc3RcIiB8fFxuICAgICAgcHJvY2Vzcy5lbnYuTk9ERV9FTlYgPT09IFwiZGV2ZWxvcG1lbnRcIikgPz9cbiAgICBmYWxzZVxuICApIHtcbiAgICByZXR1cm4gdGVzdElQO1xuICB9XG4gIGNvbnN0IGlwSGVhZGVycyA9IG9wdGlvbnMuYWR2YW5jZWQ/LmlwQWRkcmVzcz8uaXBBZGRyZXNzSGVhZGVycztcbiAgY29uc3Qga2V5cyA9IGlwSGVhZGVycyB8fCBbXG4gICAgXCJ4LWNsaWVudC1pcFwiLFxuICAgIFwieC1mb3J3YXJkZWQtZm9yXCIsXG4gICAgXCJjZi1jb25uZWN0aW5nLWlwXCIsXG4gICAgXCJmYXN0bHktY2xpZW50LWlwXCIsXG4gICAgXCJ4LXJlYWwtaXBcIixcbiAgICBcIngtY2x1c3Rlci1jbGllbnQtaXBcIixcbiAgICBcIngtZm9yd2FyZGVkXCIsXG4gICAgXCJmb3J3YXJkZWQtZm9yXCIsXG4gICAgXCJmb3J3YXJkZWRcIixcbiAgXTtcbiAgZm9yIChjb25zdCBrZXkgb2Yga2V5cykge1xuICAgIGNvbnN0IHZhbHVlID0gaGVhZGVycy5nZXQoa2V5KTtcbiAgICBpZiAodHlwZW9mIHZhbHVlID09PSBcInN0cmluZ1wiKSB7XG4gICAgICBjb25zdCBpcCA9IHZhbHVlLnNwbGl0KFwiLFwiKVswXT8udHJpbSgpO1xuICAgICAgaWYgKGlwKSByZXR1cm4gaXA7XG4gICAgfVxuICB9XG4gIHJldHVybiBudWxsO1xufVxuIl0sIm5hbWVzIjpbImdldElwIiwiaGVhZGVycyIsIm9wdGlvbnMiLCJhZHZhbmNlZCIsImlwQWRkcmVzcyIsImRpc2FibGVJcFRyYWNraW5nIiwidGVzdElQIiwicHJvY2VzcyIsImVudiIsIk5PREVfRU5WIiwiaXBIZWFkZXJzIiwiaXBBZGRyZXNzSGVhZGVycyIsImtleXMiLCJrZXkiLCJ2YWx1ZSIsImdldCIsImlwIiwic3BsaXQiLCJ0cmltIl0sIm1hcHBpbmdzIjoiQUFFQSxPQUFPLFNBQVNBLE1BQ2RDLE9BQWdCLEVBQ2hCQyxPQUEwQjtJQUUxQixJQUFJQSxRQUFRQyxRQUFRLEVBQUVDLFdBQVdDLG1CQUFtQjtRQUNsRCxPQUFPO0lBQ1Q7SUFDQSxNQUFNQyxTQUFTO0lBQ2YsSUFDRSxBQUFDQyxDQUFBQSxRQUFRQyxHQUFHLENBQUNDLFFBQVEsS0FBSyxVQUN4QkYsUUFBUUMsR0FBRyxDQUFDQyxRQUFRLEtBQUssYUFBWSxLQUN2QyxPQUNBO1FBQ0EsT0FBT0g7SUFDVDtJQUNBLE1BQU1JLFlBQVlSLFFBQVFDLFFBQVEsRUFBRUMsV0FBV087SUFDL0MsTUFBTUMsT0FBT0YsYUFBYTtRQUN4QjtRQUNBO1FBQ0E7UUFDQTtRQUNBO1FBQ0E7UUFDQTtRQUNBO1FBQ0E7S0FDRDtJQUNELEtBQUssTUFBTUcsT0FBT0QsS0FBTTtRQUN0QixNQUFNRSxRQUFRYixRQUFRYyxHQUFHLENBQUNGO1FBQzFCLElBQUksT0FBT0MsVUFBVSxVQUFVO1lBQzdCLE1BQU1FLEtBQUtGLE1BQU1HLEtBQUssQ0FBQyxJQUFJLENBQUMsRUFBRSxFQUFFQztZQUNoQyxJQUFJRixJQUFJLE9BQU9BO1FBQ2pCO0lBQ0Y7SUFDQSxPQUFPO0FBQ1QifQ==
@@ -0,0 +1,3 @@
1
+ import { type Collection, type PayloadRequest } from "payload";
2
+ export declare const getRequestCollection: (req: PayloadRequest) => Collection;
3
+ //# sourceMappingURL=get-requst-collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-requst-collection.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/get-requst-collection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,SAAS,CAAC;AAEzE,eAAO,MAAM,oBAAoB,GAAI,KAAK,cAAc,KAAG,UAiB1D,CAAC"}
@@ -0,0 +1,14 @@
1
+ import { APIError } from "payload";
2
+ export const getRequestCollection = (req)=>{
3
+ const collectionSlug = req.routeParams?.collection;
4
+ if (typeof collectionSlug !== "string") {
5
+ throw new APIError(`No collection was specified`, 400);
6
+ }
7
+ const collection = req.payload.collections[collectionSlug];
8
+ if (!collection) {
9
+ throw new APIError(`Collection with the slug ${collectionSlug} was not found`, 404);
10
+ }
11
+ return collection;
12
+ };
13
+
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9nZXQtcmVxdXN0LWNvbGxlY3Rpb24udHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVBJRXJyb3IsIHR5cGUgQ29sbGVjdGlvbiwgdHlwZSBQYXlsb2FkUmVxdWVzdCB9IGZyb20gXCJwYXlsb2FkXCI7XG5cbmV4cG9ydCBjb25zdCBnZXRSZXF1ZXN0Q29sbGVjdGlvbiA9IChyZXE6IFBheWxvYWRSZXF1ZXN0KTogQ29sbGVjdGlvbiA9PiB7XG4gIGNvbnN0IGNvbGxlY3Rpb25TbHVnID0gcmVxLnJvdXRlUGFyYW1zPy5jb2xsZWN0aW9uO1xuXG4gIGlmICh0eXBlb2YgY29sbGVjdGlvblNsdWcgIT09IFwic3RyaW5nXCIpIHtcbiAgICB0aHJvdyBuZXcgQVBJRXJyb3IoYE5vIGNvbGxlY3Rpb24gd2FzIHNwZWNpZmllZGAsIDQwMCk7XG4gIH1cblxuICBjb25zdCBjb2xsZWN0aW9uID0gcmVxLnBheWxvYWQuY29sbGVjdGlvbnNbY29sbGVjdGlvblNsdWddO1xuXG4gIGlmICghY29sbGVjdGlvbikge1xuICAgIHRocm93IG5ldyBBUElFcnJvcihcbiAgICAgIGBDb2xsZWN0aW9uIHdpdGggdGhlIHNsdWcgJHtjb2xsZWN0aW9uU2x1Z30gd2FzIG5vdCBmb3VuZGAsXG4gICAgICA0MDRcbiAgICApO1xuICB9XG5cbiAgcmV0dXJuIGNvbGxlY3Rpb247XG59O1xuIl0sIm5hbWVzIjpbIkFQSUVycm9yIiwiZ2V0UmVxdWVzdENvbGxlY3Rpb24iLCJyZXEiLCJjb2xsZWN0aW9uU2x1ZyIsInJvdXRlUGFyYW1zIiwiY29sbGVjdGlvbiIsInBheWxvYWQiLCJjb2xsZWN0aW9ucyJdLCJtYXBwaW5ncyI6IkFBQUEsU0FBU0EsUUFBUSxRQUE4QyxVQUFVO0FBRXpFLE9BQU8sTUFBTUMsdUJBQXVCLENBQUNDO0lBQ25DLE1BQU1DLGlCQUFpQkQsSUFBSUUsV0FBVyxFQUFFQztJQUV4QyxJQUFJLE9BQU9GLG1CQUFtQixVQUFVO1FBQ3RDLE1BQU0sSUFBSUgsU0FBUyxDQUFDLDJCQUEyQixDQUFDLEVBQUU7SUFDcEQ7SUFFQSxNQUFNSyxhQUFhSCxJQUFJSSxPQUFPLENBQUNDLFdBQVcsQ0FBQ0osZUFBZTtJQUUxRCxJQUFJLENBQUNFLFlBQVk7UUFDZixNQUFNLElBQUlMLFNBQ1IsQ0FBQyx5QkFBeUIsRUFBRUcsZUFBZSxjQUFjLENBQUMsRUFDMUQ7SUFFSjtJQUVBLE9BQU9FO0FBQ1QsRUFBRSJ9
@@ -1 +1,2 @@
1
- export { generateVerifyEmailUrl } from './generate-verify-email-url';
1
+ export { generateVerifyEmailUrl } from "./generate-verify-email-url";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC"}
@@ -1,3 +1,3 @@
1
- export { generateVerifyEmailUrl } from './generate-verify-email-url';
1
+ export { generateVerifyEmailUrl } from "./generate-verify-email-url";
2
2
 
3
- //# sourceMappingURL=index.js.map
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9pbmRleC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBnZW5lcmF0ZVZlcmlmeUVtYWlsVXJsIH0gZnJvbSBcIi4vZ2VuZXJhdGUtdmVyaWZ5LWVtYWlsLXVybFwiO1xuIl0sIm5hbWVzIjpbImdlbmVyYXRlVmVyaWZ5RW1haWxVcmwiXSwibWFwcGluZ3MiOiJBQUFBLFNBQVNBLHNCQUFzQixRQUFRLDhCQUE4QiJ9
@@ -1,4 +1,4 @@
1
- import type { Config, Payload } from 'payload';
1
+ import type { Config, Payload } from "payload";
2
2
  type CollectionSlugs = {
3
3
  userCollectionSlug: string;
4
4
  sessionCollectionSlug: string;
@@ -12,10 +12,11 @@ export declare function prepareSessionData({ newSession, payloadConfig, collecti
12
12
  user: any;
13
13
  session: any;
14
14
  };
15
- payloadConfig: Payload['config'] | Config;
15
+ payloadConfig: Payload["config"] | Config;
16
16
  collectionSlugs: CollectionSlugs;
17
17
  }): Promise<{
18
18
  user: Record<string, unknown>;
19
19
  session: any;
20
20
  } | null>;
21
21
  export {};
22
+ //# sourceMappingURL=prepare-session-data.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prepare-session-data.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/prepare-session-data.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAE/C,KAAK,eAAe,GAAG;IACrB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,qBAAqB,EAAE,MAAM,CAAC;CAC/B,CAAC;AAEF;;;GAGG;AACH,wBAAsB,kBAAkB,CAAC,EACvC,UAAU,EACV,aAAa,EACb,eAAe,GAChB,EAAE;IACD,UAAU,EAAE;QACV,IAAI,EAAE,GAAG,CAAC;QACV,OAAO,EAAE,GAAG,CAAC;KACd,CAAC;IACF,aAAa,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC;IAC1C,eAAe,EAAE,eAAe,CAAC;CAClC;;;UAiDA"}
@@ -0,0 +1,42 @@
1
+ import { getFieldsToSign } from "payload";
2
+ /**
3
+ * Prepares session data for cookie cache by filtering user and session objects
4
+ * based on the payload configuration's 'saveToJwt' property
5
+ */ export async function prepareSessionData({ newSession, payloadConfig, collectionSlugs }) {
6
+ if (!newSession || !newSession.user) {
7
+ return null;
8
+ }
9
+ const { userCollectionSlug, sessionCollectionSlug } = collectionSlugs;
10
+ const userCollection = payloadConfig?.collections?.find((c)=>c.slug === userCollectionSlug);
11
+ const sessionCollection = payloadConfig?.collections?.find((c)=>c.slug === sessionCollectionSlug);
12
+ if (!userCollection) {
13
+ throw new Error(`User collection with slug '${userCollectionSlug}' not found`);
14
+ }
15
+ const filteredUser = getFieldsToSign({
16
+ collectionConfig: userCollection,
17
+ email: newSession.user.email,
18
+ user: newSession.user
19
+ });
20
+ let filteredSession = newSession.session;
21
+ const isImpersonated = newSession.session.impersonatedBy;
22
+ if (sessionCollection && newSession.session) {
23
+ filteredSession = getFieldsToSign({
24
+ collectionConfig: sessionCollection,
25
+ email: newSession.user.email,
26
+ user: newSession.session
27
+ });
28
+ // getFieldsToSign is meant for auth collections so we remove the email and collection fields
29
+ delete filteredSession.email;
30
+ delete filteredSession.collection;
31
+ }
32
+ if (isImpersonated) {
33
+ filteredSession.impersonatedBy = newSession.session.impersonatedBy;
34
+ }
35
+ return {
36
+ ...newSession,
37
+ user: filteredUser,
38
+ session: filteredSession
39
+ };
40
+ }
41
+
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9wbHVnaW4vaGVscGVycy9wcmVwYXJlLXNlc3Npb24tZGF0YS50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBnZXRGaWVsZHNUb1NpZ24gfSBmcm9tIFwicGF5bG9hZFwiO1xuaW1wb3J0IHR5cGUgeyBDb25maWcsIFBheWxvYWQgfSBmcm9tIFwicGF5bG9hZFwiO1xuXG50eXBlIENvbGxlY3Rpb25TbHVncyA9IHtcbiAgdXNlckNvbGxlY3Rpb25TbHVnOiBzdHJpbmc7XG4gIHNlc3Npb25Db2xsZWN0aW9uU2x1Zzogc3RyaW5nO1xufTtcblxuLyoqXG4gKiBQcmVwYXJlcyBzZXNzaW9uIGRhdGEgZm9yIGNvb2tpZSBjYWNoZSBieSBmaWx0ZXJpbmcgdXNlciBhbmQgc2Vzc2lvbiBvYmplY3RzXG4gKiBiYXNlZCBvbiB0aGUgcGF5bG9hZCBjb25maWd1cmF0aW9uJ3MgJ3NhdmVUb0p3dCcgcHJvcGVydHlcbiAqL1xuZXhwb3J0IGFzeW5jIGZ1bmN0aW9uIHByZXBhcmVTZXNzaW9uRGF0YSh7XG4gIG5ld1Nlc3Npb24sXG4gIHBheWxvYWRDb25maWcsXG4gIGNvbGxlY3Rpb25TbHVncyxcbn06IHtcbiAgbmV3U2Vzc2lvbjoge1xuICAgIHVzZXI6IGFueTtcbiAgICBzZXNzaW9uOiBhbnk7XG4gIH07XG4gIHBheWxvYWRDb25maWc6IFBheWxvYWRbXCJjb25maWdcIl0gfCBDb25maWc7XG4gIGNvbGxlY3Rpb25TbHVnczogQ29sbGVjdGlvblNsdWdzO1xufSkge1xuICBpZiAoIW5ld1Nlc3Npb24gfHwgIW5ld1Nlc3Npb24udXNlcikge1xuICAgIHJldHVybiBudWxsO1xuICB9XG5cbiAgY29uc3QgeyB1c2VyQ29sbGVjdGlvblNsdWcsIHNlc3Npb25Db2xsZWN0aW9uU2x1ZyB9ID0gY29sbGVjdGlvblNsdWdzO1xuXG4gIGNvbnN0IHVzZXJDb2xsZWN0aW9uID0gcGF5bG9hZENvbmZpZz8uY29sbGVjdGlvbnM/LmZpbmQoXG4gICAgKGMpID0+IGMuc2x1ZyA9PT0gdXNlckNvbGxlY3Rpb25TbHVnXG4gICk7XG4gIGNvbnN0IHNlc3Npb25Db2xsZWN0aW9uID0gcGF5bG9hZENvbmZpZz8uY29sbGVjdGlvbnM/LmZpbmQoXG4gICAgKGMpID0+IGMuc2x1ZyA9PT0gc2Vzc2lvbkNvbGxlY3Rpb25TbHVnXG4gICk7XG5cbiAgaWYgKCF1c2VyQ29sbGVjdGlvbikge1xuICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgIGBVc2VyIGNvbGxlY3Rpb24gd2l0aCBzbHVnICcke3VzZXJDb2xsZWN0aW9uU2x1Z30nIG5vdCBmb3VuZGBcbiAgICApO1xuICB9XG5cbiAgY29uc3QgZmlsdGVyZWRVc2VyID0gZ2V0RmllbGRzVG9TaWduKHtcbiAgICBjb2xsZWN0aW9uQ29uZmlnOiB1c2VyQ29sbGVjdGlvbixcbiAgICBlbWFpbDogbmV3U2Vzc2lvbi51c2VyLmVtYWlsLFxuICAgIHVzZXI6IG5ld1Nlc3Npb24udXNlcixcbiAgfSk7XG5cbiAgbGV0IGZpbHRlcmVkU2Vzc2lvbiA9IG5ld1Nlc3Npb24uc2Vzc2lvbjtcbiAgY29uc3QgaXNJbXBlcnNvbmF0ZWQgPSBuZXdTZXNzaW9uLnNlc3Npb24uaW1wZXJzb25hdGVkQnk7XG4gIGlmIChzZXNzaW9uQ29sbGVjdGlvbiAmJiBuZXdTZXNzaW9uLnNlc3Npb24pIHtcbiAgICBmaWx0ZXJlZFNlc3Npb24gPSBnZXRGaWVsZHNUb1NpZ24oe1xuICAgICAgY29sbGVjdGlvbkNvbmZpZzogc2Vzc2lvbkNvbGxlY3Rpb24sXG4gICAgICBlbWFpbDogbmV3U2Vzc2lvbi51c2VyLmVtYWlsLFxuICAgICAgdXNlcjogbmV3U2Vzc2lvbi5zZXNzaW9uLFxuICAgIH0pIGFzIHR5cGVvZiBuZXdTZXNzaW9uLnNlc3Npb247XG5cbiAgICAvLyBnZXRGaWVsZHNUb1NpZ24gaXMgbWVhbnQgZm9yIGF1dGggY29sbGVjdGlvbnMgc28gd2UgcmVtb3ZlIHRoZSBlbWFpbCBhbmQgY29sbGVjdGlvbiBmaWVsZHNcbiAgICBkZWxldGUgZmlsdGVyZWRTZXNzaW9uLmVtYWlsO1xuICAgIGRlbGV0ZSBmaWx0ZXJlZFNlc3Npb24uY29sbGVjdGlvbjtcbiAgfVxuXG4gIGlmIChpc0ltcGVyc29uYXRlZCkge1xuICAgIGZpbHRlcmVkU2Vzc2lvbi5pbXBlcnNvbmF0ZWRCeSA9IG5ld1Nlc3Npb24uc2Vzc2lvbi5pbXBlcnNvbmF0ZWRCeTtcbiAgfVxuXG4gIHJldHVybiB7XG4gICAgLi4ubmV3U2Vzc2lvbixcbiAgICB1c2VyOiBmaWx0ZXJlZFVzZXIsXG4gICAgc2Vzc2lvbjogZmlsdGVyZWRTZXNzaW9uLFxuICB9O1xufVxuIl0sIm5hbWVzIjpbImdldEZpZWxkc1RvU2lnbiIsInByZXBhcmVTZXNzaW9uRGF0YSIsIm5ld1Nlc3Npb24iLCJwYXlsb2FkQ29uZmlnIiwiY29sbGVjdGlvblNsdWdzIiwidXNlciIsInVzZXJDb2xsZWN0aW9uU2x1ZyIsInNlc3Npb25Db2xsZWN0aW9uU2x1ZyIsInVzZXJDb2xsZWN0aW9uIiwiY29sbGVjdGlvbnMiLCJmaW5kIiwiYyIsInNsdWciLCJzZXNzaW9uQ29sbGVjdGlvbiIsIkVycm9yIiwiZmlsdGVyZWRVc2VyIiwiY29sbGVjdGlvbkNvbmZpZyIsImVtYWlsIiwiZmlsdGVyZWRTZXNzaW9uIiwic2Vzc2lvbiIsImlzSW1wZXJzb25hdGVkIiwiaW1wZXJzb25hdGVkQnkiLCJjb2xsZWN0aW9uIl0sIm1hcHBpbmdzIjoiQUFBQSxTQUFTQSxlQUFlLFFBQVEsVUFBVTtBQVExQzs7O0NBR0MsR0FDRCxPQUFPLGVBQWVDLG1CQUFtQixFQUN2Q0MsVUFBVSxFQUNWQyxhQUFhLEVBQ2JDLGVBQWUsRUFRaEI7SUFDQyxJQUFJLENBQUNGLGNBQWMsQ0FBQ0EsV0FBV0csSUFBSSxFQUFFO1FBQ25DLE9BQU87SUFDVDtJQUVBLE1BQU0sRUFBRUMsa0JBQWtCLEVBQUVDLHFCQUFxQixFQUFFLEdBQUdIO0lBRXRELE1BQU1JLGlCQUFpQkwsZUFBZU0sYUFBYUMsS0FDakQsQ0FBQ0MsSUFBTUEsRUFBRUMsSUFBSSxLQUFLTjtJQUVwQixNQUFNTyxvQkFBb0JWLGVBQWVNLGFBQWFDLEtBQ3BELENBQUNDLElBQU1BLEVBQUVDLElBQUksS0FBS0w7SUFHcEIsSUFBSSxDQUFDQyxnQkFBZ0I7UUFDbkIsTUFBTSxJQUFJTSxNQUNSLENBQUMsMkJBQTJCLEVBQUVSLG1CQUFtQixXQUFXLENBQUM7SUFFakU7SUFFQSxNQUFNUyxlQUFlZixnQkFBZ0I7UUFDbkNnQixrQkFBa0JSO1FBQ2xCUyxPQUFPZixXQUFXRyxJQUFJLENBQUNZLEtBQUs7UUFDNUJaLE1BQU1ILFdBQVdHLElBQUk7SUFDdkI7SUFFQSxJQUFJYSxrQkFBa0JoQixXQUFXaUIsT0FBTztJQUN4QyxNQUFNQyxpQkFBaUJsQixXQUFXaUIsT0FBTyxDQUFDRSxjQUFjO0lBQ3hELElBQUlSLHFCQUFxQlgsV0FBV2lCLE9BQU8sRUFBRTtRQUMzQ0Qsa0JBQWtCbEIsZ0JBQWdCO1lBQ2hDZ0Isa0JBQWtCSDtZQUNsQkksT0FBT2YsV0FBV0csSUFBSSxDQUFDWSxLQUFLO1lBQzVCWixNQUFNSCxXQUFXaUIsT0FBTztRQUMxQjtRQUVBLDZGQUE2RjtRQUM3RixPQUFPRCxnQkFBZ0JELEtBQUs7UUFDNUIsT0FBT0MsZ0JBQWdCSSxVQUFVO0lBQ25DO0lBRUEsSUFBSUYsZ0JBQWdCO1FBQ2xCRixnQkFBZ0JHLGNBQWMsR0FBR25CLFdBQVdpQixPQUFPLENBQUNFLGNBQWM7SUFDcEU7SUFFQSxPQUFPO1FBQ0wsR0FBR25CLFVBQVU7UUFDYkcsTUFBTVU7UUFDTkksU0FBU0Q7SUFDWDtBQUNGIn0=
@@ -1,4 +1,4 @@
1
- type CookiePrefixOptions = 'host' | 'secure';
1
+ type CookiePrefixOptions = "host" | "secure";
2
2
  type CookieOptions = {
3
3
  /**
4
4
  * Domain of the cookie
@@ -67,7 +67,7 @@ type CookieOptions = {
67
67
  * None - Means that the browser sends the cookie with both cross-site and same-site requests.
68
68
  * The Secure attribute must also be set when setting this value.
69
69
  */
70
- sameSite?: 'Strict' | 'Lax' | 'None' | 'strict' | 'lax' | 'none';
70
+ sameSite?: "Strict" | "Lax" | "None" | "strict" | "lax" | "none";
71
71
  /**
72
72
  * Indicates that the cookie should be stored using partitioned storage. Note that if this is
73
73
  * set, the Secure directive must also be set.
@@ -102,3 +102,4 @@ export declare function tryDecode(str: string): string;
102
102
  export declare function parseCookies(str: string): Map<string, string>;
103
103
  export declare const getSignedCookie: (key: string, secret: string, headers: Headers, prefix?: CookiePrefixOptions) => Promise<string | false | null>;
104
104
  export {};
105
+ //# sourceMappingURL=serialize-cookie.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serialize-cookie.d.ts","sourceRoot":"","sources":["../../../../src/better-auth/plugin/helpers/serialize-cookie.ts"],"names":[],"mappings":"AAEA,KAAK,mBAAmB,GAAG,MAAM,GAAG,QAAQ,CAAC;AAE7C,KAAK,aAAa,GAAG;IACnB;;;;;;;;;;OAUG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;;;;OAQG;IACH,OAAO,CAAC,EAAE,IAAI,CAAC;IACf;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;;;OAOG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;;;;;;;;;;;;;;;OAgBG;IACH,QAAQ,CAAC,EAAE,QAAQ,GAAG,KAAK,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,CAAC;IACjE;;;;;OAKG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;;;;OAOG;IACH,MAAM,CAAC,EAAE,mBAAmB,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,eAAe,GAC1B,iBAAiB,MAAM,EACvB,OAAO,MAAM,EACb,QAAQ,SAAS,KAChB,OAAO,CAAC,OAAO,CAgBjB,CAAC;AAwGF,eAAO,MAAM,eAAe,GAC1B,OAAO,MAAM,EACb,QAAQ,MAAM,GAAG,YAAY,oBAO9B,CAAC;AAEF,eAAO,MAAM,eAAe,GAC1B,KAAK,MAAM,EACX,OAAO,MAAM,EACb,MAAM,aAAa,WAIpB,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAChC,KAAK,MAAM,EACX,OAAO,MAAM,EACb,QAAQ,MAAM,EACd,MAAM,aAAa,oBAIpB,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,KAAK,MAAM,EAAE,SAAS,mBAAmB,uBAYrE,CAAC;AAEF,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,UAMpC;AAED;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,uBAqCvC;AAED,eAAO,MAAM,eAAe,GAC1B,KAAK,MAAM,EACX,QAAQ,MAAM,EACd,SAAS,OAAO,EAChB,SAAS,mBAAmB,mCAwB7B,CAAC"}