@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,25 +1,27 @@
|
|
|
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 WebAuthnCredential: ContentType<{
|
|
4
|
-
token: import("
|
|
4
|
+
token: import("../index.js").WithFieldState<{
|
|
5
5
|
kind: "field";
|
|
6
6
|
readonly __fieldTypes?: {
|
|
7
7
|
input: string;
|
|
8
8
|
db: string;
|
|
9
9
|
output: string;
|
|
10
|
-
meta: import("
|
|
11
|
-
state: import("
|
|
10
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
11
|
+
state: import("../index.js").DefaultFieldState;
|
|
12
12
|
} | undefined;
|
|
13
|
-
meta: import("
|
|
14
|
-
state: import("
|
|
13
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
14
|
+
state: import("../index.js").DefaultFieldState;
|
|
15
15
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
16
16
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
17
17
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
18
18
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
19
|
-
getConfig: () => import("
|
|
19
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
20
20
|
getIsRequired: () => false;
|
|
21
21
|
getIsTranslatable: () => false;
|
|
22
22
|
getVisibility: () => "all";
|
|
23
|
+
getIsDynamic: () => true;
|
|
24
|
+
getDescription: () => undefined;
|
|
23
25
|
getCondition: () => undefined;
|
|
24
26
|
} & {
|
|
25
27
|
type: <TThis extends {
|
|
@@ -28,19 +30,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
28
30
|
input: string;
|
|
29
31
|
db: string;
|
|
30
32
|
output: string;
|
|
31
|
-
meta: import("
|
|
32
|
-
state: import("
|
|
33
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
34
|
+
state: import("../index.js").FieldState;
|
|
33
35
|
} | undefined;
|
|
34
|
-
meta: import("
|
|
35
|
-
state: import("
|
|
36
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
37
|
+
state: import("../index.js").FieldState;
|
|
36
38
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
37
39
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
38
40
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
39
41
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
40
|
-
getConfig: () => import("
|
|
42
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
41
43
|
getIsRequired: () => boolean;
|
|
42
44
|
getIsTranslatable: () => boolean;
|
|
43
|
-
getVisibility: () => import("
|
|
45
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
46
|
+
getIsDynamic: () => boolean;
|
|
47
|
+
getDescription: () => string | undefined;
|
|
44
48
|
getCondition: () => {
|
|
45
49
|
field: string;
|
|
46
50
|
equals: unknown;
|
|
@@ -78,26 +82,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
78
82
|
lte?: number | undefined;
|
|
79
83
|
};
|
|
80
84
|
} | undefined;
|
|
81
|
-
}, NextUi extends import("
|
|
85
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
82
86
|
min: <TThis extends {
|
|
83
87
|
kind: "field";
|
|
84
88
|
readonly __fieldTypes?: {
|
|
85
89
|
input: string;
|
|
86
90
|
db: string;
|
|
87
91
|
output: string;
|
|
88
|
-
meta: import("
|
|
89
|
-
state: import("
|
|
92
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
93
|
+
state: import("../index.js").FieldState;
|
|
90
94
|
} | undefined;
|
|
91
|
-
meta: import("
|
|
92
|
-
state: import("
|
|
95
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
96
|
+
state: import("../index.js").FieldState;
|
|
93
97
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
94
98
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
95
99
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
96
100
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
97
|
-
getConfig: () => import("
|
|
101
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
98
102
|
getIsRequired: () => boolean;
|
|
99
103
|
getIsTranslatable: () => boolean;
|
|
100
|
-
getVisibility: () => import("
|
|
104
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
105
|
+
getIsDynamic: () => boolean;
|
|
106
|
+
getDescription: () => string | undefined;
|
|
101
107
|
getCondition: () => {
|
|
102
108
|
field: string;
|
|
103
109
|
equals: unknown;
|
|
@@ -135,26 +141,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
135
141
|
lte?: number | undefined;
|
|
136
142
|
};
|
|
137
143
|
} | undefined;
|
|
138
|
-
}>(this: TThis, length: number) => import("
|
|
144
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
139
145
|
max: <TThis extends {
|
|
140
146
|
kind: "field";
|
|
141
147
|
readonly __fieldTypes?: {
|
|
142
148
|
input: string;
|
|
143
149
|
db: string;
|
|
144
150
|
output: string;
|
|
145
|
-
meta: import("
|
|
146
|
-
state: import("
|
|
151
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
152
|
+
state: import("../index.js").FieldState;
|
|
147
153
|
} | undefined;
|
|
148
|
-
meta: import("
|
|
149
|
-
state: import("
|
|
154
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
155
|
+
state: import("../index.js").FieldState;
|
|
150
156
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
151
157
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
152
158
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
153
159
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
154
|
-
getConfig: () => import("
|
|
160
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
155
161
|
getIsRequired: () => boolean;
|
|
156
162
|
getIsTranslatable: () => boolean;
|
|
157
|
-
getVisibility: () => import("
|
|
163
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
164
|
+
getIsDynamic: () => boolean;
|
|
165
|
+
getDescription: () => string | undefined;
|
|
158
166
|
getCondition: () => {
|
|
159
167
|
field: string;
|
|
160
168
|
equals: unknown;
|
|
@@ -192,26 +200,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
192
200
|
lte?: number | undefined;
|
|
193
201
|
};
|
|
194
202
|
} | undefined;
|
|
195
|
-
}>(this: TThis, length: number) => import("
|
|
196
|
-
}, import("
|
|
197
|
-
user: import("
|
|
203
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
204
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
205
|
+
user: import("../index.js").WithFieldState<{
|
|
198
206
|
kind: "field";
|
|
199
207
|
readonly __fieldTypes?: {
|
|
200
|
-
input: import("
|
|
201
|
-
db: import("
|
|
208
|
+
input: import("../index.js").RelationExisting<"ManagerUser">;
|
|
209
|
+
db: import("../index.js").RelationExisting<"ManagerUser">;
|
|
202
210
|
output: {
|
|
203
211
|
user: string;
|
|
204
212
|
email: string;
|
|
205
213
|
role: {
|
|
206
214
|
name: string;
|
|
207
|
-
permissions: (
|
|
215
|
+
permissions: (string | undefined)[];
|
|
208
216
|
_type: "ManagerRole";
|
|
209
217
|
_id: string;
|
|
210
218
|
_schemaVersion?: number | undefined;
|
|
211
|
-
_visibility?: import("
|
|
212
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
219
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
220
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
213
221
|
_trashed?: boolean | undefined;
|
|
214
222
|
_revision?: number | undefined;
|
|
223
|
+
_localeVariantGroupId?: string | undefined;
|
|
224
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
215
225
|
trashedAt?: Date | undefined;
|
|
216
226
|
createdAt?: Date | undefined;
|
|
217
227
|
updatedAt?: Date | undefined;
|
|
@@ -219,6 +229,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
219
229
|
twoFactorEnabled: boolean;
|
|
220
230
|
_type: "ManagerUser";
|
|
221
231
|
_id: string;
|
|
232
|
+
name?: string | undefined;
|
|
222
233
|
avatarId?: string | undefined;
|
|
223
234
|
avatarKey?: string | undefined;
|
|
224
235
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -228,35 +239,39 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
228
239
|
tutorialsPromptedAt?: Date | undefined;
|
|
229
240
|
seenTours?: (string | undefined)[] | undefined;
|
|
230
241
|
_schemaVersion?: number | undefined;
|
|
231
|
-
_visibility?: import("
|
|
232
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
242
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
243
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
233
244
|
_trashed?: boolean | undefined;
|
|
234
245
|
_revision?: number | undefined;
|
|
246
|
+
_localeVariantGroupId?: string | undefined;
|
|
247
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
235
248
|
trashedAt?: Date | undefined;
|
|
236
249
|
createdAt?: Date | undefined;
|
|
237
250
|
updatedAt?: Date | undefined;
|
|
238
251
|
};
|
|
239
|
-
meta: import("
|
|
240
|
-
state: import("
|
|
252
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
253
|
+
state: import("../index.js").DefaultFieldState;
|
|
241
254
|
} | undefined;
|
|
242
|
-
meta: import("
|
|
243
|
-
state: import("
|
|
244
|
-
toZod: () => import("zod").ZodType<import("
|
|
245
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
246
|
-
getSchema: () => import("zod").ZodType<import("
|
|
255
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
256
|
+
state: import("../index.js").DefaultFieldState;
|
|
257
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser">, unknown>>;
|
|
258
|
+
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>>;
|
|
259
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown>>;
|
|
247
260
|
getOutputSchema: () => import("zod").ZodType<{
|
|
248
261
|
user: string;
|
|
249
262
|
email: string;
|
|
250
263
|
role: {
|
|
251
264
|
name: string;
|
|
252
|
-
permissions: (
|
|
265
|
+
permissions: (string | undefined)[];
|
|
253
266
|
_type: "ManagerRole";
|
|
254
267
|
_id: string;
|
|
255
268
|
_schemaVersion?: number | undefined;
|
|
256
|
-
_visibility?: import("
|
|
257
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
269
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
270
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
258
271
|
_trashed?: boolean | undefined;
|
|
259
272
|
_revision?: number | undefined;
|
|
273
|
+
_localeVariantGroupId?: string | undefined;
|
|
274
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
260
275
|
trashedAt?: Date | undefined;
|
|
261
276
|
createdAt?: Date | undefined;
|
|
262
277
|
updatedAt?: Date | undefined;
|
|
@@ -264,6 +279,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
264
279
|
twoFactorEnabled: boolean;
|
|
265
280
|
_type: "ManagerUser";
|
|
266
281
|
_id: string;
|
|
282
|
+
name?: string | undefined;
|
|
267
283
|
avatarId?: string | undefined;
|
|
268
284
|
avatarKey?: string | undefined;
|
|
269
285
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -273,10 +289,12 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
273
289
|
tutorialsPromptedAt?: Date | undefined;
|
|
274
290
|
seenTours?: (string | undefined)[] | undefined;
|
|
275
291
|
_schemaVersion?: number | undefined;
|
|
276
|
-
_visibility?: import("
|
|
277
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
292
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
293
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
278
294
|
_trashed?: boolean | undefined;
|
|
279
295
|
_revision?: number | undefined;
|
|
296
|
+
_localeVariantGroupId?: string | undefined;
|
|
297
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
280
298
|
trashedAt?: Date | undefined;
|
|
281
299
|
createdAt?: Date | undefined;
|
|
282
300
|
updatedAt?: Date | undefined;
|
|
@@ -285,14 +303,16 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
285
303
|
email: string;
|
|
286
304
|
role: {
|
|
287
305
|
name: string;
|
|
288
|
-
permissions: (
|
|
306
|
+
permissions: (string | undefined)[];
|
|
289
307
|
_type: "ManagerRole";
|
|
290
308
|
_id: string;
|
|
291
309
|
_schemaVersion?: number | undefined;
|
|
292
|
-
_visibility?: import("
|
|
293
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
310
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
311
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
294
312
|
_trashed?: boolean | undefined;
|
|
295
313
|
_revision?: number | undefined;
|
|
314
|
+
_localeVariantGroupId?: string | undefined;
|
|
315
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
296
316
|
trashedAt?: Date | undefined;
|
|
297
317
|
createdAt?: Date | undefined;
|
|
298
318
|
updatedAt?: Date | undefined;
|
|
@@ -300,6 +320,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
300
320
|
twoFactorEnabled: boolean;
|
|
301
321
|
_type: "ManagerUser";
|
|
302
322
|
_id: string;
|
|
323
|
+
name?: string | undefined;
|
|
303
324
|
avatarId?: string | undefined;
|
|
304
325
|
avatarKey?: string | undefined;
|
|
305
326
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -309,33 +330,39 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
309
330
|
tutorialsPromptedAt?: Date | undefined;
|
|
310
331
|
seenTours?: (string | undefined)[] | undefined;
|
|
311
332
|
_schemaVersion?: number | undefined;
|
|
312
|
-
_visibility?: import("
|
|
313
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
333
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
334
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
314
335
|
_trashed?: boolean | undefined;
|
|
315
336
|
_revision?: number | undefined;
|
|
337
|
+
_localeVariantGroupId?: string | undefined;
|
|
338
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
316
339
|
trashedAt?: Date | undefined;
|
|
317
340
|
createdAt?: Date | undefined;
|
|
318
341
|
updatedAt?: Date | undefined;
|
|
319
342
|
} | undefined, unknown>>;
|
|
320
|
-
getConfig: () => import("
|
|
343
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
321
344
|
getIsRequired: () => false;
|
|
322
345
|
getIsTranslatable: () => false;
|
|
323
346
|
getVisibility: () => "all";
|
|
347
|
+
getIsDynamic: () => true;
|
|
348
|
+
getDescription: () => undefined;
|
|
324
349
|
getCondition: () => undefined;
|
|
325
|
-
} & import("
|
|
350
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
326
351
|
user: string;
|
|
327
352
|
email: string;
|
|
328
353
|
password: string;
|
|
329
354
|
role: {
|
|
330
355
|
name: string;
|
|
331
|
-
permissions: (
|
|
356
|
+
permissions: (string | undefined)[];
|
|
332
357
|
_type: "ManagerRole";
|
|
333
358
|
_id: string;
|
|
334
359
|
_schemaVersion?: number | undefined;
|
|
335
|
-
_visibility?: import("
|
|
336
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
360
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
361
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
337
362
|
_trashed?: boolean | undefined;
|
|
338
363
|
_revision?: number | undefined;
|
|
364
|
+
_localeVariantGroupId?: string | undefined;
|
|
365
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
339
366
|
trashedAt?: Date | undefined;
|
|
340
367
|
trashedBy?: string | undefined;
|
|
341
368
|
createdAt?: Date | undefined;
|
|
@@ -346,6 +373,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
346
373
|
twoFactorEnabled: boolean;
|
|
347
374
|
_type: "ManagerUser";
|
|
348
375
|
_id: string;
|
|
376
|
+
name?: string | undefined;
|
|
349
377
|
avatarId?: string | undefined;
|
|
350
378
|
avatarKey?: string | undefined;
|
|
351
379
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -355,37 +383,42 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
355
383
|
tutorialsPromptedAt?: Date | undefined;
|
|
356
384
|
seenTours?: (string | undefined)[] | undefined;
|
|
357
385
|
_schemaVersion?: number | undefined;
|
|
358
|
-
_visibility?: import("
|
|
359
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
386
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
387
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
360
388
|
_trashed?: boolean | undefined;
|
|
361
389
|
_revision?: number | undefined;
|
|
390
|
+
_localeVariantGroupId?: string | undefined;
|
|
391
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
362
392
|
trashedAt?: Date | undefined;
|
|
363
393
|
trashedBy?: string | undefined;
|
|
364
394
|
createdAt?: Date | undefined;
|
|
365
395
|
updatedAt?: Date | undefined;
|
|
366
396
|
createdBy?: string | undefined;
|
|
367
397
|
updatedBy?: string | undefined;
|
|
368
|
-
}, import("
|
|
398
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
369
399
|
contentType: ContentType<{
|
|
370
|
-
|
|
400
|
+
name: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
401
|
+
user: 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<"Text">;
|
|
408
|
+
state: import("../index.js").DefaultFieldState;
|
|
378
409
|
} | undefined;
|
|
379
|
-
meta: import("
|
|
380
|
-
state: import("
|
|
410
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: 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<"Text">;
|
|
431
|
+
state: import("../index.js").FieldState;
|
|
399
432
|
} | undefined;
|
|
400
|
-
meta: import("
|
|
401
|
-
state: import("
|
|
433
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: 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<"Text">;
|
|
490
|
+
state: import("../index.js").FieldState;
|
|
456
491
|
} | undefined;
|
|
457
|
-
meta: import("
|
|
458
|
-
state: import("
|
|
492
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: 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<"Text", 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<"Text">;
|
|
549
|
+
state: import("../index.js").FieldState;
|
|
513
550
|
} | undefined;
|
|
514
|
-
meta: import("
|
|
515
|
-
state: import("
|
|
551
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: ContentType<{
|
|
|
558
597
|
lte?: number | undefined;
|
|
559
598
|
};
|
|
560
599
|
} | undefined;
|
|
561
|
-
}>(this: TThis, length: number) => import("
|
|
562
|
-
}, import("
|
|
563
|
-
email: import("
|
|
600
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
601
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
602
|
+
email: import("../index.js").WithFieldState<{
|
|
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<"Email">;
|
|
609
|
+
state: import("../index.js").DefaultFieldState;
|
|
571
610
|
} | undefined;
|
|
572
|
-
meta: import("
|
|
573
|
-
state: import("
|
|
611
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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 WebAuthnCredential: 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<"Email">;
|
|
632
|
+
state: import("../index.js").FieldState;
|
|
592
633
|
} | undefined;
|
|
593
|
-
meta: import("
|
|
594
|
-
state: import("
|
|
634
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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 WebAuthnCredential: 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<"Email">;
|
|
691
|
+
state: import("../index.js").FieldState;
|
|
649
692
|
} | undefined;
|
|
650
|
-
meta: import("
|
|
651
|
-
state: import("
|
|
693
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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 WebAuthnCredential: 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<"Email", 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<"Email">;
|
|
750
|
+
state: import("../index.js").FieldState;
|
|
706
751
|
} | undefined;
|
|
707
|
-
meta: import("
|
|
708
|
-
state: import("
|
|
752
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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,27 +798,29 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
751
798
|
lte?: number | undefined;
|
|
752
799
|
};
|
|
753
800
|
} | undefined;
|
|
754
|
-
}>(this: TThis, length: number) => import("
|
|
755
|
-
}, import("
|
|
756
|
-
password: import("
|
|
801
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Email", import("../index.js").FieldStateOf<TThis>>;
|
|
802
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
803
|
+
password: import("../index.js").WithFieldState<Omit<{
|
|
757
804
|
kind: "field";
|
|
758
805
|
readonly __fieldTypes?: {
|
|
759
806
|
input: string;
|
|
760
807
|
db: string;
|
|
761
808
|
output: string;
|
|
762
|
-
meta: import("
|
|
763
|
-
state: import("
|
|
809
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
810
|
+
state: import("../index.js").DefaultFieldState;
|
|
764
811
|
} | undefined;
|
|
765
|
-
meta: import("
|
|
766
|
-
state: import("
|
|
812
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
813
|
+
state: import("../index.js").DefaultFieldState;
|
|
767
814
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
768
815
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
769
816
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
770
817
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
771
|
-
getConfig: () => import("
|
|
818
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
772
819
|
getIsRequired: () => false;
|
|
773
820
|
getIsTranslatable: () => false;
|
|
774
821
|
getVisibility: () => "all";
|
|
822
|
+
getIsDynamic: () => true;
|
|
823
|
+
getDescription: () => undefined;
|
|
775
824
|
getCondition: () => undefined;
|
|
776
825
|
} & {
|
|
777
826
|
type: <TThis extends {
|
|
@@ -780,19 +829,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
780
829
|
input: string;
|
|
781
830
|
db: string;
|
|
782
831
|
output: string;
|
|
783
|
-
meta: import("
|
|
784
|
-
state: import("
|
|
832
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
833
|
+
state: import("../index.js").FieldState;
|
|
785
834
|
} | undefined;
|
|
786
|
-
meta: import("
|
|
787
|
-
state: import("
|
|
835
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
836
|
+
state: import("../index.js").FieldState;
|
|
788
837
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
789
838
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
790
839
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
791
840
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
792
|
-
getConfig: () => import("
|
|
841
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
793
842
|
getIsRequired: () => boolean;
|
|
794
843
|
getIsTranslatable: () => boolean;
|
|
795
|
-
getVisibility: () => import("
|
|
844
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
845
|
+
getIsDynamic: () => boolean;
|
|
846
|
+
getDescription: () => string | undefined;
|
|
796
847
|
getCondition: () => {
|
|
797
848
|
field: string;
|
|
798
849
|
equals: unknown;
|
|
@@ -830,26 +881,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
830
881
|
lte?: number | undefined;
|
|
831
882
|
};
|
|
832
883
|
} | undefined;
|
|
833
|
-
}, NextUi extends import("
|
|
884
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
834
885
|
min: <TThis extends {
|
|
835
886
|
kind: "field";
|
|
836
887
|
readonly __fieldTypes?: {
|
|
837
888
|
input: string;
|
|
838
889
|
db: string;
|
|
839
890
|
output: string;
|
|
840
|
-
meta: import("
|
|
841
|
-
state: import("
|
|
891
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
892
|
+
state: import("../index.js").FieldState;
|
|
842
893
|
} | undefined;
|
|
843
|
-
meta: import("
|
|
844
|
-
state: import("
|
|
894
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
895
|
+
state: import("../index.js").FieldState;
|
|
845
896
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
846
897
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
847
898
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
848
899
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
849
|
-
getConfig: () => import("
|
|
900
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
850
901
|
getIsRequired: () => boolean;
|
|
851
902
|
getIsTranslatable: () => boolean;
|
|
852
|
-
getVisibility: () => import("
|
|
903
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
904
|
+
getIsDynamic: () => boolean;
|
|
905
|
+
getDescription: () => string | undefined;
|
|
853
906
|
getCondition: () => {
|
|
854
907
|
field: string;
|
|
855
908
|
equals: unknown;
|
|
@@ -887,26 +940,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
887
940
|
lte?: number | undefined;
|
|
888
941
|
};
|
|
889
942
|
} | undefined;
|
|
890
|
-
}>(this: TThis, length: number) => import("
|
|
943
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis>>;
|
|
891
944
|
max: <TThis extends {
|
|
892
945
|
kind: "field";
|
|
893
946
|
readonly __fieldTypes?: {
|
|
894
947
|
input: string;
|
|
895
948
|
db: string;
|
|
896
949
|
output: string;
|
|
897
|
-
meta: import("
|
|
898
|
-
state: import("
|
|
950
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
951
|
+
state: import("../index.js").FieldState;
|
|
899
952
|
} | undefined;
|
|
900
|
-
meta: import("
|
|
901
|
-
state: import("
|
|
953
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
954
|
+
state: import("../index.js").FieldState;
|
|
902
955
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
903
956
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
904
957
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
905
958
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
906
|
-
getConfig: () => import("
|
|
959
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
907
960
|
getIsRequired: () => boolean;
|
|
908
961
|
getIsTranslatable: () => boolean;
|
|
909
|
-
getVisibility: () => import("
|
|
962
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
963
|
+
getIsDynamic: () => boolean;
|
|
964
|
+
getDescription: () => string | undefined;
|
|
910
965
|
getCondition: () => {
|
|
911
966
|
field: string;
|
|
912
967
|
equals: unknown;
|
|
@@ -944,104 +999,116 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
944
999
|
lte?: number | undefined;
|
|
945
1000
|
};
|
|
946
1001
|
} | undefined;
|
|
947
|
-
}>(this: TThis, length: number) => import("
|
|
948
|
-
}, keyof import("
|
|
949
|
-
role: import("
|
|
1002
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis>>;
|
|
1003
|
+
}, 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">>;
|
|
1004
|
+
role: import("../index.js").WithFieldState<{
|
|
950
1005
|
kind: "field";
|
|
951
1006
|
readonly __fieldTypes?: {
|
|
952
|
-
input: import("
|
|
953
|
-
db: import("
|
|
1007
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
1008
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
954
1009
|
output: {
|
|
955
1010
|
name: string;
|
|
956
|
-
permissions: (
|
|
1011
|
+
permissions: (string | undefined)[];
|
|
957
1012
|
_type: "ManagerRole";
|
|
958
1013
|
_id: string;
|
|
959
1014
|
_schemaVersion?: number | undefined;
|
|
960
|
-
_visibility?: import("
|
|
961
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1015
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1016
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
962
1017
|
_trashed?: boolean | undefined;
|
|
963
1018
|
_revision?: number | undefined;
|
|
1019
|
+
_localeVariantGroupId?: string | undefined;
|
|
1020
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
964
1021
|
trashedAt?: Date | undefined;
|
|
965
1022
|
createdAt?: Date | undefined;
|
|
966
1023
|
updatedAt?: Date | undefined;
|
|
967
1024
|
};
|
|
968
|
-
meta: import("
|
|
969
|
-
state: import("
|
|
1025
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1026
|
+
state: import("../index.js").DefaultFieldState;
|
|
970
1027
|
} | undefined;
|
|
971
|
-
meta: import("
|
|
972
|
-
state: import("
|
|
973
|
-
toZod: () => import("zod").ZodType<import("
|
|
974
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
975
|
-
getSchema: () => import("zod").ZodType<import("
|
|
1028
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1029
|
+
state: import("../index.js").DefaultFieldState;
|
|
1030
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
1031
|
+
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>>;
|
|
1032
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
976
1033
|
getOutputSchema: () => import("zod").ZodType<{
|
|
977
1034
|
name: string;
|
|
978
|
-
permissions: (
|
|
1035
|
+
permissions: (string | undefined)[];
|
|
979
1036
|
_type: "ManagerRole";
|
|
980
1037
|
_id: string;
|
|
981
1038
|
_schemaVersion?: number | undefined;
|
|
982
|
-
_visibility?: import("
|
|
983
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1039
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1040
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
984
1041
|
_trashed?: boolean | undefined;
|
|
985
1042
|
_revision?: number | undefined;
|
|
1043
|
+
_localeVariantGroupId?: string | undefined;
|
|
1044
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
986
1045
|
trashedAt?: Date | undefined;
|
|
987
1046
|
createdAt?: Date | undefined;
|
|
988
1047
|
updatedAt?: Date | undefined;
|
|
989
1048
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
990
1049
|
name: string;
|
|
991
|
-
permissions: (
|
|
1050
|
+
permissions: (string | undefined)[];
|
|
992
1051
|
_type: "ManagerRole";
|
|
993
1052
|
_id: string;
|
|
994
1053
|
_schemaVersion?: number | undefined;
|
|
995
|
-
_visibility?: import("
|
|
996
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1054
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1055
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
997
1056
|
_trashed?: boolean | undefined;
|
|
998
1057
|
_revision?: number | undefined;
|
|
1058
|
+
_localeVariantGroupId?: string | undefined;
|
|
1059
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
999
1060
|
trashedAt?: Date | undefined;
|
|
1000
1061
|
createdAt?: Date | undefined;
|
|
1001
1062
|
updatedAt?: Date | undefined;
|
|
1002
1063
|
} | undefined, unknown>>;
|
|
1003
|
-
getConfig: () => import("
|
|
1064
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1004
1065
|
getIsRequired: () => false;
|
|
1005
1066
|
getIsTranslatable: () => false;
|
|
1006
1067
|
getVisibility: () => "all";
|
|
1068
|
+
getIsDynamic: () => true;
|
|
1069
|
+
getDescription: () => undefined;
|
|
1007
1070
|
getCondition: () => undefined;
|
|
1008
|
-
} & import("
|
|
1071
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
1009
1072
|
name: string;
|
|
1010
|
-
permissions: (
|
|
1073
|
+
permissions: (string | undefined)[];
|
|
1011
1074
|
_type: "ManagerRole";
|
|
1012
1075
|
_id: string;
|
|
1013
1076
|
_schemaVersion?: number | undefined;
|
|
1014
|
-
_visibility?: import("
|
|
1015
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1077
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1078
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1016
1079
|
_trashed?: boolean | undefined;
|
|
1017
1080
|
_revision?: number | undefined;
|
|
1081
|
+
_localeVariantGroupId?: string | undefined;
|
|
1082
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1018
1083
|
trashedAt?: Date | undefined;
|
|
1019
1084
|
trashedBy?: string | undefined;
|
|
1020
1085
|
createdAt?: Date | undefined;
|
|
1021
1086
|
updatedAt?: Date | undefined;
|
|
1022
1087
|
createdBy?: string | undefined;
|
|
1023
1088
|
updatedBy?: string | undefined;
|
|
1024
|
-
}, import("
|
|
1089
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
1025
1090
|
contentType: ContentType<{
|
|
1026
|
-
name: import("
|
|
1091
|
+
name: import("../index.js").WithFieldState<{
|
|
1027
1092
|
kind: "field";
|
|
1028
1093
|
readonly __fieldTypes?: {
|
|
1029
1094
|
input: string;
|
|
1030
1095
|
db: string;
|
|
1031
1096
|
output: string;
|
|
1032
|
-
meta: import("
|
|
1033
|
-
state: import("
|
|
1097
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1098
|
+
state: import("../index.js").DefaultFieldState;
|
|
1034
1099
|
} | undefined;
|
|
1035
|
-
meta: import("
|
|
1036
|
-
state: import("
|
|
1100
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1101
|
+
state: import("../index.js").DefaultFieldState;
|
|
1037
1102
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1038
1103
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1039
1104
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1040
1105
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1041
|
-
getConfig: () => import("
|
|
1106
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1042
1107
|
getIsRequired: () => false;
|
|
1043
1108
|
getIsTranslatable: () => false;
|
|
1044
1109
|
getVisibility: () => "all";
|
|
1110
|
+
getIsDynamic: () => true;
|
|
1111
|
+
getDescription: () => undefined;
|
|
1045
1112
|
getCondition: () => undefined;
|
|
1046
1113
|
} & {
|
|
1047
1114
|
type: <TThis extends {
|
|
@@ -1050,19 +1117,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1050
1117
|
input: string;
|
|
1051
1118
|
db: string;
|
|
1052
1119
|
output: string;
|
|
1053
|
-
meta: import("
|
|
1054
|
-
state: import("
|
|
1120
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1121
|
+
state: import("../index.js").FieldState;
|
|
1055
1122
|
} | undefined;
|
|
1056
|
-
meta: import("
|
|
1057
|
-
state: import("
|
|
1123
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1124
|
+
state: import("../index.js").FieldState;
|
|
1058
1125
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1059
1126
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1060
1127
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1061
1128
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1062
|
-
getConfig: () => import("
|
|
1129
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1063
1130
|
getIsRequired: () => boolean;
|
|
1064
1131
|
getIsTranslatable: () => boolean;
|
|
1065
|
-
getVisibility: () => import("
|
|
1132
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1133
|
+
getIsDynamic: () => boolean;
|
|
1134
|
+
getDescription: () => string | undefined;
|
|
1066
1135
|
getCondition: () => {
|
|
1067
1136
|
field: string;
|
|
1068
1137
|
equals: unknown;
|
|
@@ -1100,26 +1169,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1100
1169
|
lte?: number | undefined;
|
|
1101
1170
|
};
|
|
1102
1171
|
} | undefined;
|
|
1103
|
-
}, NextUi extends import("
|
|
1172
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1104
1173
|
min: <TThis extends {
|
|
1105
1174
|
kind: "field";
|
|
1106
1175
|
readonly __fieldTypes?: {
|
|
1107
1176
|
input: string;
|
|
1108
1177
|
db: string;
|
|
1109
1178
|
output: string;
|
|
1110
|
-
meta: import("
|
|
1111
|
-
state: import("
|
|
1179
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1180
|
+
state: import("../index.js").FieldState;
|
|
1112
1181
|
} | undefined;
|
|
1113
|
-
meta: import("
|
|
1114
|
-
state: import("
|
|
1182
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1183
|
+
state: import("../index.js").FieldState;
|
|
1115
1184
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1116
1185
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1117
1186
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1118
1187
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1119
|
-
getConfig: () => import("
|
|
1188
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1120
1189
|
getIsRequired: () => boolean;
|
|
1121
1190
|
getIsTranslatable: () => boolean;
|
|
1122
|
-
getVisibility: () => import("
|
|
1191
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1192
|
+
getIsDynamic: () => boolean;
|
|
1193
|
+
getDescription: () => string | undefined;
|
|
1123
1194
|
getCondition: () => {
|
|
1124
1195
|
field: string;
|
|
1125
1196
|
equals: unknown;
|
|
@@ -1157,26 +1228,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1157
1228
|
lte?: number | undefined;
|
|
1158
1229
|
};
|
|
1159
1230
|
} | undefined;
|
|
1160
|
-
}>(this: TThis, length: number) => import("
|
|
1231
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1161
1232
|
max: <TThis extends {
|
|
1162
1233
|
kind: "field";
|
|
1163
1234
|
readonly __fieldTypes?: {
|
|
1164
1235
|
input: string;
|
|
1165
1236
|
db: string;
|
|
1166
1237
|
output: string;
|
|
1167
|
-
meta: import("
|
|
1168
|
-
state: import("
|
|
1238
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1239
|
+
state: import("../index.js").FieldState;
|
|
1169
1240
|
} | undefined;
|
|
1170
|
-
meta: import("
|
|
1171
|
-
state: import("
|
|
1241
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1242
|
+
state: import("../index.js").FieldState;
|
|
1172
1243
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1173
1244
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1174
1245
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1175
1246
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1176
|
-
getConfig: () => import("
|
|
1247
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1177
1248
|
getIsRequired: () => boolean;
|
|
1178
1249
|
getIsTranslatable: () => boolean;
|
|
1179
|
-
getVisibility: () => import("
|
|
1250
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1251
|
+
getIsDynamic: () => boolean;
|
|
1252
|
+
getDescription: () => string | undefined;
|
|
1180
1253
|
getCondition: () => {
|
|
1181
1254
|
field: string;
|
|
1182
1255
|
equals: unknown;
|
|
@@ -1214,69 +1287,79 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1214
1287
|
lte?: number | undefined;
|
|
1215
1288
|
};
|
|
1216
1289
|
} | undefined;
|
|
1217
|
-
}>(this: TThis, length: number) => import("
|
|
1218
|
-
}, import("
|
|
1219
|
-
permissions: import("
|
|
1220
|
-
|
|
1290
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1291
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1292
|
+
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> & {
|
|
1293
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1294
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1295
|
+
}, "ManagerRole", undefined>;
|
|
1221
1296
|
only?: undefined;
|
|
1222
1297
|
multiple: <TThis extends {
|
|
1223
1298
|
kind: "field";
|
|
1224
1299
|
readonly __fieldTypes?: {
|
|
1225
|
-
input: import("
|
|
1226
|
-
db: import("
|
|
1300
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
1301
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
1227
1302
|
output: {
|
|
1228
1303
|
name: string;
|
|
1229
|
-
permissions: (
|
|
1304
|
+
permissions: (string | undefined)[];
|
|
1230
1305
|
_type: "ManagerRole";
|
|
1231
1306
|
_id: string;
|
|
1232
1307
|
_schemaVersion?: number | undefined;
|
|
1233
|
-
_visibility?: import("
|
|
1234
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1308
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1309
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1235
1310
|
_trashed?: boolean | undefined;
|
|
1236
1311
|
_revision?: number | undefined;
|
|
1312
|
+
_localeVariantGroupId?: string | undefined;
|
|
1313
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1237
1314
|
trashedAt?: Date | undefined;
|
|
1238
1315
|
createdAt?: Date | undefined;
|
|
1239
1316
|
updatedAt?: Date | undefined;
|
|
1240
1317
|
};
|
|
1241
|
-
meta: import("
|
|
1242
|
-
state: import("
|
|
1318
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1319
|
+
state: import("../index.js").FieldState;
|
|
1243
1320
|
} | undefined;
|
|
1244
|
-
meta: import("
|
|
1245
|
-
state: import("
|
|
1246
|
-
toZod: () => import("zod").ZodType<import("
|
|
1247
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
1248
|
-
getSchema: () => import("zod").ZodType<import("
|
|
1321
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1322
|
+
state: import("../index.js").FieldState;
|
|
1323
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
1324
|
+
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>>;
|
|
1325
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
1249
1326
|
getOutputSchema: () => import("zod").ZodType<{
|
|
1250
1327
|
name: string;
|
|
1251
|
-
permissions: (
|
|
1328
|
+
permissions: (string | undefined)[];
|
|
1252
1329
|
_type: "ManagerRole";
|
|
1253
1330
|
_id: string;
|
|
1254
1331
|
_schemaVersion?: number | undefined;
|
|
1255
|
-
_visibility?: import("
|
|
1256
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1332
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1333
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1257
1334
|
_trashed?: boolean | undefined;
|
|
1258
1335
|
_revision?: number | undefined;
|
|
1336
|
+
_localeVariantGroupId?: string | undefined;
|
|
1337
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1259
1338
|
trashedAt?: Date | undefined;
|
|
1260
1339
|
createdAt?: Date | undefined;
|
|
1261
1340
|
updatedAt?: Date | undefined;
|
|
1262
1341
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
1263
1342
|
name: string;
|
|
1264
|
-
permissions: (
|
|
1343
|
+
permissions: (string | undefined)[];
|
|
1265
1344
|
_type: "ManagerRole";
|
|
1266
1345
|
_id: string;
|
|
1267
1346
|
_schemaVersion?: number | undefined;
|
|
1268
|
-
_visibility?: import("
|
|
1269
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1347
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1348
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1270
1349
|
_trashed?: boolean | undefined;
|
|
1271
1350
|
_revision?: number | undefined;
|
|
1351
|
+
_localeVariantGroupId?: string | undefined;
|
|
1352
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1272
1353
|
trashedAt?: Date | undefined;
|
|
1273
1354
|
createdAt?: Date | undefined;
|
|
1274
1355
|
updatedAt?: Date | undefined;
|
|
1275
1356
|
} | undefined, unknown>>;
|
|
1276
|
-
getConfig: () => import("
|
|
1357
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
1277
1358
|
getIsRequired: () => boolean;
|
|
1278
1359
|
getIsTranslatable: () => boolean;
|
|
1279
|
-
getVisibility: () => import("
|
|
1360
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1361
|
+
getIsDynamic: () => boolean;
|
|
1362
|
+
getDescription: () => string | undefined;
|
|
1280
1363
|
getCondition: () => {
|
|
1281
1364
|
field: string;
|
|
1282
1365
|
equals: unknown;
|
|
@@ -1314,26 +1397,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1314
1397
|
lte?: number | undefined;
|
|
1315
1398
|
};
|
|
1316
1399
|
} | undefined;
|
|
1317
|
-
}>(this: TThis) => import("
|
|
1318
|
-
name: import("
|
|
1400
|
+
}>(this: TThis) => import("../index.js").SimpleListField<import("../index.js").RelationField<ContentType<{
|
|
1401
|
+
name: import("../index.js").WithFieldState<{
|
|
1319
1402
|
kind: "field";
|
|
1320
1403
|
readonly __fieldTypes?: {
|
|
1321
1404
|
input: string;
|
|
1322
1405
|
db: string;
|
|
1323
1406
|
output: string;
|
|
1324
|
-
meta: import("
|
|
1325
|
-
state: import("
|
|
1407
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1408
|
+
state: import("../index.js").DefaultFieldState;
|
|
1326
1409
|
} | undefined;
|
|
1327
|
-
meta: import("
|
|
1328
|
-
state: import("
|
|
1410
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1411
|
+
state: import("../index.js").DefaultFieldState;
|
|
1329
1412
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1330
1413
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1331
1414
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1332
1415
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1333
|
-
getConfig: () => import("
|
|
1416
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1334
1417
|
getIsRequired: () => false;
|
|
1335
1418
|
getIsTranslatable: () => false;
|
|
1336
1419
|
getVisibility: () => "all";
|
|
1420
|
+
getIsDynamic: () => true;
|
|
1421
|
+
getDescription: () => undefined;
|
|
1337
1422
|
getCondition: () => undefined;
|
|
1338
1423
|
} & {
|
|
1339
1424
|
type: <TThis_1 extends {
|
|
@@ -1342,19 +1427,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1342
1427
|
input: string;
|
|
1343
1428
|
db: string;
|
|
1344
1429
|
output: string;
|
|
1345
|
-
meta: import("
|
|
1346
|
-
state: import("
|
|
1430
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1431
|
+
state: import("../index.js").FieldState;
|
|
1347
1432
|
} | undefined;
|
|
1348
|
-
meta: import("
|
|
1349
|
-
state: import("
|
|
1433
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1434
|
+
state: import("../index.js").FieldState;
|
|
1350
1435
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1351
1436
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1352
1437
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1353
1438
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1354
|
-
getConfig: () => import("
|
|
1439
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1355
1440
|
getIsRequired: () => boolean;
|
|
1356
1441
|
getIsTranslatable: () => boolean;
|
|
1357
|
-
getVisibility: () => import("
|
|
1442
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1443
|
+
getIsDynamic: () => boolean;
|
|
1444
|
+
getDescription: () => string | undefined;
|
|
1358
1445
|
getCondition: () => {
|
|
1359
1446
|
field: string;
|
|
1360
1447
|
equals: unknown;
|
|
@@ -1392,26 +1479,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1392
1479
|
lte?: number | undefined;
|
|
1393
1480
|
};
|
|
1394
1481
|
} | undefined;
|
|
1395
|
-
}, NextUi extends import("
|
|
1482
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
1396
1483
|
min: <TThis_1 extends {
|
|
1397
1484
|
kind: "field";
|
|
1398
1485
|
readonly __fieldTypes?: {
|
|
1399
1486
|
input: string;
|
|
1400
1487
|
db: string;
|
|
1401
1488
|
output: string;
|
|
1402
|
-
meta: import("
|
|
1403
|
-
state: import("
|
|
1489
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1490
|
+
state: import("../index.js").FieldState;
|
|
1404
1491
|
} | undefined;
|
|
1405
|
-
meta: import("
|
|
1406
|
-
state: import("
|
|
1492
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1493
|
+
state: import("../index.js").FieldState;
|
|
1407
1494
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1408
1495
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1409
1496
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1410
1497
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1411
|
-
getConfig: () => import("
|
|
1498
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1412
1499
|
getIsRequired: () => boolean;
|
|
1413
1500
|
getIsTranslatable: () => boolean;
|
|
1414
|
-
getVisibility: () => import("
|
|
1501
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1502
|
+
getIsDynamic: () => boolean;
|
|
1503
|
+
getDescription: () => string | undefined;
|
|
1415
1504
|
getCondition: () => {
|
|
1416
1505
|
field: string;
|
|
1417
1506
|
equals: unknown;
|
|
@@ -1449,26 +1538,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1449
1538
|
lte?: number | undefined;
|
|
1450
1539
|
};
|
|
1451
1540
|
} | undefined;
|
|
1452
|
-
}>(this: TThis_1, length: number) => import("
|
|
1541
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1453
1542
|
max: <TThis_1 extends {
|
|
1454
1543
|
kind: "field";
|
|
1455
1544
|
readonly __fieldTypes?: {
|
|
1456
1545
|
input: string;
|
|
1457
1546
|
db: string;
|
|
1458
1547
|
output: string;
|
|
1459
|
-
meta: import("
|
|
1460
|
-
state: import("
|
|
1548
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1549
|
+
state: import("../index.js").FieldState;
|
|
1461
1550
|
} | undefined;
|
|
1462
|
-
meta: import("
|
|
1463
|
-
state: import("
|
|
1551
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1552
|
+
state: import("../index.js").FieldState;
|
|
1464
1553
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1465
1554
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1466
1555
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1467
1556
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1468
|
-
getConfig: () => import("
|
|
1557
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1469
1558
|
getIsRequired: () => boolean;
|
|
1470
1559
|
getIsTranslatable: () => boolean;
|
|
1471
|
-
getVisibility: () => import("
|
|
1560
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1561
|
+
getIsDynamic: () => boolean;
|
|
1562
|
+
getDescription: () => string | undefined;
|
|
1472
1563
|
getCondition: () => {
|
|
1473
1564
|
field: string;
|
|
1474
1565
|
equals: unknown;
|
|
@@ -1506,60 +1597,66 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1506
1597
|
lte?: number | undefined;
|
|
1507
1598
|
};
|
|
1508
1599
|
} | undefined;
|
|
1509
|
-
}>(this: TThis_1, length: number) => import("
|
|
1510
|
-
}, import("
|
|
1511
|
-
permissions: import("
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1600
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
1601
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1602
|
+
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> & {
|
|
1603
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1604
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1605
|
+
}, "ManagerRole", undefined>, undefined, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").FieldStateOf<TThis>>;
|
|
1606
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1607
|
+
avatarId: import("../index.js").StringField<"Id", import("../index.js").DefaultFieldState>;
|
|
1608
|
+
avatarKey: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1609
|
+
avatarAccess: import("../index.js").SelectField<readonly ["public", "private"], false, import("../index.js").DefaultFieldState>;
|
|
1610
|
+
avatarUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
1611
|
+
avatarPreviewUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
1612
|
+
tutorialsEnabled: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
1613
|
+
tutorialsPromptedAt: import("../index.js").DateField<"DateTime", import("../index.js").DefaultFieldState>;
|
|
1614
|
+
seenTours: import("../index.js").SimpleListField<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>, import("../index.js").DefaultFieldState>;
|
|
1615
|
+
twoFactorEnabled: import("../index.js").WithFieldState<{
|
|
1523
1616
|
kind: "field";
|
|
1524
1617
|
readonly __fieldTypes?: {
|
|
1525
1618
|
input: boolean;
|
|
1526
1619
|
db: boolean;
|
|
1527
1620
|
output: boolean;
|
|
1528
|
-
meta: import("
|
|
1529
|
-
state: import("
|
|
1621
|
+
meta: import("../index.js").BooleanMeta;
|
|
1622
|
+
state: import("../index.js").DefaultFieldState;
|
|
1530
1623
|
} | undefined;
|
|
1531
|
-
meta: import("
|
|
1532
|
-
state: import("
|
|
1624
|
+
meta: import("../index.js").BooleanMeta;
|
|
1625
|
+
state: import("../index.js").DefaultFieldState;
|
|
1533
1626
|
toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
|
|
1534
1627
|
getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
|
|
1535
1628
|
getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
1536
1629
|
getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
1537
|
-
getConfig: () => import("
|
|
1630
|
+
getConfig: () => import("../index.js").BooleanMeta;
|
|
1538
1631
|
getIsRequired: () => false;
|
|
1539
1632
|
getIsTranslatable: () => false;
|
|
1540
1633
|
getVisibility: () => "all";
|
|
1634
|
+
getIsDynamic: () => true;
|
|
1635
|
+
getDescription: () => undefined;
|
|
1541
1636
|
getCondition: () => undefined;
|
|
1542
|
-
}, import("
|
|
1543
|
-
}, "ManagerUser">;
|
|
1637
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1638
|
+
}, "ManagerUser", undefined>;
|
|
1544
1639
|
only?: undefined;
|
|
1545
1640
|
multiple: <TThis extends {
|
|
1546
1641
|
kind: "field";
|
|
1547
1642
|
readonly __fieldTypes?: {
|
|
1548
|
-
input: import("
|
|
1549
|
-
db: import("
|
|
1643
|
+
input: import("../index.js").RelationExisting<"ManagerUser">;
|
|
1644
|
+
db: import("../index.js").RelationExisting<"ManagerUser">;
|
|
1550
1645
|
output: {
|
|
1551
1646
|
user: string;
|
|
1552
1647
|
email: string;
|
|
1553
1648
|
role: {
|
|
1554
1649
|
name: string;
|
|
1555
|
-
permissions: (
|
|
1650
|
+
permissions: (string | undefined)[];
|
|
1556
1651
|
_type: "ManagerRole";
|
|
1557
1652
|
_id: string;
|
|
1558
1653
|
_schemaVersion?: number | undefined;
|
|
1559
|
-
_visibility?: import("
|
|
1560
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1654
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1655
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1561
1656
|
_trashed?: boolean | undefined;
|
|
1562
1657
|
_revision?: number | undefined;
|
|
1658
|
+
_localeVariantGroupId?: string | undefined;
|
|
1659
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1563
1660
|
trashedAt?: Date | undefined;
|
|
1564
1661
|
createdAt?: Date | undefined;
|
|
1565
1662
|
updatedAt?: Date | undefined;
|
|
@@ -1567,6 +1664,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1567
1664
|
twoFactorEnabled: boolean;
|
|
1568
1665
|
_type: "ManagerUser";
|
|
1569
1666
|
_id: string;
|
|
1667
|
+
name?: string | undefined;
|
|
1570
1668
|
avatarId?: string | undefined;
|
|
1571
1669
|
avatarKey?: string | undefined;
|
|
1572
1670
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -1576,35 +1674,39 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1576
1674
|
tutorialsPromptedAt?: Date | undefined;
|
|
1577
1675
|
seenTours?: (string | undefined)[] | undefined;
|
|
1578
1676
|
_schemaVersion?: number | undefined;
|
|
1579
|
-
_visibility?: import("
|
|
1580
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1677
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1678
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1581
1679
|
_trashed?: boolean | undefined;
|
|
1582
1680
|
_revision?: number | undefined;
|
|
1681
|
+
_localeVariantGroupId?: string | undefined;
|
|
1682
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1583
1683
|
trashedAt?: Date | undefined;
|
|
1584
1684
|
createdAt?: Date | undefined;
|
|
1585
1685
|
updatedAt?: Date | undefined;
|
|
1586
1686
|
};
|
|
1587
|
-
meta: import("
|
|
1588
|
-
state: import("
|
|
1687
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
1688
|
+
state: import("../index.js").FieldState;
|
|
1589
1689
|
} | undefined;
|
|
1590
|
-
meta: import("
|
|
1591
|
-
state: import("
|
|
1592
|
-
toZod: () => import("zod").ZodType<import("
|
|
1593
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
1594
|
-
getSchema: () => import("zod").ZodType<import("
|
|
1690
|
+
meta: import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
1691
|
+
state: import("../index.js").FieldState;
|
|
1692
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser">, unknown>>;
|
|
1693
|
+
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>>;
|
|
1694
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerUser"> | undefined, unknown>>;
|
|
1595
1695
|
getOutputSchema: () => import("zod").ZodType<{
|
|
1596
1696
|
user: string;
|
|
1597
1697
|
email: string;
|
|
1598
1698
|
role: {
|
|
1599
1699
|
name: string;
|
|
1600
|
-
permissions: (
|
|
1700
|
+
permissions: (string | undefined)[];
|
|
1601
1701
|
_type: "ManagerRole";
|
|
1602
1702
|
_id: string;
|
|
1603
1703
|
_schemaVersion?: number | undefined;
|
|
1604
|
-
_visibility?: import("
|
|
1605
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1704
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1705
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1606
1706
|
_trashed?: boolean | undefined;
|
|
1607
1707
|
_revision?: number | undefined;
|
|
1708
|
+
_localeVariantGroupId?: string | undefined;
|
|
1709
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1608
1710
|
trashedAt?: Date | undefined;
|
|
1609
1711
|
createdAt?: Date | undefined;
|
|
1610
1712
|
updatedAt?: Date | undefined;
|
|
@@ -1612,6 +1714,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1612
1714
|
twoFactorEnabled: boolean;
|
|
1613
1715
|
_type: "ManagerUser";
|
|
1614
1716
|
_id: string;
|
|
1717
|
+
name?: string | undefined;
|
|
1615
1718
|
avatarId?: string | undefined;
|
|
1616
1719
|
avatarKey?: string | undefined;
|
|
1617
1720
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -1621,10 +1724,12 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1621
1724
|
tutorialsPromptedAt?: Date | undefined;
|
|
1622
1725
|
seenTours?: (string | undefined)[] | undefined;
|
|
1623
1726
|
_schemaVersion?: number | undefined;
|
|
1624
|
-
_visibility?: import("
|
|
1625
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1727
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1728
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1626
1729
|
_trashed?: boolean | undefined;
|
|
1627
1730
|
_revision?: number | undefined;
|
|
1731
|
+
_localeVariantGroupId?: string | undefined;
|
|
1732
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1628
1733
|
trashedAt?: Date | undefined;
|
|
1629
1734
|
createdAt?: Date | undefined;
|
|
1630
1735
|
updatedAt?: Date | undefined;
|
|
@@ -1633,14 +1738,16 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1633
1738
|
email: string;
|
|
1634
1739
|
role: {
|
|
1635
1740
|
name: string;
|
|
1636
|
-
permissions: (
|
|
1741
|
+
permissions: (string | undefined)[];
|
|
1637
1742
|
_type: "ManagerRole";
|
|
1638
1743
|
_id: string;
|
|
1639
1744
|
_schemaVersion?: number | undefined;
|
|
1640
|
-
_visibility?: import("
|
|
1641
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1745
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1746
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1642
1747
|
_trashed?: boolean | undefined;
|
|
1643
1748
|
_revision?: number | undefined;
|
|
1749
|
+
_localeVariantGroupId?: string | undefined;
|
|
1750
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1644
1751
|
trashedAt?: Date | undefined;
|
|
1645
1752
|
createdAt?: Date | undefined;
|
|
1646
1753
|
updatedAt?: Date | undefined;
|
|
@@ -1648,6 +1755,7 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1648
1755
|
twoFactorEnabled: boolean;
|
|
1649
1756
|
_type: "ManagerUser";
|
|
1650
1757
|
_id: string;
|
|
1758
|
+
name?: string | undefined;
|
|
1651
1759
|
avatarId?: string | undefined;
|
|
1652
1760
|
avatarKey?: string | undefined;
|
|
1653
1761
|
avatarAccess?: "public" | "private" | undefined;
|
|
@@ -1657,18 +1765,22 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1657
1765
|
tutorialsPromptedAt?: Date | undefined;
|
|
1658
1766
|
seenTours?: (string | undefined)[] | undefined;
|
|
1659
1767
|
_schemaVersion?: number | undefined;
|
|
1660
|
-
_visibility?: import("
|
|
1661
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
1768
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
1769
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
1662
1770
|
_trashed?: boolean | undefined;
|
|
1663
1771
|
_revision?: number | undefined;
|
|
1772
|
+
_localeVariantGroupId?: string | undefined;
|
|
1773
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
1664
1774
|
trashedAt?: Date | undefined;
|
|
1665
1775
|
createdAt?: Date | undefined;
|
|
1666
1776
|
updatedAt?: Date | undefined;
|
|
1667
1777
|
} | undefined, unknown>>;
|
|
1668
|
-
getConfig: () => import("
|
|
1778
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerUser", undefined>;
|
|
1669
1779
|
getIsRequired: () => boolean;
|
|
1670
1780
|
getIsTranslatable: () => boolean;
|
|
1671
|
-
getVisibility: () => import("
|
|
1781
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1782
|
+
getIsDynamic: () => boolean;
|
|
1783
|
+
getDescription: () => string | undefined;
|
|
1672
1784
|
getCondition: () => {
|
|
1673
1785
|
field: string;
|
|
1674
1786
|
equals: unknown;
|
|
@@ -1706,26 +1818,29 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
1706
1818
|
lte?: number | undefined;
|
|
1707
1819
|
};
|
|
1708
1820
|
} | undefined;
|
|
1709
|
-
}>(this: TThis) => import("
|
|
1710
|
-
|
|
1821
|
+
}>(this: TThis) => import("../index.js").SimpleListField<import("../index.js").RelationField<ContentType<{
|
|
1822
|
+
name: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
1823
|
+
user: 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<"Text">;
|
|
1830
|
+
state: import("../index.js").DefaultFieldState;
|
|
1718
1831
|
} | undefined;
|
|
1719
|
-
meta: import("
|
|
1720
|
-
state: import("
|
|
1832
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: 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<"Text">;
|
|
1853
|
+
state: import("../index.js").FieldState;
|
|
1739
1854
|
} | undefined;
|
|
1740
|
-
meta: import("
|
|
1741
|
-
state: import("
|
|
1855
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: 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<"Text">;
|
|
1912
|
+
state: import("../index.js").FieldState;
|
|
1796
1913
|
} | undefined;
|
|
1797
|
-
meta: import("
|
|
1798
|
-
state: import("
|
|
1914
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: 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<"Text", 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<"Text">;
|
|
1971
|
+
state: import("../index.js").FieldState;
|
|
1853
1972
|
} | undefined;
|
|
1854
|
-
meta: import("
|
|
1855
|
-
state: import("
|
|
1973
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
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<"Text">;
|
|
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 WebAuthnCredential: ContentType<{
|
|
|
1898
2019
|
lte?: number | undefined;
|
|
1899
2020
|
};
|
|
1900
2021
|
} | undefined;
|
|
1901
|
-
}>(this: TThis_1, length: number) => import("
|
|
1902
|
-
}, import("
|
|
1903
|
-
email: import("
|
|
2022
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2023
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2024
|
+
email: import("../index.js").WithFieldState<{
|
|
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<"Email">;
|
|
2031
|
+
state: import("../index.js").DefaultFieldState;
|
|
1911
2032
|
} | undefined;
|
|
1912
|
-
meta: import("
|
|
1913
|
-
state: import("
|
|
2033
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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 WebAuthnCredential: 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<"Email">;
|
|
2054
|
+
state: import("../index.js").FieldState;
|
|
1932
2055
|
} | undefined;
|
|
1933
|
-
meta: import("
|
|
1934
|
-
state: import("
|
|
2056
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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 WebAuthnCredential: 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<"Email">;
|
|
2113
|
+
state: import("../index.js").FieldState;
|
|
1989
2114
|
} | undefined;
|
|
1990
|
-
meta: import("
|
|
1991
|
-
state: import("
|
|
2115
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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 WebAuthnCredential: 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<"Email", 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<"Email">;
|
|
2172
|
+
state: import("../index.js").FieldState;
|
|
2046
2173
|
} | undefined;
|
|
2047
|
-
meta: import("
|
|
2048
|
-
state: import("
|
|
2174
|
+
meta: import("../index.js").StringMeta<"Email">;
|
|
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<"Email">;
|
|
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,27 +2220,29 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2091
2220
|
lte?: number | undefined;
|
|
2092
2221
|
};
|
|
2093
2222
|
} | undefined;
|
|
2094
|
-
}>(this: TThis_1, length: number) => import("
|
|
2095
|
-
}, import("
|
|
2096
|
-
password: import("
|
|
2223
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Email", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2224
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2225
|
+
password: import("../index.js").WithFieldState<Omit<{
|
|
2097
2226
|
kind: "field";
|
|
2098
2227
|
readonly __fieldTypes?: {
|
|
2099
2228
|
input: string;
|
|
2100
2229
|
db: string;
|
|
2101
2230
|
output: string;
|
|
2102
|
-
meta: import("
|
|
2103
|
-
state: import("
|
|
2231
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2232
|
+
state: import("../index.js").DefaultFieldState;
|
|
2104
2233
|
} | undefined;
|
|
2105
|
-
meta: import("
|
|
2106
|
-
state: import("
|
|
2234
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2235
|
+
state: import("../index.js").DefaultFieldState;
|
|
2107
2236
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2108
2237
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2109
2238
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2110
2239
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2111
|
-
getConfig: () => import("
|
|
2240
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
2112
2241
|
getIsRequired: () => false;
|
|
2113
2242
|
getIsTranslatable: () => false;
|
|
2114
2243
|
getVisibility: () => "all";
|
|
2244
|
+
getIsDynamic: () => true;
|
|
2245
|
+
getDescription: () => undefined;
|
|
2115
2246
|
getCondition: () => undefined;
|
|
2116
2247
|
} & {
|
|
2117
2248
|
type: <TThis_1 extends {
|
|
@@ -2120,19 +2251,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2120
2251
|
input: string;
|
|
2121
2252
|
db: string;
|
|
2122
2253
|
output: string;
|
|
2123
|
-
meta: import("
|
|
2124
|
-
state: import("
|
|
2254
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2255
|
+
state: import("../index.js").FieldState;
|
|
2125
2256
|
} | undefined;
|
|
2126
|
-
meta: import("
|
|
2127
|
-
state: import("
|
|
2257
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2258
|
+
state: import("../index.js").FieldState;
|
|
2128
2259
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2129
2260
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2130
2261
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2131
2262
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2132
|
-
getConfig: () => import("
|
|
2263
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
2133
2264
|
getIsRequired: () => boolean;
|
|
2134
2265
|
getIsTranslatable: () => boolean;
|
|
2135
|
-
getVisibility: () => import("
|
|
2266
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2267
|
+
getIsDynamic: () => boolean;
|
|
2268
|
+
getDescription: () => string | undefined;
|
|
2136
2269
|
getCondition: () => {
|
|
2137
2270
|
field: string;
|
|
2138
2271
|
equals: unknown;
|
|
@@ -2170,26 +2303,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2170
2303
|
lte?: number | undefined;
|
|
2171
2304
|
};
|
|
2172
2305
|
} | undefined;
|
|
2173
|
-
}, NextUi extends import("
|
|
2306
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
2174
2307
|
min: <TThis_1 extends {
|
|
2175
2308
|
kind: "field";
|
|
2176
2309
|
readonly __fieldTypes?: {
|
|
2177
2310
|
input: string;
|
|
2178
2311
|
db: string;
|
|
2179
2312
|
output: string;
|
|
2180
|
-
meta: import("
|
|
2181
|
-
state: import("
|
|
2313
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2314
|
+
state: import("../index.js").FieldState;
|
|
2182
2315
|
} | undefined;
|
|
2183
|
-
meta: import("
|
|
2184
|
-
state: import("
|
|
2316
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2317
|
+
state: import("../index.js").FieldState;
|
|
2185
2318
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2186
2319
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2187
2320
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2188
2321
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2189
|
-
getConfig: () => import("
|
|
2322
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
2190
2323
|
getIsRequired: () => boolean;
|
|
2191
2324
|
getIsTranslatable: () => boolean;
|
|
2192
|
-
getVisibility: () => import("
|
|
2325
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2326
|
+
getIsDynamic: () => boolean;
|
|
2327
|
+
getDescription: () => string | undefined;
|
|
2193
2328
|
getCondition: () => {
|
|
2194
2329
|
field: string;
|
|
2195
2330
|
equals: unknown;
|
|
@@ -2227,26 +2362,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2227
2362
|
lte?: number | undefined;
|
|
2228
2363
|
};
|
|
2229
2364
|
} | undefined;
|
|
2230
|
-
}>(this: TThis_1, length: number) => import("
|
|
2365
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2231
2366
|
max: <TThis_1 extends {
|
|
2232
2367
|
kind: "field";
|
|
2233
2368
|
readonly __fieldTypes?: {
|
|
2234
2369
|
input: string;
|
|
2235
2370
|
db: string;
|
|
2236
2371
|
output: string;
|
|
2237
|
-
meta: import("
|
|
2238
|
-
state: import("
|
|
2372
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2373
|
+
state: import("../index.js").FieldState;
|
|
2239
2374
|
} | undefined;
|
|
2240
|
-
meta: import("
|
|
2241
|
-
state: import("
|
|
2375
|
+
meta: import("../index.js").StringMeta<"Password">;
|
|
2376
|
+
state: import("../index.js").FieldState;
|
|
2242
2377
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2243
2378
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2244
2379
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2245
2380
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2246
|
-
getConfig: () => import("
|
|
2381
|
+
getConfig: () => import("../index.js").StringMeta<"Password">;
|
|
2247
2382
|
getIsRequired: () => boolean;
|
|
2248
2383
|
getIsTranslatable: () => boolean;
|
|
2249
|
-
getVisibility: () => import("
|
|
2384
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2385
|
+
getIsDynamic: () => boolean;
|
|
2386
|
+
getDescription: () => string | undefined;
|
|
2250
2387
|
getCondition: () => {
|
|
2251
2388
|
field: string;
|
|
2252
2389
|
equals: unknown;
|
|
@@ -2284,104 +2421,116 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2284
2421
|
lte?: number | undefined;
|
|
2285
2422
|
};
|
|
2286
2423
|
} | undefined;
|
|
2287
|
-
}>(this: TThis_1, length: number) => import("
|
|
2288
|
-
}, keyof import("
|
|
2289
|
-
role: import("
|
|
2424
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Password", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2425
|
+
}, 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">>;
|
|
2426
|
+
role: import("../index.js").WithFieldState<{
|
|
2290
2427
|
kind: "field";
|
|
2291
2428
|
readonly __fieldTypes?: {
|
|
2292
|
-
input: import("
|
|
2293
|
-
db: import("
|
|
2429
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2430
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2294
2431
|
output: {
|
|
2295
2432
|
name: string;
|
|
2296
|
-
permissions: (
|
|
2433
|
+
permissions: (string | undefined)[];
|
|
2297
2434
|
_type: "ManagerRole";
|
|
2298
2435
|
_id: string;
|
|
2299
2436
|
_schemaVersion?: number | undefined;
|
|
2300
|
-
_visibility?: import("
|
|
2301
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2437
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2438
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2302
2439
|
_trashed?: boolean | undefined;
|
|
2303
2440
|
_revision?: number | undefined;
|
|
2441
|
+
_localeVariantGroupId?: string | undefined;
|
|
2442
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2304
2443
|
trashedAt?: Date | undefined;
|
|
2305
2444
|
createdAt?: Date | undefined;
|
|
2306
2445
|
updatedAt?: Date | undefined;
|
|
2307
2446
|
};
|
|
2308
|
-
meta: import("
|
|
2309
|
-
state: import("
|
|
2447
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2448
|
+
state: import("../index.js").DefaultFieldState;
|
|
2310
2449
|
} | undefined;
|
|
2311
|
-
meta: import("
|
|
2312
|
-
state: import("
|
|
2313
|
-
toZod: () => import("zod").ZodType<import("
|
|
2314
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
2315
|
-
getSchema: () => import("zod").ZodType<import("
|
|
2450
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2451
|
+
state: import("../index.js").DefaultFieldState;
|
|
2452
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
2453
|
+
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>>;
|
|
2454
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
2316
2455
|
getOutputSchema: () => import("zod").ZodType<{
|
|
2317
2456
|
name: string;
|
|
2318
|
-
permissions: (
|
|
2457
|
+
permissions: (string | undefined)[];
|
|
2319
2458
|
_type: "ManagerRole";
|
|
2320
2459
|
_id: string;
|
|
2321
2460
|
_schemaVersion?: number | undefined;
|
|
2322
|
-
_visibility?: import("
|
|
2323
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2461
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2462
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2324
2463
|
_trashed?: boolean | undefined;
|
|
2325
2464
|
_revision?: number | undefined;
|
|
2465
|
+
_localeVariantGroupId?: string | undefined;
|
|
2466
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2326
2467
|
trashedAt?: Date | undefined;
|
|
2327
2468
|
createdAt?: Date | undefined;
|
|
2328
2469
|
updatedAt?: Date | undefined;
|
|
2329
2470
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
2330
2471
|
name: string;
|
|
2331
|
-
permissions: (
|
|
2472
|
+
permissions: (string | undefined)[];
|
|
2332
2473
|
_type: "ManagerRole";
|
|
2333
2474
|
_id: string;
|
|
2334
2475
|
_schemaVersion?: number | undefined;
|
|
2335
|
-
_visibility?: import("
|
|
2336
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2476
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2477
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2337
2478
|
_trashed?: boolean | undefined;
|
|
2338
2479
|
_revision?: number | undefined;
|
|
2480
|
+
_localeVariantGroupId?: string | undefined;
|
|
2481
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2339
2482
|
trashedAt?: Date | undefined;
|
|
2340
2483
|
createdAt?: Date | undefined;
|
|
2341
2484
|
updatedAt?: Date | undefined;
|
|
2342
2485
|
} | undefined, unknown>>;
|
|
2343
|
-
getConfig: () => import("
|
|
2486
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2344
2487
|
getIsRequired: () => false;
|
|
2345
2488
|
getIsTranslatable: () => false;
|
|
2346
2489
|
getVisibility: () => "all";
|
|
2490
|
+
getIsDynamic: () => true;
|
|
2491
|
+
getDescription: () => undefined;
|
|
2347
2492
|
getCondition: () => undefined;
|
|
2348
|
-
} & import("
|
|
2493
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
2349
2494
|
name: string;
|
|
2350
|
-
permissions: (
|
|
2495
|
+
permissions: (string | undefined)[];
|
|
2351
2496
|
_type: "ManagerRole";
|
|
2352
2497
|
_id: string;
|
|
2353
2498
|
_schemaVersion?: number | undefined;
|
|
2354
|
-
_visibility?: import("
|
|
2355
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2499
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2500
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2356
2501
|
_trashed?: boolean | undefined;
|
|
2357
2502
|
_revision?: number | undefined;
|
|
2503
|
+
_localeVariantGroupId?: string | undefined;
|
|
2504
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2358
2505
|
trashedAt?: Date | undefined;
|
|
2359
2506
|
trashedBy?: string | undefined;
|
|
2360
2507
|
createdAt?: Date | undefined;
|
|
2361
2508
|
updatedAt?: Date | undefined;
|
|
2362
2509
|
createdBy?: string | undefined;
|
|
2363
2510
|
updatedBy?: string | undefined;
|
|
2364
|
-
}, import("
|
|
2511
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
2365
2512
|
contentType: ContentType<{
|
|
2366
|
-
name: import("
|
|
2513
|
+
name: import("../index.js").WithFieldState<{
|
|
2367
2514
|
kind: "field";
|
|
2368
2515
|
readonly __fieldTypes?: {
|
|
2369
2516
|
input: string;
|
|
2370
2517
|
db: string;
|
|
2371
2518
|
output: string;
|
|
2372
|
-
meta: import("
|
|
2373
|
-
state: import("
|
|
2519
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2520
|
+
state: import("../index.js").DefaultFieldState;
|
|
2374
2521
|
} | undefined;
|
|
2375
|
-
meta: import("
|
|
2376
|
-
state: import("
|
|
2522
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2523
|
+
state: import("../index.js").DefaultFieldState;
|
|
2377
2524
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2378
2525
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2379
2526
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2380
2527
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2381
|
-
getConfig: () => import("
|
|
2528
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2382
2529
|
getIsRequired: () => false;
|
|
2383
2530
|
getIsTranslatable: () => false;
|
|
2384
2531
|
getVisibility: () => "all";
|
|
2532
|
+
getIsDynamic: () => true;
|
|
2533
|
+
getDescription: () => undefined;
|
|
2385
2534
|
getCondition: () => undefined;
|
|
2386
2535
|
} & {
|
|
2387
2536
|
type: <TThis_1 extends {
|
|
@@ -2390,19 +2539,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2390
2539
|
input: string;
|
|
2391
2540
|
db: string;
|
|
2392
2541
|
output: string;
|
|
2393
|
-
meta: import("
|
|
2394
|
-
state: import("
|
|
2542
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2543
|
+
state: import("../index.js").FieldState;
|
|
2395
2544
|
} | undefined;
|
|
2396
|
-
meta: import("
|
|
2397
|
-
state: import("
|
|
2545
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2546
|
+
state: import("../index.js").FieldState;
|
|
2398
2547
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2399
2548
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2400
2549
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2401
2550
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2402
|
-
getConfig: () => import("
|
|
2551
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2403
2552
|
getIsRequired: () => boolean;
|
|
2404
2553
|
getIsTranslatable: () => boolean;
|
|
2405
|
-
getVisibility: () => import("
|
|
2554
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2555
|
+
getIsDynamic: () => boolean;
|
|
2556
|
+
getDescription: () => string | undefined;
|
|
2406
2557
|
getCondition: () => {
|
|
2407
2558
|
field: string;
|
|
2408
2559
|
equals: unknown;
|
|
@@ -2440,26 +2591,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2440
2591
|
lte?: number | undefined;
|
|
2441
2592
|
};
|
|
2442
2593
|
} | undefined;
|
|
2443
|
-
}, NextUi extends import("
|
|
2594
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_1, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_1>>;
|
|
2444
2595
|
min: <TThis_1 extends {
|
|
2445
2596
|
kind: "field";
|
|
2446
2597
|
readonly __fieldTypes?: {
|
|
2447
2598
|
input: string;
|
|
2448
2599
|
db: string;
|
|
2449
2600
|
output: string;
|
|
2450
|
-
meta: import("
|
|
2451
|
-
state: import("
|
|
2601
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2602
|
+
state: import("../index.js").FieldState;
|
|
2452
2603
|
} | undefined;
|
|
2453
|
-
meta: import("
|
|
2454
|
-
state: import("
|
|
2604
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2605
|
+
state: import("../index.js").FieldState;
|
|
2455
2606
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2456
2607
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2457
2608
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2458
2609
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2459
|
-
getConfig: () => import("
|
|
2610
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2460
2611
|
getIsRequired: () => boolean;
|
|
2461
2612
|
getIsTranslatable: () => boolean;
|
|
2462
|
-
getVisibility: () => import("
|
|
2613
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2614
|
+
getIsDynamic: () => boolean;
|
|
2615
|
+
getDescription: () => string | undefined;
|
|
2463
2616
|
getCondition: () => {
|
|
2464
2617
|
field: string;
|
|
2465
2618
|
equals: unknown;
|
|
@@ -2497,26 +2650,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2497
2650
|
lte?: number | undefined;
|
|
2498
2651
|
};
|
|
2499
2652
|
} | undefined;
|
|
2500
|
-
}>(this: TThis_1, length: number) => import("
|
|
2653
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2501
2654
|
max: <TThis_1 extends {
|
|
2502
2655
|
kind: "field";
|
|
2503
2656
|
readonly __fieldTypes?: {
|
|
2504
2657
|
input: string;
|
|
2505
2658
|
db: string;
|
|
2506
2659
|
output: string;
|
|
2507
|
-
meta: import("
|
|
2508
|
-
state: import("
|
|
2660
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2661
|
+
state: import("../index.js").FieldState;
|
|
2509
2662
|
} | undefined;
|
|
2510
|
-
meta: import("
|
|
2511
|
-
state: import("
|
|
2663
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2664
|
+
state: import("../index.js").FieldState;
|
|
2512
2665
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2513
2666
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2514
2667
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2515
2668
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2516
|
-
getConfig: () => import("
|
|
2669
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2517
2670
|
getIsRequired: () => boolean;
|
|
2518
2671
|
getIsTranslatable: () => boolean;
|
|
2519
|
-
getVisibility: () => import("
|
|
2672
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2673
|
+
getIsDynamic: () => boolean;
|
|
2674
|
+
getDescription: () => string | undefined;
|
|
2520
2675
|
getCondition: () => {
|
|
2521
2676
|
field: string;
|
|
2522
2677
|
equals: unknown;
|
|
@@ -2554,69 +2709,79 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2554
2709
|
lte?: number | undefined;
|
|
2555
2710
|
};
|
|
2556
2711
|
} | undefined;
|
|
2557
|
-
}>(this: TThis_1, length: number) => import("
|
|
2558
|
-
}, import("
|
|
2559
|
-
permissions: import("
|
|
2560
|
-
|
|
2712
|
+
}>(this: TThis_1, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_1>>;
|
|
2713
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2714
|
+
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> & {
|
|
2715
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
2716
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
2717
|
+
}, "ManagerRole", undefined>;
|
|
2561
2718
|
only?: undefined;
|
|
2562
2719
|
multiple: <TThis_1 extends {
|
|
2563
2720
|
kind: "field";
|
|
2564
2721
|
readonly __fieldTypes?: {
|
|
2565
|
-
input: import("
|
|
2566
|
-
db: import("
|
|
2722
|
+
input: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2723
|
+
db: import("../index.js").RelationExisting<"ManagerRole">;
|
|
2567
2724
|
output: {
|
|
2568
2725
|
name: string;
|
|
2569
|
-
permissions: (
|
|
2726
|
+
permissions: (string | undefined)[];
|
|
2570
2727
|
_type: "ManagerRole";
|
|
2571
2728
|
_id: string;
|
|
2572
2729
|
_schemaVersion?: number | undefined;
|
|
2573
|
-
_visibility?: import("
|
|
2574
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2730
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2731
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2575
2732
|
_trashed?: boolean | undefined;
|
|
2576
2733
|
_revision?: number | undefined;
|
|
2734
|
+
_localeVariantGroupId?: string | undefined;
|
|
2735
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2577
2736
|
trashedAt?: Date | undefined;
|
|
2578
2737
|
createdAt?: Date | undefined;
|
|
2579
2738
|
updatedAt?: Date | undefined;
|
|
2580
2739
|
};
|
|
2581
|
-
meta: import("
|
|
2582
|
-
state: import("
|
|
2740
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2741
|
+
state: import("../index.js").FieldState;
|
|
2583
2742
|
} | undefined;
|
|
2584
|
-
meta: import("
|
|
2585
|
-
state: import("
|
|
2586
|
-
toZod: () => import("zod").ZodType<import("
|
|
2587
|
-
getInputSchema: () => import("zod").ZodType<import("
|
|
2588
|
-
getSchema: () => import("zod").ZodType<import("
|
|
2743
|
+
meta: import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2744
|
+
state: import("../index.js").FieldState;
|
|
2745
|
+
toZod: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole">, unknown>>;
|
|
2746
|
+
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>>;
|
|
2747
|
+
getSchema: () => import("zod").ZodType<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("../index.js").RelationExisting<"ManagerRole"> | undefined, unknown>>;
|
|
2589
2748
|
getOutputSchema: () => import("zod").ZodType<{
|
|
2590
2749
|
name: string;
|
|
2591
|
-
permissions: (
|
|
2750
|
+
permissions: (string | undefined)[];
|
|
2592
2751
|
_type: "ManagerRole";
|
|
2593
2752
|
_id: string;
|
|
2594
2753
|
_schemaVersion?: number | undefined;
|
|
2595
|
-
_visibility?: import("
|
|
2596
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2754
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2755
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2597
2756
|
_trashed?: boolean | undefined;
|
|
2598
2757
|
_revision?: number | undefined;
|
|
2758
|
+
_localeVariantGroupId?: string | undefined;
|
|
2759
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2599
2760
|
trashedAt?: Date | undefined;
|
|
2600
2761
|
createdAt?: Date | undefined;
|
|
2601
2762
|
updatedAt?: Date | undefined;
|
|
2602
2763
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
2603
2764
|
name: string;
|
|
2604
|
-
permissions: (
|
|
2765
|
+
permissions: (string | undefined)[];
|
|
2605
2766
|
_type: "ManagerRole";
|
|
2606
2767
|
_id: string;
|
|
2607
2768
|
_schemaVersion?: number | undefined;
|
|
2608
|
-
_visibility?: import("
|
|
2609
|
-
_visibilityBeforeTrash?: Exclude<import("
|
|
2769
|
+
_visibility?: import("../index.js").DocumentVisibility | undefined;
|
|
2770
|
+
_visibilityBeforeTrash?: Exclude<import("../index.js").DocumentVisibility, "trash"> | undefined;
|
|
2610
2771
|
_trashed?: boolean | undefined;
|
|
2611
2772
|
_revision?: number | undefined;
|
|
2773
|
+
_localeVariantGroupId?: string | undefined;
|
|
2774
|
+
_localeVariantRole?: import("zod").infer<typeof import("../index.js").LocaleVariantRole> | undefined;
|
|
2612
2775
|
trashedAt?: Date | undefined;
|
|
2613
2776
|
createdAt?: Date | undefined;
|
|
2614
2777
|
updatedAt?: Date | undefined;
|
|
2615
2778
|
} | undefined, unknown>>;
|
|
2616
|
-
getConfig: () => import("
|
|
2779
|
+
getConfig: () => import("../index.js").RelationMeta<"ManagerRole", undefined>;
|
|
2617
2780
|
getIsRequired: () => boolean;
|
|
2618
2781
|
getIsTranslatable: () => boolean;
|
|
2619
|
-
getVisibility: () => import("
|
|
2782
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2783
|
+
getIsDynamic: () => boolean;
|
|
2784
|
+
getDescription: () => string | undefined;
|
|
2620
2785
|
getCondition: () => {
|
|
2621
2786
|
field: string;
|
|
2622
2787
|
equals: unknown;
|
|
@@ -2654,26 +2819,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2654
2819
|
lte?: number | undefined;
|
|
2655
2820
|
};
|
|
2656
2821
|
} | undefined;
|
|
2657
|
-
}>(this: TThis_1) => import("
|
|
2658
|
-
name: import("
|
|
2822
|
+
}>(this: TThis_1) => import("../index.js").SimpleListField<import("../index.js").RelationField<ContentType<{
|
|
2823
|
+
name: import("../index.js").WithFieldState<{
|
|
2659
2824
|
kind: "field";
|
|
2660
2825
|
readonly __fieldTypes?: {
|
|
2661
2826
|
input: string;
|
|
2662
2827
|
db: string;
|
|
2663
2828
|
output: string;
|
|
2664
|
-
meta: import("
|
|
2665
|
-
state: import("
|
|
2829
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2830
|
+
state: import("../index.js").DefaultFieldState;
|
|
2666
2831
|
} | undefined;
|
|
2667
|
-
meta: import("
|
|
2668
|
-
state: import("
|
|
2832
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2833
|
+
state: import("../index.js").DefaultFieldState;
|
|
2669
2834
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2670
2835
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2671
2836
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2672
2837
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2673
|
-
getConfig: () => import("
|
|
2838
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2674
2839
|
getIsRequired: () => false;
|
|
2675
2840
|
getIsTranslatable: () => false;
|
|
2676
2841
|
getVisibility: () => "all";
|
|
2842
|
+
getIsDynamic: () => true;
|
|
2843
|
+
getDescription: () => undefined;
|
|
2677
2844
|
getCondition: () => undefined;
|
|
2678
2845
|
} & {
|
|
2679
2846
|
type: <TThis_2 extends {
|
|
@@ -2682,19 +2849,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2682
2849
|
input: string;
|
|
2683
2850
|
db: string;
|
|
2684
2851
|
output: string;
|
|
2685
|
-
meta: import("
|
|
2686
|
-
state: import("
|
|
2852
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2853
|
+
state: import("../index.js").FieldState;
|
|
2687
2854
|
} | undefined;
|
|
2688
|
-
meta: import("
|
|
2689
|
-
state: import("
|
|
2855
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2856
|
+
state: import("../index.js").FieldState;
|
|
2690
2857
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2691
2858
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2692
2859
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2693
2860
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2694
|
-
getConfig: () => import("
|
|
2861
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2695
2862
|
getIsRequired: () => boolean;
|
|
2696
2863
|
getIsTranslatable: () => boolean;
|
|
2697
|
-
getVisibility: () => import("
|
|
2864
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2865
|
+
getIsDynamic: () => boolean;
|
|
2866
|
+
getDescription: () => string | undefined;
|
|
2698
2867
|
getCondition: () => {
|
|
2699
2868
|
field: string;
|
|
2700
2869
|
equals: unknown;
|
|
@@ -2732,26 +2901,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2732
2901
|
lte?: number | undefined;
|
|
2733
2902
|
};
|
|
2734
2903
|
} | undefined;
|
|
2735
|
-
}, NextUi extends import("
|
|
2904
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis_2, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis_2>>;
|
|
2736
2905
|
min: <TThis_2 extends {
|
|
2737
2906
|
kind: "field";
|
|
2738
2907
|
readonly __fieldTypes?: {
|
|
2739
2908
|
input: string;
|
|
2740
2909
|
db: string;
|
|
2741
2910
|
output: string;
|
|
2742
|
-
meta: import("
|
|
2743
|
-
state: import("
|
|
2911
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2912
|
+
state: import("../index.js").FieldState;
|
|
2744
2913
|
} | undefined;
|
|
2745
|
-
meta: import("
|
|
2746
|
-
state: import("
|
|
2914
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2915
|
+
state: import("../index.js").FieldState;
|
|
2747
2916
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2748
2917
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2749
2918
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2750
2919
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2751
|
-
getConfig: () => import("
|
|
2920
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2752
2921
|
getIsRequired: () => boolean;
|
|
2753
2922
|
getIsTranslatable: () => boolean;
|
|
2754
|
-
getVisibility: () => import("
|
|
2923
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2924
|
+
getIsDynamic: () => boolean;
|
|
2925
|
+
getDescription: () => string | undefined;
|
|
2755
2926
|
getCondition: () => {
|
|
2756
2927
|
field: string;
|
|
2757
2928
|
equals: unknown;
|
|
@@ -2789,26 +2960,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2789
2960
|
lte?: number | undefined;
|
|
2790
2961
|
};
|
|
2791
2962
|
} | undefined;
|
|
2792
|
-
}>(this: TThis_2, length: number) => import("
|
|
2963
|
+
}>(this: TThis_2, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_2>>;
|
|
2793
2964
|
max: <TThis_2 extends {
|
|
2794
2965
|
kind: "field";
|
|
2795
2966
|
readonly __fieldTypes?: {
|
|
2796
2967
|
input: string;
|
|
2797
2968
|
db: string;
|
|
2798
2969
|
output: string;
|
|
2799
|
-
meta: import("
|
|
2800
|
-
state: import("
|
|
2970
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2971
|
+
state: import("../index.js").FieldState;
|
|
2801
2972
|
} | undefined;
|
|
2802
|
-
meta: import("
|
|
2803
|
-
state: import("
|
|
2973
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2974
|
+
state: import("../index.js").FieldState;
|
|
2804
2975
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2805
2976
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2806
2977
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2807
2978
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2808
|
-
getConfig: () => import("
|
|
2979
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2809
2980
|
getIsRequired: () => boolean;
|
|
2810
2981
|
getIsTranslatable: () => boolean;
|
|
2811
|
-
getVisibility: () => import("
|
|
2982
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2983
|
+
getIsDynamic: () => boolean;
|
|
2984
|
+
getDescription: () => string | undefined;
|
|
2812
2985
|
getCondition: () => {
|
|
2813
2986
|
field: string;
|
|
2814
2987
|
equals: unknown;
|
|
@@ -2846,61 +3019,67 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2846
3019
|
lte?: number | undefined;
|
|
2847
3020
|
};
|
|
2848
3021
|
} | undefined;
|
|
2849
|
-
}>(this: TThis_2, length: number) => import("
|
|
2850
|
-
}, import("
|
|
2851
|
-
permissions: import("
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
3022
|
+
}>(this: TThis_2, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis_2>>;
|
|
3023
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3024
|
+
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> & {
|
|
3025
|
+
field: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
3026
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3027
|
+
}, "ManagerRole", undefined>, undefined, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").FieldStateOf<TThis_1>>;
|
|
3028
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3029
|
+
avatarId: import("../index.js").StringField<"Id", import("../index.js").DefaultFieldState>;
|
|
3030
|
+
avatarKey: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
3031
|
+
avatarAccess: import("../index.js").SelectField<readonly ["public", "private"], false, import("../index.js").DefaultFieldState>;
|
|
3032
|
+
avatarUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
3033
|
+
avatarPreviewUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
3034
|
+
tutorialsEnabled: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
3035
|
+
tutorialsPromptedAt: import("../index.js").DateField<"DateTime", import("../index.js").DefaultFieldState>;
|
|
3036
|
+
seenTours: import("../index.js").SimpleListField<import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>, import("../index.js").DefaultFieldState>;
|
|
3037
|
+
twoFactorEnabled: import("../index.js").WithFieldState<{
|
|
2863
3038
|
kind: "field";
|
|
2864
3039
|
readonly __fieldTypes?: {
|
|
2865
3040
|
input: boolean;
|
|
2866
3041
|
db: boolean;
|
|
2867
3042
|
output: boolean;
|
|
2868
|
-
meta: import("
|
|
2869
|
-
state: import("
|
|
3043
|
+
meta: import("../index.js").BooleanMeta;
|
|
3044
|
+
state: import("../index.js").DefaultFieldState;
|
|
2870
3045
|
} | undefined;
|
|
2871
|
-
meta: import("
|
|
2872
|
-
state: import("
|
|
3046
|
+
meta: import("../index.js").BooleanMeta;
|
|
3047
|
+
state: import("../index.js").DefaultFieldState;
|
|
2873
3048
|
toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
|
|
2874
3049
|
getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
|
|
2875
3050
|
getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
2876
3051
|
getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
|
|
2877
|
-
getConfig: () => import("
|
|
3052
|
+
getConfig: () => import("../index.js").BooleanMeta;
|
|
2878
3053
|
getIsRequired: () => false;
|
|
2879
3054
|
getIsTranslatable: () => false;
|
|
2880
3055
|
getVisibility: () => "all";
|
|
3056
|
+
getIsDynamic: () => true;
|
|
3057
|
+
getDescription: () => undefined;
|
|
2881
3058
|
getCondition: () => undefined;
|
|
2882
|
-
}, import("
|
|
2883
|
-
}, "ManagerUser">, undefined, import("
|
|
2884
|
-
}, import("
|
|
2885
|
-
credentialId: import("
|
|
3059
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3060
|
+
}, "ManagerUser", undefined>, undefined, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>, import("../index.js").FieldStateOf<TThis>>;
|
|
3061
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3062
|
+
credentialId: import("../index.js").WithFieldState<{
|
|
2886
3063
|
kind: "field";
|
|
2887
3064
|
readonly __fieldTypes?: {
|
|
2888
3065
|
input: string;
|
|
2889
3066
|
db: string;
|
|
2890
3067
|
output: string;
|
|
2891
|
-
meta: import("
|
|
2892
|
-
state: import("
|
|
3068
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3069
|
+
state: import("../index.js").DefaultFieldState;
|
|
2893
3070
|
} | undefined;
|
|
2894
|
-
meta: import("
|
|
2895
|
-
state: import("
|
|
3071
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3072
|
+
state: import("../index.js").DefaultFieldState;
|
|
2896
3073
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2897
3074
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2898
3075
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2899
3076
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2900
|
-
getConfig: () => import("
|
|
3077
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2901
3078
|
getIsRequired: () => false;
|
|
2902
3079
|
getIsTranslatable: () => false;
|
|
2903
3080
|
getVisibility: () => "all";
|
|
3081
|
+
getIsDynamic: () => true;
|
|
3082
|
+
getDescription: () => undefined;
|
|
2904
3083
|
getCondition: () => undefined;
|
|
2905
3084
|
} & {
|
|
2906
3085
|
type: <TThis extends {
|
|
@@ -2909,19 +3088,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2909
3088
|
input: string;
|
|
2910
3089
|
db: string;
|
|
2911
3090
|
output: string;
|
|
2912
|
-
meta: import("
|
|
2913
|
-
state: import("
|
|
3091
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3092
|
+
state: import("../index.js").FieldState;
|
|
2914
3093
|
} | undefined;
|
|
2915
|
-
meta: import("
|
|
2916
|
-
state: import("
|
|
3094
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3095
|
+
state: import("../index.js").FieldState;
|
|
2917
3096
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2918
3097
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2919
3098
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2920
3099
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2921
|
-
getConfig: () => import("
|
|
3100
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2922
3101
|
getIsRequired: () => boolean;
|
|
2923
3102
|
getIsTranslatable: () => boolean;
|
|
2924
|
-
getVisibility: () => import("
|
|
3103
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3104
|
+
getIsDynamic: () => boolean;
|
|
3105
|
+
getDescription: () => string | undefined;
|
|
2925
3106
|
getCondition: () => {
|
|
2926
3107
|
field: string;
|
|
2927
3108
|
equals: unknown;
|
|
@@ -2959,26 +3140,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
2959
3140
|
lte?: number | undefined;
|
|
2960
3141
|
};
|
|
2961
3142
|
} | undefined;
|
|
2962
|
-
}, NextUi extends import("
|
|
3143
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
2963
3144
|
min: <TThis extends {
|
|
2964
3145
|
kind: "field";
|
|
2965
3146
|
readonly __fieldTypes?: {
|
|
2966
3147
|
input: string;
|
|
2967
3148
|
db: string;
|
|
2968
3149
|
output: string;
|
|
2969
|
-
meta: import("
|
|
2970
|
-
state: import("
|
|
3150
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3151
|
+
state: import("../index.js").FieldState;
|
|
2971
3152
|
} | undefined;
|
|
2972
|
-
meta: import("
|
|
2973
|
-
state: import("
|
|
3153
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3154
|
+
state: import("../index.js").FieldState;
|
|
2974
3155
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2975
3156
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2976
3157
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2977
3158
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2978
|
-
getConfig: () => import("
|
|
3159
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2979
3160
|
getIsRequired: () => boolean;
|
|
2980
3161
|
getIsTranslatable: () => boolean;
|
|
2981
|
-
getVisibility: () => import("
|
|
3162
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3163
|
+
getIsDynamic: () => boolean;
|
|
3164
|
+
getDescription: () => string | undefined;
|
|
2982
3165
|
getCondition: () => {
|
|
2983
3166
|
field: string;
|
|
2984
3167
|
equals: unknown;
|
|
@@ -3016,26 +3199,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3016
3199
|
lte?: number | undefined;
|
|
3017
3200
|
};
|
|
3018
3201
|
} | undefined;
|
|
3019
|
-
}>(this: TThis, length: number) => import("
|
|
3202
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3020
3203
|
max: <TThis extends {
|
|
3021
3204
|
kind: "field";
|
|
3022
3205
|
readonly __fieldTypes?: {
|
|
3023
3206
|
input: string;
|
|
3024
3207
|
db: string;
|
|
3025
3208
|
output: string;
|
|
3026
|
-
meta: import("
|
|
3027
|
-
state: import("
|
|
3209
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3210
|
+
state: import("../index.js").FieldState;
|
|
3028
3211
|
} | undefined;
|
|
3029
|
-
meta: import("
|
|
3030
|
-
state: import("
|
|
3212
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3213
|
+
state: import("../index.js").FieldState;
|
|
3031
3214
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3032
3215
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3033
3216
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3034
3217
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3035
|
-
getConfig: () => import("
|
|
3218
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3036
3219
|
getIsRequired: () => boolean;
|
|
3037
3220
|
getIsTranslatable: () => boolean;
|
|
3038
|
-
getVisibility: () => import("
|
|
3221
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3222
|
+
getIsDynamic: () => boolean;
|
|
3223
|
+
getDescription: () => string | undefined;
|
|
3039
3224
|
getCondition: () => {
|
|
3040
3225
|
field: string;
|
|
3041
3226
|
equals: unknown;
|
|
@@ -3073,27 +3258,29 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3073
3258
|
lte?: number | undefined;
|
|
3074
3259
|
};
|
|
3075
3260
|
} | undefined;
|
|
3076
|
-
}>(this: TThis, length: number) => import("
|
|
3077
|
-
}, import("
|
|
3078
|
-
publicKey: import("
|
|
3261
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3262
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3263
|
+
publicKey: import("../index.js").WithFieldState<{
|
|
3079
3264
|
kind: "field";
|
|
3080
3265
|
readonly __fieldTypes?: {
|
|
3081
3266
|
input: string;
|
|
3082
3267
|
db: string;
|
|
3083
3268
|
output: string;
|
|
3084
|
-
meta: import("
|
|
3085
|
-
state: import("
|
|
3269
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3270
|
+
state: import("../index.js").DefaultFieldState;
|
|
3086
3271
|
} | undefined;
|
|
3087
|
-
meta: import("
|
|
3088
|
-
state: import("
|
|
3272
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3273
|
+
state: import("../index.js").DefaultFieldState;
|
|
3089
3274
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3090
3275
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3091
3276
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3092
3277
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3093
|
-
getConfig: () => import("
|
|
3278
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3094
3279
|
getIsRequired: () => false;
|
|
3095
3280
|
getIsTranslatable: () => false;
|
|
3096
3281
|
getVisibility: () => "all";
|
|
3282
|
+
getIsDynamic: () => true;
|
|
3283
|
+
getDescription: () => undefined;
|
|
3097
3284
|
getCondition: () => undefined;
|
|
3098
3285
|
} & {
|
|
3099
3286
|
type: <TThis extends {
|
|
@@ -3102,19 +3289,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3102
3289
|
input: string;
|
|
3103
3290
|
db: string;
|
|
3104
3291
|
output: string;
|
|
3105
|
-
meta: import("
|
|
3106
|
-
state: import("
|
|
3292
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3293
|
+
state: import("../index.js").FieldState;
|
|
3107
3294
|
} | undefined;
|
|
3108
|
-
meta: import("
|
|
3109
|
-
state: import("
|
|
3295
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3296
|
+
state: import("../index.js").FieldState;
|
|
3110
3297
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3111
3298
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3112
3299
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3113
3300
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3114
|
-
getConfig: () => import("
|
|
3301
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3115
3302
|
getIsRequired: () => boolean;
|
|
3116
3303
|
getIsTranslatable: () => boolean;
|
|
3117
|
-
getVisibility: () => import("
|
|
3304
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3305
|
+
getIsDynamic: () => boolean;
|
|
3306
|
+
getDescription: () => string | undefined;
|
|
3118
3307
|
getCondition: () => {
|
|
3119
3308
|
field: string;
|
|
3120
3309
|
equals: unknown;
|
|
@@ -3152,26 +3341,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3152
3341
|
lte?: number | undefined;
|
|
3153
3342
|
};
|
|
3154
3343
|
} | undefined;
|
|
3155
|
-
}, NextUi extends import("
|
|
3344
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
3156
3345
|
min: <TThis extends {
|
|
3157
3346
|
kind: "field";
|
|
3158
3347
|
readonly __fieldTypes?: {
|
|
3159
3348
|
input: string;
|
|
3160
3349
|
db: string;
|
|
3161
3350
|
output: string;
|
|
3162
|
-
meta: import("
|
|
3163
|
-
state: import("
|
|
3351
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3352
|
+
state: import("../index.js").FieldState;
|
|
3164
3353
|
} | undefined;
|
|
3165
|
-
meta: import("
|
|
3166
|
-
state: import("
|
|
3354
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3355
|
+
state: import("../index.js").FieldState;
|
|
3167
3356
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3168
3357
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3169
3358
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3170
3359
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3171
|
-
getConfig: () => import("
|
|
3360
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3172
3361
|
getIsRequired: () => boolean;
|
|
3173
3362
|
getIsTranslatable: () => boolean;
|
|
3174
|
-
getVisibility: () => import("
|
|
3363
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3364
|
+
getIsDynamic: () => boolean;
|
|
3365
|
+
getDescription: () => string | undefined;
|
|
3175
3366
|
getCondition: () => {
|
|
3176
3367
|
field: string;
|
|
3177
3368
|
equals: unknown;
|
|
@@ -3209,26 +3400,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3209
3400
|
lte?: number | undefined;
|
|
3210
3401
|
};
|
|
3211
3402
|
} | undefined;
|
|
3212
|
-
}>(this: TThis, length: number) => import("
|
|
3403
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3213
3404
|
max: <TThis extends {
|
|
3214
3405
|
kind: "field";
|
|
3215
3406
|
readonly __fieldTypes?: {
|
|
3216
3407
|
input: string;
|
|
3217
3408
|
db: string;
|
|
3218
3409
|
output: string;
|
|
3219
|
-
meta: import("
|
|
3220
|
-
state: import("
|
|
3410
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3411
|
+
state: import("../index.js").FieldState;
|
|
3221
3412
|
} | undefined;
|
|
3222
|
-
meta: import("
|
|
3223
|
-
state: import("
|
|
3413
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3414
|
+
state: import("../index.js").FieldState;
|
|
3224
3415
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3225
3416
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3226
3417
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3227
3418
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3228
|
-
getConfig: () => import("
|
|
3419
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3229
3420
|
getIsRequired: () => boolean;
|
|
3230
3421
|
getIsTranslatable: () => boolean;
|
|
3231
|
-
getVisibility: () => import("
|
|
3422
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3423
|
+
getIsDynamic: () => boolean;
|
|
3424
|
+
getDescription: () => string | undefined;
|
|
3232
3425
|
getCondition: () => {
|
|
3233
3426
|
field: string;
|
|
3234
3427
|
equals: unknown;
|
|
@@ -3266,27 +3459,29 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3266
3459
|
lte?: number | undefined;
|
|
3267
3460
|
};
|
|
3268
3461
|
} | undefined;
|
|
3269
|
-
}>(this: TThis, length: number) => import("
|
|
3270
|
-
}, import("
|
|
3271
|
-
counter: import("
|
|
3462
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3463
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3464
|
+
counter: import("../index.js").WithFieldState<{
|
|
3272
3465
|
kind: "field";
|
|
3273
3466
|
readonly __fieldTypes?: {
|
|
3274
3467
|
input: number;
|
|
3275
3468
|
db: number;
|
|
3276
3469
|
output: number;
|
|
3277
|
-
meta: import("
|
|
3278
|
-
state: import("
|
|
3470
|
+
meta: import("../index.js").NumberMeta;
|
|
3471
|
+
state: import("../index.js").DefaultFieldState;
|
|
3279
3472
|
} | undefined;
|
|
3280
|
-
meta: import("
|
|
3281
|
-
state: import("
|
|
3473
|
+
meta: import("../index.js").NumberMeta;
|
|
3474
|
+
state: import("../index.js").DefaultFieldState;
|
|
3282
3475
|
toZod: () => import("zod").ZodType<number, unknown, import("zod/v4/core").$ZodTypeInternals<number, unknown>>;
|
|
3283
3476
|
getInputSchema: () => import("zod").ZodType<number | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | null | undefined, unknown>>;
|
|
3284
3477
|
getSchema: () => import("zod").ZodType<number | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | undefined, unknown>>;
|
|
3285
3478
|
getOutputSchema: () => import("zod").ZodType<number | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | undefined, unknown>>;
|
|
3286
|
-
getConfig: () => import("
|
|
3479
|
+
getConfig: () => import("../index.js").NumberMeta;
|
|
3287
3480
|
getIsRequired: () => false;
|
|
3288
3481
|
getIsTranslatable: () => false;
|
|
3289
3482
|
getVisibility: () => "all";
|
|
3483
|
+
getIsDynamic: () => true;
|
|
3484
|
+
getDescription: () => undefined;
|
|
3290
3485
|
getCondition: () => undefined;
|
|
3291
3486
|
} & {
|
|
3292
3487
|
min: <TThis extends {
|
|
@@ -3295,19 +3490,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3295
3490
|
input: number;
|
|
3296
3491
|
db: number;
|
|
3297
3492
|
output: number;
|
|
3298
|
-
meta: import("
|
|
3299
|
-
state: import("
|
|
3493
|
+
meta: import("../index.js").NumberMeta;
|
|
3494
|
+
state: import("../index.js").FieldState;
|
|
3300
3495
|
} | undefined;
|
|
3301
|
-
meta: import("
|
|
3302
|
-
state: import("
|
|
3496
|
+
meta: import("../index.js").NumberMeta;
|
|
3497
|
+
state: import("../index.js").FieldState;
|
|
3303
3498
|
toZod: () => import("zod").ZodType<number, unknown, import("zod/v4/core").$ZodTypeInternals<number, unknown>>;
|
|
3304
3499
|
getInputSchema: () => import("zod").ZodType<number | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | null | undefined, unknown>>;
|
|
3305
3500
|
getSchema: () => import("zod").ZodType<number | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | undefined, unknown>>;
|
|
3306
3501
|
getOutputSchema: () => import("zod").ZodType<number | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | undefined, unknown>>;
|
|
3307
|
-
getConfig: () => import("
|
|
3502
|
+
getConfig: () => import("../index.js").NumberMeta;
|
|
3308
3503
|
getIsRequired: () => boolean;
|
|
3309
3504
|
getIsTranslatable: () => boolean;
|
|
3310
|
-
getVisibility: () => import("
|
|
3505
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3506
|
+
getIsDynamic: () => boolean;
|
|
3507
|
+
getDescription: () => string | undefined;
|
|
3311
3508
|
getCondition: () => {
|
|
3312
3509
|
field: string;
|
|
3313
3510
|
equals: unknown;
|
|
@@ -3345,26 +3542,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3345
3542
|
lte?: number | undefined;
|
|
3346
3543
|
};
|
|
3347
3544
|
} | undefined;
|
|
3348
|
-
}>(this: TThis, value: number, message?: string) => import("
|
|
3545
|
+
}>(this: TThis, value: number, message?: string) => import("../index.js").NumberField<import("../index.js").FieldStateOf<TThis>>;
|
|
3349
3546
|
max: <TThis extends {
|
|
3350
3547
|
kind: "field";
|
|
3351
3548
|
readonly __fieldTypes?: {
|
|
3352
3549
|
input: number;
|
|
3353
3550
|
db: number;
|
|
3354
3551
|
output: number;
|
|
3355
|
-
meta: import("
|
|
3356
|
-
state: import("
|
|
3552
|
+
meta: import("../index.js").NumberMeta;
|
|
3553
|
+
state: import("../index.js").FieldState;
|
|
3357
3554
|
} | undefined;
|
|
3358
|
-
meta: import("
|
|
3359
|
-
state: import("
|
|
3555
|
+
meta: import("../index.js").NumberMeta;
|
|
3556
|
+
state: import("../index.js").FieldState;
|
|
3360
3557
|
toZod: () => import("zod").ZodType<number, unknown, import("zod/v4/core").$ZodTypeInternals<number, unknown>>;
|
|
3361
3558
|
getInputSchema: () => import("zod").ZodType<number | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | null | undefined, unknown>>;
|
|
3362
3559
|
getSchema: () => import("zod").ZodType<number | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | undefined, unknown>>;
|
|
3363
3560
|
getOutputSchema: () => import("zod").ZodType<number | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<number | undefined, unknown>>;
|
|
3364
|
-
getConfig: () => import("
|
|
3561
|
+
getConfig: () => import("../index.js").NumberMeta;
|
|
3365
3562
|
getIsRequired: () => boolean;
|
|
3366
3563
|
getIsTranslatable: () => boolean;
|
|
3367
|
-
getVisibility: () => import("
|
|
3564
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3565
|
+
getIsDynamic: () => boolean;
|
|
3566
|
+
getDescription: () => string | undefined;
|
|
3368
3567
|
getCondition: () => {
|
|
3369
3568
|
field: string;
|
|
3370
3569
|
equals: unknown;
|
|
@@ -3402,27 +3601,29 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3402
3601
|
lte?: number | undefined;
|
|
3403
3602
|
};
|
|
3404
3603
|
} | undefined;
|
|
3405
|
-
}>(this: TThis, value: number, message?: string) => import("
|
|
3406
|
-
}, import("
|
|
3407
|
-
deviceName: import("
|
|
3604
|
+
}>(this: TThis, value: number, message?: string) => import("../index.js").NumberField<import("../index.js").FieldStateOf<TThis>>;
|
|
3605
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3606
|
+
deviceName: import("../index.js").WithFieldState<{
|
|
3408
3607
|
kind: "field";
|
|
3409
3608
|
readonly __fieldTypes?: {
|
|
3410
3609
|
input: string;
|
|
3411
3610
|
db: string;
|
|
3412
3611
|
output: string;
|
|
3413
|
-
meta: import("
|
|
3414
|
-
state: import("
|
|
3612
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3613
|
+
state: import("../index.js").DefaultFieldState;
|
|
3415
3614
|
} | undefined;
|
|
3416
|
-
meta: import("
|
|
3417
|
-
state: import("
|
|
3615
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3616
|
+
state: import("../index.js").DefaultFieldState;
|
|
3418
3617
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3419
3618
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3420
3619
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3421
3620
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3422
|
-
getConfig: () => import("
|
|
3621
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3423
3622
|
getIsRequired: () => false;
|
|
3424
3623
|
getIsTranslatable: () => false;
|
|
3425
3624
|
getVisibility: () => "all";
|
|
3625
|
+
getIsDynamic: () => true;
|
|
3626
|
+
getDescription: () => undefined;
|
|
3426
3627
|
getCondition: () => undefined;
|
|
3427
3628
|
} & {
|
|
3428
3629
|
type: <TThis extends {
|
|
@@ -3431,19 +3632,21 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3431
3632
|
input: string;
|
|
3432
3633
|
db: string;
|
|
3433
3634
|
output: string;
|
|
3434
|
-
meta: import("
|
|
3435
|
-
state: import("
|
|
3635
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3636
|
+
state: import("../index.js").FieldState;
|
|
3436
3637
|
} | undefined;
|
|
3437
|
-
meta: import("
|
|
3438
|
-
state: import("
|
|
3638
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3639
|
+
state: import("../index.js").FieldState;
|
|
3439
3640
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3440
3641
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3441
3642
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3442
3643
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3443
|
-
getConfig: () => import("
|
|
3644
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3444
3645
|
getIsRequired: () => boolean;
|
|
3445
3646
|
getIsTranslatable: () => boolean;
|
|
3446
|
-
getVisibility: () => import("
|
|
3647
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3648
|
+
getIsDynamic: () => boolean;
|
|
3649
|
+
getDescription: () => string | undefined;
|
|
3447
3650
|
getCondition: () => {
|
|
3448
3651
|
field: string;
|
|
3449
3652
|
equals: unknown;
|
|
@@ -3481,26 +3684,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3481
3684
|
lte?: number | undefined;
|
|
3482
3685
|
};
|
|
3483
3686
|
} | undefined;
|
|
3484
|
-
}, NextUi extends import("
|
|
3687
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
3485
3688
|
min: <TThis extends {
|
|
3486
3689
|
kind: "field";
|
|
3487
3690
|
readonly __fieldTypes?: {
|
|
3488
3691
|
input: string;
|
|
3489
3692
|
db: string;
|
|
3490
3693
|
output: string;
|
|
3491
|
-
meta: import("
|
|
3492
|
-
state: import("
|
|
3694
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3695
|
+
state: import("../index.js").FieldState;
|
|
3493
3696
|
} | undefined;
|
|
3494
|
-
meta: import("
|
|
3495
|
-
state: import("
|
|
3697
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3698
|
+
state: import("../index.js").FieldState;
|
|
3496
3699
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3497
3700
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3498
3701
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3499
3702
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3500
|
-
getConfig: () => import("
|
|
3703
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3501
3704
|
getIsRequired: () => boolean;
|
|
3502
3705
|
getIsTranslatable: () => boolean;
|
|
3503
|
-
getVisibility: () => import("
|
|
3706
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3707
|
+
getIsDynamic: () => boolean;
|
|
3708
|
+
getDescription: () => string | undefined;
|
|
3504
3709
|
getCondition: () => {
|
|
3505
3710
|
field: string;
|
|
3506
3711
|
equals: unknown;
|
|
@@ -3538,26 +3743,28 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3538
3743
|
lte?: number | undefined;
|
|
3539
3744
|
};
|
|
3540
3745
|
} | undefined;
|
|
3541
|
-
}>(this: TThis, length: number) => import("
|
|
3746
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3542
3747
|
max: <TThis extends {
|
|
3543
3748
|
kind: "field";
|
|
3544
3749
|
readonly __fieldTypes?: {
|
|
3545
3750
|
input: string;
|
|
3546
3751
|
db: string;
|
|
3547
3752
|
output: string;
|
|
3548
|
-
meta: import("
|
|
3549
|
-
state: import("
|
|
3753
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3754
|
+
state: import("../index.js").FieldState;
|
|
3550
3755
|
} | undefined;
|
|
3551
|
-
meta: import("
|
|
3552
|
-
state: import("
|
|
3756
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3757
|
+
state: import("../index.js").FieldState;
|
|
3553
3758
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3554
3759
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3555
3760
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3556
3761
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3557
|
-
getConfig: () => import("
|
|
3762
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3558
3763
|
getIsRequired: () => boolean;
|
|
3559
3764
|
getIsTranslatable: () => boolean;
|
|
3560
|
-
getVisibility: () => import("
|
|
3765
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3766
|
+
getIsDynamic: () => boolean;
|
|
3767
|
+
getDescription: () => string | undefined;
|
|
3561
3768
|
getCondition: () => {
|
|
3562
3769
|
field: string;
|
|
3563
3770
|
equals: unknown;
|
|
@@ -3595,9 +3802,9 @@ export declare const WebAuthnCredential: ContentType<{
|
|
|
3595
3802
|
lte?: number | undefined;
|
|
3596
3803
|
};
|
|
3597
3804
|
} | undefined;
|
|
3598
|
-
}>(this: TThis, length: number) => import("
|
|
3599
|
-
}, import("
|
|
3600
|
-
}, "WebAuthnCredential">;
|
|
3805
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3806
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
3807
|
+
}, "WebAuthnCredential", undefined>;
|
|
3601
3808
|
export type WebAuthnCredential = typeof WebAuthnCredential;
|
|
3602
3809
|
export type WebAuthnCredentialManager = DBOutput<WebAuthnCredential>;
|
|
3603
3810
|
//# sourceMappingURL=WebAuthnCredential.d.ts.map
|