@rakun-kit/core 1.3.11 → 1.4.1
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/README.md +130 -4
- package/dist/cjs/api/hooks/context.js +16 -0
- package/dist/cjs/api/hooks/context.js.map +1 -0
- package/dist/cjs/api/hooks/runContentHooks.js +173 -0
- package/dist/cjs/api/hooks/runContentHooks.js.map +1 -0
- package/dist/cjs/api/operations/manager-contract.js +87 -0
- package/dist/cjs/api/operations/manager-contract.js.map +1 -1
- package/dist/cjs/api/operations/manager-manifest.js +291 -0
- package/dist/cjs/api/operations/manager-manifest.js.map +1 -0
- package/dist/cjs/api/operations/manager.js +47 -3
- package/dist/cjs/api/operations/manager.js.map +1 -1
- package/dist/cjs/api/routes/manager/apiOperations.js +1 -1
- package/dist/cjs/api/routes/manager/apiOperations.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/login.js +19 -3
- package/dist/cjs/api/routes/manager/auth/login.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/markTourSeen.js +3 -1
- package/dist/cjs/api/routes/manager/auth/markTourSeen.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/totp/verifyTotp.js +11 -1
- package/dist/cjs/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/updateAccount.js +6 -1
- package/dist/cjs/api/routes/manager/auth/updateAccount.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/updatePassword.js +13 -3
- package/dist/cjs/api/routes/manager/auth/updatePassword.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/updateTutorialPreferences.js +3 -1
- package/dist/cjs/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/webauthn/webauthnAuthVerify.js +11 -1
- package/dist/cjs/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/cjs/api/routes/manager/backups/create.js +1 -1
- package/dist/cjs/api/routes/manager/backups/create.js.map +1 -1
- package/dist/cjs/api/routes/manager/backups/list.js +1 -1
- package/dist/cjs/api/routes/manager/backups/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/backups/restore.js +3 -1
- package/dist/cjs/api/routes/manager/backups/restore.js.map +1 -1
- package/dist/cjs/api/routes/manager/comments.js +209 -0
- package/dist/cjs/api/routes/manager/comments.js.map +1 -0
- package/dist/cjs/api/routes/manager/contentType.js +19 -0
- package/dist/cjs/api/routes/manager/contentType.js.map +1 -0
- package/dist/cjs/api/routes/manager/create.js +10 -11
- package/dist/cjs/api/routes/manager/create.js.map +1 -1
- package/dist/cjs/api/routes/manager/delete.js +10 -3
- package/dist/cjs/api/routes/manager/delete.js.map +1 -1
- package/dist/cjs/api/routes/manager/favorites.js +137 -0
- package/dist/cjs/api/routes/manager/favorites.js.map +1 -0
- package/dist/cjs/api/routes/manager/get.js +3 -2
- package/dist/cjs/api/routes/manager/get.js.map +1 -1
- package/dist/cjs/api/routes/manager/list.js +23 -8
- package/dist/cjs/api/routes/manager/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/literals/list.js +1 -1
- package/dist/cjs/api/routes/manager/literals/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/literals/upsert.js +1 -1
- package/dist/cjs/api/routes/manager/literals/upsert.js.map +1 -1
- package/dist/cjs/api/routes/manager/localeVariants.js +300 -0
- package/dist/cjs/api/routes/manager/localeVariants.js.map +1 -0
- package/dist/cjs/api/routes/manager/media/finalizeUpload.js +24 -1
- package/dist/cjs/api/routes/manager/media/finalizeUpload.js.map +1 -1
- package/dist/cjs/api/routes/manager/media/getMediaUrl.js +33 -1
- package/dist/cjs/api/routes/manager/media/getMediaUrl.js.map +1 -1
- package/dist/cjs/api/routes/manager/media/prepareUpload.js +12 -1
- package/dist/cjs/api/routes/manager/media/prepareUpload.js.map +1 -1
- package/dist/cjs/api/routes/manager/media/uploadBinary.js +70 -4
- package/dist/cjs/api/routes/manager/media/uploadBinary.js.map +1 -1
- package/dist/cjs/api/routes/manager/migrations/list.js +1 -1
- package/dist/cjs/api/routes/manager/migrations/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/permissions.js +1 -1
- package/dist/cjs/api/routes/manager/permissions.js.map +1 -1
- package/dist/cjs/api/routes/manager/preview/create.js +5 -1
- package/dist/cjs/api/routes/manager/preview/create.js.map +1 -1
- package/dist/cjs/api/routes/manager/regenerateRoutes.js +1 -1
- package/dist/cjs/api/routes/manager/regenerateRoutes.js.map +1 -1
- package/dist/cjs/api/routes/manager/setDefaultLanguage.js +7 -2
- package/dist/cjs/api/routes/manager/setDefaultLanguage.js.map +1 -1
- package/dist/cjs/api/routes/manager/translateDocument.js +1 -9
- package/dist/cjs/api/routes/manager/translateDocument.js.map +1 -1
- package/dist/cjs/api/routes/manager/trash.js +7 -2
- package/dist/cjs/api/routes/manager/trash.js.map +1 -1
- package/dist/cjs/api/routes/manager/update.js +5 -10
- package/dist/cjs/api/routes/manager/update.js.map +1 -1
- package/dist/cjs/api/routes/manager/users.js +38 -0
- package/dist/cjs/api/routes/manager/users.js.map +1 -0
- package/dist/cjs/api/routes/manager/versions/get.js +1 -1
- package/dist/cjs/api/routes/manager/versions/get.js.map +1 -1
- package/dist/cjs/api/routes/manager/versions/list.js +1 -1
- package/dist/cjs/api/routes/manager/versions/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/versions/restore.js +1 -1
- package/dist/cjs/api/routes/manager/versions/restore.js.map +1 -1
- package/dist/cjs/api/routes/web/page.js +170 -121
- package/dist/cjs/api/routes/web/page.js.map +1 -1
- package/dist/cjs/api/routes/web/robots.js +10 -8
- package/dist/cjs/api/routes/web/robots.js.map +1 -1
- package/dist/cjs/api/sessionCookie.js +13 -3
- package/dist/cjs/api/sessionCookie.js.map +1 -1
- package/dist/cjs/api/utils/authRateLimit.js +43 -0
- package/dist/cjs/api/utils/authRateLimit.js.map +1 -0
- package/dist/cjs/api/utils/checkOwnership.js +10 -7
- package/dist/cjs/api/utils/checkOwnership.js.map +1 -1
- package/dist/cjs/api/utils/dynamicData.js +319 -0
- package/dist/cjs/api/utils/dynamicData.js.map +1 -0
- package/dist/cjs/api/utils/getLanguages.js +8 -1
- package/dist/cjs/api/utils/getLanguages.js.map +1 -1
- package/dist/cjs/api/utils/getLink.js +24 -6
- package/dist/cjs/api/utils/getLink.js.map +1 -1
- package/dist/cjs/api/utils/getUser.js +7 -1
- package/dist/cjs/api/utils/getUser.js.map +1 -1
- package/dist/cjs/api/utils/index.js +7 -1
- package/dist/cjs/api/utils/index.js.map +1 -1
- package/dist/cjs/api/utils/localeVariants.js +45 -0
- package/dist/cjs/api/utils/localeVariants.js.map +1 -0
- package/dist/cjs/api/utils/mediaUploadToken.js +49 -0
- package/dist/cjs/api/utils/mediaUploadToken.js.map +1 -0
- package/dist/cjs/api/utils/passwords.js +25 -1
- package/dist/cjs/api/utils/passwords.js.map +1 -1
- package/dist/cjs/api/utils/populates/populateLinks.js +12 -3
- package/dist/cjs/api/utils/populates/populateLinks.js.map +1 -1
- package/dist/cjs/api/utils/populates/populateRelations.js +23 -4
- package/dist/cjs/api/utils/populates/populateRelations.js.map +1 -1
- package/dist/cjs/api/utils/routes/routeDefinitions.js.map +1 -1
- package/dist/cjs/api/utils/routes/routeMapHelpers.js +133 -24
- package/dist/cjs/api/utils/routes/routeMapHelpers.js.map +1 -1
- package/dist/cjs/api/utils/routes/syncConfiguredRoutes.js +0 -1
- package/dist/cjs/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
- package/dist/cjs/api/utils/routes/updateRoutesMap.js +66 -25
- package/dist/cjs/api/utils/routes/updateRoutesMap.js.map +1 -1
- package/dist/cjs/api/utils/safeManagerQuery.js +229 -0
- package/dist/cjs/api/utils/safeManagerQuery.js.map +1 -0
- package/dist/cjs/api/utils/sanitizeManagerOutput.js +39 -0
- package/dist/cjs/api/utils/sanitizeManagerOutput.js.map +1 -0
- package/dist/cjs/bootstrapState.js.map +1 -1
- package/dist/cjs/client.js +19 -1
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/contracts.js +5 -0
- package/dist/cjs/contracts.js.map +1 -1
- package/dist/cjs/index.js +64 -15
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/internal-content-types/ApiOperation.js +23 -0
- package/dist/cjs/internal-content-types/ApiOperation.js.map +1 -0
- package/dist/cjs/internal-content-types/Backup.js +1 -0
- package/dist/cjs/internal-content-types/Backup.js.map +1 -1
- package/dist/cjs/internal-content-types/BackupDocument.js +1 -0
- package/dist/cjs/internal-content-types/BackupDocument.js.map +1 -1
- package/dist/cjs/internal-content-types/ContentComment.js +22 -0
- package/dist/cjs/internal-content-types/ContentComment.js.map +1 -0
- package/dist/cjs/internal-content-types/ContentVersion.js +1 -0
- package/dist/cjs/internal-content-types/ContentVersion.js.map +1 -1
- package/dist/cjs/internal-content-types/Language.js +1 -0
- package/dist/cjs/internal-content-types/Language.js.map +1 -1
- package/dist/cjs/internal-content-types/LiteralTranslation.js +1 -0
- package/dist/cjs/internal-content-types/LiteralTranslation.js.map +1 -1
- package/dist/cjs/internal-content-types/ManagerFavorite.js +20 -0
- package/dist/cjs/internal-content-types/ManagerFavorite.js.map +1 -0
- package/dist/cjs/internal-content-types/ManagerRole.js +2 -4
- package/dist/cjs/internal-content-types/ManagerRole.js.map +1 -1
- package/dist/cjs/internal-content-types/ManagerRoleHooks.js +47 -0
- package/dist/cjs/internal-content-types/ManagerRoleHooks.js.map +1 -0
- package/dist/cjs/internal-content-types/ManagerUser.js +2 -0
- package/dist/cjs/internal-content-types/ManagerUser.js.map +1 -1
- package/dist/cjs/internal-content-types/ManagerUserHooks.js +42 -0
- package/dist/cjs/internal-content-types/ManagerUserHooks.js.map +1 -0
- package/dist/cjs/internal-content-types/Media.js +1 -0
- package/dist/cjs/internal-content-types/Media.js.map +1 -1
- package/dist/cjs/internal-content-types/MediaFolder.js +1 -0
- package/dist/cjs/internal-content-types/MediaFolder.js.map +1 -1
- package/dist/cjs/internal-content-types/Migration.js +4 -0
- package/dist/cjs/internal-content-types/Migration.js.map +1 -1
- package/dist/cjs/internal-content-types/MigrationLock.js +1 -0
- package/dist/cjs/internal-content-types/MigrationLock.js.map +1 -1
- package/dist/cjs/internal-content-types/Page.js +7 -8
- package/dist/cjs/internal-content-types/Page.js.map +1 -1
- package/dist/cjs/internal-content-types/Redirect.js +1 -0
- package/dist/cjs/internal-content-types/Redirect.js.map +1 -1
- package/dist/cjs/internal-content-types/RobotsRule.js +1 -0
- package/dist/cjs/internal-content-types/RobotsRule.js.map +1 -1
- package/dist/cjs/internal-content-types/Route.js +1 -1
- package/dist/cjs/internal-content-types/Route.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteLayoutModule.js +1 -0
- package/dist/cjs/internal-content-types/RouteLayoutModule.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteLayoutModuleOverride.js +1 -0
- package/dist/cjs/internal-content-types/RouteLayoutModuleOverride.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteLocaleVariant.js +23 -0
- package/dist/cjs/internal-content-types/RouteLocaleVariant.js.map +1 -0
- package/dist/cjs/internal-content-types/RouteMap.js +5 -0
- package/dist/cjs/internal-content-types/RouteMap.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteSettings.js +1 -0
- package/dist/cjs/internal-content-types/RouteSettings.js.map +1 -1
- package/dist/cjs/internal-content-types/SchemaState.js +4 -0
- package/dist/cjs/internal-content-types/SchemaState.js.map +1 -1
- package/dist/cjs/internal-content-types/Seo.js +4 -2
- package/dist/cjs/internal-content-types/Seo.js.map +1 -1
- package/dist/cjs/internal-content-types/SeoSettings.js +2 -2
- package/dist/cjs/internal-content-types/SeoSettings.js.map +1 -1
- package/dist/cjs/internal-content-types/index.js +4 -0
- package/dist/cjs/internal-content-types/index.js.map +1 -1
- package/dist/cjs/internal-content-types/syncAdminRole.js +16 -0
- package/dist/cjs/internal-content-types/syncAdminRole.js.map +1 -0
- package/dist/cjs/lib/ContentType.js +185 -8
- package/dist/cjs/lib/ContentType.js.map +1 -1
- package/dist/cjs/lib/ManagerRolePolicy.js +7 -0
- package/dist/cjs/lib/ManagerRolePolicy.js.map +1 -0
- package/dist/cjs/lib/Permissions.js +73 -77
- package/dist/cjs/lib/Permissions.js.map +1 -1
- package/dist/cjs/lib/Registry.js +9 -0
- package/dist/cjs/lib/Registry.js.map +1 -1
- package/dist/cjs/lib/dynamicData.js +53 -0
- package/dist/cjs/lib/dynamicData.js.map +1 -0
- package/dist/cjs/lib/errors/throwAppError.js +27 -3
- package/dist/cjs/lib/errors/throwAppError.js.map +1 -1
- package/dist/cjs/lib/fields/Field.js +26 -0
- package/dist/cjs/lib/fields/Field.js.map +1 -1
- package/dist/cjs/lib/fields/List.js +25 -4
- package/dist/cjs/lib/fields/List.js.map +1 -1
- package/dist/cjs/lib/fields/Relation.js +3 -0
- package/dist/cjs/lib/fields/Relation.js.map +1 -1
- package/dist/cjs/lib/hooks.js +3 -0
- package/dist/cjs/lib/hooks.js.map +1 -0
- package/dist/cjs/lib/localeVariants.js +20 -0
- package/dist/cjs/lib/localeVariants.js.map +1 -0
- package/dist/cjs/lib/routeableContent.js +18 -0
- package/dist/cjs/lib/routeableContent.js.map +1 -0
- package/dist/cjs/lib/systemFields.js +6 -0
- package/dist/cjs/lib/systemFields.js.map +1 -0
- package/dist/cjs/manager.js +4 -9
- package/dist/cjs/manager.js.map +1 -1
- package/dist/cjs/media/mediaService.js +2 -1
- package/dist/cjs/media/mediaService.js.map +1 -1
- package/dist/cjs/orm/createIndexes.js +23 -7
- package/dist/cjs/orm/createIndexes.js.map +1 -1
- package/dist/cjs/orm/index.js +8 -7
- package/dist/cjs/orm/index.js.map +1 -1
- package/dist/cjs/orm/operations/clear.js +3 -4
- package/dist/cjs/orm/operations/clear.js.map +1 -1
- package/dist/cjs/orm/operations/create.js +25 -8
- package/dist/cjs/orm/operations/create.js.map +1 -1
- package/dist/cjs/orm/operations/delete.js +22 -2
- package/dist/cjs/orm/operations/delete.js.map +1 -1
- package/dist/cjs/orm/operations/findDependencies.js +75 -53
- package/dist/cjs/orm/operations/findDependencies.js.map +1 -1
- package/dist/cjs/orm/operations/update.js +43 -17
- package/dist/cjs/orm/operations/update.js.map +1 -1
- package/dist/cjs/orm/operations/updateMany.js +24 -7
- package/dist/cjs/orm/operations/updateMany.js.map +1 -1
- package/dist/cjs/orm/operations/upsert.js +3 -3
- package/dist/cjs/orm/operations/upsert.js.map +1 -1
- package/dist/cjs/plugins.js +113 -0
- package/dist/cjs/plugins.js.map +1 -0
- package/dist/cjs/schemas/manager/auth/accountInfo.js +1 -0
- package/dist/cjs/schemas/manager/auth/accountInfo.js.map +1 -1
- package/dist/cjs/schemas/manager/auth/login.js +1 -0
- package/dist/cjs/schemas/manager/auth/login.js.map +1 -1
- package/dist/cjs/schemas/manager/auth/totp/verifyTotp.js +1 -0
- package/dist/cjs/schemas/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/cjs/schemas/manager/auth/webauthn/webauthnAuthVerify.js +1 -0
- package/dist/cjs/schemas/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/cjs/schemas/manager/comments.js +48 -0
- package/dist/cjs/schemas/manager/comments.js.map +1 -0
- package/dist/cjs/schemas/manager/contentType.js +11 -0
- package/dist/cjs/schemas/manager/contentType.js.map +1 -0
- package/dist/cjs/schemas/manager/favorites.js +37 -0
- package/dist/cjs/schemas/manager/favorites.js.map +1 -0
- package/dist/cjs/schemas/manager/localeVariants.js +62 -0
- package/dist/cjs/schemas/manager/localeVariants.js.map +1 -0
- package/dist/cjs/schemas/manager/media/finalizeUpload.js +1 -0
- package/dist/cjs/schemas/manager/media/finalizeUpload.js.map +1 -1
- package/dist/cjs/schemas/manager/media/getMediaUrl.js +1 -1
- package/dist/cjs/schemas/manager/media/getMediaUrl.js.map +1 -1
- package/dist/cjs/schemas/manager/media/prepareUpload.js +1 -0
- package/dist/cjs/schemas/manager/media/prepareUpload.js.map +1 -1
- package/dist/cjs/schemas/manager/users.js +21 -0
- package/dist/cjs/schemas/manager/users.js.map +1 -0
- package/dist/esm/api/context.d.ts +1 -1
- package/dist/esm/api/context.js +3 -3
- package/dist/esm/api/hooks/context.d.ts +4 -0
- package/dist/esm/api/hooks/context.d.ts.map +1 -0
- package/dist/esm/api/hooks/context.js +12 -0
- package/dist/esm/api/hooks/context.js.map +1 -0
- package/dist/esm/api/hooks/runContentHooks.d.ts +80 -0
- package/dist/esm/api/hooks/runContentHooks.d.ts.map +1 -0
- package/dist/esm/api/hooks/runContentHooks.js +159 -0
- package/dist/esm/api/hooks/runContentHooks.js.map +1 -0
- package/dist/esm/api/operations/catalog.d.ts +2 -2
- package/dist/esm/api/operations/catalog.js +1 -1
- package/dist/esm/api/operations/custom.d.ts +1 -1
- package/dist/esm/api/operations/custom.js +1 -1
- package/dist/esm/api/operations/index.d.ts +622 -96
- package/dist/esm/api/operations/index.d.ts.map +1 -1
- package/dist/esm/api/operations/index.js +8 -8
- package/dist/esm/api/operations/manager-contract.d.ts +586 -69
- package/dist/esm/api/operations/manager-contract.d.ts.map +1 -1
- package/dist/esm/api/operations/manager-contract.js +92 -5
- package/dist/esm/api/operations/manager-contract.js.map +1 -1
- package/dist/esm/api/operations/manager-manifest.d.ts +288 -0
- package/dist/esm/api/operations/manager-manifest.d.ts.map +1 -0
- package/dist/esm/api/operations/manager-manifest.js +288 -0
- package/dist/esm/api/operations/manager-manifest.js.map +1 -0
- package/dist/esm/api/operations/manager.d.ts +586 -70
- package/dist/esm/api/operations/manager.d.ts.map +1 -1
- package/dist/esm/api/operations/manager.js +98 -54
- package/dist/esm/api/operations/manager.js.map +1 -1
- package/dist/esm/api/operations/tracing.d.ts +1 -1
- package/dist/esm/api/operations/tracing.js +1 -1
- package/dist/esm/api/operations/types.d.ts +1 -1
- package/dist/esm/api/operations/web-contract.d.ts +30 -19
- package/dist/esm/api/operations/web-contract.d.ts.map +1 -1
- package/dist/esm/api/operations/web-contract.js +3 -3
- package/dist/esm/api/operations/web.d.ts +30 -20
- package/dist/esm/api/operations/web.d.ts.map +1 -1
- package/dist/esm/api/operations/web.js +9 -9
- package/dist/esm/api/routes/manager/apiOperations.d.ts +3 -3
- package/dist/esm/api/routes/manager/apiOperations.js +6 -6
- package/dist/esm/api/routes/manager/apiOperations.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/accountInfo.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/accountInfo.js +3 -3
- package/dist/esm/api/routes/manager/auth/deleteSession.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/deleteSession.js +3 -3
- package/dist/esm/api/routes/manager/auth/getSession.d.ts +11 -6
- package/dist/esm/api/routes/manager/auth/getSession.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/login.d.ts +4 -2
- package/dist/esm/api/routes/manager/auth/login.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/login.js +23 -7
- package/dist/esm/api/routes/manager/auth/login.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/logout.d.ts +1 -1
- package/dist/esm/api/routes/manager/auth/logout.js +3 -3
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts +12 -7
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/markTourSeen.js +6 -4
- package/dist/esm/api/routes/manager/auth/markTourSeen.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/totp/confirmTotp.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/totp/confirmTotp.js +2 -2
- package/dist/esm/api/routes/manager/auth/totp/enrollTotp.d.ts +1 -1
- package/dist/esm/api/routes/manager/auth/totp/enrollTotp.js +3 -3
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts +3 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js +14 -4
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts +12 -7
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.js +9 -4
- package/dist/esm/api/routes/manager/auth/updateAccount.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updatePassword.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/updatePassword.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updatePassword.js +16 -6
- package/dist/esm/api/routes/manager/auth/updatePassword.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts +12 -7
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js +6 -4
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthOptions.js +4 -4
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.d.ts +1 -0
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js +15 -5
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterOptions.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterOptions.js +3 -3
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterVerify.d.ts +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterVerify.js +4 -4
- package/dist/esm/api/routes/manager/backups/create.d.ts +2 -2
- package/dist/esm/api/routes/manager/backups/create.js +3 -3
- package/dist/esm/api/routes/manager/backups/create.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/backups/list.js +3 -3
- package/dist/esm/api/routes/manager/backups/list.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/restore.d.ts +2 -2
- package/dist/esm/api/routes/manager/backups/restore.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/backups/restore.js +6 -4
- package/dist/esm/api/routes/manager/backups/restore.js.map +1 -1
- package/dist/esm/api/routes/manager/comments.d.ts +15 -0
- package/dist/esm/api/routes/manager/comments.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/comments.js +203 -0
- package/dist/esm/api/routes/manager/comments.js.map +1 -0
- package/dist/esm/api/routes/manager/contentType.d.ts +52 -0
- package/dist/esm/api/routes/manager/contentType.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/contentType.js +15 -0
- package/dist/esm/api/routes/manager/contentType.js.map +1 -0
- package/dist/esm/api/routes/manager/contentTypes.d.ts +23 -6
- package/dist/esm/api/routes/manager/contentTypes.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/contentTypes.js +1 -1
- package/dist/esm/api/routes/manager/create.d.ts +7 -4
- package/dist/esm/api/routes/manager/create.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/create.js +17 -18
- package/dist/esm/api/routes/manager/create.js.map +1 -1
- package/dist/esm/api/routes/manager/delete.d.ts +2 -2
- package/dist/esm/api/routes/manager/delete.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/delete.js +18 -11
- package/dist/esm/api/routes/manager/delete.js.map +1 -1
- package/dist/esm/api/routes/manager/duplicate.d.ts +6 -4
- package/dist/esm/api/routes/manager/duplicate.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/duplicate.js +5 -5
- package/dist/esm/api/routes/manager/favorites.d.ts +11 -0
- package/dist/esm/api/routes/manager/favorites.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/favorites.js +132 -0
- package/dist/esm/api/routes/manager/favorites.js.map +1 -0
- package/dist/esm/api/routes/manager/get.d.ts +2 -2
- package/dist/esm/api/routes/manager/get.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/get.js +11 -10
- package/dist/esm/api/routes/manager/get.js.map +1 -1
- package/dist/esm/api/routes/manager/languages.d.ts +5 -3
- package/dist/esm/api/routes/manager/languages.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/languages.js +1 -1
- package/dist/esm/api/routes/manager/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/list.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/list.js +32 -17
- package/dist/esm/api/routes/manager/list.js.map +1 -1
- package/dist/esm/api/routes/manager/literals/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/literals/list.js +6 -6
- package/dist/esm/api/routes/manager/literals/list.js.map +1 -1
- package/dist/esm/api/routes/manager/literals/upsert.d.ts +2 -2
- package/dist/esm/api/routes/manager/literals/upsert.js +7 -7
- package/dist/esm/api/routes/manager/literals/upsert.js.map +1 -1
- package/dist/esm/api/routes/manager/localeVariants.d.ts +133 -0
- package/dist/esm/api/routes/manager/localeVariants.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/localeVariants.js +293 -0
- package/dist/esm/api/routes/manager/localeVariants.js.map +1 -0
- package/dist/esm/api/routes/manager/media/createFolder.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/createFolder.js +7 -7
- package/dist/esm/api/routes/manager/media/deleteFolder.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/deleteFolder.js +7 -7
- package/dist/esm/api/routes/manager/media/deleteMediaStorage.js +2 -2
- package/dist/esm/api/routes/manager/media/finalizeUpload.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/finalizeUpload.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/finalizeUpload.js +34 -11
- package/dist/esm/api/routes/manager/media/finalizeUpload.js.map +1 -1
- package/dist/esm/api/routes/manager/media/getMediaUrl.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/getMediaUrl.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/getMediaUrl.js +36 -4
- package/dist/esm/api/routes/manager/media/getMediaUrl.js.map +1 -1
- package/dist/esm/api/routes/manager/media/listFolders.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/listFolders.js +4 -4
- package/dist/esm/api/routes/manager/media/prepareUpload.d.ts +3 -2
- package/dist/esm/api/routes/manager/media/prepareUpload.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/prepareUpload.js +16 -5
- package/dist/esm/api/routes/manager/media/prepareUpload.js.map +1 -1
- package/dist/esm/api/routes/manager/media/resolveMediaRecordUrls.js +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.d.ts +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.js +76 -10
- package/dist/esm/api/routes/manager/media/uploadBinary.js.map +1 -1
- package/dist/esm/api/routes/manager/migrations/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/migrations/list.js +3 -3
- package/dist/esm/api/routes/manager/migrations/list.js.map +1 -1
- package/dist/esm/api/routes/manager/permissions.d.ts +1 -1
- package/dist/esm/api/routes/manager/permissions.js +3 -3
- package/dist/esm/api/routes/manager/permissions.js.map +1 -1
- package/dist/esm/api/routes/manager/preview/create.d.ts +2 -2
- package/dist/esm/api/routes/manager/preview/create.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/preview/create.js +18 -14
- package/dist/esm/api/routes/manager/preview/create.js.map +1 -1
- package/dist/esm/api/routes/manager/regenerateRoutes.d.ts +1 -1
- package/dist/esm/api/routes/manager/regenerateRoutes.js +3 -3
- package/dist/esm/api/routes/manager/regenerateRoutes.js.map +1 -1
- package/dist/esm/api/routes/manager/setDefaultLanguage.d.ts +2 -2
- package/dist/esm/api/routes/manager/setDefaultLanguage.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/setDefaultLanguage.js +11 -6
- package/dist/esm/api/routes/manager/setDefaultLanguage.js.map +1 -1
- package/dist/esm/api/routes/manager/translateDocument.d.ts +2 -2
- package/dist/esm/api/routes/manager/translateDocument.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/translateDocument.js +10 -18
- package/dist/esm/api/routes/manager/translateDocument.js.map +1 -1
- package/dist/esm/api/routes/manager/trash.d.ts +2 -2
- package/dist/esm/api/routes/manager/trash.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/trash.js +13 -8
- package/dist/esm/api/routes/manager/trash.js.map +1 -1
- package/dist/esm/api/routes/manager/update.d.ts +7 -4
- package/dist/esm/api/routes/manager/update.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/update.js +12 -17
- package/dist/esm/api/routes/manager/update.js.map +1 -1
- package/dist/esm/api/routes/manager/users.d.ts +16 -0
- package/dist/esm/api/routes/manager/users.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/users.js +32 -0
- package/dist/esm/api/routes/manager/users.js.map +1 -0
- package/dist/esm/api/routes/manager/versions/get.d.ts +2 -2
- package/dist/esm/api/routes/manager/versions/get.js +3 -3
- package/dist/esm/api/routes/manager/versions/get.js.map +1 -1
- package/dist/esm/api/routes/manager/versions/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/versions/list.js +3 -3
- package/dist/esm/api/routes/manager/versions/list.js.map +1 -1
- package/dist/esm/api/routes/manager/versions/restore.d.ts +2 -2
- package/dist/esm/api/routes/manager/versions/restore.js +5 -5
- package/dist/esm/api/routes/manager/versions/restore.js.map +1 -1
- package/dist/esm/api/routes/web/page.d.ts +6 -5
- package/dist/esm/api/routes/web/page.d.ts.map +1 -1
- package/dist/esm/api/routes/web/page.js +183 -134
- package/dist/esm/api/routes/web/page.js.map +1 -1
- package/dist/esm/api/routes/web/previewPage.d.ts +10 -6
- package/dist/esm/api/routes/web/previewPage.d.ts.map +1 -1
- package/dist/esm/api/routes/web/previewPage.js +8 -8
- package/dist/esm/api/routes/web/robots.d.ts +1 -1
- package/dist/esm/api/routes/web/robots.d.ts.map +1 -1
- package/dist/esm/api/routes/web/robots.js +12 -10
- package/dist/esm/api/routes/web/robots.js.map +1 -1
- package/dist/esm/api/routes/web/seo.d.ts +1 -1
- package/dist/esm/api/routes/web/sitemap.d.ts +1 -1
- package/dist/esm/api/routes/web/sitemap.js +3 -3
- package/dist/esm/api/sessionCookie.d.ts +2 -1
- package/dist/esm/api/sessionCookie.d.ts.map +1 -1
- package/dist/esm/api/sessionCookie.js +12 -2
- package/dist/esm/api/sessionCookie.js.map +1 -1
- package/dist/esm/api/utils/authRateLimit.d.ts +9 -0
- package/dist/esm/api/utils/authRateLimit.d.ts.map +1 -0
- package/dist/esm/api/utils/authRateLimit.js +37 -0
- package/dist/esm/api/utils/authRateLimit.js.map +1 -0
- package/dist/esm/api/utils/checkFailureCase.d.ts +1 -1
- package/dist/esm/api/utils/checkFailureCase.js +1 -1
- package/dist/esm/api/utils/checkOwnership.d.ts +2 -2
- package/dist/esm/api/utils/checkOwnership.d.ts.map +1 -1
- package/dist/esm/api/utils/checkOwnership.js +14 -11
- package/dist/esm/api/utils/checkOwnership.js.map +1 -1
- package/dist/esm/api/utils/checkPermissions.d.ts +2 -2
- package/dist/esm/api/utils/checkPermissions.js +3 -3
- package/dist/esm/api/utils/dynamicData.d.ts +23 -0
- package/dist/esm/api/utils/dynamicData.d.ts.map +1 -0
- package/dist/esm/api/utils/dynamicData.js +312 -0
- package/dist/esm/api/utils/dynamicData.js.map +1 -0
- package/dist/esm/api/utils/getLanguages.d.ts +3 -19
- package/dist/esm/api/utils/getLanguages.d.ts.map +1 -1
- package/dist/esm/api/utils/getLanguages.js +10 -3
- package/dist/esm/api/utils/getLanguages.js.map +1 -1
- package/dist/esm/api/utils/getLink.d.ts +2 -2
- package/dist/esm/api/utils/getLink.d.ts.map +1 -1
- package/dist/esm/api/utils/getLink.js +28 -10
- package/dist/esm/api/utils/getLink.js.map +1 -1
- package/dist/esm/api/utils/getUser.d.ts +11 -6
- package/dist/esm/api/utils/getUser.d.ts.map +1 -1
- package/dist/esm/api/utils/getUser.js +11 -5
- package/dist/esm/api/utils/getUser.js.map +1 -1
- package/dist/esm/api/utils/index.d.ts +24 -23
- package/dist/esm/api/utils/index.d.ts.map +1 -1
- package/dist/esm/api/utils/index.js +24 -23
- package/dist/esm/api/utils/index.js.map +1 -1
- package/dist/esm/api/utils/localeVariants.d.ts +8 -0
- package/dist/esm/api/utils/localeVariants.d.ts.map +1 -0
- package/dist/esm/api/utils/localeVariants.js +41 -0
- package/dist/esm/api/utils/localeVariants.js.map +1 -0
- package/dist/esm/api/utils/mediaUploadToken.d.ts +13 -0
- package/dist/esm/api/utils/mediaUploadToken.d.ts.map +1 -0
- package/dist/esm/api/utils/mediaUploadToken.js +44 -0
- package/dist/esm/api/utils/mediaUploadToken.js.map +1 -0
- package/dist/esm/api/utils/parseId.d.ts +1 -1
- package/dist/esm/api/utils/parseId.js +1 -1
- package/dist/esm/api/utils/passwords.d.ts +5 -0
- package/dist/esm/api/utils/passwords.d.ts.map +1 -1
- package/dist/esm/api/utils/passwords.js +23 -1
- package/dist/esm/api/utils/passwords.js.map +1 -1
- package/dist/esm/api/utils/populates/populateLinks.d.ts +2 -2
- package/dist/esm/api/utils/populates/populateLinks.d.ts.map +1 -1
- package/dist/esm/api/utils/populates/populateLinks.js +16 -7
- package/dist/esm/api/utils/populates/populateLinks.js.map +1 -1
- package/dist/esm/api/utils/populates/populateRelations.d.ts +8 -4
- package/dist/esm/api/utils/populates/populateRelations.d.ts.map +1 -1
- package/dist/esm/api/utils/populates/populateRelations.js +29 -10
- package/dist/esm/api/utils/populates/populateRelations.js.map +1 -1
- package/dist/esm/api/utils/redirects/resolveRedirect.js +2 -2
- package/dist/esm/api/utils/requireContentType.d.ts +1 -1
- package/dist/esm/api/utils/requireContentType.js +2 -2
- package/dist/esm/api/utils/routes/revalidatePath.js +5 -5
- package/dist/esm/api/utils/routes/routeDefinitions.d.ts +1 -2
- package/dist/esm/api/utils/routes/routeDefinitions.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/routeDefinitions.js.map +1 -1
- package/dist/esm/api/utils/routes/routeMapHelpers.d.ts +15 -8
- package/dist/esm/api/utils/routes/routeMapHelpers.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/routeMapHelpers.js +137 -30
- package/dist/esm/api/utils/routes/routeMapHelpers.js.map +1 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.d.ts +2 -2
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.js +5 -6
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
- package/dist/esm/api/utils/routes/updateRoutesMap.d.ts +2 -2
- package/dist/esm/api/utils/routes/updateRoutesMap.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/updateRoutesMap.js +70 -29
- package/dist/esm/api/utils/routes/updateRoutesMap.js.map +1 -1
- package/dist/esm/api/utils/safeManagerQuery.d.ts +4 -0
- package/dist/esm/api/utils/safeManagerQuery.d.ts.map +1 -0
- package/dist/esm/api/utils/safeManagerQuery.js +225 -0
- package/dist/esm/api/utils/safeManagerQuery.js.map +1 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.d.ts +3 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.d.ts.map +1 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.js +35 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.js.map +1 -0
- package/dist/esm/api/utils/transformObjectIdsToStrings.js +1 -1
- package/dist/esm/api/utils/transformStringToObjectIds.js +1 -1
- package/dist/esm/api/utils/translate.d.ts +1 -1
- package/dist/esm/api/utils/translate.js +3 -3
- package/dist/esm/api/utils/validateModule.d.ts +1 -1
- package/dist/esm/api/utils/validateModule.js +2 -2
- package/dist/esm/bootstrapState.d.ts +16 -12
- package/dist/esm/bootstrapState.d.ts.map +1 -1
- package/dist/esm/bootstrapState.js.map +1 -1
- package/dist/esm/client.d.ts +50 -42
- package/dist/esm/client.d.ts.map +1 -1
- package/dist/esm/client.js +30 -26
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/contracts.d.ts +43 -38
- package/dist/esm/contracts.d.ts.map +1 -1
- package/dist/esm/contracts.js +43 -38
- package/dist/esm/contracts.js.map +1 -1
- package/dist/esm/index.d.ts +42 -38
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +75 -39
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/internal-content-types/ApiOperation.d.ts +811 -0
- package/dist/esm/internal-content-types/ApiOperation.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ApiOperation.js +17 -0
- package/dist/esm/internal-content-types/ApiOperation.js.map +1 -0
- package/dist/esm/internal-content-types/Backup.d.ts +72 -58
- package/dist/esm/internal-content-types/Backup.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Backup.js +3 -2
- package/dist/esm/internal-content-types/Backup.js.map +1 -1
- package/dist/esm/internal-content-types/BackupDocument.d.ts +147 -115
- package/dist/esm/internal-content-types/BackupDocument.d.ts.map +1 -1
- package/dist/esm/internal-content-types/BackupDocument.js +3 -2
- package/dist/esm/internal-content-types/BackupDocument.js.map +1 -1
- package/dist/esm/internal-content-types/ContentComment.d.ts +4708 -0
- package/dist/esm/internal-content-types/ContentComment.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ContentComment.js +16 -0
- package/dist/esm/internal-content-types/ContentComment.js.map +1 -0
- package/dist/esm/internal-content-types/ContentVersion.d.ts +178 -140
- package/dist/esm/internal-content-types/ContentVersion.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ContentVersion.js +3 -2
- package/dist/esm/internal-content-types/ContentVersion.js.map +1 -1
- package/dist/esm/internal-content-types/HelloWorld.d.ts +39 -31
- package/dist/esm/internal-content-types/HelloWorld.d.ts.map +1 -1
- package/dist/esm/internal-content-types/HelloWorld.js +2 -2
- package/dist/esm/internal-content-types/Language.d.ts +50 -40
- package/dist/esm/internal-content-types/Language.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Language.js +3 -2
- package/dist/esm/internal-content-types/Language.js.map +1 -1
- package/dist/esm/internal-content-types/LiteralTranslation.d.ts +76 -60
- package/dist/esm/internal-content-types/LiteralTranslation.d.ts.map +1 -1
- package/dist/esm/internal-content-types/LiteralTranslation.js +3 -2
- package/dist/esm/internal-content-types/LiteralTranslation.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerFavorite.d.ts +3266 -0
- package/dist/esm/internal-content-types/ManagerFavorite.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ManagerFavorite.js +14 -0
- package/dist/esm/internal-content-types/ManagerFavorite.js.map +1 -0
- package/dist/esm/internal-content-types/ManagerRole.d.ts +42 -32
- package/dist/esm/internal-content-types/ManagerRole.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ManagerRole.js +4 -6
- package/dist/esm/internal-content-types/ManagerRole.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerRoleHooks.d.ts +6 -0
- package/dist/esm/internal-content-types/ManagerRoleHooks.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ManagerRoleHooks.js +43 -0
- package/dist/esm/internal-content-types/ManagerRoleHooks.js.map +1 -0
- package/dist/esm/internal-content-types/ManagerUser.d.ts +274 -209
- package/dist/esm/internal-content-types/ManagerUser.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ManagerUser.js +5 -3
- package/dist/esm/internal-content-types/ManagerUser.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerUserHooks.d.ts +5 -0
- package/dist/esm/internal-content-types/ManagerUserHooks.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ManagerUserHooks.js +38 -0
- package/dist/esm/internal-content-types/ManagerUserHooks.js.map +1 -0
- package/dist/esm/internal-content-types/Media.d.ts +330 -262
- package/dist/esm/internal-content-types/Media.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Media.js +4 -3
- package/dist/esm/internal-content-types/Media.js.map +1 -1
- package/dist/esm/internal-content-types/MediaFolder.d.ts +113 -89
- package/dist/esm/internal-content-types/MediaFolder.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MediaFolder.js +3 -2
- package/dist/esm/internal-content-types/MediaFolder.js.map +1 -1
- package/dist/esm/internal-content-types/MfaChallenge.d.ts +748 -557
- package/dist/esm/internal-content-types/MfaChallenge.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MfaChallenge.js +3 -3
- package/dist/esm/internal-content-types/Migration.d.ts +170 -134
- package/dist/esm/internal-content-types/Migration.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Migration.js +6 -2
- package/dist/esm/internal-content-types/Migration.js.map +1 -1
- package/dist/esm/internal-content-types/MigrationLock.d.ts +21 -17
- package/dist/esm/internal-content-types/MigrationLock.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MigrationLock.js +3 -2
- package/dist/esm/internal-content-types/MigrationLock.js.map +1 -1
- package/dist/esm/internal-content-types/Page.d.ts +114 -9275
- package/dist/esm/internal-content-types/Page.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Page.js +10 -11
- package/dist/esm/internal-content-types/Page.js.map +1 -1
- package/dist/esm/internal-content-types/PreviewSnapshot.d.ts +274 -214
- package/dist/esm/internal-content-types/PreviewSnapshot.d.ts.map +1 -1
- package/dist/esm/internal-content-types/PreviewSnapshot.js +2 -2
- package/dist/esm/internal-content-types/Redirect.d.ts +187 -147
- package/dist/esm/internal-content-types/Redirect.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Redirect.js +3 -2
- package/dist/esm/internal-content-types/Redirect.js.map +1 -1
- package/dist/esm/internal-content-types/RobotsRule.d.ts +132 -104
- package/dist/esm/internal-content-types/RobotsRule.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RobotsRule.js +3 -2
- package/dist/esm/internal-content-types/RobotsRule.js.map +1 -1
- package/dist/esm/internal-content-types/Route.d.ts +158 -317
- package/dist/esm/internal-content-types/Route.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Route.js +3 -3
- package/dist/esm/internal-content-types/Route.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.d.ts +211 -165
- package/dist/esm/internal-content-types/RouteLayoutModule.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.js +3 -2
- package/dist/esm/internal-content-types/RouteLayoutModule.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts +184 -144
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js +3 -2
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLocaleVariant.d.ts +1215 -0
- package/dist/esm/internal-content-types/RouteLocaleVariant.d.ts.map +1 -0
- package/dist/esm/internal-content-types/RouteLocaleVariant.js +17 -0
- package/dist/esm/internal-content-types/RouteLocaleVariant.js.map +1 -0
- package/dist/esm/internal-content-types/RouteMap.d.ts +185 -144
- package/dist/esm/internal-content-types/RouteMap.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteMap.js +7 -2
- package/dist/esm/internal-content-types/RouteMap.js.map +1 -1
- package/dist/esm/internal-content-types/RouteSettings.d.ts +153 -9306
- package/dist/esm/internal-content-types/RouteSettings.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteSettings.js +4 -3
- package/dist/esm/internal-content-types/RouteSettings.js.map +1 -1
- package/dist/esm/internal-content-types/SchemaState.d.ts +84 -66
- package/dist/esm/internal-content-types/SchemaState.d.ts.map +1 -1
- package/dist/esm/internal-content-types/SchemaState.js +6 -2
- package/dist/esm/internal-content-types/SchemaState.js.map +1 -1
- package/dist/esm/internal-content-types/Seo.d.ts +551 -431
- package/dist/esm/internal-content-types/Seo.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Seo.js +6 -4
- package/dist/esm/internal-content-types/Seo.js.map +1 -1
- package/dist/esm/internal-content-types/SeoSettings.d.ts +828 -492
- package/dist/esm/internal-content-types/SeoSettings.d.ts.map +1 -1
- package/dist/esm/internal-content-types/SeoSettings.js +5 -5
- package/dist/esm/internal-content-types/SeoSettings.js.map +1 -1
- package/dist/esm/internal-content-types/Session.d.ts +701 -520
- package/dist/esm/internal-content-types/Session.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Session.js +3 -3
- package/dist/esm/internal-content-types/UserMfa.d.ts +660 -489
- package/dist/esm/internal-content-types/UserMfa.d.ts.map +1 -1
- package/dist/esm/internal-content-types/UserMfa.js +3 -3
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts +818 -611
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts.map +1 -1
- package/dist/esm/internal-content-types/WebAuthnCredential.js +3 -3
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts +738 -549
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts.map +1 -1
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.js +3 -3
- package/dist/esm/internal-content-types/index.d.ts +33 -29
- package/dist/esm/internal-content-types/index.d.ts.map +1 -1
- package/dist/esm/internal-content-types/index.js +33 -29
- package/dist/esm/internal-content-types/index.js.map +1 -1
- package/dist/esm/internal-content-types/syncAdminRole.d.ts +21 -0
- package/dist/esm/internal-content-types/syncAdminRole.d.ts.map +1 -0
- package/dist/esm/internal-content-types/syncAdminRole.js +12 -0
- package/dist/esm/internal-content-types/syncAdminRole.js.map +1 -0
- package/dist/esm/lib/ContentType.d.ts +134 -20
- package/dist/esm/lib/ContentType.d.ts.map +1 -1
- package/dist/esm/lib/ContentType.js +185 -8
- package/dist/esm/lib/ContentType.js.map +1 -1
- package/dist/esm/lib/ManagerRolePolicy.d.ts +5 -0
- package/dist/esm/lib/ManagerRolePolicy.d.ts.map +1 -0
- package/dist/esm/lib/ManagerRolePolicy.js +3 -0
- package/dist/esm/lib/ManagerRolePolicy.js.map +1 -0
- package/dist/esm/lib/Permissions.d.ts +7 -3
- package/dist/esm/lib/Permissions.d.ts.map +1 -1
- package/dist/esm/lib/Permissions.js +70 -76
- package/dist/esm/lib/Permissions.js.map +1 -1
- package/dist/esm/lib/Registry.d.ts +41 -8
- package/dist/esm/lib/Registry.d.ts.map +1 -1
- package/dist/esm/lib/Registry.js +10 -1
- package/dist/esm/lib/Registry.js.map +1 -1
- package/dist/esm/lib/dynamicData.d.ts +88 -0
- package/dist/esm/lib/dynamicData.d.ts.map +1 -0
- package/dist/esm/lib/dynamicData.js +45 -0
- package/dist/esm/lib/dynamicData.js.map +1 -0
- package/dist/esm/lib/errors/AppError.d.ts +1 -1
- package/dist/esm/lib/errors/AppError.js +1 -1
- package/dist/esm/lib/errors/index.d.ts +4 -4
- package/dist/esm/lib/errors/index.js +3 -3
- package/dist/esm/lib/errors/throwAppError.d.ts +1 -1
- package/dist/esm/lib/errors/throwAppError.d.ts.map +1 -1
- package/dist/esm/lib/errors/throwAppError.js +30 -6
- package/dist/esm/lib/errors/throwAppError.js.map +1 -1
- package/dist/esm/lib/fields/Boolean.d.ts +1 -1
- package/dist/esm/lib/fields/Boolean.js +1 -1
- package/dist/esm/lib/fields/ContentReference.d.ts +2 -2
- package/dist/esm/lib/fields/ContentReference.js +2 -2
- package/dist/esm/lib/fields/Date.d.ts +1 -1
- package/dist/esm/lib/fields/Date.js +1 -1
- package/dist/esm/lib/fields/Field.d.ts +42 -13
- package/dist/esm/lib/fields/Field.d.ts.map +1 -1
- package/dist/esm/lib/fields/Field.js +25 -0
- package/dist/esm/lib/fields/Field.js.map +1 -1
- package/dist/esm/lib/fields/Fields.d.ts +13 -13
- package/dist/esm/lib/fields/Fields.js +13 -13
- package/dist/esm/lib/fields/File.d.ts +1 -1
- package/dist/esm/lib/fields/File.js +2 -2
- package/dist/esm/lib/fields/Iterator.d.ts +2 -2
- package/dist/esm/lib/fields/Iterator.js +3 -3
- package/dist/esm/lib/fields/Link.d.ts +1 -1
- package/dist/esm/lib/fields/Link.js +2 -2
- package/dist/esm/lib/fields/List.d.ts +1 -1
- package/dist/esm/lib/fields/List.d.ts.map +1 -1
- package/dist/esm/lib/fields/List.js +26 -5
- package/dist/esm/lib/fields/List.js.map +1 -1
- package/dist/esm/lib/fields/Number.d.ts +1 -1
- package/dist/esm/lib/fields/Number.js +1 -1
- package/dist/esm/lib/fields/Relation.d.ts +3 -3
- package/dist/esm/lib/fields/Relation.js +6 -3
- package/dist/esm/lib/fields/Relation.js.map +1 -1
- package/dist/esm/lib/fields/Select.d.ts +1 -1
- package/dist/esm/lib/fields/Select.js +1 -1
- package/dist/esm/lib/fields/SelfRelation.d.ts +1 -1
- package/dist/esm/lib/fields/SelfRelation.js +2 -2
- package/dist/esm/lib/fields/SimpleList.d.ts +1 -1
- package/dist/esm/lib/fields/SimpleList.js +1 -1
- package/dist/esm/lib/fields/String.d.ts +1 -1
- package/dist/esm/lib/fields/String.js +3 -3
- package/dist/esm/lib/fields/index.d.ts +15 -15
- package/dist/esm/lib/fields/index.js +15 -15
- package/dist/esm/lib/hooks.d.ts +89 -0
- package/dist/esm/lib/hooks.d.ts.map +1 -0
- package/dist/esm/lib/hooks.js +2 -0
- package/dist/esm/lib/hooks.js.map +1 -0
- package/dist/esm/lib/localeVariants.d.ts +20 -0
- package/dist/esm/lib/localeVariants.d.ts.map +1 -0
- package/dist/esm/lib/localeVariants.js +11 -0
- package/dist/esm/lib/localeVariants.js.map +1 -0
- package/dist/esm/lib/routeableContent.d.ts +5 -0
- package/dist/esm/lib/routeableContent.d.ts.map +1 -0
- package/dist/esm/lib/routeableContent.js +11 -0
- package/dist/esm/lib/routeableContent.js.map +1 -0
- package/dist/esm/lib/systemFields.d.ts +3 -0
- package/dist/esm/lib/systemFields.d.ts.map +1 -0
- package/dist/esm/lib/systemFields.js +3 -0
- package/dist/esm/lib/systemFields.js.map +1 -0
- package/dist/esm/lib/types/index.d.ts +4 -2
- package/dist/esm/lib/types/index.d.ts.map +1 -1
- package/dist/esm/lib/utils/getListField.d.ts +1 -1
- package/dist/esm/lib/utils/getSchemas.d.ts +1 -1
- package/dist/esm/lib/utils/getTranslation.d.ts +2 -2
- package/dist/esm/lib/utils/getTranslation.js +1 -1
- package/dist/esm/lib/utils/isTranslatableObject.d.ts +1 -1
- package/dist/esm/lib/utils/translateObject.d.ts +2 -2
- package/dist/esm/lib/utils/translateObject.js +3 -3
- package/dist/esm/literals/definitions.d.ts +1 -1
- package/dist/esm/literals/definitions.js +1 -1
- package/dist/esm/literals/index.d.ts +3 -3
- package/dist/esm/literals/index.js +3 -3
- package/dist/esm/literals/manager.d.ts +1 -1
- package/dist/esm/literals/manager.js +1 -1
- package/dist/esm/manager.d.ts +284 -2880
- package/dist/esm/manager.d.ts.map +1 -1
- package/dist/esm/manager.js +2 -6
- package/dist/esm/manager.js.map +1 -1
- package/dist/esm/media/imageOptimization.d.ts +1 -1
- package/dist/esm/media/imageOptimization.js +2 -2
- package/dist/esm/media/index.d.ts +4 -4
- package/dist/esm/media/index.js +3 -3
- package/dist/esm/media/mediaService.d.ts +3 -1
- package/dist/esm/media/mediaService.d.ts.map +1 -1
- package/dist/esm/media/mediaService.js +2 -1
- package/dist/esm/media/mediaService.js.map +1 -1
- package/dist/esm/orm/backups.js +5 -5
- package/dist/esm/orm/createIndexes.d.ts.map +1 -1
- package/dist/esm/orm/createIndexes.js +25 -9
- package/dist/esm/orm/createIndexes.js.map +1 -1
- package/dist/esm/orm/database.js +3 -3
- package/dist/esm/orm/dbService.d.ts +6 -6
- package/dist/esm/orm/index.d.ts +2 -2
- package/dist/esm/orm/index.d.ts.map +1 -1
- package/dist/esm/orm/index.js +24 -23
- package/dist/esm/orm/index.js.map +1 -1
- package/dist/esm/orm/migrations.d.ts +1 -1
- package/dist/esm/orm/migrations.js +4 -4
- package/dist/esm/orm/mongodbPeer.js +1 -1
- package/dist/esm/orm/operations/clear.d.ts +3 -2
- package/dist/esm/orm/operations/clear.d.ts.map +1 -1
- package/dist/esm/orm/operations/clear.js +3 -4
- package/dist/esm/orm/operations/clear.js.map +1 -1
- package/dist/esm/orm/operations/create.d.ts +5 -4
- package/dist/esm/orm/operations/create.d.ts.map +1 -1
- package/dist/esm/orm/operations/create.js +30 -13
- package/dist/esm/orm/operations/create.js.map +1 -1
- package/dist/esm/orm/operations/delete.d.ts +4 -4
- package/dist/esm/orm/operations/delete.d.ts.map +1 -1
- package/dist/esm/orm/operations/delete.js +25 -5
- package/dist/esm/orm/operations/delete.js.map +1 -1
- package/dist/esm/orm/operations/find.d.ts +2 -2
- package/dist/esm/orm/operations/find.js +3 -3
- package/dist/esm/orm/operations/findDependencies.d.ts +3 -3
- package/dist/esm/orm/operations/findDependencies.d.ts.map +1 -1
- package/dist/esm/orm/operations/findDependencies.js +79 -57
- package/dist/esm/orm/operations/findDependencies.js.map +1 -1
- package/dist/esm/orm/operations/get.d.ts +3 -3
- package/dist/esm/orm/operations/get.js +3 -3
- package/dist/esm/orm/operations/getAll.d.ts +2 -2
- package/dist/esm/orm/operations/getAll.js +2 -2
- package/dist/esm/orm/operations/list.d.ts +2 -2
- package/dist/esm/orm/operations/list.js +3 -3
- package/dist/esm/orm/operations/update.d.ts +6 -5
- package/dist/esm/orm/operations/update.d.ts.map +1 -1
- package/dist/esm/orm/operations/update.js +49 -23
- package/dist/esm/orm/operations/update.js.map +1 -1
- package/dist/esm/orm/operations/updateMany.d.ts +5 -4
- package/dist/esm/orm/operations/updateMany.d.ts.map +1 -1
- package/dist/esm/orm/operations/updateMany.js +27 -10
- package/dist/esm/orm/operations/updateMany.js.map +1 -1
- package/dist/esm/orm/operations/upsert.d.ts +4 -4
- package/dist/esm/orm/operations/upsert.d.ts.map +1 -1
- package/dist/esm/orm/operations/upsert.js +7 -7
- package/dist/esm/orm/operations/upsert.js.map +1 -1
- package/dist/esm/orm/utils/deepDeleteNulls.js +1 -1
- package/dist/esm/orm/utils/parseId.d.ts +1 -1
- package/dist/esm/orm/utils/parseId.js +1 -1
- package/dist/esm/orm/utils/transformObjectIdsToStrings.js +1 -1
- package/dist/esm/orm/utils/transformStringToObjectIds.js +1 -1
- package/dist/esm/orm/versions.d.ts +1 -1
- package/dist/esm/orm/versions.js +7 -7
- package/dist/esm/plugins.d.ts +55 -0
- package/dist/esm/plugins.d.ts.map +1 -0
- package/dist/esm/plugins.js +106 -0
- package/dist/esm/plugins.js.map +1 -0
- package/dist/esm/schemas/manager/auth/accountInfo.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/accountInfo.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/accountInfo.js +1 -0
- package/dist/esm/schemas/manager/auth/accountInfo.js.map +1 -1
- package/dist/esm/schemas/manager/auth/login.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/login.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/login.js +1 -0
- package/dist/esm/schemas/manager/auth/login.js.map +1 -1
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.js +1 -0
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.js +1 -0
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/esm/schemas/manager/comments.d.ts +197 -0
- package/dist/esm/schemas/manager/comments.d.ts.map +1 -0
- package/dist/esm/schemas/manager/comments.js +42 -0
- package/dist/esm/schemas/manager/comments.js.map +1 -0
- package/dist/esm/schemas/manager/contentType.d.ts +6 -0
- package/dist/esm/schemas/manager/contentType.d.ts.map +1 -0
- package/dist/esm/schemas/manager/contentType.js +5 -0
- package/dist/esm/schemas/manager/contentType.js.map +1 -0
- package/dist/esm/schemas/manager/favorites.d.ts +62 -0
- package/dist/esm/schemas/manager/favorites.d.ts.map +1 -0
- package/dist/esm/schemas/manager/favorites.js +31 -0
- package/dist/esm/schemas/manager/favorites.js.map +1 -0
- package/dist/esm/schemas/manager/literals/upsert.js +1 -1
- package/dist/esm/schemas/manager/localeVariants.d.ts +517 -0
- package/dist/esm/schemas/manager/localeVariants.d.ts.map +1 -0
- package/dist/esm/schemas/manager/localeVariants.js +56 -0
- package/dist/esm/schemas/manager/localeVariants.js.map +1 -0
- package/dist/esm/schemas/manager/media/finalizeUpload.d.ts +1 -0
- package/dist/esm/schemas/manager/media/finalizeUpload.d.ts.map +1 -1
- package/dist/esm/schemas/manager/media/finalizeUpload.js +2 -1
- package/dist/esm/schemas/manager/media/finalizeUpload.js.map +1 -1
- package/dist/esm/schemas/manager/media/getMediaUrl.js +2 -2
- package/dist/esm/schemas/manager/media/getMediaUrl.js.map +1 -1
- package/dist/esm/schemas/manager/media/listFolders.js +1 -1
- package/dist/esm/schemas/manager/media/prepareUpload.d.ts +1 -0
- package/dist/esm/schemas/manager/media/prepareUpload.d.ts.map +1 -1
- package/dist/esm/schemas/manager/media/prepareUpload.js +1 -0
- package/dist/esm/schemas/manager/media/prepareUpload.js.map +1 -1
- package/dist/esm/schemas/manager/users.d.ts +26 -0
- package/dist/esm/schemas/manager/users.d.ts.map +1 -0
- package/dist/esm/schemas/manager/users.js +15 -0
- package/dist/esm/schemas/manager/users.js.map +1 -0
- package/dist/esm/schemas/web/page.d.ts +52 -28
- package/dist/esm/schemas/web/page.d.ts.map +1 -1
- package/dist/esm/schemas/web/page.js +1 -1
- package/dist/esm/schemas/web/previewPage.d.ts +36 -20
- package/dist/esm/schemas/web/previewPage.d.ts.map +1 -1
- package/dist/esm/schemas/web/previewPage.js +1 -1
- package/dist/esm/translation/document.d.ts +3 -3
- package/dist/esm/translation/index.d.ts +4 -4
- package/dist/esm/translation/index.js +3 -3
- package/dist/esm/translation/translationService.d.ts +1 -1
- package/dist/esm/web/client.d.ts +1 -1
- package/dist/esm/web/client.js +1 -1
- package/dist/esm/web/index.d.ts +2 -2
- package/dist/esm/web/index.js +2 -2
- package/dist/esm/web/page.d.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -1
- package/dist/cjs/api/proxies/context.js +0 -13
- package/dist/cjs/api/proxies/context.js.map +0 -1
- package/dist/cjs/api/proxies/index.js +0 -26
- package/dist/cjs/api/proxies/index.js.map +0 -1
- package/dist/cjs/internal-content-types/describeField.js +0 -9
- package/dist/cjs/internal-content-types/describeField.js.map +0 -1
- package/dist/esm/api/proxies/context.d.ts +0 -21
- package/dist/esm/api/proxies/context.d.ts.map +0 -1
- package/dist/esm/api/proxies/context.js +0 -9
- package/dist/esm/api/proxies/context.js.map +0 -1
- package/dist/esm/api/proxies/index.d.ts +0 -46
- package/dist/esm/api/proxies/index.d.ts.map +0 -1
- package/dist/esm/api/proxies/index.js +0 -19
- package/dist/esm/api/proxies/index.js.map +0 -1
- package/dist/esm/internal-content-types/describeField.d.ts +0 -4
- package/dist/esm/internal-content-types/describeField.d.ts.map +0 -1
- package/dist/esm/internal-content-types/describeField.js +0 -5
- package/dist/esm/internal-content-types/describeField.js.map +0 -1
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
import ContentType from "../lib/ContentType";
|
|
2
|
-
import type { DBOutput } from "../lib/types";
|
|
1
|
+
import ContentType from "../lib/ContentType.js";
|
|
2
|
+
import type { DBOutput } from "../lib/types/index.js";
|
|
3
3
|
export declare const UserMfa: ContentType<{
|
|
4
|
-
user: import("
|
|
4
|
+
user: import("../index.js").WithFieldState<{
|
|
5
5
|
kind: "field";
|
|
6
6
|
readonly __fieldTypes?: {
|
|
7
|
-
input: import("
|
|
8
|
-
db: import("
|
|
7
|
+
input: import("../index.js").RelationExisting<"ManagerUser">;
|
|
8
|
+
db: import("../index.js").RelationExisting<"ManagerUser">;
|
|
9
9
|
output: {
|
|
10
10
|
user: string;
|
|
11
11
|
email: string;
|
|
12
12
|
role: {
|
|
13
13
|
name: string;
|
|
14
|
-
permissions: (
|
|
14
|
+
permissions: (string | undefined)[];
|
|
15
15
|
_type: "ManagerRole";
|
|
16
16
|
_id: string;
|
|
17
17
|
_schemaVersion?: number | undefined;
|
|
18
|
-
_visibility?: import("
|
|
19
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
18
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
19
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
20
20
|
_trashed?: boolean | undefined;
|
|
21
21
|
_revision?: number | undefined;
|
|
22
|
+
_localeVariantGroupId?: string | undefined;
|
|
23
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
22
24
|
trashedAt?: Date | undefined;
|
|
23
25
|
createdAt?: Date | undefined;
|
|
24
26
|
updatedAt?: Date | undefined;
|
|
@@ -26,6 +28,7 @@ export declare const UserMfa: ContentType<{
|
|
|
26
28
|
twoFactorEnabled: boolean;
|
|
27
29
|
_type: "ManagerUser";
|
|
28
30
|
_id: string;
|
|
31
|
+
name?: string | undefined;
|
|
29
32
|
avatarId?: string | undefined;
|
|
30
33
|
avatarKey?: string | undefined;
|
|
31
34
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -35,35 +38,39 @@ export declare const UserMfa: ContentType<{
|
|
|
35
38
|
tutorialsPromptedAt?: Date | undefined;
|
|
36
39
|
seenTours?: (string | undefined)[] | undefined;
|
|
37
40
|
_schemaVersion?: number | undefined;
|
|
38
|
-
_visibility?: import("
|
|
39
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
41
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
42
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
40
43
|
_trashed?: boolean | undefined;
|
|
41
44
|
_revision?: number | undefined;
|
|
45
|
+
_localeVariantGroupId?: string | undefined;
|
|
46
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
42
47
|
trashedAt?: Date | undefined;
|
|
43
48
|
createdAt?: Date | undefined;
|
|
44
49
|
updatedAt?: Date | undefined;
|
|
45
50
|
};
|
|
46
|
-
meta: import("
|
|
47
|
-
state: import("
|
|
51
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
52
|
+
state: import("../index.js").DefaultFieldState;
|
|
48
53
|
} | undefined;
|
|
49
|
-
meta: import("
|
|
50
|
-
state: import("
|
|
51
|
-
toZod: () => import("zod").ZodType<import("
|
|
52
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
53
|
-
getSchema: () => import("zod").ZodType<import("
|
|
54
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
55
|
+
state: import("../index.js").DefaultFieldState;
|
|
56
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser">, unknown>>;
|
|
57
|
+
getInputSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser"> | null | undefined, unknown>>;
|
|
58
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown>>;
|
|
54
59
|
getOutputSchema: () => import("zod").ZodType<{
|
|
55
60
|
user: string;
|
|
56
61
|
email: string;
|
|
57
62
|
role: {
|
|
58
63
|
name: string;
|
|
59
|
-
permissions: (
|
|
64
|
+
permissions: (string | undefined)[];
|
|
60
65
|
_type: "ManagerRole";
|
|
61
66
|
_id: string;
|
|
62
67
|
_schemaVersion?: number | undefined;
|
|
63
|
-
_visibility?: import("
|
|
64
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
68
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
69
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
65
70
|
_trashed?: boolean | undefined;
|
|
66
71
|
_revision?: number | undefined;
|
|
72
|
+
_localeVariantGroupId?: string | undefined;
|
|
73
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
67
74
|
trashedAt?: Date | undefined;
|
|
68
75
|
createdAt?: Date | undefined;
|
|
69
76
|
updatedAt?: Date | undefined;
|
|
@@ -71,6 +78,7 @@ export declare const UserMfa: ContentType<{
|
|
|
71
78
|
twoFactorEnabled: boolean;
|
|
72
79
|
_type: "ManagerUser";
|
|
73
80
|
_id: string;
|
|
81
|
+
name?: string | undefined;
|
|
74
82
|
avatarId?: string | undefined;
|
|
75
83
|
avatarKey?: string | undefined;
|
|
76
84
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -80,10 +88,12 @@ export declare const UserMfa: ContentType<{
|
|
|
80
88
|
tutorialsPromptedAt?: Date | undefined;
|
|
81
89
|
seenTours?: (string | undefined)[] | undefined;
|
|
82
90
|
_schemaVersion?: number | undefined;
|
|
83
|
-
_visibility?: import("
|
|
84
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
91
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
92
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
85
93
|
_trashed?: boolean | undefined;
|
|
86
94
|
_revision?: number | undefined;
|
|
95
|
+
_localeVariantGroupId?: string | undefined;
|
|
96
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
87
97
|
trashedAt?: Date | undefined;
|
|
88
98
|
createdAt?: Date | undefined;
|
|
89
99
|
updatedAt?: Date | undefined;
|
|
@@ -92,14 +102,16 @@ export declare const UserMfa: ContentType<{
|
|
|
92
102
|
email: string;
|
|
93
103
|
role: {
|
|
94
104
|
name: string;
|
|
95
|
-
permissions: (
|
|
105
|
+
permissions: (string | undefined)[];
|
|
96
106
|
_type: "ManagerRole";
|
|
97
107
|
_id: string;
|
|
98
108
|
_schemaVersion?: number | undefined;
|
|
99
|
-
_visibility?: import("
|
|
100
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
109
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
110
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
101
111
|
_trashed?: boolean | undefined;
|
|
102
112
|
_revision?: number | undefined;
|
|
113
|
+
_localeVariantGroupId?: string | undefined;
|
|
114
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
103
115
|
trashedAt?: Date | undefined;
|
|
104
116
|
createdAt?: Date | undefined;
|
|
105
117
|
updatedAt?: Date | undefined;
|
|
@@ -107,6 +119,7 @@ export declare const UserMfa: ContentType<{
|
|
|
107
119
|
twoFactorEnabled: boolean;
|
|
108
120
|
_type: "ManagerUser";
|
|
109
121
|
_id: string;
|
|
122
|
+
name?: string | undefined;
|
|
110
123
|
avatarId?: string | undefined;
|
|
111
124
|
avatarKey?: string | undefined;
|
|
112
125
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -116,33 +129,39 @@ export declare const UserMfa: ContentType<{
|
|
|
116
129
|
tutorialsPromptedAt?: Date | undefined;
|
|
117
130
|
seenTours?: (string | undefined)[] | undefined;
|
|
118
131
|
_schemaVersion?: number | undefined;
|
|
119
|
-
_visibility?: import("
|
|
120
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
132
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
133
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
121
134
|
_trashed?: boolean | undefined;
|
|
122
135
|
_revision?: number | undefined;
|
|
136
|
+
_localeVariantGroupId?: string | undefined;
|
|
137
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
123
138
|
trashedAt?: Date | undefined;
|
|
124
139
|
createdAt?: Date | undefined;
|
|
125
140
|
updatedAt?: Date | undefined;
|
|
126
141
|
} | undefined, unknown>>;
|
|
127
|
-
getConfig: () => import("
|
|
142
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
128
143
|
getIsRequired: () => false;
|
|
129
144
|
getIsTranslatable: () => false;
|
|
130
145
|
getVisibility: () => "all";
|
|
146
|
+
getIsDynamic: () => true;
|
|
147
|
+
getDescription: () => undefined;
|
|
131
148
|
getCondition: () => undefined;
|
|
132
|
-
} & import("
|
|
149
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
133
150
|
user: string;
|
|
134
151
|
email: string;
|
|
135
152
|
password: string;
|
|
136
153
|
role: {
|
|
137
154
|
name: string;
|
|
138
|
-
permissions: (
|
|
155
|
+
permissions: (string | undefined)[];
|
|
139
156
|
_type: "ManagerRole";
|
|
140
157
|
_id: string;
|
|
141
158
|
_schemaVersion?: number | undefined;
|
|
142
|
-
_visibility?: import("
|
|
143
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
159
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
160
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
144
161
|
_trashed?: boolean | undefined;
|
|
145
162
|
_revision?: number | undefined;
|
|
163
|
+
_localeVariantGroupId?: string | undefined;
|
|
164
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
146
165
|
trashedAt?: Date | undefined;
|
|
147
166
|
trashedBy?: string | undefined;
|
|
148
167
|
createdAt?: Date | undefined;
|
|
@@ -153,6 +172,7 @@ export declare const UserMfa: ContentType<{
|
|
|
153
172
|
twoFactorEnabled: boolean;
|
|
154
173
|
_type: "ManagerUser";
|
|
155
174
|
_id: string;
|
|
175
|
+
name?: string | undefined;
|
|
156
176
|
avatarId?: string | undefined;
|
|
157
177
|
avatarKey?: string | undefined;
|
|
158
178
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -162,37 +182,42 @@ export declare const UserMfa: ContentType<{
|
|
|
162
182
|
tutorialsPromptedAt?: Date | undefined;
|
|
163
183
|
seenTours?: (string | undefined)[] | undefined;
|
|
164
184
|
_schemaVersion?: number | undefined;
|
|
165
|
-
_visibility?: import("
|
|
166
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
185
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
186
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
167
187
|
_trashed?: boolean | undefined;
|
|
168
188
|
_revision?: number | undefined;
|
|
189
|
+
_localeVariantGroupId?: string | undefined;
|
|
190
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
169
191
|
trashedAt?: Date | undefined;
|
|
170
192
|
trashedBy?: string | undefined;
|
|
171
193
|
createdAt?: Date | undefined;
|
|
172
194
|
updatedAt?: Date | undefined;
|
|
173
195
|
createdBy?: string | undefined;
|
|
174
196
|
updatedBy?: string | undefined;
|
|
175
|
-
}, import("
|
|
197
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
176
198
|
contentType: ContentType<{
|
|
177
|
-
|
|
199
|
+
name: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
200
|
+
user: import("../index.js").WithFieldState<{
|
|
178
201
|
kind: "field";
|
|
179
202
|
readonly __fieldTypes?: {
|
|
180
203
|
input: string;
|
|
181
204
|
db: string;
|
|
182
205
|
output: string;
|
|
183
|
-
meta: import("
|
|
184
|
-
state: import("
|
|
206
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
207
|
+
state: import("../index.js").DefaultFieldState;
|
|
185
208
|
} | undefined;
|
|
186
|
-
meta: import("
|
|
187
|
-
state: import("
|
|
209
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
210
|
+
state: import("../index.js").DefaultFieldState;
|
|
188
211
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
189
212
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
190
213
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
191
214
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
192
|
-
getConfig: () => import("
|
|
215
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
193
216
|
getIsRequired: () => false;
|
|
194
217
|
getIsTranslatable: () => false;
|
|
195
218
|
getVisibility: () => "all";
|
|
219
|
+
getIsDynamic: () => true;
|
|
220
|
+
getDescription: () => undefined;
|
|
196
221
|
getCondition: () => undefined;
|
|
197
222
|
} & {
|
|
198
223
|
type: <TThis extends {
|
|
@@ -201,19 +226,21 @@ export declare const UserMfa: ContentType<{
|
|
|
201
226
|
input: string;
|
|
202
227
|
db: string;
|
|
203
228
|
output: string;
|
|
204
|
-
meta: import("
|
|
205
|
-
state: import("
|
|
229
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
230
|
+
state: import("../index.js").FieldState;
|
|
206
231
|
} | undefined;
|
|
207
|
-
meta: import("
|
|
208
|
-
state: import("
|
|
232
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
233
|
+
state: import("../index.js").FieldState;
|
|
209
234
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
210
235
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
211
236
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
212
237
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
213
|
-
getConfig: () => import("
|
|
238
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
214
239
|
getIsRequired: () => boolean;
|
|
215
240
|
getIsTranslatable: () => boolean;
|
|
216
|
-
getVisibility: () => import("
|
|
241
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
242
|
+
getIsDynamic: () => boolean;
|
|
243
|
+
getDescription: () => string | undefined;
|
|
217
244
|
getCondition: () => {
|
|
218
245
|
field: string;
|
|
219
246
|
equals: unknown;
|
|
@@ -251,26 +278,28 @@ export declare const UserMfa: ContentType<{
|
|
|
251
278
|
lte?: number | undefined;
|
|
252
279
|
};
|
|
253
280
|
} | undefined;
|
|
254
|
-
}, NextUi extends import("
|
|
281
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
255
282
|
min: <TThis extends {
|
|
256
283
|
kind: "field";
|
|
257
284
|
readonly __fieldTypes?: {
|
|
258
285
|
input: string;
|
|
259
286
|
db: string;
|
|
260
287
|
output: string;
|
|
261
|
-
meta: import("
|
|
262
|
-
state: import("
|
|
288
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
289
|
+
state: import("../index.js").FieldState;
|
|
263
290
|
} | undefined;
|
|
264
|
-
meta: import("
|
|
265
|
-
state: import("
|
|
291
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
292
|
+
state: import("../index.js").FieldState;
|
|
266
293
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
267
294
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
268
295
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
269
296
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
270
|
-
getConfig: () => import("
|
|
297
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
271
298
|
getIsRequired: () => boolean;
|
|
272
299
|
getIsTranslatable: () => boolean;
|
|
273
|
-
getVisibility: () => import("
|
|
300
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
301
|
+
getIsDynamic: () => boolean;
|
|
302
|
+
getDescription: () => string | undefined;
|
|
274
303
|
getCondition: () => {
|
|
275
304
|
field: string;
|
|
276
305
|
equals: unknown;
|
|
@@ -308,26 +337,28 @@ export declare const UserMfa: ContentType<{
|
|
|
308
337
|
lte?: number | undefined;
|
|
309
338
|
};
|
|
310
339
|
} | undefined;
|
|
311
|
-
}>(this: TThis, length: number) => import("
|
|
340
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
312
341
|
max: <TThis extends {
|
|
313
342
|
kind: "field";
|
|
314
343
|
readonly __fieldTypes?: {
|
|
315
344
|
input: string;
|
|
316
345
|
db: string;
|
|
317
346
|
output: string;
|
|
318
|
-
meta: import("
|
|
319
|
-
state: import("
|
|
347
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
348
|
+
state: import("../index.js").FieldState;
|
|
320
349
|
} | undefined;
|
|
321
|
-
meta: import("
|
|
322
|
-
state: import("
|
|
350
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
351
|
+
state: import("../index.js").FieldState;
|
|
323
352
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
324
353
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
325
354
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
326
355
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
327
|
-
getConfig: () => import("
|
|
356
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
328
357
|
getIsRequired: () => boolean;
|
|
329
358
|
getIsTranslatable: () => boolean;
|
|
330
|
-
getVisibility: () => import("
|
|
359
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
360
|
+
getIsDynamic: () => boolean;
|
|
361
|
+
getDescription: () => string | undefined;
|
|
331
362
|
getCondition: () => {
|
|
332
363
|
field: string;
|
|
333
364
|
equals: unknown;
|
|
@@ -365,27 +396,29 @@ export declare const UserMfa: ContentType<{
|
|
|
365
396
|
lte?: number | undefined;
|
|
366
397
|
};
|
|
367
398
|
} | undefined;
|
|
368
|
-
}>(this: TThis, length: number) => import("
|
|
369
|
-
}, import("
|
|
370
|
-
email: import("
|
|
399
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
400
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
401
|
+
email: import("../index.js").WithFieldState<{
|
|
371
402
|
kind: "field";
|
|
372
403
|
readonly __fieldTypes?: {
|
|
373
404
|
input: string;
|
|
374
405
|
db: string;
|
|
375
406
|
output: string;
|
|
376
|
-
meta: import("
|
|
377
|
-
state: import("
|
|
407
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
408
|
+
state: import("../index.js").DefaultFieldState;
|
|
378
409
|
} | undefined;
|
|
379
|
-
meta: import("
|
|
380
|
-
state: import("
|
|
410
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
411
|
+
state: import("../index.js").DefaultFieldState;
|
|
381
412
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
382
413
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
383
414
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
384
415
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
385
|
-
getConfig: () => import("
|
|
416
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
386
417
|
getIsRequired: () => false;
|
|
387
418
|
getIsTranslatable: () => false;
|
|
388
419
|
getVisibility: () => "all";
|
|
420
|
+
getIsDynamic: () => true;
|
|
421
|
+
getDescription: () => undefined;
|
|
389
422
|
getCondition: () => undefined;
|
|
390
423
|
} & {
|
|
391
424
|
type: <TThis extends {
|
|
@@ -394,19 +427,21 @@ export declare const UserMfa: ContentType<{
|
|
|
394
427
|
input: string;
|
|
395
428
|
db: string;
|
|
396
429
|
output: string;
|
|
397
|
-
meta: import("
|
|
398
|
-
state: import("
|
|
430
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
431
|
+
state: import("../index.js").FieldState;
|
|
399
432
|
} | undefined;
|
|
400
|
-
meta: import("
|
|
401
|
-
state: import("
|
|
433
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
434
|
+
state: import("../index.js").FieldState;
|
|
402
435
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
403
436
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
404
437
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
405
438
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
406
|
-
getConfig: () => import("
|
|
439
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
407
440
|
getIsRequired: () => boolean;
|
|
408
441
|
getIsTranslatable: () => boolean;
|
|
409
|
-
getVisibility: () => import("
|
|
442
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
443
|
+
getIsDynamic: () => boolean;
|
|
444
|
+
getDescription: () => string | undefined;
|
|
410
445
|
getCondition: () => {
|
|
411
446
|
field: string;
|
|
412
447
|
equals: unknown;
|
|
@@ -444,26 +479,28 @@ export declare const UserMfa: ContentType<{
|
|
|
444
479
|
lte?: number | undefined;
|
|
445
480
|
};
|
|
446
481
|
} | undefined;
|
|
447
|
-
}, NextUi extends import("
|
|
482
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
448
483
|
min: <TThis extends {
|
|
449
484
|
kind: "field";
|
|
450
485
|
readonly __fieldTypes?: {
|
|
451
486
|
input: string;
|
|
452
487
|
db: string;
|
|
453
488
|
output: string;
|
|
454
|
-
meta: import("
|
|
455
|
-
state: import("
|
|
489
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
490
|
+
state: import("../index.js").FieldState;
|
|
456
491
|
} | undefined;
|
|
457
|
-
meta: import("
|
|
458
|
-
state: import("
|
|
492
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
493
|
+
state: import("../index.js").FieldState;
|
|
459
494
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
460
495
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
461
496
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
462
497
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
463
|
-
getConfig: () => import("
|
|
498
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
464
499
|
getIsRequired: () => boolean;
|
|
465
500
|
getIsTranslatable: () => boolean;
|
|
466
|
-
getVisibility: () => import("
|
|
501
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
502
|
+
getIsDynamic: () => boolean;
|
|
503
|
+
getDescription: () => string | undefined;
|
|
467
504
|
getCondition: () => {
|
|
468
505
|
field: string;
|
|
469
506
|
equals: unknown;
|
|
@@ -501,26 +538,28 @@ export declare const UserMfa: ContentType<{
|
|
|
501
538
|
lte?: number | undefined;
|
|
502
539
|
};
|
|
503
540
|
} | undefined;
|
|
504
|
-
}>(this: TThis, length: number) => import("
|
|
541
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Email", import("../index.js").FieldStateOf<TThis>>;
|
|
505
542
|
max: <TThis extends {
|
|
506
543
|
kind: "field";
|
|
507
544
|
readonly __fieldTypes?: {
|
|
508
545
|
input: string;
|
|
509
546
|
db: string;
|
|
510
547
|
output: string;
|
|
511
|
-
meta: import("
|
|
512
|
-
state: import("
|
|
548
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
549
|
+
state: import("../index.js").FieldState;
|
|
513
550
|
} | undefined;
|
|
514
|
-
meta: import("
|
|
515
|
-
state: import("
|
|
551
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
552
|
+
state: import("../index.js").FieldState;
|
|
516
553
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
517
554
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
518
555
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
519
556
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
520
|
-
getConfig: () => import("
|
|
557
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
521
558
|
getIsRequired: () => boolean;
|
|
522
559
|
getIsTranslatable: () => boolean;
|
|
523
|
-
getVisibility: () => import("
|
|
560
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
561
|
+
getIsDynamic: () => boolean;
|
|
562
|
+
getDescription: () => string | undefined;
|
|
524
563
|
getCondition: () => {
|
|
525
564
|
field: string;
|
|
526
565
|
equals: unknown;
|
|
@@ -558,27 +597,29 @@ export declare const UserMfa: ContentType<{
|
|
|
558
597
|
lte?: number | undefined;
|
|
559
598
|
};
|
|
560
599
|
} | undefined;
|
|
561
|
-
}>(this: TThis, length: number) => import("
|
|
562
|
-
}, import("
|
|
563
|
-
password: import("
|
|
600
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Email", import("../index.js").FieldStateOf<TThis>>;
|
|
601
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
602
|
+
password: import("../index.js").WithFieldState<Omit<{
|
|
564
603
|
kind: "field";
|
|
565
604
|
readonly __fieldTypes?: {
|
|
566
605
|
input: string;
|
|
567
606
|
db: string;
|
|
568
607
|
output: string;
|
|
569
|
-
meta: import("
|
|
570
|
-
state: import("
|
|
608
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
609
|
+
state: import("../index.js").DefaultFieldState;
|
|
571
610
|
} | undefined;
|
|
572
|
-
meta: import("
|
|
573
|
-
state: import("
|
|
611
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
612
|
+
state: import("../index.js").DefaultFieldState;
|
|
574
613
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
575
614
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
576
615
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
577
616
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
578
|
-
getConfig: () => import("
|
|
617
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
579
618
|
getIsRequired: () => false;
|
|
580
619
|
getIsTranslatable: () => false;
|
|
581
620
|
getVisibility: () => "all";
|
|
621
|
+
getIsDynamic: () => true;
|
|
622
|
+
getDescription: () => undefined;
|
|
582
623
|
getCondition: () => undefined;
|
|
583
624
|
} & {
|
|
584
625
|
type: <TThis extends {
|
|
@@ -587,19 +628,21 @@ export declare const UserMfa: ContentType<{
|
|
|
587
628
|
input: string;
|
|
588
629
|
db: string;
|
|
589
630
|
output: string;
|
|
590
|
-
meta: import("
|
|
591
|
-
state: import("
|
|
631
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
632
|
+
state: import("../index.js").FieldState;
|
|
592
633
|
} | undefined;
|
|
593
|
-
meta: import("
|
|
594
|
-
state: import("
|
|
634
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
635
|
+
state: import("../index.js").FieldState;
|
|
595
636
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
596
637
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
597
638
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
598
639
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
599
|
-
getConfig: () => import("
|
|
640
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
600
641
|
getIsRequired: () => boolean;
|
|
601
642
|
getIsTranslatable: () => boolean;
|
|
602
|
-
getVisibility: () => import("
|
|
643
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
644
|
+
getIsDynamic: () => boolean;
|
|
645
|
+
getDescription: () => string | undefined;
|
|
603
646
|
getCondition: () => {
|
|
604
647
|
field: string;
|
|
605
648
|
equals: unknown;
|
|
@@ -637,26 +680,28 @@ export declare const UserMfa: ContentType<{
|
|
|
637
680
|
lte?: number | undefined;
|
|
638
681
|
};
|
|
639
682
|
} | undefined;
|
|
640
|
-
}, NextUi extends import("
|
|
683
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
641
684
|
min: <TThis extends {
|
|
642
685
|
kind: "field";
|
|
643
686
|
readonly __fieldTypes?: {
|
|
644
687
|
input: string;
|
|
645
688
|
db: string;
|
|
646
689
|
output: string;
|
|
647
|
-
meta: import("
|
|
648
|
-
state: import("
|
|
690
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
691
|
+
state: import("../index.js").FieldState;
|
|
649
692
|
} | undefined;
|
|
650
|
-
meta: import("
|
|
651
|
-
state: import("
|
|
693
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
694
|
+
state: import("../index.js").FieldState;
|
|
652
695
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
653
696
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
654
697
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
655
698
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
656
|
-
getConfig: () => import("
|
|
699
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
657
700
|
getIsRequired: () => boolean;
|
|
658
701
|
getIsTranslatable: () => boolean;
|
|
659
|
-
getVisibility: () => import("
|
|
702
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
703
|
+
getIsDynamic: () => boolean;
|
|
704
|
+
getDescription: () => string | undefined;
|
|
660
705
|
getCondition: () => {
|
|
661
706
|
field: string;
|
|
662
707
|
equals: unknown;
|
|
@@ -694,26 +739,28 @@ export declare const UserMfa: ContentType<{
|
|
|
694
739
|
lte?: number | undefined;
|
|
695
740
|
};
|
|
696
741
|
} | undefined;
|
|
697
|
-
}>(this: TThis, length: number) => import("
|
|
742
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis>>;
|
|
698
743
|
max: <TThis extends {
|
|
699
744
|
kind: "field";
|
|
700
745
|
readonly __fieldTypes?: {
|
|
701
746
|
input: string;
|
|
702
747
|
db: string;
|
|
703
748
|
output: string;
|
|
704
|
-
meta: import("
|
|
705
|
-
state: import("
|
|
749
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
750
|
+
state: import("../index.js").FieldState;
|
|
706
751
|
} | undefined;
|
|
707
|
-
meta: import("
|
|
708
|
-
state: import("
|
|
752
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
753
|
+
state: import("../index.js").FieldState;
|
|
709
754
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
710
755
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
711
756
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
712
757
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
713
|
-
getConfig: () => import("
|
|
758
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
714
759
|
getIsRequired: () => boolean;
|
|
715
760
|
getIsTranslatable: () => boolean;
|
|
716
|
-
getVisibility: () => import("
|
|
761
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
762
|
+
getIsDynamic: () => boolean;
|
|
763
|
+
getDescription: () => string | undefined;
|
|
717
764
|
getCondition: () => {
|
|
718
765
|
field: string;
|
|
719
766
|
equals: unknown;
|
|
@@ -751,104 +798,116 @@ export declare const UserMfa: ContentType<{
|
|
|
751
798
|
lte?: number | undefined;
|
|
752
799
|
};
|
|
753
800
|
} | undefined;
|
|
754
|
-
}>(this: TThis, length: number) => import("
|
|
755
|
-
}, keyof import("
|
|
756
|
-
role: import("
|
|
801
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis>>;
|
|
802
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Password">, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").SetVisibility<import("../index.js").SetRequired<import("../index.js").DefaultFieldState>, "manager">>;
|
|
803
|
+
role: import("../index.js").WithFieldState<{
|
|
757
804
|
kind: "field";
|
|
758
805
|
readonly __fieldTypes?: {
|
|
759
|
-
input: import("
|
|
760
|
-
db: import("
|
|
806
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
807
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
761
808
|
output: {
|
|
762
809
|
name: string;
|
|
763
|
-
permissions: (
|
|
810
|
+
permissions: (string | undefined)[];
|
|
764
811
|
_type: "ManagerRole";
|
|
765
812
|
_id: string;
|
|
766
813
|
_schemaVersion?: number | undefined;
|
|
767
|
-
_visibility?: import("
|
|
768
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
814
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
815
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
769
816
|
_trashed?: boolean | undefined;
|
|
770
817
|
_revision?: number | undefined;
|
|
818
|
+
_localeVariantGroupId?: string | undefined;
|
|
819
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
771
820
|
trashedAt?: Date | undefined;
|
|
772
821
|
createdAt?: Date | undefined;
|
|
773
822
|
updatedAt?: Date | undefined;
|
|
774
823
|
};
|
|
775
|
-
meta: import("
|
|
776
|
-
state: import("
|
|
824
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
825
|
+
state: import("../index.js").DefaultFieldState;
|
|
777
826
|
} | undefined;
|
|
778
|
-
meta: import("
|
|
779
|
-
state: import("
|
|
780
|
-
toZod: () => import("zod").ZodType<import("
|
|
781
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
782
|
-
getSchema: () => import("zod").ZodType<import("
|
|
827
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
828
|
+
state: import("../index.js").DefaultFieldState;
|
|
829
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
830
|
+
getInputSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
|
|
831
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
783
832
|
getOutputSchema: () => import("zod").ZodType<{
|
|
784
833
|
name: string;
|
|
785
|
-
permissions: (
|
|
834
|
+
permissions: (string | undefined)[];
|
|
786
835
|
_type: "ManagerRole";
|
|
787
836
|
_id: string;
|
|
788
837
|
_schemaVersion?: number | undefined;
|
|
789
|
-
_visibility?: import("
|
|
790
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
838
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
839
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
791
840
|
_trashed?: boolean | undefined;
|
|
792
841
|
_revision?: number | undefined;
|
|
842
|
+
_localeVariantGroupId?: string | undefined;
|
|
843
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
793
844
|
trashedAt?: Date | undefined;
|
|
794
845
|
createdAt?: Date | undefined;
|
|
795
846
|
updatedAt?: Date | undefined;
|
|
796
847
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
797
848
|
name: string;
|
|
798
|
-
permissions: (
|
|
849
|
+
permissions: (string | undefined)[];
|
|
799
850
|
_type: "ManagerRole";
|
|
800
851
|
_id: string;
|
|
801
852
|
_schemaVersion?: number | undefined;
|
|
802
|
-
_visibility?: import("
|
|
803
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
853
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
854
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
804
855
|
_trashed?: boolean | undefined;
|
|
805
856
|
_revision?: number | undefined;
|
|
857
|
+
_localeVariantGroupId?: string | undefined;
|
|
858
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
806
859
|
trashedAt?: Date | undefined;
|
|
807
860
|
createdAt?: Date | undefined;
|
|
808
861
|
updatedAt?: Date | undefined;
|
|
809
862
|
} | undefined, unknown>>;
|
|
810
|
-
getConfig: () => import("
|
|
863
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
811
864
|
getIsRequired: () => false;
|
|
812
865
|
getIsTranslatable: () => false;
|
|
813
866
|
getVisibility: () => "all";
|
|
867
|
+
getIsDynamic: () => true;
|
|
868
|
+
getDescription: () => undefined;
|
|
814
869
|
getCondition: () => undefined;
|
|
815
|
-
} & import("
|
|
870
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
816
871
|
name: string;
|
|
817
|
-
permissions: (
|
|
872
|
+
permissions: (string | undefined)[];
|
|
818
873
|
_type: "ManagerRole";
|
|
819
874
|
_id: string;
|
|
820
875
|
_schemaVersion?: number | undefined;
|
|
821
|
-
_visibility?: import("
|
|
822
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
876
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
877
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
823
878
|
_trashed?: boolean | undefined;
|
|
824
879
|
_revision?: number | undefined;
|
|
880
|
+
_localeVariantGroupId?: string | undefined;
|
|
881
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
825
882
|
trashedAt?: Date | undefined;
|
|
826
883
|
trashedBy?: string | undefined;
|
|
827
884
|
createdAt?: Date | undefined;
|
|
828
885
|
updatedAt?: Date | undefined;
|
|
829
886
|
createdBy?: string | undefined;
|
|
830
887
|
updatedBy?: string | undefined;
|
|
831
|
-
}, import("
|
|
888
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
832
889
|
contentType: ContentType<{
|
|
833
|
-
name: import("
|
|
890
|
+
name: import("../index.js").WithFieldState<{
|
|
834
891
|
kind: "field";
|
|
835
892
|
readonly __fieldTypes?: {
|
|
836
893
|
input: string;
|
|
837
894
|
db: string;
|
|
838
895
|
output: string;
|
|
839
|
-
meta: import("
|
|
840
|
-
state: import("
|
|
896
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
897
|
+
state: import("../index.js").DefaultFieldState;
|
|
841
898
|
} | undefined;
|
|
842
|
-
meta: import("
|
|
843
|
-
state: import("
|
|
899
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
900
|
+
state: import("../index.js").DefaultFieldState;
|
|
844
901
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
845
902
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
846
903
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
847
904
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
848
|
-
getConfig: () => import("
|
|
905
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
849
906
|
getIsRequired: () => false;
|
|
850
907
|
getIsTranslatable: () => false;
|
|
851
908
|
getVisibility: () => "all";
|
|
909
|
+
getIsDynamic: () => true;
|
|
910
|
+
getDescription: () => undefined;
|
|
852
911
|
getCondition: () => undefined;
|
|
853
912
|
} & {
|
|
854
913
|
type: <TThis extends {
|
|
@@ -857,19 +916,21 @@ export declare const UserMfa: ContentType<{
|
|
|
857
916
|
input: string;
|
|
858
917
|
db: string;
|
|
859
918
|
output: string;
|
|
860
|
-
meta: import("
|
|
861
|
-
state: import("
|
|
919
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
920
|
+
state: import("../index.js").FieldState;
|
|
862
921
|
} | undefined;
|
|
863
|
-
meta: import("
|
|
864
|
-
state: import("
|
|
922
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
923
|
+
state: import("../index.js").FieldState;
|
|
865
924
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
866
925
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
867
926
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
868
927
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
869
|
-
getConfig: () => import("
|
|
928
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
870
929
|
getIsRequired: () => boolean;
|
|
871
930
|
getIsTranslatable: () => boolean;
|
|
872
|
-
getVisibility: () => import("
|
|
931
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
932
|
+
getIsDynamic: () => boolean;
|
|
933
|
+
getDescription: () => string | undefined;
|
|
873
934
|
getCondition: () => {
|
|
874
935
|
field: string;
|
|
875
936
|
equals: unknown;
|
|
@@ -907,26 +968,28 @@ export declare const UserMfa: ContentType<{
|
|
|
907
968
|
lte?: number | undefined;
|
|
908
969
|
};
|
|
909
970
|
} | undefined;
|
|
910
|
-
}, NextUi extends import("
|
|
971
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
911
972
|
min: <TThis extends {
|
|
912
973
|
kind: "field";
|
|
913
974
|
readonly __fieldTypes?: {
|
|
914
975
|
input: string;
|
|
915
976
|
db: string;
|
|
916
977
|
output: string;
|
|
917
|
-
meta: import("
|
|
918
|
-
state: import("
|
|
978
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
979
|
+
state: import("../index.js").FieldState;
|
|
919
980
|
} | undefined;
|
|
920
|
-
meta: import("
|
|
921
|
-
state: import("
|
|
981
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
982
|
+
state: import("../index.js").FieldState;
|
|
922
983
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
923
984
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
924
985
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
925
986
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
926
|
-
getConfig: () => import("
|
|
987
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
927
988
|
getIsRequired: () => boolean;
|
|
928
989
|
getIsTranslatable: () => boolean;
|
|
929
|
-
getVisibility: () => import("
|
|
990
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
991
|
+
getIsDynamic: () => boolean;
|
|
992
|
+
getDescription: () => string | undefined;
|
|
930
993
|
getCondition: () => {
|
|
931
994
|
field: string;
|
|
932
995
|
equals: unknown;
|
|
@@ -964,26 +1027,28 @@ export declare const UserMfa: ContentType<{
|
|
|
964
1027
|
lte?: number | undefined;
|
|
965
1028
|
};
|
|
966
1029
|
} | undefined;
|
|
967
|
-
}>(this: TThis, length: number) => import("
|
|
1030
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
968
1031
|
max: <TThis extends {
|
|
969
1032
|
kind: "field";
|
|
970
1033
|
readonly __fieldTypes?: {
|
|
971
1034
|
input: string;
|
|
972
1035
|
db: string;
|
|
973
1036
|
output: string;
|
|
974
|
-
meta: import("
|
|
975
|
-
state: import("
|
|
1037
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1038
|
+
state: import("../index.js").FieldState;
|
|
976
1039
|
} | undefined;
|
|
977
|
-
meta: import("
|
|
978
|
-
state: import("
|
|
1040
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1041
|
+
state: import("../index.js").FieldState;
|
|
979
1042
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
980
1043
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
981
1044
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
982
1045
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
983
|
-
getConfig: () => import("
|
|
1046
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
984
1047
|
getIsRequired: () => boolean;
|
|
985
1048
|
getIsTranslatable: () => boolean;
|
|
986
|
-
getVisibility: () => import("
|
|
1049
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1050
|
+
getIsDynamic: () => boolean;
|
|
1051
|
+
getDescription: () => string | undefined;
|
|
987
1052
|
getCondition: () => {
|
|
988
1053
|
field: string;
|
|
989
1054
|
equals: unknown;
|
|
@@ -1021,69 +1086,79 @@ export declare const UserMfa: ContentType<{
|
|
|
1021
1086
|
lte?: number | undefined;
|
|
1022
1087
|
};
|
|
1023
1088
|
} | undefined;
|
|
1024
|
-
}>(this: TThis, length: number) => import("
|
|
1025
|
-
}, import("
|
|
1026
|
-
permissions: import("
|
|
1027
|
-
|
|
1089
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1090
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1091
|
+
permissions: import("../index.js").WithFieldState<import("../index.js").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("../index.js").SimpleListMeta<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>>, import("../index.js").DefaultFieldState> & import("../index.js").PopulatableFieldLike<(string | undefined)[], import("../index.js").DefaultFieldState> & {
|
|
1092
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1093
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1094
|
+
}, "ManagerRole", undefined>;
|
|
1028
1095
|
only?: undefined;
|
|
1029
1096
|
multiple: <TThis extends {
|
|
1030
1097
|
kind: "field";
|
|
1031
1098
|
readonly __fieldTypes?: {
|
|
1032
|
-
input: import("
|
|
1033
|
-
db: import("
|
|
1099
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
1100
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
1034
1101
|
output: {
|
|
1035
1102
|
name: string;
|
|
1036
|
-
permissions: (
|
|
1103
|
+
permissions: (string | undefined)[];
|
|
1037
1104
|
_type: "ManagerRole";
|
|
1038
1105
|
_id: string;
|
|
1039
1106
|
_schemaVersion?: number | undefined;
|
|
1040
|
-
_visibility?: import("
|
|
1041
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1107
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1108
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1042
1109
|
_trashed?: boolean | undefined;
|
|
1043
1110
|
_revision?: number | undefined;
|
|
1111
|
+
_localeVariantGroupId?: string | undefined;
|
|
1112
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1044
1113
|
trashedAt?: Date | undefined;
|
|
1045
1114
|
createdAt?: Date | undefined;
|
|
1046
1115
|
updatedAt?: Date | undefined;
|
|
1047
1116
|
};
|
|
1048
|
-
meta: import("
|
|
1049
|
-
state: import("
|
|
1117
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1118
|
+
state: import("../index.js").FieldState;
|
|
1050
1119
|
} | undefined;
|
|
1051
|
-
meta: import("
|
|
1052
|
-
state: import("
|
|
1053
|
-
toZod: () => import("zod").ZodType<import("
|
|
1054
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
1055
|
-
getSchema: () => import("zod").ZodType<import("
|
|
1120
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1121
|
+
state: import("../index.js").FieldState;
|
|
1122
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
1123
|
+
getInputSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
|
|
1124
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
1056
1125
|
getOutputSchema: () => import("zod").ZodType<{
|
|
1057
1126
|
name: string;
|
|
1058
|
-
permissions: (
|
|
1127
|
+
permissions: (string | undefined)[];
|
|
1059
1128
|
_type: "ManagerRole";
|
|
1060
1129
|
_id: string;
|
|
1061
1130
|
_schemaVersion?: number | undefined;
|
|
1062
|
-
_visibility?: import("
|
|
1063
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1131
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1132
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1064
1133
|
_trashed?: boolean | undefined;
|
|
1065
1134
|
_revision?: number | undefined;
|
|
1135
|
+
_localeVariantGroupId?: string | undefined;
|
|
1136
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1066
1137
|
trashedAt?: Date | undefined;
|
|
1067
1138
|
createdAt?: Date | undefined;
|
|
1068
1139
|
updatedAt?: Date | undefined;
|
|
1069
1140
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
1070
1141
|
name: string;
|
|
1071
|
-
permissions: (
|
|
1142
|
+
permissions: (string | undefined)[];
|
|
1072
1143
|
_type: "ManagerRole";
|
|
1073
1144
|
_id: string;
|
|
1074
1145
|
_schemaVersion?: number | undefined;
|
|
1075
|
-
_visibility?: import("
|
|
1076
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1146
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1147
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1077
1148
|
_trashed?: boolean | undefined;
|
|
1078
1149
|
_revision?: number | undefined;
|
|
1150
|
+
_localeVariantGroupId?: string | undefined;
|
|
1151
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1079
1152
|
trashedAt?: Date | undefined;
|
|
1080
1153
|
createdAt?: Date | undefined;
|
|
1081
1154
|
updatedAt?: Date | undefined;
|
|
1082
1155
|
} | undefined, unknown>>;
|
|
1083
|
-
getConfig: () => import("
|
|
1156
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1084
1157
|
getIsRequired: () => boolean;
|
|
1085
1158
|
getIsTranslatable: () => boolean;
|
|
1086
|
-
getVisibility: () => import("
|
|
1159
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1160
|
+
getIsDynamic: () => boolean;
|
|
1161
|
+
getDescription: () => string | undefined;
|
|
1087
1162
|
getCondition: () => {
|
|
1088
1163
|
field: string;
|
|
1089
1164
|
equals: unknown;
|
|
@@ -1121,26 +1196,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1121
1196
|
lte?: number | undefined;
|
|
1122
1197
|
};
|
|
1123
1198
|
} | undefined;
|
|
1124
|
-
}>(this: TThis) => import("
|
|
1125
|
-
name: import("
|
|
1199
|
+
}>(this: TThis) => import("../index.js").SimpleListField<import("../index.js").RelationField<ContentType<{
|
|
1200
|
+
name: import("../index.js").WithFieldState<{
|
|
1126
1201
|
kind: "field";
|
|
1127
1202
|
readonly __fieldTypes?: {
|
|
1128
1203
|
input: string;
|
|
1129
1204
|
db: string;
|
|
1130
1205
|
output: string;
|
|
1131
|
-
meta: import("
|
|
1132
|
-
state: import("
|
|
1206
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1207
|
+
state: import("../index.js").DefaultFieldState;
|
|
1133
1208
|
} | undefined;
|
|
1134
|
-
meta: import("
|
|
1135
|
-
state: import("
|
|
1209
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1210
|
+
state: import("../index.js").DefaultFieldState;
|
|
1136
1211
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1137
1212
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1138
1213
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1139
1214
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1140
|
-
getConfig: () => import("
|
|
1215
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1141
1216
|
getIsRequired: () => false;
|
|
1142
1217
|
getIsTranslatable: () => false;
|
|
1143
1218
|
getVisibility: () => "all";
|
|
1219
|
+
getIsDynamic: () => true;
|
|
1220
|
+
getDescription: () => undefined;
|
|
1144
1221
|
getCondition: () => undefined;
|
|
1145
1222
|
} & {
|
|
1146
1223
|
type: <TThis_1 extends {
|
|
@@ -1149,19 +1226,21 @@ export declare const UserMfa: ContentType<{
|
|
|
1149
1226
|
input: string;
|
|
1150
1227
|
db: string;
|
|
1151
1228
|
output: string;
|
|
1152
|
-
meta: import("
|
|
1153
|
-
state: import("
|
|
1229
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1230
|
+
state: import("../index.js").FieldState;
|
|
1154
1231
|
} | undefined;
|
|
1155
|
-
meta: import("
|
|
1156
|
-
state: import("
|
|
1232
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1233
|
+
state: import("../index.js").FieldState;
|
|
1157
1234
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1158
1235
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1159
1236
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1160
1237
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1161
|
-
getConfig: () => import("
|
|
1238
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1162
1239
|
getIsRequired: () => boolean;
|
|
1163
1240
|
getIsTranslatable: () => boolean;
|
|
1164
|
-
getVisibility: () => import("
|
|
1241
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1242
|
+
getIsDynamic: () => boolean;
|
|
1243
|
+
getDescription: () => string | undefined;
|
|
1165
1244
|
getCondition: () => {
|
|
1166
1245
|
field: string;
|
|
1167
1246
|
equals: unknown;
|
|
@@ -1199,26 +1278,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1199
1278
|
lte?: number | undefined;
|
|
1200
1279
|
};
|
|
1201
1280
|
} | undefined;
|
|
1202
|
-
}, NextUi extends import("
|
|
1281
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
1203
1282
|
min: <TThis_1 extends {
|
|
1204
1283
|
kind: "field";
|
|
1205
1284
|
readonly __fieldTypes?: {
|
|
1206
1285
|
input: string;
|
|
1207
1286
|
db: string;
|
|
1208
1287
|
output: string;
|
|
1209
|
-
meta: import("
|
|
1210
|
-
state: import("
|
|
1288
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1289
|
+
state: import("../index.js").FieldState;
|
|
1211
1290
|
} | undefined;
|
|
1212
|
-
meta: import("
|
|
1213
|
-
state: import("
|
|
1291
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1292
|
+
state: import("../index.js").FieldState;
|
|
1214
1293
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1215
1294
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1216
1295
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1217
1296
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1218
|
-
getConfig: () => import("
|
|
1297
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1219
1298
|
getIsRequired: () => boolean;
|
|
1220
1299
|
getIsTranslatable: () => boolean;
|
|
1221
|
-
getVisibility: () => import("
|
|
1300
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1301
|
+
getIsDynamic: () => boolean;
|
|
1302
|
+
getDescription: () => string | undefined;
|
|
1222
1303
|
getCondition: () => {
|
|
1223
1304
|
field: string;
|
|
1224
1305
|
equals: unknown;
|
|
@@ -1256,26 +1337,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1256
1337
|
lte?: number | undefined;
|
|
1257
1338
|
};
|
|
1258
1339
|
} | undefined;
|
|
1259
|
-
}>(this: TThis_1, length: number) => import("
|
|
1340
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1260
1341
|
max: <TThis_1 extends {
|
|
1261
1342
|
kind: "field";
|
|
1262
1343
|
readonly __fieldTypes?: {
|
|
1263
1344
|
input: string;
|
|
1264
1345
|
db: string;
|
|
1265
1346
|
output: string;
|
|
1266
|
-
meta: import("
|
|
1267
|
-
state: import("
|
|
1347
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1348
|
+
state: import("../index.js").FieldState;
|
|
1268
1349
|
} | undefined;
|
|
1269
|
-
meta: import("
|
|
1270
|
-
state: import("
|
|
1350
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1351
|
+
state: import("../index.js").FieldState;
|
|
1271
1352
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1272
1353
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1273
1354
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1274
1355
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1275
|
-
getConfig: () => import("
|
|
1356
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1276
1357
|
getIsRequired: () => boolean;
|
|
1277
1358
|
getIsTranslatable: () => boolean;
|
|
1278
|
-
getVisibility: () => import("
|
|
1359
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1360
|
+
getIsDynamic: () => boolean;
|
|
1361
|
+
getDescription: () => string | undefined;
|
|
1279
1362
|
getCondition: () => {
|
|
1280
1363
|
field: string;
|
|
1281
1364
|
equals: unknown;
|
|
@@ -1313,60 +1396,66 @@ export declare const UserMfa: ContentType<{
|
|
|
1313
1396
|
lte?: number | undefined;
|
|
1314
1397
|
};
|
|
1315
1398
|
} | undefined;
|
|
1316
|
-
}>(this: TThis_1, length: number) => import("
|
|
1317
|
-
}, import("
|
|
1318
|
-
permissions: import("
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1399
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1400
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1401
|
+
permissions: import("../index.js").WithFieldState<import("../index.js").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("../index.js").SimpleListMeta<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>>, import("../index.js").DefaultFieldState> & import("../index.js").PopulatableFieldLike<(string | undefined)[], import("../index.js").DefaultFieldState> & {
|
|
1402
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1403
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1404
|
+
}, "ManagerRole", undefined>, undefined, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").FieldStateOf<TThis>>;
|
|
1405
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1406
|
+
avatarId: import("../index.js").StringField<"Id", import("../index.js").DefaultFieldState>;
|
|
1407
|
+
avatarKey: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1408
|
+
avatarAccess: import("../index.js").SelectField<readonly ["public", "private"], false, import("../index.js").DefaultFieldState>;
|
|
1409
|
+
avatarUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
1410
|
+
avatarPreviewUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
1411
|
+
tutorialsEnabled: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
1412
|
+
tutorialsPromptedAt: import("../index.js").DateField<"DateTime", import("../index.js").DefaultFieldState>;
|
|
1413
|
+
seenTours: import("../index.js").SimpleListField<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>, import("../index.js").DefaultFieldState>;
|
|
1414
|
+
twoFactorEnabled: import("../index.js").WithFieldState<{
|
|
1330
1415
|
kind: "field";
|
|
1331
1416
|
readonly __fieldTypes?: {
|
|
1332
1417
|
input: boolean;
|
|
1333
1418
|
db: boolean;
|
|
1334
1419
|
output: boolean;
|
|
1335
|
-
meta: import("
|
|
1336
|
-
state: import("
|
|
1420
|
+
meta: import("../index.js").BooleanMeta;
|
|
1421
|
+
state: import("../index.js").DefaultFieldState;
|
|
1337
1422
|
} | undefined;
|
|
1338
|
-
meta: import("
|
|
1339
|
-
state: import("
|
|
1423
|
+
meta: import("../index.js").BooleanMeta;
|
|
1424
|
+
state: import("../index.js").DefaultFieldState;
|
|
1340
1425
|
toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
|
|
1341
1426
|
getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
|
|
1342
1427
|
getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
1343
1428
|
getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
1344
|
-
getConfig: () => import("
|
|
1429
|
+
getConfig: () => import("../index.js").BooleanMeta;
|
|
1345
1430
|
getIsRequired: () => false;
|
|
1346
1431
|
getIsTranslatable: () => false;
|
|
1347
1432
|
getVisibility: () => "all";
|
|
1433
|
+
getIsDynamic: () => true;
|
|
1434
|
+
getDescription: () => undefined;
|
|
1348
1435
|
getCondition: () => undefined;
|
|
1349
|
-
}, import("
|
|
1350
|
-
}, "ManagerUser">;
|
|
1436
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1437
|
+
}, "ManagerUser", undefined>;
|
|
1351
1438
|
only?: undefined;
|
|
1352
1439
|
multiple: <TThis extends {
|
|
1353
1440
|
kind: "field";
|
|
1354
1441
|
readonly __fieldTypes?: {
|
|
1355
|
-
input: import("
|
|
1356
|
-
db: import("
|
|
1442
|
+
input: import("../index.js").RelationExisting<"ManagerUser">;
|
|
1443
|
+
db: import("../index.js").RelationExisting<"ManagerUser">;
|
|
1357
1444
|
output: {
|
|
1358
1445
|
user: string;
|
|
1359
1446
|
email: string;
|
|
1360
1447
|
role: {
|
|
1361
1448
|
name: string;
|
|
1362
|
-
permissions: (
|
|
1449
|
+
permissions: (string | undefined)[];
|
|
1363
1450
|
_type: "ManagerRole";
|
|
1364
1451
|
_id: string;
|
|
1365
1452
|
_schemaVersion?: number | undefined;
|
|
1366
|
-
_visibility?: import("
|
|
1367
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1453
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1454
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1368
1455
|
_trashed?: boolean | undefined;
|
|
1369
1456
|
_revision?: number | undefined;
|
|
1457
|
+
_localeVariantGroupId?: string | undefined;
|
|
1458
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1370
1459
|
trashedAt?: Date | undefined;
|
|
1371
1460
|
createdAt?: Date | undefined;
|
|
1372
1461
|
updatedAt?: Date | undefined;
|
|
@@ -1374,6 +1463,7 @@ export declare const UserMfa: ContentType<{
|
|
|
1374
1463
|
twoFactorEnabled: boolean;
|
|
1375
1464
|
_type: "ManagerUser";
|
|
1376
1465
|
_id: string;
|
|
1466
|
+
name?: string | undefined;
|
|
1377
1467
|
avatarId?: string | undefined;
|
|
1378
1468
|
avatarKey?: string | undefined;
|
|
1379
1469
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -1383,35 +1473,39 @@ export declare const UserMfa: ContentType<{
|
|
|
1383
1473
|
tutorialsPromptedAt?: Date | undefined;
|
|
1384
1474
|
seenTours?: (string | undefined)[] | undefined;
|
|
1385
1475
|
_schemaVersion?: number | undefined;
|
|
1386
|
-
_visibility?: import("
|
|
1387
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1476
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1477
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1388
1478
|
_trashed?: boolean | undefined;
|
|
1389
1479
|
_revision?: number | undefined;
|
|
1480
|
+
_localeVariantGroupId?: string | undefined;
|
|
1481
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1390
1482
|
trashedAt?: Date | undefined;
|
|
1391
1483
|
createdAt?: Date | undefined;
|
|
1392
1484
|
updatedAt?: Date | undefined;
|
|
1393
1485
|
};
|
|
1394
|
-
meta: import("
|
|
1395
|
-
state: import("
|
|
1486
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
1487
|
+
state: import("../index.js").FieldState;
|
|
1396
1488
|
} | undefined;
|
|
1397
|
-
meta: import("
|
|
1398
|
-
state: import("
|
|
1399
|
-
toZod: () => import("zod").ZodType<import("
|
|
1400
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
1401
|
-
getSchema: () => import("zod").ZodType<import("
|
|
1489
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
1490
|
+
state: import("../index.js").FieldState;
|
|
1491
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser">, unknown>>;
|
|
1492
|
+
getInputSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser"> | null | undefined, unknown>>;
|
|
1493
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown>>;
|
|
1402
1494
|
getOutputSchema: () => import("zod").ZodType<{
|
|
1403
1495
|
user: string;
|
|
1404
1496
|
email: string;
|
|
1405
1497
|
role: {
|
|
1406
1498
|
name: string;
|
|
1407
|
-
permissions: (
|
|
1499
|
+
permissions: (string | undefined)[];
|
|
1408
1500
|
_type: "ManagerRole";
|
|
1409
1501
|
_id: string;
|
|
1410
1502
|
_schemaVersion?: number | undefined;
|
|
1411
|
-
_visibility?: import("
|
|
1412
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1503
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1504
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1413
1505
|
_trashed?: boolean | undefined;
|
|
1414
1506
|
_revision?: number | undefined;
|
|
1507
|
+
_localeVariantGroupId?: string | undefined;
|
|
1508
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1415
1509
|
trashedAt?: Date | undefined;
|
|
1416
1510
|
createdAt?: Date | undefined;
|
|
1417
1511
|
updatedAt?: Date | undefined;
|
|
@@ -1419,6 +1513,7 @@ export declare const UserMfa: ContentType<{
|
|
|
1419
1513
|
twoFactorEnabled: boolean;
|
|
1420
1514
|
_type: "ManagerUser";
|
|
1421
1515
|
_id: string;
|
|
1516
|
+
name?: string | undefined;
|
|
1422
1517
|
avatarId?: string | undefined;
|
|
1423
1518
|
avatarKey?: string | undefined;
|
|
1424
1519
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -1428,10 +1523,12 @@ export declare const UserMfa: ContentType<{
|
|
|
1428
1523
|
tutorialsPromptedAt?: Date | undefined;
|
|
1429
1524
|
seenTours?: (string | undefined)[] | undefined;
|
|
1430
1525
|
_schemaVersion?: number | undefined;
|
|
1431
|
-
_visibility?: import("
|
|
1432
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1526
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1527
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1433
1528
|
_trashed?: boolean | undefined;
|
|
1434
1529
|
_revision?: number | undefined;
|
|
1530
|
+
_localeVariantGroupId?: string | undefined;
|
|
1531
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1435
1532
|
trashedAt?: Date | undefined;
|
|
1436
1533
|
createdAt?: Date | undefined;
|
|
1437
1534
|
updatedAt?: Date | undefined;
|
|
@@ -1440,14 +1537,16 @@ export declare const UserMfa: ContentType<{
|
|
|
1440
1537
|
email: string;
|
|
1441
1538
|
role: {
|
|
1442
1539
|
name: string;
|
|
1443
|
-
permissions: (
|
|
1540
|
+
permissions: (string | undefined)[];
|
|
1444
1541
|
_type: "ManagerRole";
|
|
1445
1542
|
_id: string;
|
|
1446
1543
|
_schemaVersion?: number | undefined;
|
|
1447
|
-
_visibility?: import("
|
|
1448
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1544
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1545
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1449
1546
|
_trashed?: boolean | undefined;
|
|
1450
1547
|
_revision?: number | undefined;
|
|
1548
|
+
_localeVariantGroupId?: string | undefined;
|
|
1549
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1451
1550
|
trashedAt?: Date | undefined;
|
|
1452
1551
|
createdAt?: Date | undefined;
|
|
1453
1552
|
updatedAt?: Date | undefined;
|
|
@@ -1455,6 +1554,7 @@ export declare const UserMfa: ContentType<{
|
|
|
1455
1554
|
twoFactorEnabled: boolean;
|
|
1456
1555
|
_type: "ManagerUser";
|
|
1457
1556
|
_id: string;
|
|
1557
|
+
name?: string | undefined;
|
|
1458
1558
|
avatarId?: string | undefined;
|
|
1459
1559
|
avatarKey?: string | undefined;
|
|
1460
1560
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -1464,18 +1564,22 @@ export declare const UserMfa: ContentType<{
|
|
|
1464
1564
|
tutorialsPromptedAt?: Date | undefined;
|
|
1465
1565
|
seenTours?: (string | undefined)[] | undefined;
|
|
1466
1566
|
_schemaVersion?: number | undefined;
|
|
1467
|
-
_visibility?: import("
|
|
1468
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1567
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1568
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1469
1569
|
_trashed?: boolean | undefined;
|
|
1470
1570
|
_revision?: number | undefined;
|
|
1571
|
+
_localeVariantGroupId?: string | undefined;
|
|
1572
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1471
1573
|
trashedAt?: Date | undefined;
|
|
1472
1574
|
createdAt?: Date | undefined;
|
|
1473
1575
|
updatedAt?: Date | undefined;
|
|
1474
1576
|
} | undefined, unknown>>;
|
|
1475
|
-
getConfig: () => import("
|
|
1577
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
1476
1578
|
getIsRequired: () => boolean;
|
|
1477
1579
|
getIsTranslatable: () => boolean;
|
|
1478
|
-
getVisibility: () => import("
|
|
1580
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1581
|
+
getIsDynamic: () => boolean;
|
|
1582
|
+
getDescription: () => string | undefined;
|
|
1479
1583
|
getCondition: () => {
|
|
1480
1584
|
field: string;
|
|
1481
1585
|
equals: unknown;
|
|
@@ -1513,26 +1617,29 @@ export declare const UserMfa: ContentType<{
|
|
|
1513
1617
|
lte?: number | undefined;
|
|
1514
1618
|
};
|
|
1515
1619
|
} | undefined;
|
|
1516
|
-
}>(this: TThis) => import("
|
|
1517
|
-
|
|
1620
|
+
}>(this: TThis) => import("../index.js").SimpleListField<import("../index.js").RelationField<ContentType<{
|
|
1621
|
+
name: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1622
|
+
user: import("../index.js").WithFieldState<{
|
|
1518
1623
|
kind: "field";
|
|
1519
1624
|
readonly __fieldTypes?: {
|
|
1520
1625
|
input: string;
|
|
1521
1626
|
db: string;
|
|
1522
1627
|
output: string;
|
|
1523
|
-
meta: import("
|
|
1524
|
-
state: import("
|
|
1628
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1629
|
+
state: import("../index.js").DefaultFieldState;
|
|
1525
1630
|
} | undefined;
|
|
1526
|
-
meta: import("
|
|
1527
|
-
state: import("
|
|
1631
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1632
|
+
state: import("../index.js").DefaultFieldState;
|
|
1528
1633
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1529
1634
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1530
1635
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1531
1636
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1532
|
-
getConfig: () => import("
|
|
1637
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1533
1638
|
getIsRequired: () => false;
|
|
1534
1639
|
getIsTranslatable: () => false;
|
|
1535
1640
|
getVisibility: () => "all";
|
|
1641
|
+
getIsDynamic: () => true;
|
|
1642
|
+
getDescription: () => undefined;
|
|
1536
1643
|
getCondition: () => undefined;
|
|
1537
1644
|
} & {
|
|
1538
1645
|
type: <TThis_1 extends {
|
|
@@ -1541,19 +1648,21 @@ export declare const UserMfa: ContentType<{
|
|
|
1541
1648
|
input: string;
|
|
1542
1649
|
db: string;
|
|
1543
1650
|
output: string;
|
|
1544
|
-
meta: import("
|
|
1545
|
-
state: import("
|
|
1651
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1652
|
+
state: import("../index.js").FieldState;
|
|
1546
1653
|
} | undefined;
|
|
1547
|
-
meta: import("
|
|
1548
|
-
state: import("
|
|
1654
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1655
|
+
state: import("../index.js").FieldState;
|
|
1549
1656
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1550
1657
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1551
1658
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1552
1659
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1553
|
-
getConfig: () => import("
|
|
1660
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1554
1661
|
getIsRequired: () => boolean;
|
|
1555
1662
|
getIsTranslatable: () => boolean;
|
|
1556
|
-
getVisibility: () => import("
|
|
1663
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1664
|
+
getIsDynamic: () => boolean;
|
|
1665
|
+
getDescription: () => string | undefined;
|
|
1557
1666
|
getCondition: () => {
|
|
1558
1667
|
field: string;
|
|
1559
1668
|
equals: unknown;
|
|
@@ -1591,26 +1700,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1591
1700
|
lte?: number | undefined;
|
|
1592
1701
|
};
|
|
1593
1702
|
} | undefined;
|
|
1594
|
-
}, NextUi extends import("
|
|
1703
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
1595
1704
|
min: <TThis_1 extends {
|
|
1596
1705
|
kind: "field";
|
|
1597
1706
|
readonly __fieldTypes?: {
|
|
1598
1707
|
input: string;
|
|
1599
1708
|
db: string;
|
|
1600
1709
|
output: string;
|
|
1601
|
-
meta: import("
|
|
1602
|
-
state: import("
|
|
1710
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1711
|
+
state: import("../index.js").FieldState;
|
|
1603
1712
|
} | undefined;
|
|
1604
|
-
meta: import("
|
|
1605
|
-
state: import("
|
|
1713
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1714
|
+
state: import("../index.js").FieldState;
|
|
1606
1715
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1607
1716
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1608
1717
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1609
1718
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1610
|
-
getConfig: () => import("
|
|
1719
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1611
1720
|
getIsRequired: () => boolean;
|
|
1612
1721
|
getIsTranslatable: () => boolean;
|
|
1613
|
-
getVisibility: () => import("
|
|
1722
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1723
|
+
getIsDynamic: () => boolean;
|
|
1724
|
+
getDescription: () => string | undefined;
|
|
1614
1725
|
getCondition: () => {
|
|
1615
1726
|
field: string;
|
|
1616
1727
|
equals: unknown;
|
|
@@ -1648,26 +1759,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1648
1759
|
lte?: number | undefined;
|
|
1649
1760
|
};
|
|
1650
1761
|
} | undefined;
|
|
1651
|
-
}>(this: TThis_1, length: number) => import("
|
|
1762
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1652
1763
|
max: <TThis_1 extends {
|
|
1653
1764
|
kind: "field";
|
|
1654
1765
|
readonly __fieldTypes?: {
|
|
1655
1766
|
input: string;
|
|
1656
1767
|
db: string;
|
|
1657
1768
|
output: string;
|
|
1658
|
-
meta: import("
|
|
1659
|
-
state: import("
|
|
1769
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1770
|
+
state: import("../index.js").FieldState;
|
|
1660
1771
|
} | undefined;
|
|
1661
|
-
meta: import("
|
|
1662
|
-
state: import("
|
|
1772
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1773
|
+
state: import("../index.js").FieldState;
|
|
1663
1774
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1664
1775
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1665
1776
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1666
1777
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1667
|
-
getConfig: () => import("
|
|
1778
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1668
1779
|
getIsRequired: () => boolean;
|
|
1669
1780
|
getIsTranslatable: () => boolean;
|
|
1670
|
-
getVisibility: () => import("
|
|
1781
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1782
|
+
getIsDynamic: () => boolean;
|
|
1783
|
+
getDescription: () => string | undefined;
|
|
1671
1784
|
getCondition: () => {
|
|
1672
1785
|
field: string;
|
|
1673
1786
|
equals: unknown;
|
|
@@ -1705,27 +1818,29 @@ export declare const UserMfa: ContentType<{
|
|
|
1705
1818
|
lte?: number | undefined;
|
|
1706
1819
|
};
|
|
1707
1820
|
} | undefined;
|
|
1708
|
-
}>(this: TThis_1, length: number) => import("
|
|
1709
|
-
}, import("
|
|
1710
|
-
email: import("
|
|
1821
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1822
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1823
|
+
email: import("../index.js").WithFieldState<{
|
|
1711
1824
|
kind: "field";
|
|
1712
1825
|
readonly __fieldTypes?: {
|
|
1713
1826
|
input: string;
|
|
1714
1827
|
db: string;
|
|
1715
1828
|
output: string;
|
|
1716
|
-
meta: import("
|
|
1717
|
-
state: import("
|
|
1829
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1830
|
+
state: import("../index.js").DefaultFieldState;
|
|
1718
1831
|
} | undefined;
|
|
1719
|
-
meta: import("
|
|
1720
|
-
state: import("
|
|
1832
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1833
|
+
state: import("../index.js").DefaultFieldState;
|
|
1721
1834
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1722
1835
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1723
1836
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1724
1837
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1725
|
-
getConfig: () => import("
|
|
1838
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
1726
1839
|
getIsRequired: () => false;
|
|
1727
1840
|
getIsTranslatable: () => false;
|
|
1728
1841
|
getVisibility: () => "all";
|
|
1842
|
+
getIsDynamic: () => true;
|
|
1843
|
+
getDescription: () => undefined;
|
|
1729
1844
|
getCondition: () => undefined;
|
|
1730
1845
|
} & {
|
|
1731
1846
|
type: <TThis_1 extends {
|
|
@@ -1734,19 +1849,21 @@ export declare const UserMfa: ContentType<{
|
|
|
1734
1849
|
input: string;
|
|
1735
1850
|
db: string;
|
|
1736
1851
|
output: string;
|
|
1737
|
-
meta: import("
|
|
1738
|
-
state: import("
|
|
1852
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1853
|
+
state: import("../index.js").FieldState;
|
|
1739
1854
|
} | undefined;
|
|
1740
|
-
meta: import("
|
|
1741
|
-
state: import("
|
|
1855
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1856
|
+
state: import("../index.js").FieldState;
|
|
1742
1857
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1743
1858
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1744
1859
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1745
1860
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1746
|
-
getConfig: () => import("
|
|
1861
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
1747
1862
|
getIsRequired: () => boolean;
|
|
1748
1863
|
getIsTranslatable: () => boolean;
|
|
1749
|
-
getVisibility: () => import("
|
|
1864
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1865
|
+
getIsDynamic: () => boolean;
|
|
1866
|
+
getDescription: () => string | undefined;
|
|
1750
1867
|
getCondition: () => {
|
|
1751
1868
|
field: string;
|
|
1752
1869
|
equals: unknown;
|
|
@@ -1784,26 +1901,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1784
1901
|
lte?: number | undefined;
|
|
1785
1902
|
};
|
|
1786
1903
|
} | undefined;
|
|
1787
|
-
}, NextUi extends import("
|
|
1904
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
1788
1905
|
min: <TThis_1 extends {
|
|
1789
1906
|
kind: "field";
|
|
1790
1907
|
readonly __fieldTypes?: {
|
|
1791
1908
|
input: string;
|
|
1792
1909
|
db: string;
|
|
1793
1910
|
output: string;
|
|
1794
|
-
meta: import("
|
|
1795
|
-
state: import("
|
|
1911
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1912
|
+
state: import("../index.js").FieldState;
|
|
1796
1913
|
} | undefined;
|
|
1797
|
-
meta: import("
|
|
1798
|
-
state: import("
|
|
1914
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1915
|
+
state: import("../index.js").FieldState;
|
|
1799
1916
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1800
1917
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1801
1918
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1802
1919
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1803
|
-
getConfig: () => import("
|
|
1920
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
1804
1921
|
getIsRequired: () => boolean;
|
|
1805
1922
|
getIsTranslatable: () => boolean;
|
|
1806
|
-
getVisibility: () => import("
|
|
1923
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1924
|
+
getIsDynamic: () => boolean;
|
|
1925
|
+
getDescription: () => string | undefined;
|
|
1807
1926
|
getCondition: () => {
|
|
1808
1927
|
field: string;
|
|
1809
1928
|
equals: unknown;
|
|
@@ -1841,26 +1960,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1841
1960
|
lte?: number | undefined;
|
|
1842
1961
|
};
|
|
1843
1962
|
} | undefined;
|
|
1844
|
-
}>(this: TThis_1, length: number) => import("
|
|
1963
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Email", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1845
1964
|
max: <TThis_1 extends {
|
|
1846
1965
|
kind: "field";
|
|
1847
1966
|
readonly __fieldTypes?: {
|
|
1848
1967
|
input: string;
|
|
1849
1968
|
db: string;
|
|
1850
1969
|
output: string;
|
|
1851
|
-
meta: import("
|
|
1852
|
-
state: import("
|
|
1970
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1971
|
+
state: import("../index.js").FieldState;
|
|
1853
1972
|
} | undefined;
|
|
1854
|
-
meta: import("
|
|
1855
|
-
state: import("
|
|
1973
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
1974
|
+
state: import("../index.js").FieldState;
|
|
1856
1975
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1857
1976
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1858
1977
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1859
1978
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1860
|
-
getConfig: () => import("
|
|
1979
|
+
getConfig: () => import("../index.js").StringMeta<"Email">;
|
|
1861
1980
|
getIsRequired: () => boolean;
|
|
1862
1981
|
getIsTranslatable: () => boolean;
|
|
1863
|
-
getVisibility: () => import("
|
|
1982
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1983
|
+
getIsDynamic: () => boolean;
|
|
1984
|
+
getDescription: () => string | undefined;
|
|
1864
1985
|
getCondition: () => {
|
|
1865
1986
|
field: string;
|
|
1866
1987
|
equals: unknown;
|
|
@@ -1898,27 +2019,29 @@ export declare const UserMfa: ContentType<{
|
|
|
1898
2019
|
lte?: number | undefined;
|
|
1899
2020
|
};
|
|
1900
2021
|
} | undefined;
|
|
1901
|
-
}>(this: TThis_1, length: number) => import("
|
|
1902
|
-
}, import("
|
|
1903
|
-
password: import("
|
|
2022
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Email", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2023
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2024
|
+
password: import("../index.js").WithFieldState<Omit<{
|
|
1904
2025
|
kind: "field";
|
|
1905
2026
|
readonly __fieldTypes?: {
|
|
1906
2027
|
input: string;
|
|
1907
2028
|
db: string;
|
|
1908
2029
|
output: string;
|
|
1909
|
-
meta: import("
|
|
1910
|
-
state: import("
|
|
2030
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2031
|
+
state: import("../index.js").DefaultFieldState;
|
|
1911
2032
|
} | undefined;
|
|
1912
|
-
meta: import("
|
|
1913
|
-
state: import("
|
|
2033
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2034
|
+
state: import("../index.js").DefaultFieldState;
|
|
1914
2035
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1915
2036
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1916
2037
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1917
2038
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1918
|
-
getConfig: () => import("
|
|
2039
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
1919
2040
|
getIsRequired: () => false;
|
|
1920
2041
|
getIsTranslatable: () => false;
|
|
1921
2042
|
getVisibility: () => "all";
|
|
2043
|
+
getIsDynamic: () => true;
|
|
2044
|
+
getDescription: () => undefined;
|
|
1922
2045
|
getCondition: () => undefined;
|
|
1923
2046
|
} & {
|
|
1924
2047
|
type: <TThis_1 extends {
|
|
@@ -1927,19 +2050,21 @@ export declare const UserMfa: ContentType<{
|
|
|
1927
2050
|
input: string;
|
|
1928
2051
|
db: string;
|
|
1929
2052
|
output: string;
|
|
1930
|
-
meta: import("
|
|
1931
|
-
state: import("
|
|
2053
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2054
|
+
state: import("../index.js").FieldState;
|
|
1932
2055
|
} | undefined;
|
|
1933
|
-
meta: import("
|
|
1934
|
-
state: import("
|
|
2056
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2057
|
+
state: import("../index.js").FieldState;
|
|
1935
2058
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1936
2059
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1937
2060
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1938
2061
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1939
|
-
getConfig: () => import("
|
|
2062
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
1940
2063
|
getIsRequired: () => boolean;
|
|
1941
2064
|
getIsTranslatable: () => boolean;
|
|
1942
|
-
getVisibility: () => import("
|
|
2065
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2066
|
+
getIsDynamic: () => boolean;
|
|
2067
|
+
getDescription: () => string | undefined;
|
|
1943
2068
|
getCondition: () => {
|
|
1944
2069
|
field: string;
|
|
1945
2070
|
equals: unknown;
|
|
@@ -1977,26 +2102,28 @@ export declare const UserMfa: ContentType<{
|
|
|
1977
2102
|
lte?: number | undefined;
|
|
1978
2103
|
};
|
|
1979
2104
|
} | undefined;
|
|
1980
|
-
}, NextUi extends import("
|
|
2105
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
1981
2106
|
min: <TThis_1 extends {
|
|
1982
2107
|
kind: "field";
|
|
1983
2108
|
readonly __fieldTypes?: {
|
|
1984
2109
|
input: string;
|
|
1985
2110
|
db: string;
|
|
1986
2111
|
output: string;
|
|
1987
|
-
meta: import("
|
|
1988
|
-
state: import("
|
|
2112
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2113
|
+
state: import("../index.js").FieldState;
|
|
1989
2114
|
} | undefined;
|
|
1990
|
-
meta: import("
|
|
1991
|
-
state: import("
|
|
2115
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2116
|
+
state: import("../index.js").FieldState;
|
|
1992
2117
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1993
2118
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1994
2119
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1995
2120
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1996
|
-
getConfig: () => import("
|
|
2121
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
1997
2122
|
getIsRequired: () => boolean;
|
|
1998
2123
|
getIsTranslatable: () => boolean;
|
|
1999
|
-
getVisibility: () => import("
|
|
2124
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2125
|
+
getIsDynamic: () => boolean;
|
|
2126
|
+
getDescription: () => string | undefined;
|
|
2000
2127
|
getCondition: () => {
|
|
2001
2128
|
field: string;
|
|
2002
2129
|
equals: unknown;
|
|
@@ -2034,26 +2161,28 @@ export declare const UserMfa: ContentType<{
|
|
|
2034
2161
|
lte?: number | undefined;
|
|
2035
2162
|
};
|
|
2036
2163
|
} | undefined;
|
|
2037
|
-
}>(this: TThis_1, length: number) => import("
|
|
2164
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2038
2165
|
max: <TThis_1 extends {
|
|
2039
2166
|
kind: "field";
|
|
2040
2167
|
readonly __fieldTypes?: {
|
|
2041
2168
|
input: string;
|
|
2042
2169
|
db: string;
|
|
2043
2170
|
output: string;
|
|
2044
|
-
meta: import("
|
|
2045
|
-
state: import("
|
|
2171
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2172
|
+
state: import("../index.js").FieldState;
|
|
2046
2173
|
} | undefined;
|
|
2047
|
-
meta: import("
|
|
2048
|
-
state: import("
|
|
2174
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2175
|
+
state: import("../index.js").FieldState;
|
|
2049
2176
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2050
2177
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2051
2178
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2052
2179
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2053
|
-
getConfig: () => import("
|
|
2180
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
2054
2181
|
getIsRequired: () => boolean;
|
|
2055
2182
|
getIsTranslatable: () => boolean;
|
|
2056
|
-
getVisibility: () => import("
|
|
2183
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2184
|
+
getIsDynamic: () => boolean;
|
|
2185
|
+
getDescription: () => string | undefined;
|
|
2057
2186
|
getCondition: () => {
|
|
2058
2187
|
field: string;
|
|
2059
2188
|
equals: unknown;
|
|
@@ -2091,104 +2220,116 @@ export declare const UserMfa: ContentType<{
|
|
|
2091
2220
|
lte?: number | undefined;
|
|
2092
2221
|
};
|
|
2093
2222
|
} | undefined;
|
|
2094
|
-
}>(this: TThis_1, length: number) => import("
|
|
2095
|
-
}, keyof import("
|
|
2096
|
-
role: import("
|
|
2223
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2224
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Password">, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").SetVisibility<import("../index.js").SetRequired<import("../index.js").DefaultFieldState>, "manager">>;
|
|
2225
|
+
role: import("../index.js").WithFieldState<{
|
|
2097
2226
|
kind: "field";
|
|
2098
2227
|
readonly __fieldTypes?: {
|
|
2099
|
-
input: import("
|
|
2100
|
-
db: import("
|
|
2228
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2229
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2101
2230
|
output: {
|
|
2102
2231
|
name: string;
|
|
2103
|
-
permissions: (
|
|
2232
|
+
permissions: (string | undefined)[];
|
|
2104
2233
|
_type: "ManagerRole";
|
|
2105
2234
|
_id: string;
|
|
2106
2235
|
_schemaVersion?: number | undefined;
|
|
2107
|
-
_visibility?: import("
|
|
2108
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2236
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2237
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2109
2238
|
_trashed?: boolean | undefined;
|
|
2110
2239
|
_revision?: number | undefined;
|
|
2240
|
+
_localeVariantGroupId?: string | undefined;
|
|
2241
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2111
2242
|
trashedAt?: Date | undefined;
|
|
2112
2243
|
createdAt?: Date | undefined;
|
|
2113
2244
|
updatedAt?: Date | undefined;
|
|
2114
2245
|
};
|
|
2115
|
-
meta: import("
|
|
2116
|
-
state: import("
|
|
2246
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2247
|
+
state: import("../index.js").DefaultFieldState;
|
|
2117
2248
|
} | undefined;
|
|
2118
|
-
meta: import("
|
|
2119
|
-
state: import("
|
|
2120
|
-
toZod: () => import("zod").ZodType<import("
|
|
2121
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
2122
|
-
getSchema: () => import("zod").ZodType<import("
|
|
2249
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2250
|
+
state: import("../index.js").DefaultFieldState;
|
|
2251
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
2252
|
+
getInputSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
|
|
2253
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
2123
2254
|
getOutputSchema: () => import("zod").ZodType<{
|
|
2124
2255
|
name: string;
|
|
2125
|
-
permissions: (
|
|
2256
|
+
permissions: (string | undefined)[];
|
|
2126
2257
|
_type: "ManagerRole";
|
|
2127
2258
|
_id: string;
|
|
2128
2259
|
_schemaVersion?: number | undefined;
|
|
2129
|
-
_visibility?: import("
|
|
2130
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2260
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2261
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2131
2262
|
_trashed?: boolean | undefined;
|
|
2132
2263
|
_revision?: number | undefined;
|
|
2264
|
+
_localeVariantGroupId?: string | undefined;
|
|
2265
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2133
2266
|
trashedAt?: Date | undefined;
|
|
2134
2267
|
createdAt?: Date | undefined;
|
|
2135
2268
|
updatedAt?: Date | undefined;
|
|
2136
2269
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
2137
2270
|
name: string;
|
|
2138
|
-
permissions: (
|
|
2271
|
+
permissions: (string | undefined)[];
|
|
2139
2272
|
_type: "ManagerRole";
|
|
2140
2273
|
_id: string;
|
|
2141
2274
|
_schemaVersion?: number | undefined;
|
|
2142
|
-
_visibility?: import("
|
|
2143
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2275
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2276
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2144
2277
|
_trashed?: boolean | undefined;
|
|
2145
2278
|
_revision?: number | undefined;
|
|
2279
|
+
_localeVariantGroupId?: string | undefined;
|
|
2280
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2146
2281
|
trashedAt?: Date | undefined;
|
|
2147
2282
|
createdAt?: Date | undefined;
|
|
2148
2283
|
updatedAt?: Date | undefined;
|
|
2149
2284
|
} | undefined, unknown>>;
|
|
2150
|
-
getConfig: () => import("
|
|
2285
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2151
2286
|
getIsRequired: () => false;
|
|
2152
2287
|
getIsTranslatable: () => false;
|
|
2153
2288
|
getVisibility: () => "all";
|
|
2289
|
+
getIsDynamic: () => true;
|
|
2290
|
+
getDescription: () => undefined;
|
|
2154
2291
|
getCondition: () => undefined;
|
|
2155
|
-
} & import("
|
|
2292
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
2156
2293
|
name: string;
|
|
2157
|
-
permissions: (
|
|
2294
|
+
permissions: (string | undefined)[];
|
|
2158
2295
|
_type: "ManagerRole";
|
|
2159
2296
|
_id: string;
|
|
2160
2297
|
_schemaVersion?: number | undefined;
|
|
2161
|
-
_visibility?: import("
|
|
2162
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2298
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2299
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2163
2300
|
_trashed?: boolean | undefined;
|
|
2164
2301
|
_revision?: number | undefined;
|
|
2302
|
+
_localeVariantGroupId?: string | undefined;
|
|
2303
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2165
2304
|
trashedAt?: Date | undefined;
|
|
2166
2305
|
trashedBy?: string | undefined;
|
|
2167
2306
|
createdAt?: Date | undefined;
|
|
2168
2307
|
updatedAt?: Date | undefined;
|
|
2169
2308
|
createdBy?: string | undefined;
|
|
2170
2309
|
updatedBy?: string | undefined;
|
|
2171
|
-
}, import("
|
|
2310
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
2172
2311
|
contentType: ContentType<{
|
|
2173
|
-
name: import("
|
|
2312
|
+
name: import("../index.js").WithFieldState<{
|
|
2174
2313
|
kind: "field";
|
|
2175
2314
|
readonly __fieldTypes?: {
|
|
2176
2315
|
input: string;
|
|
2177
2316
|
db: string;
|
|
2178
2317
|
output: string;
|
|
2179
|
-
meta: import("
|
|
2180
|
-
state: import("
|
|
2318
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2319
|
+
state: import("../index.js").DefaultFieldState;
|
|
2181
2320
|
} | undefined;
|
|
2182
|
-
meta: import("
|
|
2183
|
-
state: import("
|
|
2321
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2322
|
+
state: import("../index.js").DefaultFieldState;
|
|
2184
2323
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2185
2324
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2186
2325
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2187
2326
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2188
|
-
getConfig: () => import("
|
|
2327
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2189
2328
|
getIsRequired: () => false;
|
|
2190
2329
|
getIsTranslatable: () => false;
|
|
2191
2330
|
getVisibility: () => "all";
|
|
2331
|
+
getIsDynamic: () => true;
|
|
2332
|
+
getDescription: () => undefined;
|
|
2192
2333
|
getCondition: () => undefined;
|
|
2193
2334
|
} & {
|
|
2194
2335
|
type: <TThis_1 extends {
|
|
@@ -2197,19 +2338,21 @@ export declare const UserMfa: ContentType<{
|
|
|
2197
2338
|
input: string;
|
|
2198
2339
|
db: string;
|
|
2199
2340
|
output: string;
|
|
2200
|
-
meta: import("
|
|
2201
|
-
state: import("
|
|
2341
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2342
|
+
state: import("../index.js").FieldState;
|
|
2202
2343
|
} | undefined;
|
|
2203
|
-
meta: import("
|
|
2204
|
-
state: import("
|
|
2344
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2345
|
+
state: import("../index.js").FieldState;
|
|
2205
2346
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2206
2347
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2207
2348
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2208
2349
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2209
|
-
getConfig: () => import("
|
|
2350
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2210
2351
|
getIsRequired: () => boolean;
|
|
2211
2352
|
getIsTranslatable: () => boolean;
|
|
2212
|
-
getVisibility: () => import("
|
|
2353
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2354
|
+
getIsDynamic: () => boolean;
|
|
2355
|
+
getDescription: () => string | undefined;
|
|
2213
2356
|
getCondition: () => {
|
|
2214
2357
|
field: string;
|
|
2215
2358
|
equals: unknown;
|
|
@@ -2247,26 +2390,28 @@ export declare const UserMfa: ContentType<{
|
|
|
2247
2390
|
lte?: number | undefined;
|
|
2248
2391
|
};
|
|
2249
2392
|
} | undefined;
|
|
2250
|
-
}, NextUi extends import("
|
|
2393
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
2251
2394
|
min: <TThis_1 extends {
|
|
2252
2395
|
kind: "field";
|
|
2253
2396
|
readonly __fieldTypes?: {
|
|
2254
2397
|
input: string;
|
|
2255
2398
|
db: string;
|
|
2256
2399
|
output: string;
|
|
2257
|
-
meta: import("
|
|
2258
|
-
state: import("
|
|
2400
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2401
|
+
state: import("../index.js").FieldState;
|
|
2259
2402
|
} | undefined;
|
|
2260
|
-
meta: import("
|
|
2261
|
-
state: import("
|
|
2403
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2404
|
+
state: import("../index.js").FieldState;
|
|
2262
2405
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2263
2406
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2264
2407
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2265
2408
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2266
|
-
getConfig: () => import("
|
|
2409
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2267
2410
|
getIsRequired: () => boolean;
|
|
2268
2411
|
getIsTranslatable: () => boolean;
|
|
2269
|
-
getVisibility: () => import("
|
|
2412
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2413
|
+
getIsDynamic: () => boolean;
|
|
2414
|
+
getDescription: () => string | undefined;
|
|
2270
2415
|
getCondition: () => {
|
|
2271
2416
|
field: string;
|
|
2272
2417
|
equals: unknown;
|
|
@@ -2304,26 +2449,28 @@ export declare const UserMfa: ContentType<{
|
|
|
2304
2449
|
lte?: number | undefined;
|
|
2305
2450
|
};
|
|
2306
2451
|
} | undefined;
|
|
2307
|
-
}>(this: TThis_1, length: number) => import("
|
|
2452
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2308
2453
|
max: <TThis_1 extends {
|
|
2309
2454
|
kind: "field";
|
|
2310
2455
|
readonly __fieldTypes?: {
|
|
2311
2456
|
input: string;
|
|
2312
2457
|
db: string;
|
|
2313
2458
|
output: string;
|
|
2314
|
-
meta: import("
|
|
2315
|
-
state: import("
|
|
2459
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2460
|
+
state: import("../index.js").FieldState;
|
|
2316
2461
|
} | undefined;
|
|
2317
|
-
meta: import("
|
|
2318
|
-
state: import("
|
|
2462
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2463
|
+
state: import("../index.js").FieldState;
|
|
2319
2464
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2320
2465
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2321
2466
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2322
2467
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2323
|
-
getConfig: () => import("
|
|
2468
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2324
2469
|
getIsRequired: () => boolean;
|
|
2325
2470
|
getIsTranslatable: () => boolean;
|
|
2326
|
-
getVisibility: () => import("
|
|
2471
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2472
|
+
getIsDynamic: () => boolean;
|
|
2473
|
+
getDescription: () => string | undefined;
|
|
2327
2474
|
getCondition: () => {
|
|
2328
2475
|
field: string;
|
|
2329
2476
|
equals: unknown;
|
|
@@ -2361,69 +2508,79 @@ export declare const UserMfa: ContentType<{
|
|
|
2361
2508
|
lte?: number | undefined;
|
|
2362
2509
|
};
|
|
2363
2510
|
} | undefined;
|
|
2364
|
-
}>(this: TThis_1, length: number) => import("
|
|
2365
|
-
}, import("
|
|
2366
|
-
permissions: import("
|
|
2367
|
-
|
|
2511
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2512
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2513
|
+
permissions: import("../index.js").WithFieldState<import("../index.js").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("../index.js").SimpleListMeta<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>>, import("../index.js").DefaultFieldState> & import("../index.js").PopulatableFieldLike<(string | undefined)[], import("../index.js").DefaultFieldState> & {
|
|
2514
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
2515
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2516
|
+
}, "ManagerRole", undefined>;
|
|
2368
2517
|
only?: undefined;
|
|
2369
2518
|
multiple: <TThis_1 extends {
|
|
2370
2519
|
kind: "field";
|
|
2371
2520
|
readonly __fieldTypes?: {
|
|
2372
|
-
input: import("
|
|
2373
|
-
db: import("
|
|
2521
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2522
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2374
2523
|
output: {
|
|
2375
2524
|
name: string;
|
|
2376
|
-
permissions: (
|
|
2525
|
+
permissions: (string | undefined)[];
|
|
2377
2526
|
_type: "ManagerRole";
|
|
2378
2527
|
_id: string;
|
|
2379
2528
|
_schemaVersion?: number | undefined;
|
|
2380
|
-
_visibility?: import("
|
|
2381
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2529
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2530
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2382
2531
|
_trashed?: boolean | undefined;
|
|
2383
2532
|
_revision?: number | undefined;
|
|
2533
|
+
_localeVariantGroupId?: string | undefined;
|
|
2534
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2384
2535
|
trashedAt?: Date | undefined;
|
|
2385
2536
|
createdAt?: Date | undefined;
|
|
2386
2537
|
updatedAt?: Date | undefined;
|
|
2387
2538
|
};
|
|
2388
|
-
meta: import("
|
|
2389
|
-
state: import("
|
|
2539
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2540
|
+
state: import("../index.js").FieldState;
|
|
2390
2541
|
} | undefined;
|
|
2391
|
-
meta: import("
|
|
2392
|
-
state: import("
|
|
2393
|
-
toZod: () => import("zod").ZodType<import("
|
|
2394
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
2395
|
-
getSchema: () => import("zod").ZodType<import("
|
|
2542
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2543
|
+
state: import("../index.js").FieldState;
|
|
2544
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
2545
|
+
getInputSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
|
|
2546
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
2396
2547
|
getOutputSchema: () => import("zod").ZodType<{
|
|
2397
2548
|
name: string;
|
|
2398
|
-
permissions: (
|
|
2549
|
+
permissions: (string | undefined)[];
|
|
2399
2550
|
_type: "ManagerRole";
|
|
2400
2551
|
_id: string;
|
|
2401
2552
|
_schemaVersion?: number | undefined;
|
|
2402
|
-
_visibility?: import("
|
|
2403
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2553
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2554
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2404
2555
|
_trashed?: boolean | undefined;
|
|
2405
2556
|
_revision?: number | undefined;
|
|
2557
|
+
_localeVariantGroupId?: string | undefined;
|
|
2558
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2406
2559
|
trashedAt?: Date | undefined;
|
|
2407
2560
|
createdAt?: Date | undefined;
|
|
2408
2561
|
updatedAt?: Date | undefined;
|
|
2409
2562
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
2410
2563
|
name: string;
|
|
2411
|
-
permissions: (
|
|
2564
|
+
permissions: (string | undefined)[];
|
|
2412
2565
|
_type: "ManagerRole";
|
|
2413
2566
|
_id: string;
|
|
2414
2567
|
_schemaVersion?: number | undefined;
|
|
2415
|
-
_visibility?: import("
|
|
2416
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2568
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2569
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2417
2570
|
_trashed?: boolean | undefined;
|
|
2418
2571
|
_revision?: number | undefined;
|
|
2572
|
+
_localeVariantGroupId?: string | undefined;
|
|
2573
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2419
2574
|
trashedAt?: Date | undefined;
|
|
2420
2575
|
createdAt?: Date | undefined;
|
|
2421
2576
|
updatedAt?: Date | undefined;
|
|
2422
2577
|
} | undefined, unknown>>;
|
|
2423
|
-
getConfig: () => import("
|
|
2578
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2424
2579
|
getIsRequired: () => boolean;
|
|
2425
2580
|
getIsTranslatable: () => boolean;
|
|
2426
|
-
getVisibility: () => import("
|
|
2581
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2582
|
+
getIsDynamic: () => boolean;
|
|
2583
|
+
getDescription: () => string | undefined;
|
|
2427
2584
|
getCondition: () => {
|
|
2428
2585
|
field: string;
|
|
2429
2586
|
equals: unknown;
|
|
@@ -2461,26 +2618,28 @@ export declare const UserMfa: ContentType<{
|
|
|
2461
2618
|
lte?: number | undefined;
|
|
2462
2619
|
};
|
|
2463
2620
|
} | undefined;
|
|
2464
|
-
}>(this: TThis_1) => import("
|
|
2465
|
-
name: import("
|
|
2621
|
+
}>(this: TThis_1) => import("../index.js").SimpleListField<import("../index.js").RelationField<ContentType<{
|
|
2622
|
+
name: import("../index.js").WithFieldState<{
|
|
2466
2623
|
kind: "field";
|
|
2467
2624
|
readonly __fieldTypes?: {
|
|
2468
2625
|
input: string;
|
|
2469
2626
|
db: string;
|
|
2470
2627
|
output: string;
|
|
2471
|
-
meta: import("
|
|
2472
|
-
state: import("
|
|
2628
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2629
|
+
state: import("../index.js").DefaultFieldState;
|
|
2473
2630
|
} | undefined;
|
|
2474
|
-
meta: import("
|
|
2475
|
-
state: import("
|
|
2631
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2632
|
+
state: import("../index.js").DefaultFieldState;
|
|
2476
2633
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2477
2634
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2478
2635
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2479
2636
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2480
|
-
getConfig: () => import("
|
|
2637
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2481
2638
|
getIsRequired: () => false;
|
|
2482
2639
|
getIsTranslatable: () => false;
|
|
2483
2640
|
getVisibility: () => "all";
|
|
2641
|
+
getIsDynamic: () => true;
|
|
2642
|
+
getDescription: () => undefined;
|
|
2484
2643
|
getCondition: () => undefined;
|
|
2485
2644
|
} & {
|
|
2486
2645
|
type: <TThis_2 extends {
|
|
@@ -2489,19 +2648,21 @@ export declare const UserMfa: ContentType<{
|
|
|
2489
2648
|
input: string;
|
|
2490
2649
|
db: string;
|
|
2491
2650
|
output: string;
|
|
2492
|
-
meta: import("
|
|
2493
|
-
state: import("
|
|
2651
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2652
|
+
state: import("../index.js").FieldState;
|
|
2494
2653
|
} | undefined;
|
|
2495
|
-
meta: import("
|
|
2496
|
-
state: import("
|
|
2654
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2655
|
+
state: import("../index.js").FieldState;
|
|
2497
2656
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2498
2657
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2499
2658
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2500
2659
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2501
|
-
getConfig: () => import("
|
|
2660
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2502
2661
|
getIsRequired: () => boolean;
|
|
2503
2662
|
getIsTranslatable: () => boolean;
|
|
2504
|
-
getVisibility: () => import("
|
|
2663
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2664
|
+
getIsDynamic: () => boolean;
|
|
2665
|
+
getDescription: () => string | undefined;
|
|
2505
2666
|
getCondition: () => {
|
|
2506
2667
|
field: string;
|
|
2507
2668
|
equals: unknown;
|
|
@@ -2539,26 +2700,28 @@ export declare const UserMfa: ContentType<{
|
|
|
2539
2700
|
lte?: number | undefined;
|
|
2540
2701
|
};
|
|
2541
2702
|
} | undefined;
|
|
2542
|
-
}, NextUi extends import("
|
|
2703
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_2, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_2>>;
|
|
2543
2704
|
min: <TThis_2 extends {
|
|
2544
2705
|
kind: "field";
|
|
2545
2706
|
readonly __fieldTypes?: {
|
|
2546
2707
|
input: string;
|
|
2547
2708
|
db: string;
|
|
2548
2709
|
output: string;
|
|
2549
|
-
meta: import("
|
|
2550
|
-
state: import("
|
|
2710
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2711
|
+
state: import("../index.js").FieldState;
|
|
2551
2712
|
} | undefined;
|
|
2552
|
-
meta: import("
|
|
2553
|
-
state: import("
|
|
2713
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2714
|
+
state: import("../index.js").FieldState;
|
|
2554
2715
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2555
2716
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2556
2717
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2557
2718
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2558
|
-
getConfig: () => import("
|
|
2719
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2559
2720
|
getIsRequired: () => boolean;
|
|
2560
2721
|
getIsTranslatable: () => boolean;
|
|
2561
|
-
getVisibility: () => import("
|
|
2722
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2723
|
+
getIsDynamic: () => boolean;
|
|
2724
|
+
getDescription: () => string | undefined;
|
|
2562
2725
|
getCondition: () => {
|
|
2563
2726
|
field: string;
|
|
2564
2727
|
equals: unknown;
|
|
@@ -2596,26 +2759,28 @@ export declare const UserMfa: ContentType<{
|
|
|
2596
2759
|
lte?: number | undefined;
|
|
2597
2760
|
};
|
|
2598
2761
|
} | undefined;
|
|
2599
|
-
}>(this: TThis_2, length: number) => import("
|
|
2762
|
+
}>(this: TThis_2, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_2>>;
|
|
2600
2763
|
max: <TThis_2 extends {
|
|
2601
2764
|
kind: "field";
|
|
2602
2765
|
readonly __fieldTypes?: {
|
|
2603
2766
|
input: string;
|
|
2604
2767
|
db: string;
|
|
2605
2768
|
output: string;
|
|
2606
|
-
meta: import("
|
|
2607
|
-
state: import("
|
|
2769
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2770
|
+
state: import("../index.js").FieldState;
|
|
2608
2771
|
} | undefined;
|
|
2609
|
-
meta: import("
|
|
2610
|
-
state: import("
|
|
2772
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2773
|
+
state: import("../index.js").FieldState;
|
|
2611
2774
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2612
2775
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2613
2776
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2614
2777
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2615
|
-
getConfig: () => import("
|
|
2778
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2616
2779
|
getIsRequired: () => boolean;
|
|
2617
2780
|
getIsTranslatable: () => boolean;
|
|
2618
|
-
getVisibility: () => import("
|
|
2781
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2782
|
+
getIsDynamic: () => boolean;
|
|
2783
|
+
getDescription: () => string | undefined;
|
|
2619
2784
|
getCondition: () => {
|
|
2620
2785
|
field: string;
|
|
2621
2786
|
equals: unknown;
|
|
@@ -2653,68 +2818,74 @@ export declare const UserMfa: ContentType<{
|
|
|
2653
2818
|
lte?: number | undefined;
|
|
2654
2819
|
};
|
|
2655
2820
|
} | undefined;
|
|
2656
|
-
}>(this: TThis_2, length: number) => import("
|
|
2657
|
-
}, import("
|
|
2658
|
-
permissions: import("
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2821
|
+
}>(this: TThis_2, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_2>>;
|
|
2822
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2823
|
+
permissions: import("../index.js").WithFieldState<import("../index.js").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("../index.js").SimpleListMeta<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>>, import("../index.js").DefaultFieldState> & import("../index.js").PopulatableFieldLike<(string | undefined)[], import("../index.js").DefaultFieldState> & {
|
|
2824
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
2825
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2826
|
+
}, "ManagerRole", undefined>, undefined, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").FieldStateOf<TThis_1>>;
|
|
2827
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2828
|
+
avatarId: import("../index.js").StringField<"Id", import("../index.js").DefaultFieldState>;
|
|
2829
|
+
avatarKey: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
2830
|
+
avatarAccess: import("../index.js").SelectField<readonly ["public", "private"], false, import("../index.js").DefaultFieldState>;
|
|
2831
|
+
avatarUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
2832
|
+
avatarPreviewUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
2833
|
+
tutorialsEnabled: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
2834
|
+
tutorialsPromptedAt: import("../index.js").DateField<"DateTime", import("../index.js").DefaultFieldState>;
|
|
2835
|
+
seenTours: import("../index.js").SimpleListField<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>, import("../index.js").DefaultFieldState>;
|
|
2836
|
+
twoFactorEnabled: import("../index.js").WithFieldState<{
|
|
2670
2837
|
kind: "field";
|
|
2671
2838
|
readonly __fieldTypes?: {
|
|
2672
2839
|
input: boolean;
|
|
2673
2840
|
db: boolean;
|
|
2674
2841
|
output: boolean;
|
|
2675
|
-
meta: import("
|
|
2676
|
-
state: import("
|
|
2842
|
+
meta: import("../index.js").BooleanMeta;
|
|
2843
|
+
state: import("../index.js").DefaultFieldState;
|
|
2677
2844
|
} | undefined;
|
|
2678
|
-
meta: import("
|
|
2679
|
-
state: import("
|
|
2845
|
+
meta: import("../index.js").BooleanMeta;
|
|
2846
|
+
state: import("../index.js").DefaultFieldState;
|
|
2680
2847
|
toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
|
|
2681
2848
|
getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
|
|
2682
2849
|
getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
2683
2850
|
getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
2684
|
-
getConfig: () => import("
|
|
2851
|
+
getConfig: () => import("../index.js").BooleanMeta;
|
|
2685
2852
|
getIsRequired: () => false;
|
|
2686
2853
|
getIsTranslatable: () => false;
|
|
2687
2854
|
getVisibility: () => "all";
|
|
2855
|
+
getIsDynamic: () => true;
|
|
2856
|
+
getDescription: () => undefined;
|
|
2688
2857
|
getCondition: () => undefined;
|
|
2689
|
-
}, import("
|
|
2690
|
-
}, "ManagerUser">, undefined, import("
|
|
2691
|
-
}, import("
|
|
2692
|
-
enabled: import("
|
|
2858
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2859
|
+
}, "ManagerUser", undefined>, undefined, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").FieldStateOf<TThis>>;
|
|
2860
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2861
|
+
enabled: import("../index.js").WithFieldState<{
|
|
2693
2862
|
kind: "field";
|
|
2694
2863
|
readonly __fieldTypes?: {
|
|
2695
2864
|
input: boolean;
|
|
2696
2865
|
db: boolean;
|
|
2697
2866
|
output: boolean;
|
|
2698
|
-
meta: import("
|
|
2699
|
-
state: import("
|
|
2867
|
+
meta: import("../index.js").BooleanMeta;
|
|
2868
|
+
state: import("../index.js").DefaultFieldState;
|
|
2700
2869
|
} | undefined;
|
|
2701
|
-
meta: import("
|
|
2702
|
-
state: import("
|
|
2870
|
+
meta: import("../index.js").BooleanMeta;
|
|
2871
|
+
state: import("../index.js").DefaultFieldState;
|
|
2703
2872
|
toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
|
|
2704
2873
|
getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
|
|
2705
2874
|
getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
2706
2875
|
getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
2707
|
-
getConfig: () => import("
|
|
2876
|
+
getConfig: () => import("../index.js").BooleanMeta;
|
|
2708
2877
|
getIsRequired: () => false;
|
|
2709
2878
|
getIsTranslatable: () => false;
|
|
2710
2879
|
getVisibility: () => "all";
|
|
2880
|
+
getIsDynamic: () => true;
|
|
2881
|
+
getDescription: () => undefined;
|
|
2711
2882
|
getCondition: () => undefined;
|
|
2712
|
-
}, import("
|
|
2713
|
-
preferredMethod: import("
|
|
2714
|
-
totpSecret: import("
|
|
2715
|
-
totpSecretPending: import("
|
|
2716
|
-
totpVerifiedAt: import("
|
|
2717
|
-
}, "UserMfa">;
|
|
2883
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2884
|
+
preferredMethod: import("../index.js").SelectField<readonly ["totp", "webauthn"], false, import("../index.js").DefaultFieldState>;
|
|
2885
|
+
totpSecret: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
2886
|
+
totpSecretPending: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
2887
|
+
totpVerifiedAt: import("../index.js").DateField<"Date", import("../index.js").DefaultFieldState>;
|
|
2888
|
+
}, "UserMfa", undefined>;
|
|
2718
2889
|
export type UserMfa = typeof UserMfa;
|
|
2719
2890
|
export type UserMfaManager = DBOutput<UserMfa>;
|
|
2720
2891
|
//# sourceMappingURL=UserMfa.d.ts.map
|