@luochuanyuewu/payload-auth 1.8.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.
- package/dist/better-auth/adapter/generate-schema/generate-schema-builder.d.ts +24 -0
- package/dist/better-auth/adapter/generate-schema/generate-schema-builder.d.ts.map +1 -0
- package/dist/better-auth/adapter/generate-schema/generate-schema-builder.js +317 -0
- package/dist/better-auth/adapter/generate-schema/get-payload-schema.d.ts +2 -0
- package/dist/better-auth/adapter/generate-schema/get-payload-schema.d.ts.map +1 -0
- package/dist/better-auth/adapter/generate-schema/get-payload-schema.js +23 -0
- package/dist/better-auth/adapter/generate-schema/index.d.ts +5 -0
- package/dist/better-auth/adapter/generate-schema/index.d.ts.map +1 -0
- package/dist/better-auth/adapter/generate-schema/index.js +19 -0
- package/dist/better-auth/adapter/generate-schema/utils.d.ts +3 -0
- package/dist/better-auth/adapter/generate-schema/utils.d.ts.map +1 -0
- package/dist/better-auth/adapter/generate-schema/utils.js +20 -0
- package/dist/better-auth/adapter/index.d.ts +16 -0
- package/dist/better-auth/adapter/index.d.ts.map +1 -0
- package/dist/better-auth/adapter/index.js +717 -0
- package/dist/better-auth/adapter/transform/index.d.ts +31 -0
- package/dist/better-auth/adapter/transform/index.d.ts.map +1 -0
- package/dist/better-auth/adapter/transform/index.js +729 -0
- package/dist/better-auth/adapter/types.d.ts +11 -0
- package/dist/better-auth/adapter/types.d.ts.map +1 -0
- package/dist/better-auth/adapter/types.js +3 -0
- package/dist/better-auth/generated-types.d.ts +329 -0
- package/dist/better-auth/generated-types.d.ts.map +1 -0
- package/dist/better-auth/generated-types.js +4 -0
- package/dist/better-auth/index.d.ts +4 -0
- package/dist/better-auth/index.d.ts.map +1 -0
- package/dist/better-auth/index.js +5 -0
- package/dist/better-auth/plugin/constants.d.ts +231 -0
- package/dist/better-auth/plugin/constants.d.ts.map +1 -0
- package/dist/better-auth/plugin/constants.js +259 -0
- package/dist/better-auth/plugin/helpers/check-plugin-exists.d.ts +13 -0
- package/dist/better-auth/plugin/helpers/check-plugin-exists.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/check-plugin-exists.js +14 -0
- package/dist/better-auth/plugin/helpers/generate-verify-email-url.d.ts +30 -0
- package/dist/better-auth/plugin/helpers/generate-verify-email-url.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/generate-verify-email-url.js +46 -0
- package/dist/better-auth/plugin/helpers/get-admin-access.d.ts +8 -0
- package/dist/better-auth/plugin/helpers/get-admin-access.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-admin-access.js +22 -0
- package/dist/better-auth/plugin/helpers/get-all-roles.d.ts +6 -0
- package/dist/better-auth/plugin/helpers/get-all-roles.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-all-roles.js +20 -0
- package/dist/better-auth/plugin/helpers/get-better-auth-schema.d.ts +19 -0
- package/dist/better-auth/plugin/helpers/get-better-auth-schema.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-better-auth-schema.js +75 -0
- package/dist/better-auth/plugin/helpers/get-collection-slug.d.ts +6 -0
- package/dist/better-auth/plugin/helpers/get-collection-slug.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-collection-slug.js +20 -0
- package/dist/better-auth/plugin/helpers/get-collection.d.ts +28 -0
- package/dist/better-auth/plugin/helpers/get-collection.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-collection.js +49 -0
- package/dist/better-auth/plugin/helpers/get-ip.d.ts +3 -0
- package/dist/better-auth/plugin/helpers/get-ip.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-ip.js +31 -0
- package/dist/better-auth/plugin/helpers/get-signed-cookie.d.ts +3 -0
- package/dist/better-auth/plugin/helpers/get-signed-cookie.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/get-signed-cookie.js +63 -0
- package/dist/better-auth/plugin/helpers/index.d.ts +2 -0
- package/dist/better-auth/plugin/helpers/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/index.js +3 -0
- package/dist/better-auth/plugin/helpers/prepare-session-data.d.ts +60 -0
- package/dist/better-auth/plugin/helpers/prepare-session-data.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/prepare-session-data.js +49 -0
- package/dist/better-auth/plugin/helpers/sync-resolved-schema-with-collection-map.d.ts +21 -0
- package/dist/better-auth/plugin/helpers/sync-resolved-schema-with-collection-map.d.ts.map +1 -0
- package/dist/better-auth/plugin/helpers/sync-resolved-schema-with-collection-map.js +63 -0
- package/dist/better-auth/plugin/index.d.ts +8 -0
- package/dist/better-auth/plugin/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/index.js +103 -0
- package/dist/better-auth/plugin/lib/apply-disabled-default-auth-config.d.ts +13 -0
- package/dist/better-auth/plugin/lib/apply-disabled-default-auth-config.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/apply-disabled-default-auth-config.js +87 -0
- package/dist/better-auth/plugin/lib/build-collections/accounts/hooks/sync-password-to-user.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/accounts/hooks/sync-password-to-user.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/accounts/hooks/sync-password-to-user.js +51 -0
- package/dist/better-auth/plugin/lib/build-collections/accounts/index.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/accounts/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/accounts/index.js +150 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-after-read.d.ts +6 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-after-read.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-after-read.js +11 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-before-change.d.ts +3 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-before-change.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/hooks/get-url-before-change.js +8 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/index.d.ts +7 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/admin-invitations/index.js +117 -0
- package/dist/better-auth/plugin/lib/build-collections/api-keys.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/api-keys.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/api-keys.js +174 -0
- package/dist/better-auth/plugin/lib/build-collections/device-code.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/device-code.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/device-code.js +49 -0
- package/dist/better-auth/plugin/lib/build-collections/index.d.ts +11 -0
- package/dist/better-auth/plugin/lib/build-collections/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/index.js +79 -0
- package/dist/better-auth/plugin/lib/build-collections/invitations.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/invitations.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/invitations.js +93 -0
- package/dist/better-auth/plugin/lib/build-collections/jwks.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/jwks.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/jwks.js +58 -0
- package/dist/better-auth/plugin/lib/build-collections/members.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/members.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/members.js +72 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-access-tokens.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-access-tokens.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-access-tokens.js +105 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-applications.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-applications.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-applications.js +117 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-consents.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-consents.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/oauth-consents.js +87 -0
- package/dist/better-auth/plugin/lib/build-collections/organization-roles.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/organization-roles.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/organization-roles.js +65 -0
- package/dist/better-auth/plugin/lib/build-collections/organizations.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/organizations.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/organizations.js +106 -0
- package/dist/better-auth/plugin/lib/build-collections/passkeys.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/passkeys.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/passkeys.js +115 -0
- package/dist/better-auth/plugin/lib/build-collections/rate-limit.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/rate-limit.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/rate-limit.js +54 -0
- package/dist/better-auth/plugin/lib/build-collections/scim-provider.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/scim-provider.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/scim-provider.js +65 -0
- package/dist/better-auth/plugin/lib/build-collections/sessions.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/sessions.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/sessions.js +140 -0
- package/dist/better-auth/plugin/lib/build-collections/sso-providers.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/sso-providers.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/sso-providers.js +80 -0
- package/dist/better-auth/plugin/lib/build-collections/subscriptions.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/subscriptions.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/subscriptions.js +110 -0
- package/dist/better-auth/plugin/lib/build-collections/team-members.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/team-members.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/team-members.js +63 -0
- package/dist/better-auth/plugin/lib/build-collections/teams.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/teams.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/teams.js +74 -0
- package/dist/better-auth/plugin/lib/build-collections/two-factors.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/two-factors.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/two-factors.js +66 -0
- package/dist/better-auth/plugin/lib/build-collections/users/better-auth-strategy.d.ts +8 -0
- package/dist/better-auth/plugin/lib/build-collections/users/better-auth-strategy.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/better-auth-strategy.js +52 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/generate-invite-url.d.ts +12 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/generate-invite-url.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/generate-invite-url.js +68 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/index.d.ts +5 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/index.js +6 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/refresh-token.d.ts +3 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/refresh-token.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/refresh-token.js +114 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/send-invite-url.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/send-invite-url.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/send-invite-url.js +64 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/set-admin-role.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/set-admin-role.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/endpoints/set-admin-role.js +90 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-login.d.ts +7 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-login.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-login.js +80 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-logout.d.ts +3 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-logout.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/after-logout.js +79 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-delete.d.ts +3 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-delete.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-delete.js +54 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-login.d.ts +7 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-login.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/before-login.js +15 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/index.d.ts +7 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/index.js +8 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/on-verified-change.d.ts +3 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/on-verified-change.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/on-verified-change.js +17 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/sync-account.d.ts +3 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/sync-account.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/hooks/sync-account.js +90 -0
- package/dist/better-auth/plugin/lib/build-collections/users/index.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/users/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/users/index.js +333 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/collection-schema.d.ts +16 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/collection-schema.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/collection-schema.js +24 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/filter-properties.d.ts +11 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/filter-properties.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/filter-properties.js +112 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/get-timestamp-fields.d.ts +8 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/get-timestamp-fields.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/get-timestamp-fields.js +31 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/model-field-transformations.d.ts +12 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/model-field-transformations.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/model-field-transformations.js +26 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/payload-access.d.ts +18 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/payload-access.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/payload-access.js +84 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/transform-schema-fields-to-payload.d.ts +21 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/transform-schema-fields-to-payload.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/utils/transform-schema-fields-to-payload.js +95 -0
- package/dist/better-auth/plugin/lib/build-collections/verifications.d.ts +4 -0
- package/dist/better-auth/plugin/lib/build-collections/verifications.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/build-collections/verifications.js +82 -0
- package/dist/better-auth/plugin/lib/get-payload-auth.d.ts +6 -0
- package/dist/better-auth/plugin/lib/get-payload-auth.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/get-payload-auth.js +9 -0
- package/dist/better-auth/plugin/lib/init-better-auth.d.ts +8 -0
- package/dist/better-auth/plugin/lib/init-better-auth.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/init-better-auth.js +16 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/admin-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/admin-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/admin-plugin.js +12 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/api-key-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/api-key-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/api-key-plugin.js +10 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/device-authorization-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/device-authorization-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/device-authorization-plugin.js +8 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/index.d.ts +12 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/index.js +146 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/oidc-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/oidc-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/oidc-plugin.js +18 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/organizations-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/organizations-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/organizations-plugin.js +34 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/passkey-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/passkey-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/passkey-plugin.js +11 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/sso-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/sso-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/sso-plugin.js +10 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/two-factor-plugin.d.ts +3 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/two-factor-plugin.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/two-factor-plugin.js +11 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/admin-after-role-middleware.d.ts +8 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/admin-after-role-middleware.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/admin-after-role-middleware.js +20 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/admin-before-role-middleware.d.ts +8 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/admin-before-role-middleware.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/admin-before-role-middleware.js +20 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/apply-save-to-jwt-returned.d.ts +14 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/apply-save-to-jwt-returned.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/apply-save-to-jwt-returned.js +38 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/ensure-password-set-before-create.d.ts +8 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/ensure-password-set-before-create.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/ensure-password-set-before-create.js +23 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/password.d.ts +26 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/password.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/password.js +62 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/require-admin-invite-for-sign-up-middleware.d.ts +10 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/require-admin-invite-for-sign-up-middleware.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/require-admin-invite-for-sign-up-middleware.js +42 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/use-admin-invite-after-email-sign-up-middleware.d.ts +10 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/use-admin-invite-after-email-sign-up-middleware.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/sanitize-better-auth-options/utils/use-admin-invite-after-email-sign-up-middleware.js +62 -0
- package/dist/better-auth/plugin/lib/set-login-methods.d.ts +5 -0
- package/dist/better-auth/plugin/lib/set-login-methods.d.ts.map +1 -0
- package/dist/better-auth/plugin/lib/set-login-methods.js +14 -0
- package/dist/better-auth/plugin/payload/components/admin-buttons/index.d.ts +10 -0
- package/dist/better-auth/plugin/payload/components/admin-buttons/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/admin-buttons/index.js +116 -0
- package/dist/better-auth/plugin/payload/components/admin-buttons/index.scss +36 -0
- package/dist/better-auth/plugin/payload/components/admin-invite-button/index.d.ts +11 -0
- package/dist/better-auth/plugin/payload/components/admin-invite-button/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/admin-invite-button/index.js +213 -0
- package/dist/better-auth/plugin/payload/components/admin-invite-button/index.scss +136 -0
- package/dist/better-auth/plugin/payload/components/login-form/alternative-methods.d.ts +4 -0
- package/dist/better-auth/plugin/payload/components/login-form/alternative-methods.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/login-form/alternative-methods.js +197 -0
- package/dist/better-auth/plugin/payload/components/login-form/context.d.ts +49 -0
- package/dist/better-auth/plugin/payload/components/login-form/context.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/login-form/context.js +94 -0
- package/dist/better-auth/plugin/payload/components/login-form/credentials-form.d.ts +4 -0
- package/dist/better-auth/plugin/payload/components/login-form/credentials-form.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/login-form/credentials-form.js +167 -0
- package/dist/better-auth/plugin/payload/components/login-form/index.d.ts +5 -0
- package/dist/better-auth/plugin/payload/components/login-form/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/login-form/index.js +6 -0
- package/dist/better-auth/plugin/payload/components/login-form/index.scss +58 -0
- package/dist/better-auth/plugin/payload/components/logout-button.d.ts +5 -0
- package/dist/better-auth/plugin/payload/components/logout-button.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/logout-button.js +24 -0
- package/dist/better-auth/plugin/payload/components/passkeys/add-button.d.ts +9 -0
- package/dist/better-auth/plugin/payload/components/passkeys/add-button.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/passkeys/add-button.js +122 -0
- package/dist/better-auth/plugin/payload/components/passkeys/client.d.ts +3 -0
- package/dist/better-auth/plugin/payload/components/passkeys/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/passkeys/client.js +61 -0
- package/dist/better-auth/plugin/payload/components/passkeys/index.d.ts +5 -0
- package/dist/better-auth/plugin/payload/components/passkeys/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/passkeys/index.js +42 -0
- package/dist/better-auth/plugin/payload/components/passkeys/index.scss +98 -0
- package/dist/better-auth/plugin/payload/components/passkeys/list.d.ts +9 -0
- package/dist/better-auth/plugin/payload/components/passkeys/list.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/passkeys/list.js +57 -0
- package/dist/better-auth/plugin/payload/components/passkeys/types.d.ts +23 -0
- package/dist/better-auth/plugin/payload/components/passkeys/types.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/passkeys/types.js +3 -0
- package/dist/better-auth/plugin/payload/components/rsc-redirect.d.ts +7 -0
- package/dist/better-auth/plugin/payload/components/rsc-redirect.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/rsc-redirect.js +13 -0
- package/dist/better-auth/plugin/payload/components/token-field.d.ts +4 -0
- package/dist/better-auth/plugin/payload/components/token-field.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/token-field.js +29 -0
- package/dist/better-auth/plugin/payload/components/two-factor-auth/index.d.ts +9 -0
- package/dist/better-auth/plugin/payload/components/two-factor-auth/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/components/two-factor-auth/index.js +347 -0
- package/dist/better-auth/plugin/payload/components/two-factor-auth/index.scss +116 -0
- package/dist/better-auth/plugin/payload/exports/client.d.ts +7 -0
- package/dist/better-auth/plugin/payload/exports/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/exports/client.js +8 -0
- package/dist/better-auth/plugin/payload/exports/rsc.d.ts +9 -0
- package/dist/better-auth/plugin/payload/exports/rsc.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/exports/rsc.js +10 -0
- package/dist/better-auth/plugin/payload/utils/generate-admin-invite-url.d.ts +3 -0
- package/dist/better-auth/plugin/payload/utils/generate-admin-invite-url.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/utils/generate-admin-invite-url.js +9 -0
- package/dist/better-auth/plugin/payload/utils/get-safe-redirect.d.ts +2 -0
- package/dist/better-auth/plugin/payload/utils/get-safe-redirect.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/utils/get-safe-redirect.js +22 -0
- package/dist/better-auth/plugin/payload/views/admin-login/client.d.ts +23 -0
- package/dist/better-auth/plugin/payload/views/admin-login/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/admin-login/client.js +24 -0
- package/dist/better-auth/plugin/payload/views/admin-login/index.d.ts +11 -0
- package/dist/better-auth/plugin/payload/views/admin-login/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/admin-login/index.js +143 -0
- package/dist/better-auth/plugin/payload/views/admin-signup/client.d.ts +23 -0
- package/dist/better-auth/plugin/payload/views/admin-signup/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/admin-signup/client.js +185 -0
- package/dist/better-auth/plugin/payload/views/admin-signup/index.d.ts +10 -0
- package/dist/better-auth/plugin/payload/views/admin-signup/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/admin-signup/index.js +92 -0
- package/dist/better-auth/plugin/payload/views/forgot-password/client.d.ts +7 -0
- package/dist/better-auth/plugin/payload/views/forgot-password/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/forgot-password/client.js +104 -0
- package/dist/better-auth/plugin/payload/views/forgot-password/index.d.ts +9 -0
- package/dist/better-auth/plugin/payload/views/forgot-password/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/forgot-password/index.js +61 -0
- package/dist/better-auth/plugin/payload/views/reset-password/client.d.ts +11 -0
- package/dist/better-auth/plugin/payload/views/reset-password/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/reset-password/client.js +111 -0
- package/dist/better-auth/plugin/payload/views/reset-password/index.d.ts +9 -0
- package/dist/better-auth/plugin/payload/views/reset-password/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/reset-password/index.js +78 -0
- package/dist/better-auth/plugin/payload/views/two-factor-verify/client.d.ts +9 -0
- package/dist/better-auth/plugin/payload/views/two-factor-verify/client.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/two-factor-verify/client.js +79 -0
- package/dist/better-auth/plugin/payload/views/two-factor-verify/index.d.ts +10 -0
- package/dist/better-auth/plugin/payload/views/two-factor-verify/index.d.ts.map +1 -0
- package/dist/better-auth/plugin/payload/views/two-factor-verify/index.js +49 -0
- package/dist/better-auth/plugin/types.d.ts +448 -0
- package/dist/better-auth/plugin/types.d.ts.map +1 -0
- package/dist/better-auth/plugin/types.js +3 -0
- package/dist/better-auth/plugin/utils/set.d.ts +40 -0
- package/dist/better-auth/plugin/utils/set.d.ts.map +1 -0
- package/dist/better-auth/plugin/utils/set.js +84 -0
- package/dist/better-auth/scripts/generate-types.d.ts +2 -0
- package/dist/better-auth/scripts/generate-types.d.ts.map +1 -0
- package/dist/better-auth/scripts/generate-types.js +225 -0
- package/dist/better-auth/types.d.ts +3 -0
- package/dist/better-auth/types.d.ts.map +1 -0
- package/dist/better-auth/types.js +4 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/dist/shared/components/icons.d.ts +8 -0
- package/dist/shared/components/icons.d.ts.map +1 -0
- package/dist/shared/components/icons.js +436 -0
- package/dist/shared/components/logo.d.ts +3 -0
- package/dist/shared/components/logo.d.ts.map +1 -0
- package/dist/shared/components/logo.js +24 -0
- package/dist/shared/form/components/submit.d.ts +8 -0
- package/dist/shared/form/components/submit.d.ts.map +1 -0
- package/dist/shared/form/components/submit.js +23 -0
- package/dist/shared/form/fields/text-field.d.ts +9 -0
- package/dist/shared/form/fields/text-field.d.ts.map +1 -0
- package/dist/shared/form/fields/text-field.js +44 -0
- package/dist/shared/form/index.d.ts +28 -0
- package/dist/shared/form/index.d.ts.map +1 -0
- package/dist/shared/form/index.js +17 -0
- package/dist/shared/form/ui/header/index.d.ts +9 -0
- package/dist/shared/form/ui/header/index.d.ts.map +1 -0
- package/dist/shared/form/ui/header/index.js +23 -0
- package/dist/shared/form/ui/header/index.scss +8 -0
- package/dist/shared/form/ui/index.d.ts +34 -0
- package/dist/shared/form/ui/index.d.ts.map +1 -0
- package/dist/shared/form/ui/index.js +70 -0
- package/dist/shared/form/ui/index.scss +27 -0
- package/dist/shared/form/validation.d.ts +65 -0
- package/dist/shared/form/validation.d.ts.map +1 -0
- package/dist/shared/form/validation.js +108 -0
- package/dist/shared/index.d.ts +3 -0
- package/dist/shared/index.d.ts.map +1 -0
- package/dist/shared/index.js +4 -0
- package/dist/shared/payload/fields/field-copy-button/index.css +47 -0
- package/dist/shared/payload/fields/field-copy-button/index.d.ts +4 -0
- package/dist/shared/payload/fields/field-copy-button/index.d.ts.map +1 -0
- package/dist/shared/payload/fields/field-copy-button/index.js +38 -0
- package/dist/shared/payload/fields/generate-uuid-button/index.css +14 -0
- package/dist/shared/payload/fields/generate-uuid-button/index.d.ts +4 -0
- package/dist/shared/payload/fields/generate-uuid-button/index.d.ts.map +1 -0
- package/dist/shared/payload/fields/generate-uuid-button/index.js +26 -0
- package/dist/shared/payload/fields/index.d.ts +3 -0
- package/dist/shared/payload/fields/index.d.ts.map +1 -0
- package/dist/shared/payload/fields/index.js +4 -0
- package/dist/shared/utils/regex.d.ts +3 -0
- package/dist/shared/utils/regex.d.ts.map +1 -0
- package/dist/shared/utils/regex.js +4 -0
- package/dist/shared/utils/try-catch.d.ts +12 -0
- package/dist/shared/utils/try-catch.d.ts.map +1 -0
- package/dist/shared/utils/try-catch.js +17 -0
- package/dist/shared/utils/value-or-default.d.ts +10 -0
- package/dist/shared/utils/value-or-default.d.ts.map +1 -0
- package/dist/shared/utils/value-or-default.js +12 -0
- package/package.json +124 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DBAdapterInstance } from "@better-auth/core/db/adapter";
|
|
2
|
+
import type { BasePayload } from "payload";
|
|
3
|
+
export type PayloadAdapterParams = {
|
|
4
|
+
payloadClient: BasePayload | Promise<BasePayload> | (() => Promise<BasePayload>);
|
|
5
|
+
adapterConfig: {
|
|
6
|
+
enableDebugLogs?: boolean;
|
|
7
|
+
idType: "number" | "text";
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export type PayloadAdapter = (options: PayloadAdapterParams) => DBAdapterInstance;
|
|
11
|
+
//# 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,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,MAAM,MAAM,oBAAoB,GAAG;IACjC,aAAa,EACT,WAAW,GACX,OAAO,CAAC,WAAW,CAAC,GACpB,CAAC,MAAM,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;IACjC,aAAa,EAAE;QACb,eAAe,CAAC,EAAE,OAAO,CAAC;QAC1B,MAAM,EAAE,QAAQ,GAAG,MAAM,CAAC;KAC3B,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,CAC3B,OAAO,EAAE,oBAAoB,KAC1B,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { };
|
|
2
|
+
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9iZXR0ZXItYXV0aC9hZGFwdGVyL3R5cGVzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERCQWRhcHRlckluc3RhbmNlIH0gZnJvbSBcIkBiZXR0ZXItYXV0aC9jb3JlL2RiL2FkYXB0ZXJcIjtcbmltcG9ydCB0eXBlIHsgQmFzZVBheWxvYWQgfSBmcm9tIFwicGF5bG9hZFwiO1xuXG5leHBvcnQgdHlwZSBQYXlsb2FkQWRhcHRlclBhcmFtcyA9IHtcbiAgcGF5bG9hZENsaWVudDpcbiAgICB8IEJhc2VQYXlsb2FkXG4gICAgfCBQcm9taXNlPEJhc2VQYXlsb2FkPlxuICAgIHwgKCgpID0+IFByb21pc2U8QmFzZVBheWxvYWQ+KTtcbiAgYWRhcHRlckNvbmZpZzoge1xuICAgIGVuYWJsZURlYnVnTG9ncz86IGJvb2xlYW47XG4gICAgaWRUeXBlOiBcIm51bWJlclwiIHwgXCJ0ZXh0XCI7XG4gIH07XG59O1xuXG5leHBvcnQgdHlwZSBQYXlsb2FkQWRhcHRlciA9IChcbiAgb3B0aW9uczogUGF5bG9hZEFkYXB0ZXJQYXJhbXNcbikgPT4gREJBZGFwdGVySW5zdGFuY2U7XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBY0EsV0FFdUIifQ==
|
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
export type BaseUserFields = {
|
|
2
|
+
name: string;
|
|
3
|
+
email: string;
|
|
4
|
+
emailVerified: boolean;
|
|
5
|
+
image?: string;
|
|
6
|
+
createdAt: Date;
|
|
7
|
+
updatedAt: Date;
|
|
8
|
+
role?: string;
|
|
9
|
+
};
|
|
10
|
+
export type UserPluginFields = {
|
|
11
|
+
"username": {
|
|
12
|
+
username?: string;
|
|
13
|
+
displayUsername?: string;
|
|
14
|
+
};
|
|
15
|
+
"admin": {
|
|
16
|
+
banned?: boolean;
|
|
17
|
+
banReason?: string;
|
|
18
|
+
banExpires?: Date;
|
|
19
|
+
};
|
|
20
|
+
"harmony-email": {
|
|
21
|
+
normalizedEmail?: string;
|
|
22
|
+
};
|
|
23
|
+
"phone-number": {
|
|
24
|
+
phoneNumber?: string;
|
|
25
|
+
phoneNumberVerified?: boolean;
|
|
26
|
+
};
|
|
27
|
+
"anonymous": {
|
|
28
|
+
isAnonymous?: boolean;
|
|
29
|
+
};
|
|
30
|
+
"two-factor": {
|
|
31
|
+
twoFactorEnabled?: boolean;
|
|
32
|
+
};
|
|
33
|
+
"last-login-method": {
|
|
34
|
+
lastLoginMethod?: string;
|
|
35
|
+
};
|
|
36
|
+
"stripe": {
|
|
37
|
+
stripeCustomerId?: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
export type User = BaseUserFields & UserPluginFields["username"] & UserPluginFields["admin"] & UserPluginFields["harmony-email"] & UserPluginFields["phone-number"] & UserPluginFields["anonymous"] & UserPluginFields["two-factor"] & UserPluginFields["last-login-method"] & UserPluginFields["stripe"];
|
|
41
|
+
export type BaseSessionFields = {
|
|
42
|
+
expiresAt: Date;
|
|
43
|
+
token: string;
|
|
44
|
+
createdAt: Date;
|
|
45
|
+
updatedAt: Date;
|
|
46
|
+
ipAddress?: string;
|
|
47
|
+
userAgent?: string;
|
|
48
|
+
userId: string;
|
|
49
|
+
};
|
|
50
|
+
export type SessionPluginFields = {
|
|
51
|
+
"admin": {
|
|
52
|
+
impersonatedBy?: string;
|
|
53
|
+
};
|
|
54
|
+
"organization": {
|
|
55
|
+
activeOrganizationId?: string;
|
|
56
|
+
activeTeamId?: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export type Session = BaseSessionFields & SessionPluginFields["admin"] & SessionPluginFields["organization"];
|
|
60
|
+
export type BaseAccountFields = {
|
|
61
|
+
accountId: string;
|
|
62
|
+
providerId: string;
|
|
63
|
+
userId: string;
|
|
64
|
+
accessToken?: string;
|
|
65
|
+
refreshToken?: string;
|
|
66
|
+
idToken?: string;
|
|
67
|
+
accessTokenExpiresAt?: Date;
|
|
68
|
+
refreshTokenExpiresAt?: Date;
|
|
69
|
+
scope?: string;
|
|
70
|
+
password?: string;
|
|
71
|
+
createdAt: Date;
|
|
72
|
+
updatedAt: Date;
|
|
73
|
+
};
|
|
74
|
+
export type Account = BaseAccountFields;
|
|
75
|
+
export type BaseVerificationFields = {
|
|
76
|
+
identifier: string;
|
|
77
|
+
value: string;
|
|
78
|
+
expiresAt: Date;
|
|
79
|
+
createdAt: Date;
|
|
80
|
+
updatedAt: Date;
|
|
81
|
+
};
|
|
82
|
+
export type Verification = BaseVerificationFields;
|
|
83
|
+
export type BaseRateLimitFields = {
|
|
84
|
+
key?: string;
|
|
85
|
+
count?: number;
|
|
86
|
+
lastRequest?: number;
|
|
87
|
+
};
|
|
88
|
+
export type RateLimit = BaseRateLimitFields;
|
|
89
|
+
export type ApikeyFields = {
|
|
90
|
+
name?: string;
|
|
91
|
+
start?: string;
|
|
92
|
+
prefix?: string;
|
|
93
|
+
key: string;
|
|
94
|
+
userId: string;
|
|
95
|
+
refillInterval?: number;
|
|
96
|
+
refillAmount?: number;
|
|
97
|
+
lastRefillAt?: Date;
|
|
98
|
+
enabled?: boolean;
|
|
99
|
+
rateLimitEnabled?: boolean;
|
|
100
|
+
rateLimitTimeWindow?: number;
|
|
101
|
+
rateLimitMax?: number;
|
|
102
|
+
requestCount?: number;
|
|
103
|
+
remaining?: number;
|
|
104
|
+
lastRequest?: Date;
|
|
105
|
+
expiresAt?: Date;
|
|
106
|
+
createdAt: Date;
|
|
107
|
+
updatedAt: Date;
|
|
108
|
+
permissions?: string;
|
|
109
|
+
metadata?: string;
|
|
110
|
+
};
|
|
111
|
+
export type Apikey = ApikeyFields;
|
|
112
|
+
export type PasskeyFields = {
|
|
113
|
+
name?: string;
|
|
114
|
+
publicKey: string;
|
|
115
|
+
userId: string;
|
|
116
|
+
credentialID: string;
|
|
117
|
+
counter: number;
|
|
118
|
+
deviceType: string;
|
|
119
|
+
backedUp: boolean;
|
|
120
|
+
transports?: string;
|
|
121
|
+
createdAt?: Date;
|
|
122
|
+
aaguid?: string;
|
|
123
|
+
};
|
|
124
|
+
export type Passkey = PasskeyFields;
|
|
125
|
+
export type OauthApplicationPluginFields = {
|
|
126
|
+
"oidc": {
|
|
127
|
+
name?: string;
|
|
128
|
+
icon?: string;
|
|
129
|
+
metadata?: string;
|
|
130
|
+
clientId?: string;
|
|
131
|
+
clientSecret?: string;
|
|
132
|
+
redirectUrls?: string;
|
|
133
|
+
type?: string;
|
|
134
|
+
disabled?: boolean;
|
|
135
|
+
userId?: string;
|
|
136
|
+
createdAt?: Date;
|
|
137
|
+
updatedAt?: Date;
|
|
138
|
+
};
|
|
139
|
+
"mcp": {
|
|
140
|
+
name?: string;
|
|
141
|
+
icon?: string;
|
|
142
|
+
metadata?: string;
|
|
143
|
+
clientId?: string;
|
|
144
|
+
clientSecret?: string;
|
|
145
|
+
redirectUrls?: string;
|
|
146
|
+
type?: string;
|
|
147
|
+
disabled?: boolean;
|
|
148
|
+
userId?: string;
|
|
149
|
+
createdAt?: Date;
|
|
150
|
+
updatedAt?: Date;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
export type OauthApplication = OauthApplicationPluginFields["oidc"] & OauthApplicationPluginFields["mcp"];
|
|
154
|
+
export type OauthAccessTokenPluginFields = {
|
|
155
|
+
"oidc": {
|
|
156
|
+
accessToken?: string;
|
|
157
|
+
refreshToken?: string;
|
|
158
|
+
accessTokenExpiresAt?: Date;
|
|
159
|
+
refreshTokenExpiresAt?: Date;
|
|
160
|
+
clientId?: string;
|
|
161
|
+
userId?: string;
|
|
162
|
+
scopes?: string;
|
|
163
|
+
createdAt?: Date;
|
|
164
|
+
updatedAt?: Date;
|
|
165
|
+
};
|
|
166
|
+
"mcp": {
|
|
167
|
+
accessToken?: string;
|
|
168
|
+
refreshToken?: string;
|
|
169
|
+
accessTokenExpiresAt?: Date;
|
|
170
|
+
refreshTokenExpiresAt?: Date;
|
|
171
|
+
clientId?: string;
|
|
172
|
+
userId?: string;
|
|
173
|
+
scopes?: string;
|
|
174
|
+
createdAt?: Date;
|
|
175
|
+
updatedAt?: Date;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
export type OauthAccessToken = OauthAccessTokenPluginFields["oidc"] & OauthAccessTokenPluginFields["mcp"];
|
|
179
|
+
export type OauthConsentPluginFields = {
|
|
180
|
+
"oidc": {
|
|
181
|
+
clientId?: string;
|
|
182
|
+
userId?: string;
|
|
183
|
+
scopes?: string;
|
|
184
|
+
createdAt?: Date;
|
|
185
|
+
updatedAt?: Date;
|
|
186
|
+
consentGiven?: boolean;
|
|
187
|
+
};
|
|
188
|
+
"mcp": {
|
|
189
|
+
clientId?: string;
|
|
190
|
+
userId?: string;
|
|
191
|
+
scopes?: string;
|
|
192
|
+
createdAt?: Date;
|
|
193
|
+
updatedAt?: Date;
|
|
194
|
+
consentGiven?: boolean;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
export type OauthConsent = OauthConsentPluginFields["oidc"] & OauthConsentPluginFields["mcp"];
|
|
198
|
+
export type SsoProviderFields = {
|
|
199
|
+
issuer: string;
|
|
200
|
+
oidcConfig?: string;
|
|
201
|
+
samlConfig?: string;
|
|
202
|
+
userId?: string;
|
|
203
|
+
providerId: string;
|
|
204
|
+
organizationId?: string;
|
|
205
|
+
domain: string;
|
|
206
|
+
};
|
|
207
|
+
export type SsoProvider = SsoProviderFields;
|
|
208
|
+
export type OrganizationFields = {
|
|
209
|
+
name: string;
|
|
210
|
+
slug: string;
|
|
211
|
+
logo?: string;
|
|
212
|
+
createdAt: Date;
|
|
213
|
+
metadata?: string;
|
|
214
|
+
};
|
|
215
|
+
export type Organization = OrganizationFields;
|
|
216
|
+
export type OrganizationRoleFields = {
|
|
217
|
+
organizationId: string;
|
|
218
|
+
role: string;
|
|
219
|
+
permission: string;
|
|
220
|
+
createdAt: Date;
|
|
221
|
+
updatedAt?: Date;
|
|
222
|
+
};
|
|
223
|
+
export type OrganizationRole = OrganizationRoleFields;
|
|
224
|
+
export type TeamFields = {
|
|
225
|
+
name: string;
|
|
226
|
+
organizationId: string;
|
|
227
|
+
createdAt: Date;
|
|
228
|
+
updatedAt?: Date;
|
|
229
|
+
};
|
|
230
|
+
export type Team = TeamFields;
|
|
231
|
+
export type TeamMemberFields = {
|
|
232
|
+
teamId: string;
|
|
233
|
+
userId: string;
|
|
234
|
+
createdAt?: Date;
|
|
235
|
+
};
|
|
236
|
+
export type TeamMember = TeamMemberFields;
|
|
237
|
+
export type MemberFields = {
|
|
238
|
+
organizationId: string;
|
|
239
|
+
userId: string;
|
|
240
|
+
role: string;
|
|
241
|
+
createdAt: Date;
|
|
242
|
+
};
|
|
243
|
+
export type Member = MemberFields;
|
|
244
|
+
export type InvitationFields = {
|
|
245
|
+
organizationId: string;
|
|
246
|
+
email: string;
|
|
247
|
+
role?: string;
|
|
248
|
+
teamId?: string;
|
|
249
|
+
status: string;
|
|
250
|
+
expiresAt: Date;
|
|
251
|
+
createdAt: Date;
|
|
252
|
+
inviterId: string;
|
|
253
|
+
};
|
|
254
|
+
export type Invitation = InvitationFields;
|
|
255
|
+
export type JwksFields = {
|
|
256
|
+
publicKey: string;
|
|
257
|
+
privateKey: string;
|
|
258
|
+
createdAt: Date;
|
|
259
|
+
expiresAt?: Date;
|
|
260
|
+
};
|
|
261
|
+
export type Jwks = JwksFields;
|
|
262
|
+
export type TwoFactorFields = {
|
|
263
|
+
secret: string;
|
|
264
|
+
backupCodes: string;
|
|
265
|
+
userId: string;
|
|
266
|
+
};
|
|
267
|
+
export type TwoFactor = TwoFactorFields;
|
|
268
|
+
export type ScimProviderFields = {
|
|
269
|
+
providerId: string;
|
|
270
|
+
scimToken: string;
|
|
271
|
+
organizationId?: string;
|
|
272
|
+
};
|
|
273
|
+
export type ScimProvider = ScimProviderFields;
|
|
274
|
+
export type DeviceCodeFields = {
|
|
275
|
+
deviceCode: string;
|
|
276
|
+
userCode: string;
|
|
277
|
+
userId?: string;
|
|
278
|
+
expiresAt: Date;
|
|
279
|
+
status: string;
|
|
280
|
+
lastPolledAt?: Date;
|
|
281
|
+
pollingInterval?: number;
|
|
282
|
+
clientId?: string;
|
|
283
|
+
scope?: string;
|
|
284
|
+
};
|
|
285
|
+
export type DeviceCode = DeviceCodeFields;
|
|
286
|
+
export type SubscriptionFields = {
|
|
287
|
+
plan: string;
|
|
288
|
+
referenceId: string;
|
|
289
|
+
stripeCustomerId?: string;
|
|
290
|
+
stripeSubscriptionId?: string;
|
|
291
|
+
status?: string;
|
|
292
|
+
periodStart?: Date;
|
|
293
|
+
periodEnd?: Date;
|
|
294
|
+
trialStart?: Date;
|
|
295
|
+
trialEnd?: Date;
|
|
296
|
+
cancelAtPeriodEnd?: boolean;
|
|
297
|
+
cancelAt?: Date;
|
|
298
|
+
canceledAt?: Date;
|
|
299
|
+
endedAt?: Date;
|
|
300
|
+
seats?: number;
|
|
301
|
+
};
|
|
302
|
+
export type Subscription = SubscriptionFields;
|
|
303
|
+
export type PluginId = "username" | "admin" | "api-key" | "passkey" | "harmony-email" | "harmony-phone-number" | "bearer" | "email-otp" | "magic-link" | "phone-number" | "one-tap" | "anonymous" | "multi-session" | "one-time-token" | "oidc" | "sso" | "generic-oauth" | "open-api" | "organization" | "jwt" | "two-factor" | "next-cookies" | "custom-session" | "scim" | "mcp" | "device-authorization" | "last-login-method" | "stripe";
|
|
304
|
+
export type BetterAuthFullSchema = {
|
|
305
|
+
"user": User;
|
|
306
|
+
"session": Session;
|
|
307
|
+
"account": Account;
|
|
308
|
+
"verification": Verification;
|
|
309
|
+
"rateLimit": RateLimit;
|
|
310
|
+
"apikey": Apikey;
|
|
311
|
+
"passkey": Passkey;
|
|
312
|
+
"oauthApplication": OauthApplication;
|
|
313
|
+
"oauthAccessToken": OauthAccessToken;
|
|
314
|
+
"oauthConsent": OauthConsent;
|
|
315
|
+
"ssoProvider": SsoProvider;
|
|
316
|
+
"organization": Organization;
|
|
317
|
+
"organizationRole": OrganizationRole;
|
|
318
|
+
"team": Team;
|
|
319
|
+
"teamMember": TeamMember;
|
|
320
|
+
"member": Member;
|
|
321
|
+
"invitation": Invitation;
|
|
322
|
+
"jwks": Jwks;
|
|
323
|
+
"twoFactor": TwoFactor;
|
|
324
|
+
"scimProvider": ScimProvider;
|
|
325
|
+
"deviceCode": DeviceCode;
|
|
326
|
+
"subscription": Subscription;
|
|
327
|
+
};
|
|
328
|
+
export type ModelKey = keyof BetterAuthFullSchema;
|
|
329
|
+
//# sourceMappingURL=generated-types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generated-types.d.ts","sourceRoot":"","sources":["../../src/better-auth/generated-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// Auto-generated types. Do not edit.
|
|
2
|
+
export { };
|
|
3
|
+
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9iZXR0ZXItYXV0aC9nZW5lcmF0ZWQtdHlwZXMudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gQXV0by1nZW5lcmF0ZWQgdHlwZXMuIERvIG5vdCBlZGl0LlxuXG5leHBvcnQgdHlwZSBCYXNlVXNlckZpZWxkcyA9IHtcbiAgbmFtZTogc3RyaW5nXG4gIGVtYWlsOiBzdHJpbmdcbiAgZW1haWxWZXJpZmllZDogYm9vbGVhblxuICBpbWFnZT86IHN0cmluZ1xuICBjcmVhdGVkQXQ6IERhdGVcbiAgdXBkYXRlZEF0OiBEYXRlXG4gIHJvbGU/OiBzdHJpbmdcbn1cblxuZXhwb3J0IHR5cGUgVXNlclBsdWdpbkZpZWxkcyA9IHtcbiAgXCJ1c2VybmFtZVwiOiB7XG4gICAgdXNlcm5hbWU/OiBzdHJpbmdcbiAgICBkaXNwbGF5VXNlcm5hbWU/OiBzdHJpbmdcbiAgfVxuICBcImFkbWluXCI6IHtcbiAgICBiYW5uZWQ/OiBib29sZWFuXG4gICAgYmFuUmVhc29uPzogc3RyaW5nXG4gICAgYmFuRXhwaXJlcz86IERhdGVcbiAgfVxuICBcImhhcm1vbnktZW1haWxcIjoge1xuICAgIG5vcm1hbGl6ZWRFbWFpbD86IHN0cmluZ1xuICB9XG4gIFwicGhvbmUtbnVtYmVyXCI6IHtcbiAgICBwaG9uZU51bWJlcj86IHN0cmluZ1xuICAgIHBob25lTnVtYmVyVmVyaWZpZWQ/OiBib29sZWFuXG4gIH1cbiAgXCJhbm9ueW1vdXNcIjoge1xuICAgIGlzQW5vbnltb3VzPzogYm9vbGVhblxuICB9XG4gIFwidHdvLWZhY3RvclwiOiB7XG4gICAgdHdvRmFjdG9yRW5hYmxlZD86IGJvb2xlYW5cbiAgfVxuICBcImxhc3QtbG9naW4tbWV0aG9kXCI6IHtcbiAgICBsYXN0TG9naW5NZXRob2Q/OiBzdHJpbmdcbiAgfVxuICBcInN0cmlwZVwiOiB7XG4gICAgc3RyaXBlQ3VzdG9tZXJJZD86IHN0cmluZ1xuICB9XG59XG5cbmV4cG9ydCB0eXBlIFVzZXIgPSBCYXNlVXNlckZpZWxkcyAmIFVzZXJQbHVnaW5GaWVsZHNbXCJ1c2VybmFtZVwiXSAmIFVzZXJQbHVnaW5GaWVsZHNbXCJhZG1pblwiXSAmIFVzZXJQbHVnaW5GaWVsZHNbXCJoYXJtb255LWVtYWlsXCJdICYgVXNlclBsdWdpbkZpZWxkc1tcInBob25lLW51bWJlclwiXSAmIFVzZXJQbHVnaW5GaWVsZHNbXCJhbm9ueW1vdXNcIl0gJiBVc2VyUGx1Z2luRmllbGRzW1widHdvLWZhY3RvclwiXSAmIFVzZXJQbHVnaW5GaWVsZHNbXCJsYXN0LWxvZ2luLW1ldGhvZFwiXSAmIFVzZXJQbHVnaW5GaWVsZHNbXCJzdHJpcGVcIl1cblxuZXhwb3J0IHR5cGUgQmFzZVNlc3Npb25GaWVsZHMgPSB7XG4gIGV4cGlyZXNBdDogRGF0ZVxuICB0b2tlbjogc3RyaW5nXG4gIGNyZWF0ZWRBdDogRGF0ZVxuICB1cGRhdGVkQXQ6IERhdGVcbiAgaXBBZGRyZXNzPzogc3RyaW5nXG4gIHVzZXJBZ2VudD86IHN0cmluZ1xuICB1c2VySWQ6IHN0cmluZ1xufVxuXG5leHBvcnQgdHlwZSBTZXNzaW9uUGx1Z2luRmllbGRzID0ge1xuICBcImFkbWluXCI6IHtcbiAgICBpbXBlcnNvbmF0ZWRCeT86IHN0cmluZ1xuICB9XG4gIFwib3JnYW5pemF0aW9uXCI6IHtcbiAgICBhY3RpdmVPcmdhbml6YXRpb25JZD86IHN0cmluZ1xuICAgIGFjdGl2ZVRlYW1JZD86IHN0cmluZ1xuICB9XG59XG5cbmV4cG9ydCB0eXBlIFNlc3Npb24gPSBCYXNlU2Vzc2lvbkZpZWxkcyAmIFNlc3Npb25QbHVnaW5GaWVsZHNbXCJhZG1pblwiXSAmIFNlc3Npb25QbHVnaW5GaWVsZHNbXCJvcmdhbml6YXRpb25cIl1cblxuZXhwb3J0IHR5cGUgQmFzZUFjY291bnRGaWVsZHMgPSB7XG4gIGFjY291bnRJZDogc3RyaW5nXG4gIHByb3ZpZGVySWQ6IHN0cmluZ1xuICB1c2VySWQ6IHN0cmluZ1xuICBhY2Nlc3NUb2tlbj86IHN0cmluZ1xuICByZWZyZXNoVG9rZW4/OiBzdHJpbmdcbiAgaWRUb2tlbj86IHN0cmluZ1xuICBhY2Nlc3NUb2tlbkV4cGlyZXNBdD86IERhdGVcbiAgcmVmcmVzaFRva2VuRXhwaXJlc0F0PzogRGF0ZVxuICBzY29wZT86IHN0cmluZ1xuICBwYXNzd29yZD86IHN0cmluZ1xuICBjcmVhdGVkQXQ6IERhdGVcbiAgdXBkYXRlZEF0OiBEYXRlXG59XG5cbmV4cG9ydCB0eXBlIEFjY291bnQgPSBCYXNlQWNjb3VudEZpZWxkc1xuXG5leHBvcnQgdHlwZSBCYXNlVmVyaWZpY2F0aW9uRmllbGRzID0ge1xuICBpZGVudGlmaWVyOiBzdHJpbmdcbiAgdmFsdWU6IHN0cmluZ1xuICBleHBpcmVzQXQ6IERhdGVcbiAgY3JlYXRlZEF0OiBEYXRlXG4gIHVwZGF0ZWRBdDogRGF0ZVxufVxuXG5leHBvcnQgdHlwZSBWZXJpZmljYXRpb24gPSBCYXNlVmVyaWZpY2F0aW9uRmllbGRzXG5cbmV4cG9ydCB0eXBlIEJhc2VSYXRlTGltaXRGaWVsZHMgPSB7XG4gIGtleT86IHN0cmluZ1xuICBjb3VudD86IG51bWJlclxuICBsYXN0UmVxdWVzdD86IG51bWJlclxufVxuXG5leHBvcnQgdHlwZSBSYXRlTGltaXQgPSBCYXNlUmF0ZUxpbWl0RmllbGRzXG5cbmV4cG9ydCB0eXBlIEFwaWtleUZpZWxkcyA9IHtcbiAgbmFtZT86IHN0cmluZ1xuICBzdGFydD86IHN0cmluZ1xuICBwcmVmaXg/OiBzdHJpbmdcbiAga2V5OiBzdHJpbmdcbiAgdXNlcklkOiBzdHJpbmdcbiAgcmVmaWxsSW50ZXJ2YWw/OiBudW1iZXJcbiAgcmVmaWxsQW1vdW50PzogbnVtYmVyXG4gIGxhc3RSZWZpbGxBdD86IERhdGVcbiAgZW5hYmxlZD86IGJvb2xlYW5cbiAgcmF0ZUxpbWl0RW5hYmxlZD86IGJvb2xlYW5cbiAgcmF0ZUxpbWl0VGltZVdpbmRvdz86IG51bWJlclxuICByYXRlTGltaXRNYXg/OiBudW1iZXJcbiAgcmVxdWVzdENvdW50PzogbnVtYmVyXG4gIHJlbWFpbmluZz86IG51bWJlclxuICBsYXN0UmVxdWVzdD86IERhdGVcbiAgZXhwaXJlc0F0PzogRGF0ZVxuICBjcmVhdGVkQXQ6IERhdGVcbiAgdXBkYXRlZEF0OiBEYXRlXG4gIHBlcm1pc3Npb25zPzogc3RyaW5nXG4gIG1ldGFkYXRhPzogc3RyaW5nXG59XG5cbmV4cG9ydCB0eXBlIEFwaWtleSA9IEFwaWtleUZpZWxkc1xuXG5leHBvcnQgdHlwZSBQYXNza2V5RmllbGRzID0ge1xuICBuYW1lPzogc3RyaW5nXG4gIHB1YmxpY0tleTogc3RyaW5nXG4gIHVzZXJJZDogc3RyaW5nXG4gIGNyZWRlbnRpYWxJRDogc3RyaW5nXG4gIGNvdW50ZXI6IG51bWJlclxuICBkZXZpY2VUeXBlOiBzdHJpbmdcbiAgYmFja2VkVXA6IGJvb2xlYW5cbiAgdHJhbnNwb3J0cz86IHN0cmluZ1xuICBjcmVhdGVkQXQ/OiBEYXRlXG4gIGFhZ3VpZD86IHN0cmluZ1xufVxuXG5leHBvcnQgdHlwZSBQYXNza2V5ID0gUGFzc2tleUZpZWxkc1xuXG5leHBvcnQgdHlwZSBPYXV0aEFwcGxpY2F0aW9uUGx1Z2luRmllbGRzID0ge1xuICBcIm9pZGNcIjoge1xuICAgIG5hbWU/OiBzdHJpbmdcbiAgICBpY29uPzogc3RyaW5nXG4gICAgbWV0YWRhdGE/OiBzdHJpbmdcbiAgICBjbGllbnRJZD86IHN0cmluZ1xuICAgIGNsaWVudFNlY3JldD86IHN0cmluZ1xuICAgIHJlZGlyZWN0VXJscz86IHN0cmluZ1xuICAgIHR5cGU/OiBzdHJpbmdcbiAgICBkaXNhYmxlZD86IGJvb2xlYW5cbiAgICB1c2VySWQ/OiBzdHJpbmdcbiAgICBjcmVhdGVkQXQ/OiBEYXRlXG4gICAgdXBkYXRlZEF0PzogRGF0ZVxuICB9XG4gIFwibWNwXCI6IHtcbiAgICBuYW1lPzogc3RyaW5nXG4gICAgaWNvbj86IHN0cmluZ1xuICAgIG1ldGFkYXRhPzogc3RyaW5nXG4gICAgY2xpZW50SWQ/OiBzdHJpbmdcbiAgICBjbGllbnRTZWNyZXQ/OiBzdHJpbmdcbiAgICByZWRpcmVjdFVybHM/OiBzdHJpbmdcbiAgICB0eXBlPzogc3RyaW5nXG4gICAgZGlzYWJsZWQ/OiBib29sZWFuXG4gICAgdXNlcklkPzogc3RyaW5nXG4gICAgY3JlYXRlZEF0PzogRGF0ZVxuICAgIHVwZGF0ZWRBdD86IERhdGVcbiAgfVxufVxuXG5leHBvcnQgdHlwZSBPYXV0aEFwcGxpY2F0aW9uID0gT2F1dGhBcHBsaWNhdGlvblBsdWdpbkZpZWxkc1tcIm9pZGNcIl0gJiBPYXV0aEFwcGxpY2F0aW9uUGx1Z2luRmllbGRzW1wibWNwXCJdXG5cbmV4cG9ydCB0eXBlIE9hdXRoQWNjZXNzVG9rZW5QbHVnaW5GaWVsZHMgPSB7XG4gIFwib2lkY1wiOiB7XG4gICAgYWNjZXNzVG9rZW4/OiBzdHJpbmdcbiAgICByZWZyZXNoVG9rZW4/OiBzdHJpbmdcbiAgICBhY2Nlc3NUb2tlbkV4cGlyZXNBdD86IERhdGVcbiAgICByZWZyZXNoVG9rZW5FeHBpcmVzQXQ/OiBEYXRlXG4gICAgY2xpZW50SWQ/OiBzdHJpbmdcbiAgICB1c2VySWQ/OiBzdHJpbmdcbiAgICBzY29wZXM/OiBzdHJpbmdcbiAgICBjcmVhdGVkQXQ/OiBEYXRlXG4gICAgdXBkYXRlZEF0PzogRGF0ZVxuICB9XG4gIFwibWNwXCI6IHtcbiAgICBhY2Nlc3NUb2tlbj86IHN0cmluZ1xuICAgIHJlZnJlc2hUb2tlbj86IHN0cmluZ1xuICAgIGFjY2Vzc1Rva2VuRXhwaXJlc0F0PzogRGF0ZVxuICAgIHJlZnJlc2hUb2tlbkV4cGlyZXNBdD86IERhdGVcbiAgICBjbGllbnRJZD86IHN0cmluZ1xuICAgIHVzZXJJZD86IHN0cmluZ1xuICAgIHNjb3Blcz86IHN0cmluZ1xuICAgIGNyZWF0ZWRBdD86IERhdGVcbiAgICB1cGRhdGVkQXQ/OiBEYXRlXG4gIH1cbn1cblxuZXhwb3J0IHR5cGUgT2F1dGhBY2Nlc3NUb2tlbiA9IE9hdXRoQWNjZXNzVG9rZW5QbHVnaW5GaWVsZHNbXCJvaWRjXCJdICYgT2F1dGhBY2Nlc3NUb2tlblBsdWdpbkZpZWxkc1tcIm1jcFwiXVxuXG5leHBvcnQgdHlwZSBPYXV0aENvbnNlbnRQbHVnaW5GaWVsZHMgPSB7XG4gIFwib2lkY1wiOiB7XG4gICAgY2xpZW50SWQ/OiBzdHJpbmdcbiAgICB1c2VySWQ/OiBzdHJpbmdcbiAgICBzY29wZXM/OiBzdHJpbmdcbiAgICBjcmVhdGVkQXQ/OiBEYXRlXG4gICAgdXBkYXRlZEF0PzogRGF0ZVxuICAgIGNvbnNlbnRHaXZlbj86IGJvb2xlYW5cbiAgfVxuICBcIm1jcFwiOiB7XG4gICAgY2xpZW50SWQ/OiBzdHJpbmdcbiAgICB1c2VySWQ/OiBzdHJpbmdcbiAgICBzY29wZXM/OiBzdHJpbmdcbiAgICBjcmVhdGVkQXQ/OiBEYXRlXG4gICAgdXBkYXRlZEF0PzogRGF0ZVxuICAgIGNvbnNlbnRHaXZlbj86IGJvb2xlYW5cbiAgfVxufVxuXG5leHBvcnQgdHlwZSBPYXV0aENvbnNlbnQgPSBPYXV0aENvbnNlbnRQbHVnaW5GaWVsZHNbXCJvaWRjXCJdICYgT2F1dGhDb25zZW50UGx1Z2luRmllbGRzW1wibWNwXCJdXG5cbmV4cG9ydCB0eXBlIFNzb1Byb3ZpZGVyRmllbGRzID0ge1xuICBpc3N1ZXI6IHN0cmluZ1xuICBvaWRjQ29uZmlnPzogc3RyaW5nXG4gIHNhbWxDb25maWc/OiBzdHJpbmdcbiAgdXNlcklkPzogc3RyaW5nXG4gIHByb3ZpZGVySWQ6IHN0cmluZ1xuICBvcmdhbml6YXRpb25JZD86IHN0cmluZ1xuICBkb21haW46IHN0cmluZ1xufVxuXG5leHBvcnQgdHlwZSBTc29Qcm92aWRlciA9IFNzb1Byb3ZpZGVyRmllbGRzXG5cbmV4cG9ydCB0eXBlIE9yZ2FuaXphdGlvbkZpZWxkcyA9IHtcbiAgbmFtZTogc3RyaW5nXG4gIHNsdWc6IHN0cmluZ1xuICBsb2dvPzogc3RyaW5nXG4gIGNyZWF0ZWRBdDogRGF0ZVxuICBtZXRhZGF0YT86IHN0cmluZ1xufVxuXG5leHBvcnQgdHlwZSBPcmdhbml6YXRpb24gPSBPcmdhbml6YXRpb25GaWVsZHNcblxuZXhwb3J0IHR5cGUgT3JnYW5pemF0aW9uUm9sZUZpZWxkcyA9IHtcbiAgb3JnYW5pemF0aW9uSWQ6IHN0cmluZ1xuICByb2xlOiBzdHJpbmdcbiAgcGVybWlzc2lvbjogc3RyaW5nXG4gIGNyZWF0ZWRBdDogRGF0ZVxuICB1cGRhdGVkQXQ/OiBEYXRlXG59XG5cbmV4cG9ydCB0eXBlIE9yZ2FuaXphdGlvblJvbGUgPSBPcmdhbml6YXRpb25Sb2xlRmllbGRzXG5cbmV4cG9ydCB0eXBlIFRlYW1GaWVsZHMgPSB7XG4gIG5hbWU6IHN0cmluZ1xuICBvcmdhbml6YXRpb25JZDogc3RyaW5nXG4gIGNyZWF0ZWRBdDogRGF0ZVxuICB1cGRhdGVkQXQ/OiBEYXRlXG59XG5cbmV4cG9ydCB0eXBlIFRlYW0gPSBUZWFtRmllbGRzXG5cbmV4cG9ydCB0eXBlIFRlYW1NZW1iZXJGaWVsZHMgPSB7XG4gIHRlYW1JZDogc3RyaW5nXG4gIHVzZXJJZDogc3RyaW5nXG4gIGNyZWF0ZWRBdD86IERhdGVcbn1cblxuZXhwb3J0IHR5cGUgVGVhbU1lbWJlciA9IFRlYW1NZW1iZXJGaWVsZHNcblxuZXhwb3J0IHR5cGUgTWVtYmVyRmllbGRzID0ge1xuICBvcmdhbml6YXRpb25JZDogc3RyaW5nXG4gIHVzZXJJZDogc3RyaW5nXG4gIHJvbGU6IHN0cmluZ1xuICBjcmVhdGVkQXQ6IERhdGVcbn1cblxuZXhwb3J0IHR5cGUgTWVtYmVyID0gTWVtYmVyRmllbGRzXG5cbmV4cG9ydCB0eXBlIEludml0YXRpb25GaWVsZHMgPSB7XG4gIG9yZ2FuaXphdGlvbklkOiBzdHJpbmdcbiAgZW1haWw6IHN0cmluZ1xuICByb2xlPzogc3RyaW5nXG4gIHRlYW1JZD86IHN0cmluZ1xuICBzdGF0dXM6IHN0cmluZ1xuICBleHBpcmVzQXQ6IERhdGVcbiAgY3JlYXRlZEF0OiBEYXRlXG4gIGludml0ZXJJZDogc3RyaW5nXG59XG5cbmV4cG9ydCB0eXBlIEludml0YXRpb24gPSBJbnZpdGF0aW9uRmllbGRzXG5cbmV4cG9ydCB0eXBlIEp3a3NGaWVsZHMgPSB7XG4gIHB1YmxpY0tleTogc3RyaW5nXG4gIHByaXZhdGVLZXk6IHN0cmluZ1xuICBjcmVhdGVkQXQ6IERhdGVcbiAgZXhwaXJlc0F0PzogRGF0ZVxufVxuXG5leHBvcnQgdHlwZSBKd2tzID0gSndrc0ZpZWxkc1xuXG5leHBvcnQgdHlwZSBUd29GYWN0b3JGaWVsZHMgPSB7XG4gIHNlY3JldDogc3RyaW5nXG4gIGJhY2t1cENvZGVzOiBzdHJpbmdcbiAgdXNlcklkOiBzdHJpbmdcbn1cblxuZXhwb3J0IHR5cGUgVHdvRmFjdG9yID0gVHdvRmFjdG9yRmllbGRzXG5cbmV4cG9ydCB0eXBlIFNjaW1Qcm92aWRlckZpZWxkcyA9IHtcbiAgcHJvdmlkZXJJZDogc3RyaW5nXG4gIHNjaW1Ub2tlbjogc3RyaW5nXG4gIG9yZ2FuaXphdGlvbklkPzogc3RyaW5nXG59XG5cbmV4cG9ydCB0eXBlIFNjaW1Qcm92aWRlciA9IFNjaW1Qcm92aWRlckZpZWxkc1xuXG5leHBvcnQgdHlwZSBEZXZpY2VDb2RlRmllbGRzID0ge1xuICBkZXZpY2VDb2RlOiBzdHJpbmdcbiAgdXNlckNvZGU6IHN0cmluZ1xuICB1c2VySWQ/OiBzdHJpbmdcbiAgZXhwaXJlc0F0OiBEYXRlXG4gIHN0YXR1czogc3RyaW5nXG4gIGxhc3RQb2xsZWRBdD86IERhdGVcbiAgcG9sbGluZ0ludGVydmFsPzogbnVtYmVyXG4gIGNsaWVudElkPzogc3RyaW5nXG4gIHNjb3BlPzogc3RyaW5nXG59XG5cbmV4cG9ydCB0eXBlIERldmljZUNvZGUgPSBEZXZpY2VDb2RlRmllbGRzXG5cbmV4cG9ydCB0eXBlIFN1YnNjcmlwdGlvbkZpZWxkcyA9IHtcbiAgcGxhbjogc3RyaW5nXG4gIHJlZmVyZW5jZUlkOiBzdHJpbmdcbiAgc3RyaXBlQ3VzdG9tZXJJZD86IHN0cmluZ1xuICBzdHJpcGVTdWJzY3JpcHRpb25JZD86IHN0cmluZ1xuICBzdGF0dXM/OiBzdHJpbmdcbiAgcGVyaW9kU3RhcnQ/OiBEYXRlXG4gIHBlcmlvZEVuZD86IERhdGVcbiAgdHJpYWxTdGFydD86IERhdGVcbiAgdHJpYWxFbmQ/OiBEYXRlXG4gIGNhbmNlbEF0UGVyaW9kRW5kPzogYm9vbGVhblxuICBjYW5jZWxBdD86IERhdGVcbiAgY2FuY2VsZWRBdD86IERhdGVcbiAgZW5kZWRBdD86IERhdGVcbiAgc2VhdHM/OiBudW1iZXJcbn1cblxuZXhwb3J0IHR5cGUgU3Vic2NyaXB0aW9uID0gU3Vic2NyaXB0aW9uRmllbGRzXG5cbmV4cG9ydCB0eXBlIFBsdWdpbklkID0gXCJ1c2VybmFtZVwiIHwgXCJhZG1pblwiIHwgXCJhcGkta2V5XCIgfCBcInBhc3NrZXlcIiB8IFwiaGFybW9ueS1lbWFpbFwiIHwgXCJoYXJtb255LXBob25lLW51bWJlclwiIHwgXCJiZWFyZXJcIiB8IFwiZW1haWwtb3RwXCIgfCBcIm1hZ2ljLWxpbmtcIiB8IFwicGhvbmUtbnVtYmVyXCIgfCBcIm9uZS10YXBcIiB8IFwiYW5vbnltb3VzXCIgfCBcIm11bHRpLXNlc3Npb25cIiB8IFwib25lLXRpbWUtdG9rZW5cIiB8IFwib2lkY1wiIHwgXCJzc29cIiB8IFwiZ2VuZXJpYy1vYXV0aFwiIHwgXCJvcGVuLWFwaVwiIHwgXCJvcmdhbml6YXRpb25cIiB8IFwiand0XCIgfCBcInR3by1mYWN0b3JcIiB8IFwibmV4dC1jb29raWVzXCIgfCBcImN1c3RvbS1zZXNzaW9uXCIgfCBcInNjaW1cIiB8IFwibWNwXCIgfCBcImRldmljZS1hdXRob3JpemF0aW9uXCIgfCBcImxhc3QtbG9naW4tbWV0aG9kXCIgfCBcInN0cmlwZVwiXG5cbmV4cG9ydCB0eXBlIEJldHRlckF1dGhGdWxsU2NoZW1hID0ge1xuICBcInVzZXJcIjogVXNlclxuICBcInNlc3Npb25cIjogU2Vzc2lvblxuICBcImFjY291bnRcIjogQWNjb3VudFxuICBcInZlcmlmaWNhdGlvblwiOiBWZXJpZmljYXRpb25cbiAgXCJyYXRlTGltaXRcIjogUmF0ZUxpbWl0XG4gIFwiYXBpa2V5XCI6IEFwaWtleVxuICBcInBhc3NrZXlcIjogUGFzc2tleVxuICBcIm9hdXRoQXBwbGljYXRpb25cIjogT2F1dGhBcHBsaWNhdGlvblxuICBcIm9hdXRoQWNjZXNzVG9rZW5cIjogT2F1dGhBY2Nlc3NUb2tlblxuICBcIm9hdXRoQ29uc2VudFwiOiBPYXV0aENvbnNlbnRcbiAgXCJzc29Qcm92aWRlclwiOiBTc29Qcm92aWRlclxuICBcIm9yZ2FuaXphdGlvblwiOiBPcmdhbml6YXRpb25cbiAgXCJvcmdhbml6YXRpb25Sb2xlXCI6IE9yZ2FuaXphdGlvblJvbGVcbiAgXCJ0ZWFtXCI6IFRlYW1cbiAgXCJ0ZWFtTWVtYmVyXCI6IFRlYW1NZW1iZXJcbiAgXCJtZW1iZXJcIjogTWVtYmVyXG4gIFwiaW52aXRhdGlvblwiOiBJbnZpdGF0aW9uXG4gIFwiandrc1wiOiBKd2tzXG4gIFwidHdvRmFjdG9yXCI6IFR3b0ZhY3RvclxuICBcInNjaW1Qcm92aWRlclwiOiBTY2ltUHJvdmlkZXJcbiAgXCJkZXZpY2VDb2RlXCI6IERldmljZUNvZGVcbiAgXCJzdWJzY3JpcHRpb25cIjogU3Vic2NyaXB0aW9uXG59XG5cbmV4cG9ydCB0eXBlIE1vZGVsS2V5ID0ga2V5b2YgQmV0dGVyQXV0aEZ1bGxTY2hlbWEiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEscUNBQXFDO0FBeVhyQyxXQUFpRCJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/better-auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from "./adapter";
|
|
2
|
+
export * from "./plugin";
|
|
3
|
+
export * from "./types";
|
|
4
|
+
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9iZXR0ZXItYXV0aC9pbmRleC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi9hZGFwdGVyXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9wbHVnaW5cIjtcbmV4cG9ydCAqIGZyb20gXCIuL3R5cGVzXCI7XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxZQUFZO0FBQzFCLGNBQWMsV0FBVztBQUN6QixjQUFjLFVBQVUifQ==
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
export declare const socialProviders: readonly ["apple", "discord", "facebook", "github", "google", "linkedin", "microsoft", "spotify", "tiktok", "twitter", "twitch", "zoom", "gitlab", "roblox", "vk", "kick", "reddit"];
|
|
2
|
+
export declare const loginMethods: readonly ["emailPassword", "magicLink", "emailOTP", "phonePassword", "phoneOTP", "phoneMagicLink", "passkey", "apple", "discord", "facebook", "github", "google", "linkedin", "microsoft", "spotify", "tiktok", "twitter", "twitch", "zoom", "gitlab", "roblox", "vk", "kick", "reddit"];
|
|
3
|
+
export declare const supportedBAPluginIds: {
|
|
4
|
+
readonly oneTimeToken: "one-time-token";
|
|
5
|
+
readonly oAuthProxy: "oauth-proxy";
|
|
6
|
+
readonly haveIBeenPwned: "haveIBeenPwned";
|
|
7
|
+
readonly captcha: "captcha";
|
|
8
|
+
readonly bearer: "bearer";
|
|
9
|
+
readonly genericOAuth: "generic-oauth";
|
|
10
|
+
readonly customSession: "custom-session";
|
|
11
|
+
readonly harmonyEmail: "harmony-email";
|
|
12
|
+
readonly harmonyPhoneNumber: "harmony-phone-number";
|
|
13
|
+
readonly twoFactor: "two-factor";
|
|
14
|
+
readonly username: "username";
|
|
15
|
+
readonly anonymous: "anonymous";
|
|
16
|
+
readonly phoneNumber: "phone-number";
|
|
17
|
+
readonly magicLink: "magic-link";
|
|
18
|
+
readonly emailOtp: "email-otp";
|
|
19
|
+
readonly passkey: "passkey";
|
|
20
|
+
readonly oneTap: "one-tap";
|
|
21
|
+
readonly admin: "admin";
|
|
22
|
+
readonly apiKey: "api-key";
|
|
23
|
+
readonly mcp: "mcp";
|
|
24
|
+
readonly organization: "organization";
|
|
25
|
+
readonly multiSession: "multi-session";
|
|
26
|
+
readonly openApi: "open-api";
|
|
27
|
+
readonly jwt: "jwt";
|
|
28
|
+
readonly nextCookies: "next-cookies";
|
|
29
|
+
readonly sso: "sso";
|
|
30
|
+
readonly oidc: "oidc";
|
|
31
|
+
readonly expo: "expo";
|
|
32
|
+
readonly polar: "polar";
|
|
33
|
+
readonly stripe: "stripe";
|
|
34
|
+
readonly autumn: "autumn";
|
|
35
|
+
readonly dodopayments: "dodopayments";
|
|
36
|
+
readonly dubAnalytics: "dub-analytics";
|
|
37
|
+
readonly deviceAuthorization: "device-authorization";
|
|
38
|
+
readonly lastLoginMethod: "last-login-method";
|
|
39
|
+
readonly scim: "scim";
|
|
40
|
+
};
|
|
41
|
+
export declare const baseSlugs: {
|
|
42
|
+
readonly users: "users";
|
|
43
|
+
readonly sessions: "sessions";
|
|
44
|
+
readonly accounts: "accounts";
|
|
45
|
+
readonly verifications: "verifications";
|
|
46
|
+
readonly adminInvitations: "admin-invitations";
|
|
47
|
+
};
|
|
48
|
+
export declare const baPluginSlugs: {
|
|
49
|
+
readonly subscriptions: "subscriptions";
|
|
50
|
+
readonly apiKeys: "apiKeys";
|
|
51
|
+
readonly jwks: "jwks";
|
|
52
|
+
readonly twoFactors: "twoFactors";
|
|
53
|
+
readonly passkeys: "passkeys";
|
|
54
|
+
readonly oauthApplications: "oauthApplications";
|
|
55
|
+
readonly oauthAccessTokens: "oauthAccessTokens";
|
|
56
|
+
readonly oauthConsents: "oauthConsents";
|
|
57
|
+
readonly ssoProviders: "ssoProviders";
|
|
58
|
+
readonly organizations: "organizations";
|
|
59
|
+
readonly organizationRoles: "organizationRoles";
|
|
60
|
+
readonly invitations: "invitations";
|
|
61
|
+
readonly members: "members";
|
|
62
|
+
readonly teams: "teams";
|
|
63
|
+
readonly teamMembers: "teamMembers";
|
|
64
|
+
readonly scim: "scimProvider";
|
|
65
|
+
readonly rateLimit: "rateLimit";
|
|
66
|
+
};
|
|
67
|
+
export declare const baModelKey: {
|
|
68
|
+
readonly user: "user";
|
|
69
|
+
readonly session: "session";
|
|
70
|
+
readonly account: "account";
|
|
71
|
+
readonly verification: "verification";
|
|
72
|
+
readonly twoFactor: "twoFactor";
|
|
73
|
+
readonly passkey: "passkey";
|
|
74
|
+
readonly oauthApplication: "oauthApplication";
|
|
75
|
+
readonly oauthAccessToken: "oauthAccessToken";
|
|
76
|
+
readonly oauthConsent: "oauthConsent";
|
|
77
|
+
readonly ssoProvider: "ssoProvider";
|
|
78
|
+
readonly organization: "organization";
|
|
79
|
+
readonly organizationRole: "organizationRole";
|
|
80
|
+
readonly invitation: "invitation";
|
|
81
|
+
readonly member: "member";
|
|
82
|
+
readonly team: "team";
|
|
83
|
+
readonly teamMember: "teamMember";
|
|
84
|
+
readonly subscription: "subscription";
|
|
85
|
+
readonly apikey: "apikey";
|
|
86
|
+
readonly jwks: "jwks";
|
|
87
|
+
readonly deviceCode: "deviceCode";
|
|
88
|
+
readonly rateLimit: "rateLimit";
|
|
89
|
+
readonly scimProvider: "scimProvider";
|
|
90
|
+
};
|
|
91
|
+
export declare const baModelFieldKeysToFieldNames: {
|
|
92
|
+
readonly user: {
|
|
93
|
+
readonly role: "role";
|
|
94
|
+
};
|
|
95
|
+
readonly account: {
|
|
96
|
+
readonly userId: "user";
|
|
97
|
+
};
|
|
98
|
+
readonly session: {
|
|
99
|
+
readonly userId: "user";
|
|
100
|
+
};
|
|
101
|
+
readonly member: {
|
|
102
|
+
readonly organizationId: "organization";
|
|
103
|
+
readonly userId: "user";
|
|
104
|
+
readonly teamId: "team";
|
|
105
|
+
};
|
|
106
|
+
readonly invitation: {
|
|
107
|
+
readonly organizationId: "organization";
|
|
108
|
+
readonly inviterId: "inviter";
|
|
109
|
+
readonly teamId: "team";
|
|
110
|
+
};
|
|
111
|
+
readonly team: {
|
|
112
|
+
readonly organizationId: "organization";
|
|
113
|
+
};
|
|
114
|
+
readonly apikey: {
|
|
115
|
+
readonly userId: "user";
|
|
116
|
+
};
|
|
117
|
+
readonly twoFactor: {
|
|
118
|
+
readonly userId: "user";
|
|
119
|
+
};
|
|
120
|
+
readonly passkey: {
|
|
121
|
+
readonly userId: "user";
|
|
122
|
+
};
|
|
123
|
+
readonly ssoProvider: {
|
|
124
|
+
readonly userId: "user";
|
|
125
|
+
};
|
|
126
|
+
readonly oauthApplication: {
|
|
127
|
+
readonly userId: "user";
|
|
128
|
+
};
|
|
129
|
+
readonly oauthAccessToken: {
|
|
130
|
+
readonly userId: "user";
|
|
131
|
+
readonly clientId: "client";
|
|
132
|
+
};
|
|
133
|
+
readonly oauthConsent: {
|
|
134
|
+
readonly userId: "user";
|
|
135
|
+
readonly clientId: "client";
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
export declare const baModelFieldKeys: {
|
|
139
|
+
readonly organizationRole: {
|
|
140
|
+
readonly organizationId: "organizationId";
|
|
141
|
+
};
|
|
142
|
+
readonly teamMember: {
|
|
143
|
+
readonly teamId: "teamId";
|
|
144
|
+
readonly userId: "userId";
|
|
145
|
+
};
|
|
146
|
+
readonly account: {
|
|
147
|
+
readonly userId: "userId";
|
|
148
|
+
};
|
|
149
|
+
readonly session: {
|
|
150
|
+
readonly userId: "userId";
|
|
151
|
+
readonly activeOrganizationId: "activeOrganizationId";
|
|
152
|
+
readonly impersonatedBy: "impersonatedBy";
|
|
153
|
+
readonly activeTeamId: "activeTeamId";
|
|
154
|
+
};
|
|
155
|
+
readonly member: {
|
|
156
|
+
readonly organizationId: "organizationId";
|
|
157
|
+
readonly userId: "userId";
|
|
158
|
+
readonly teamId: "teamId";
|
|
159
|
+
};
|
|
160
|
+
readonly invitation: {
|
|
161
|
+
readonly organizationId: "organizationId";
|
|
162
|
+
readonly inviterId: "inviterId";
|
|
163
|
+
readonly teamId: "teamId";
|
|
164
|
+
};
|
|
165
|
+
readonly team: {
|
|
166
|
+
readonly organizationId: "organizationId";
|
|
167
|
+
};
|
|
168
|
+
readonly apikey: {
|
|
169
|
+
readonly userId: "userId";
|
|
170
|
+
};
|
|
171
|
+
readonly twoFactor: {
|
|
172
|
+
readonly userId: "userId";
|
|
173
|
+
};
|
|
174
|
+
readonly passkey: {
|
|
175
|
+
readonly userId: "userId";
|
|
176
|
+
};
|
|
177
|
+
readonly ssoProvider: {
|
|
178
|
+
readonly userId: "userId";
|
|
179
|
+
};
|
|
180
|
+
readonly oauthApplication: {
|
|
181
|
+
readonly userId: "userId";
|
|
182
|
+
};
|
|
183
|
+
readonly oauthAccessToken: {
|
|
184
|
+
readonly userId: "userId";
|
|
185
|
+
readonly clientId: "clientId";
|
|
186
|
+
};
|
|
187
|
+
readonly oauthConsent: {
|
|
188
|
+
readonly userId: "userId";
|
|
189
|
+
readonly clientId: "clientId";
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
export declare const baModelKeyToSlug: {
|
|
193
|
+
readonly user: "users";
|
|
194
|
+
readonly session: "sessions";
|
|
195
|
+
readonly account: "accounts";
|
|
196
|
+
readonly verification: "verifications";
|
|
197
|
+
readonly twoFactor: "twoFactors";
|
|
198
|
+
readonly passkey: "passkeys";
|
|
199
|
+
readonly oauthApplication: "oauthApplications";
|
|
200
|
+
readonly oauthAccessToken: "oauthAccessTokens";
|
|
201
|
+
readonly oauthConsent: "oauthConsents";
|
|
202
|
+
readonly ssoProvider: "ssoProviders";
|
|
203
|
+
readonly organization: "organizations";
|
|
204
|
+
readonly invitation: "invitations";
|
|
205
|
+
readonly member: "members";
|
|
206
|
+
readonly team: "teams";
|
|
207
|
+
readonly teamMember: "teamMembers";
|
|
208
|
+
readonly subscription: "subscriptions";
|
|
209
|
+
readonly apikey: "apiKeys";
|
|
210
|
+
readonly jwks: "jwks";
|
|
211
|
+
};
|
|
212
|
+
export declare const adminRoutes: {
|
|
213
|
+
readonly forgotPassword: "/forgot-password";
|
|
214
|
+
readonly resetPassword: "/reset-password";
|
|
215
|
+
readonly adminSignup: "/signup";
|
|
216
|
+
readonly adminLogin: "/login";
|
|
217
|
+
readonly loginRedirect: "/login-redirect";
|
|
218
|
+
readonly twoFactorVerify: "/two-factor-verify";
|
|
219
|
+
};
|
|
220
|
+
export declare const adminEndpoints: {
|
|
221
|
+
readonly setAdminRole: "/set-admin-role";
|
|
222
|
+
readonly refreshToken: "/refresh-token";
|
|
223
|
+
readonly sendInvite: "/send-invite";
|
|
224
|
+
readonly generateInviteUrl: "/generate-invite-url";
|
|
225
|
+
readonly signup: "/signup";
|
|
226
|
+
};
|
|
227
|
+
export declare const defaults: {
|
|
228
|
+
readonly adminRole: "admin";
|
|
229
|
+
readonly userRole: "user";
|
|
230
|
+
};
|
|
231
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/better-auth/plugin/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,sLAkBlB,CAAC;AAEX,eAAO,MAAM,YAAY,0RASf,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqCvB,CAAC;AAEX,eAAO,MAAM,SAAS;;;;;;CAMZ,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;CAkBhB,CAAC;AAEX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;CAuBb,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8C/B,CAAC;AAEX,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqDnB,CAAC;AAEX,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;CAmBnB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAEX,eAAO,MAAM,cAAc;;;;;;CAMjB,CAAC;AAEX,eAAO,MAAM,QAAQ;;;CAGX,CAAC"}
|