@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 { DataFront, DBOutput } from "../lib/types";
|
|
1
|
+
import ContentType from "../lib/ContentType.js";
|
|
2
|
+
import type { DataFront, DBOutput } from "../lib/types/index.js";
|
|
3
3
|
export declare const SeoSettings: ContentType<{
|
|
4
|
-
key: import("
|
|
4
|
+
key: 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 SeoSettings: 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 SeoSettings: 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 SeoSettings: 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,27 +200,29 @@ export declare const SeoSettings: ContentType<{
|
|
|
192
200
|
lte?: number | undefined;
|
|
193
201
|
};
|
|
194
202
|
} | undefined;
|
|
195
|
-
}>(this: TThis, length: number) => import("
|
|
196
|
-
}, import("
|
|
197
|
-
siteName: 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
|
+
siteName: import("../index.js").WithFieldState<{
|
|
198
206
|
kind: "field";
|
|
199
207
|
readonly __fieldTypes?: {
|
|
200
208
|
input: string;
|
|
201
209
|
db: string;
|
|
202
210
|
output: string;
|
|
203
|
-
meta: import("
|
|
204
|
-
state: import("
|
|
211
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
212
|
+
state: import("../index.js").DefaultFieldState;
|
|
205
213
|
} | undefined;
|
|
206
|
-
meta: import("
|
|
207
|
-
state: import("
|
|
214
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
215
|
+
state: import("../index.js").DefaultFieldState;
|
|
208
216
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
209
217
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
210
218
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
211
219
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
212
|
-
getConfig: () => import("
|
|
220
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
213
221
|
getIsRequired: () => false;
|
|
214
222
|
getIsTranslatable: () => false;
|
|
215
223
|
getVisibility: () => "all";
|
|
224
|
+
getIsDynamic: () => true;
|
|
225
|
+
getDescription: () => undefined;
|
|
216
226
|
getCondition: () => undefined;
|
|
217
227
|
} & {
|
|
218
228
|
type: <TThis extends {
|
|
@@ -221,19 +231,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
221
231
|
input: string;
|
|
222
232
|
db: string;
|
|
223
233
|
output: string;
|
|
224
|
-
meta: import("
|
|
225
|
-
state: import("
|
|
234
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
235
|
+
state: import("../index.js").FieldState;
|
|
226
236
|
} | undefined;
|
|
227
|
-
meta: import("
|
|
228
|
-
state: import("
|
|
237
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
238
|
+
state: import("../index.js").FieldState;
|
|
229
239
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
230
240
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
231
241
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
232
242
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
233
|
-
getConfig: () => import("
|
|
243
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
234
244
|
getIsRequired: () => boolean;
|
|
235
245
|
getIsTranslatable: () => boolean;
|
|
236
|
-
getVisibility: () => import("
|
|
246
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
247
|
+
getIsDynamic: () => boolean;
|
|
248
|
+
getDescription: () => string | undefined;
|
|
237
249
|
getCondition: () => {
|
|
238
250
|
field: string;
|
|
239
251
|
equals: unknown;
|
|
@@ -271,26 +283,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
271
283
|
lte?: number | undefined;
|
|
272
284
|
};
|
|
273
285
|
} | undefined;
|
|
274
|
-
}, NextUi extends import("
|
|
286
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
275
287
|
min: <TThis extends {
|
|
276
288
|
kind: "field";
|
|
277
289
|
readonly __fieldTypes?: {
|
|
278
290
|
input: string;
|
|
279
291
|
db: string;
|
|
280
292
|
output: string;
|
|
281
|
-
meta: import("
|
|
282
|
-
state: import("
|
|
293
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
294
|
+
state: import("../index.js").FieldState;
|
|
283
295
|
} | undefined;
|
|
284
|
-
meta: import("
|
|
285
|
-
state: import("
|
|
296
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
297
|
+
state: import("../index.js").FieldState;
|
|
286
298
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
287
299
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
288
300
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
289
301
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
290
|
-
getConfig: () => import("
|
|
302
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
291
303
|
getIsRequired: () => boolean;
|
|
292
304
|
getIsTranslatable: () => boolean;
|
|
293
|
-
getVisibility: () => import("
|
|
305
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
306
|
+
getIsDynamic: () => boolean;
|
|
307
|
+
getDescription: () => string | undefined;
|
|
294
308
|
getCondition: () => {
|
|
295
309
|
field: string;
|
|
296
310
|
equals: unknown;
|
|
@@ -328,26 +342,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
328
342
|
lte?: number | undefined;
|
|
329
343
|
};
|
|
330
344
|
} | undefined;
|
|
331
|
-
}>(this: TThis, length: number) => import("
|
|
345
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
332
346
|
max: <TThis extends {
|
|
333
347
|
kind: "field";
|
|
334
348
|
readonly __fieldTypes?: {
|
|
335
349
|
input: string;
|
|
336
350
|
db: string;
|
|
337
351
|
output: string;
|
|
338
|
-
meta: import("
|
|
339
|
-
state: import("
|
|
352
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
353
|
+
state: import("../index.js").FieldState;
|
|
340
354
|
} | undefined;
|
|
341
|
-
meta: import("
|
|
342
|
-
state: import("
|
|
355
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
356
|
+
state: import("../index.js").FieldState;
|
|
343
357
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
344
358
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
345
359
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
346
360
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
347
|
-
getConfig: () => import("
|
|
361
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
348
362
|
getIsRequired: () => boolean;
|
|
349
363
|
getIsTranslatable: () => boolean;
|
|
350
|
-
getVisibility: () => import("
|
|
364
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
365
|
+
getIsDynamic: () => boolean;
|
|
366
|
+
getDescription: () => string | undefined;
|
|
351
367
|
getCondition: () => {
|
|
352
368
|
field: string;
|
|
353
369
|
equals: unknown;
|
|
@@ -385,31 +401,233 @@ export declare const SeoSettings: ContentType<{
|
|
|
385
401
|
lte?: number | undefined;
|
|
386
402
|
};
|
|
387
403
|
} | undefined;
|
|
388
|
-
}>(this: TThis, length: number) => import("
|
|
389
|
-
}, import("
|
|
390
|
-
siteUrl: import("
|
|
391
|
-
titleTemplate: import("
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
404
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
405
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
406
|
+
siteUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
407
|
+
titleTemplate: import("../index.js").WithFieldState<{
|
|
408
|
+
kind: "field";
|
|
409
|
+
readonly __fieldTypes?: {
|
|
410
|
+
input: string;
|
|
411
|
+
db: string;
|
|
412
|
+
output: string;
|
|
413
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
414
|
+
state: import("../index.js").DefaultFieldState;
|
|
415
|
+
} | undefined;
|
|
416
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
417
|
+
state: import("../index.js").DefaultFieldState;
|
|
418
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
419
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
420
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
421
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
422
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
423
|
+
getIsRequired: () => false;
|
|
424
|
+
getIsTranslatable: () => false;
|
|
425
|
+
getVisibility: () => "all";
|
|
426
|
+
getIsDynamic: () => true;
|
|
427
|
+
getDescription: () => undefined;
|
|
428
|
+
getCondition: () => undefined;
|
|
429
|
+
} & {
|
|
430
|
+
type: <TThis extends {
|
|
431
|
+
kind: "field";
|
|
432
|
+
readonly __fieldTypes?: {
|
|
433
|
+
input: string;
|
|
434
|
+
db: string;
|
|
435
|
+
output: string;
|
|
436
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
437
|
+
state: import("../index.js").FieldState;
|
|
438
|
+
} | undefined;
|
|
439
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
440
|
+
state: import("../index.js").FieldState;
|
|
441
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
442
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
443
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
444
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
445
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
446
|
+
getIsRequired: () => boolean;
|
|
447
|
+
getIsTranslatable: () => boolean;
|
|
448
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
449
|
+
getIsDynamic: () => boolean;
|
|
450
|
+
getDescription: () => string | undefined;
|
|
451
|
+
getCondition: () => {
|
|
452
|
+
field: string;
|
|
453
|
+
equals: unknown;
|
|
454
|
+
} | {
|
|
455
|
+
field: string;
|
|
456
|
+
notEquals: unknown;
|
|
457
|
+
} | {
|
|
458
|
+
field: string;
|
|
459
|
+
exists: boolean;
|
|
460
|
+
} | {
|
|
461
|
+
field: string;
|
|
462
|
+
gt: number;
|
|
463
|
+
} | {
|
|
464
|
+
field: string;
|
|
465
|
+
gte: number;
|
|
466
|
+
} | {
|
|
467
|
+
field: string;
|
|
468
|
+
lt: number;
|
|
469
|
+
} | {
|
|
470
|
+
field: string;
|
|
471
|
+
lte: number;
|
|
472
|
+
} | {
|
|
473
|
+
field: string;
|
|
474
|
+
includes: unknown;
|
|
475
|
+
} | {
|
|
476
|
+
field: string;
|
|
477
|
+
notIncludes: unknown;
|
|
478
|
+
} | {
|
|
479
|
+
field: string;
|
|
480
|
+
length: {
|
|
481
|
+
equals?: number | undefined;
|
|
482
|
+
gt?: number | undefined;
|
|
483
|
+
gte?: number | undefined;
|
|
484
|
+
lt?: number | undefined;
|
|
485
|
+
lte?: number | undefined;
|
|
486
|
+
};
|
|
487
|
+
} | undefined;
|
|
488
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
489
|
+
min: <TThis extends {
|
|
490
|
+
kind: "field";
|
|
491
|
+
readonly __fieldTypes?: {
|
|
492
|
+
input: string;
|
|
493
|
+
db: string;
|
|
494
|
+
output: string;
|
|
495
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
496
|
+
state: import("../index.js").FieldState;
|
|
497
|
+
} | undefined;
|
|
498
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
499
|
+
state: import("../index.js").FieldState;
|
|
500
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
501
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
502
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
503
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
504
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
505
|
+
getIsRequired: () => boolean;
|
|
506
|
+
getIsTranslatable: () => boolean;
|
|
507
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
508
|
+
getIsDynamic: () => boolean;
|
|
509
|
+
getDescription: () => string | undefined;
|
|
510
|
+
getCondition: () => {
|
|
511
|
+
field: string;
|
|
512
|
+
equals: unknown;
|
|
513
|
+
} | {
|
|
514
|
+
field: string;
|
|
515
|
+
notEquals: unknown;
|
|
516
|
+
} | {
|
|
517
|
+
field: string;
|
|
518
|
+
exists: boolean;
|
|
519
|
+
} | {
|
|
520
|
+
field: string;
|
|
521
|
+
gt: number;
|
|
522
|
+
} | {
|
|
523
|
+
field: string;
|
|
524
|
+
gte: number;
|
|
525
|
+
} | {
|
|
526
|
+
field: string;
|
|
527
|
+
lt: number;
|
|
528
|
+
} | {
|
|
529
|
+
field: string;
|
|
530
|
+
lte: number;
|
|
531
|
+
} | {
|
|
532
|
+
field: string;
|
|
533
|
+
includes: unknown;
|
|
534
|
+
} | {
|
|
535
|
+
field: string;
|
|
536
|
+
notIncludes: unknown;
|
|
537
|
+
} | {
|
|
538
|
+
field: string;
|
|
539
|
+
length: {
|
|
540
|
+
equals?: number | undefined;
|
|
541
|
+
gt?: number | undefined;
|
|
542
|
+
gte?: number | undefined;
|
|
543
|
+
lt?: number | undefined;
|
|
544
|
+
lte?: number | undefined;
|
|
545
|
+
};
|
|
546
|
+
} | undefined;
|
|
547
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
548
|
+
max: <TThis extends {
|
|
549
|
+
kind: "field";
|
|
550
|
+
readonly __fieldTypes?: {
|
|
551
|
+
input: string;
|
|
552
|
+
db: string;
|
|
553
|
+
output: string;
|
|
554
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
555
|
+
state: import("../index.js").FieldState;
|
|
556
|
+
} | undefined;
|
|
557
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
558
|
+
state: import("../index.js").FieldState;
|
|
559
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
560
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
561
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
562
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
563
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
564
|
+
getIsRequired: () => boolean;
|
|
565
|
+
getIsTranslatable: () => boolean;
|
|
566
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
567
|
+
getIsDynamic: () => boolean;
|
|
568
|
+
getDescription: () => string | undefined;
|
|
569
|
+
getCondition: () => {
|
|
570
|
+
field: string;
|
|
571
|
+
equals: unknown;
|
|
572
|
+
} | {
|
|
573
|
+
field: string;
|
|
574
|
+
notEquals: unknown;
|
|
575
|
+
} | {
|
|
576
|
+
field: string;
|
|
577
|
+
exists: boolean;
|
|
578
|
+
} | {
|
|
579
|
+
field: string;
|
|
580
|
+
gt: number;
|
|
581
|
+
} | {
|
|
582
|
+
field: string;
|
|
583
|
+
gte: number;
|
|
584
|
+
} | {
|
|
585
|
+
field: string;
|
|
586
|
+
lt: number;
|
|
587
|
+
} | {
|
|
588
|
+
field: string;
|
|
589
|
+
lte: number;
|
|
590
|
+
} | {
|
|
591
|
+
field: string;
|
|
592
|
+
includes: unknown;
|
|
593
|
+
} | {
|
|
594
|
+
field: string;
|
|
595
|
+
notIncludes: unknown;
|
|
596
|
+
} | {
|
|
597
|
+
field: string;
|
|
598
|
+
length: {
|
|
599
|
+
equals?: number | undefined;
|
|
600
|
+
gt?: number | undefined;
|
|
601
|
+
gte?: number | undefined;
|
|
602
|
+
lt?: number | undefined;
|
|
603
|
+
lte?: number | undefined;
|
|
604
|
+
};
|
|
605
|
+
} | undefined;
|
|
606
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
607
|
+
}, import("../index.js").SetDescription<import("../index.js").DefaultFieldState>>;
|
|
608
|
+
twitterSite: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
609
|
+
defaultSeo: import("../index.js").RelationField<ContentType<{
|
|
610
|
+
title: import("../index.js").WithFieldState<{
|
|
395
611
|
kind: "field";
|
|
396
612
|
readonly __fieldTypes?: {
|
|
397
613
|
input: string;
|
|
398
614
|
db: string;
|
|
399
615
|
output: string;
|
|
400
|
-
meta: import("
|
|
401
|
-
state: import("
|
|
616
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
617
|
+
state: import("../index.js").DefaultFieldState;
|
|
402
618
|
} | undefined;
|
|
403
|
-
meta: import("
|
|
404
|
-
state: import("
|
|
619
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
620
|
+
state: import("../index.js").DefaultFieldState;
|
|
405
621
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
406
622
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
407
623
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
408
624
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
409
|
-
getConfig: () => import("
|
|
625
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
410
626
|
getIsRequired: () => false;
|
|
411
627
|
getIsTranslatable: () => false;
|
|
412
628
|
getVisibility: () => "all";
|
|
629
|
+
getIsDynamic: () => true;
|
|
630
|
+
getDescription: () => undefined;
|
|
413
631
|
getCondition: () => undefined;
|
|
414
632
|
} & {
|
|
415
633
|
type: <TThis extends {
|
|
@@ -418,19 +636,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
418
636
|
input: string;
|
|
419
637
|
db: string;
|
|
420
638
|
output: string;
|
|
421
|
-
meta: import("
|
|
422
|
-
state: import("
|
|
639
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
640
|
+
state: import("../index.js").FieldState;
|
|
423
641
|
} | undefined;
|
|
424
|
-
meta: import("
|
|
425
|
-
state: import("
|
|
642
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
643
|
+
state: import("../index.js").FieldState;
|
|
426
644
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
427
645
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
428
646
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
429
647
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
430
|
-
getConfig: () => import("
|
|
648
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
431
649
|
getIsRequired: () => boolean;
|
|
432
650
|
getIsTranslatable: () => boolean;
|
|
433
|
-
getVisibility: () => import("
|
|
651
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
652
|
+
getIsDynamic: () => boolean;
|
|
653
|
+
getDescription: () => string | undefined;
|
|
434
654
|
getCondition: () => {
|
|
435
655
|
field: string;
|
|
436
656
|
equals: unknown;
|
|
@@ -468,26 +688,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
468
688
|
lte?: number | undefined;
|
|
469
689
|
};
|
|
470
690
|
} | undefined;
|
|
471
|
-
}, NextUi extends import("
|
|
691
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
472
692
|
min: <TThis extends {
|
|
473
693
|
kind: "field";
|
|
474
694
|
readonly __fieldTypes?: {
|
|
475
695
|
input: string;
|
|
476
696
|
db: string;
|
|
477
697
|
output: string;
|
|
478
|
-
meta: import("
|
|
479
|
-
state: import("
|
|
698
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
699
|
+
state: import("../index.js").FieldState;
|
|
480
700
|
} | undefined;
|
|
481
|
-
meta: import("
|
|
482
|
-
state: import("
|
|
701
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
702
|
+
state: import("../index.js").FieldState;
|
|
483
703
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
484
704
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
485
705
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
486
706
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
487
|
-
getConfig: () => import("
|
|
707
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
488
708
|
getIsRequired: () => boolean;
|
|
489
709
|
getIsTranslatable: () => boolean;
|
|
490
|
-
getVisibility: () => import("
|
|
710
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
711
|
+
getIsDynamic: () => boolean;
|
|
712
|
+
getDescription: () => string | undefined;
|
|
491
713
|
getCondition: () => {
|
|
492
714
|
field: string;
|
|
493
715
|
equals: unknown;
|
|
@@ -525,26 +747,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
525
747
|
lte?: number | undefined;
|
|
526
748
|
};
|
|
527
749
|
} | undefined;
|
|
528
|
-
}>(this: TThis, length: number) => import("
|
|
750
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
529
751
|
max: <TThis extends {
|
|
530
752
|
kind: "field";
|
|
531
753
|
readonly __fieldTypes?: {
|
|
532
754
|
input: string;
|
|
533
755
|
db: string;
|
|
534
756
|
output: string;
|
|
535
|
-
meta: import("
|
|
536
|
-
state: import("
|
|
757
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
758
|
+
state: import("../index.js").FieldState;
|
|
537
759
|
} | undefined;
|
|
538
|
-
meta: import("
|
|
539
|
-
state: import("
|
|
760
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
761
|
+
state: import("../index.js").FieldState;
|
|
540
762
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
541
763
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
542
764
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
543
765
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
544
|
-
getConfig: () => import("
|
|
766
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
545
767
|
getIsRequired: () => boolean;
|
|
546
768
|
getIsTranslatable: () => boolean;
|
|
547
|
-
getVisibility: () => import("
|
|
769
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
770
|
+
getIsDynamic: () => boolean;
|
|
771
|
+
getDescription: () => string | undefined;
|
|
548
772
|
getCondition: () => {
|
|
549
773
|
field: string;
|
|
550
774
|
equals: unknown;
|
|
@@ -582,27 +806,29 @@ export declare const SeoSettings: ContentType<{
|
|
|
582
806
|
lte?: number | undefined;
|
|
583
807
|
};
|
|
584
808
|
} | undefined;
|
|
585
|
-
}>(this: TThis, length: number) => import("
|
|
586
|
-
}, import("
|
|
587
|
-
description: import("
|
|
809
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
810
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
811
|
+
description: import("../index.js").WithFieldState<{
|
|
588
812
|
kind: "field";
|
|
589
813
|
readonly __fieldTypes?: {
|
|
590
814
|
input: string;
|
|
591
815
|
db: string;
|
|
592
816
|
output: string;
|
|
593
|
-
meta: import("
|
|
594
|
-
state: import("
|
|
817
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
818
|
+
state: import("../index.js").DefaultFieldState;
|
|
595
819
|
} | undefined;
|
|
596
|
-
meta: import("
|
|
597
|
-
state: import("
|
|
820
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
821
|
+
state: import("../index.js").DefaultFieldState;
|
|
598
822
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
599
823
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
600
824
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
601
825
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
602
|
-
getConfig: () => import("
|
|
826
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
603
827
|
getIsRequired: () => false;
|
|
604
828
|
getIsTranslatable: () => false;
|
|
605
829
|
getVisibility: () => "all";
|
|
830
|
+
getIsDynamic: () => true;
|
|
831
|
+
getDescription: () => undefined;
|
|
606
832
|
getCondition: () => undefined;
|
|
607
833
|
} & {
|
|
608
834
|
type: <TThis extends {
|
|
@@ -611,19 +837,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
611
837
|
input: string;
|
|
612
838
|
db: string;
|
|
613
839
|
output: string;
|
|
614
|
-
meta: import("
|
|
615
|
-
state: import("
|
|
840
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
841
|
+
state: import("../index.js").FieldState;
|
|
616
842
|
} | undefined;
|
|
617
|
-
meta: import("
|
|
618
|
-
state: import("
|
|
843
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
844
|
+
state: import("../index.js").FieldState;
|
|
619
845
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
620
846
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
621
847
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
622
848
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
623
|
-
getConfig: () => import("
|
|
849
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
624
850
|
getIsRequired: () => boolean;
|
|
625
851
|
getIsTranslatable: () => boolean;
|
|
626
|
-
getVisibility: () => import("
|
|
852
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
853
|
+
getIsDynamic: () => boolean;
|
|
854
|
+
getDescription: () => string | undefined;
|
|
627
855
|
getCondition: () => {
|
|
628
856
|
field: string;
|
|
629
857
|
equals: unknown;
|
|
@@ -661,26 +889,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
661
889
|
lte?: number | undefined;
|
|
662
890
|
};
|
|
663
891
|
} | undefined;
|
|
664
|
-
}, NextUi extends import("
|
|
892
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
665
893
|
min: <TThis extends {
|
|
666
894
|
kind: "field";
|
|
667
895
|
readonly __fieldTypes?: {
|
|
668
896
|
input: string;
|
|
669
897
|
db: string;
|
|
670
898
|
output: string;
|
|
671
|
-
meta: import("
|
|
672
|
-
state: import("
|
|
899
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
900
|
+
state: import("../index.js").FieldState;
|
|
673
901
|
} | undefined;
|
|
674
|
-
meta: import("
|
|
675
|
-
state: import("
|
|
902
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
903
|
+
state: import("../index.js").FieldState;
|
|
676
904
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
677
905
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
678
906
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
679
907
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
680
|
-
getConfig: () => import("
|
|
908
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
681
909
|
getIsRequired: () => boolean;
|
|
682
910
|
getIsTranslatable: () => boolean;
|
|
683
|
-
getVisibility: () => import("
|
|
911
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
912
|
+
getIsDynamic: () => boolean;
|
|
913
|
+
getDescription: () => string | undefined;
|
|
684
914
|
getCondition: () => {
|
|
685
915
|
field: string;
|
|
686
916
|
equals: unknown;
|
|
@@ -718,26 +948,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
718
948
|
lte?: number | undefined;
|
|
719
949
|
};
|
|
720
950
|
} | undefined;
|
|
721
|
-
}>(this: TThis, length: number) => import("
|
|
951
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
722
952
|
max: <TThis extends {
|
|
723
953
|
kind: "field";
|
|
724
954
|
readonly __fieldTypes?: {
|
|
725
955
|
input: string;
|
|
726
956
|
db: string;
|
|
727
957
|
output: string;
|
|
728
|
-
meta: import("
|
|
729
|
-
state: import("
|
|
958
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
959
|
+
state: import("../index.js").FieldState;
|
|
730
960
|
} | undefined;
|
|
731
|
-
meta: import("
|
|
732
|
-
state: import("
|
|
961
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
962
|
+
state: import("../index.js").FieldState;
|
|
733
963
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
734
964
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
735
965
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
736
966
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
737
|
-
getConfig: () => import("
|
|
967
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
738
968
|
getIsRequired: () => boolean;
|
|
739
969
|
getIsTranslatable: () => boolean;
|
|
740
|
-
getVisibility: () => import("
|
|
970
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
971
|
+
getIsDynamic: () => boolean;
|
|
972
|
+
getDescription: () => string | undefined;
|
|
741
973
|
getCondition: () => {
|
|
742
974
|
field: string;
|
|
743
975
|
equals: unknown;
|
|
@@ -775,27 +1007,29 @@ export declare const SeoSettings: ContentType<{
|
|
|
775
1007
|
lte?: number | undefined;
|
|
776
1008
|
};
|
|
777
1009
|
} | undefined;
|
|
778
|
-
}>(this: TThis, length: number) => import("
|
|
779
|
-
}, import("
|
|
780
|
-
canonicalUrl: import("
|
|
1010
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
1011
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
1012
|
+
canonicalUrl: import("../index.js").WithFieldState<Omit<{
|
|
781
1013
|
kind: "field";
|
|
782
1014
|
readonly __fieldTypes?: {
|
|
783
1015
|
input: string;
|
|
784
1016
|
db: string;
|
|
785
1017
|
output: string;
|
|
786
|
-
meta: import("
|
|
787
|
-
state: import("
|
|
1018
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1019
|
+
state: import("../index.js").DefaultFieldState;
|
|
788
1020
|
} | undefined;
|
|
789
|
-
meta: import("
|
|
790
|
-
state: import("
|
|
1021
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1022
|
+
state: import("../index.js").DefaultFieldState;
|
|
791
1023
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
792
1024
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
793
1025
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
794
1026
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
795
|
-
getConfig: () => import("
|
|
1027
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
796
1028
|
getIsRequired: () => false;
|
|
797
1029
|
getIsTranslatable: () => false;
|
|
798
1030
|
getVisibility: () => "all";
|
|
1031
|
+
getIsDynamic: () => true;
|
|
1032
|
+
getDescription: () => undefined;
|
|
799
1033
|
getCondition: () => undefined;
|
|
800
1034
|
} & {
|
|
801
1035
|
type: <TThis extends {
|
|
@@ -804,19 +1038,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
804
1038
|
input: string;
|
|
805
1039
|
db: string;
|
|
806
1040
|
output: string;
|
|
807
|
-
meta: import("
|
|
808
|
-
state: import("
|
|
1041
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1042
|
+
state: import("../index.js").FieldState;
|
|
809
1043
|
} | undefined;
|
|
810
|
-
meta: import("
|
|
811
|
-
state: import("
|
|
1044
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1045
|
+
state: import("../index.js").FieldState;
|
|
812
1046
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
813
1047
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
814
1048
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
815
1049
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
816
|
-
getConfig: () => import("
|
|
1050
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
817
1051
|
getIsRequired: () => boolean;
|
|
818
1052
|
getIsTranslatable: () => boolean;
|
|
819
|
-
getVisibility: () => import("
|
|
1053
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1054
|
+
getIsDynamic: () => boolean;
|
|
1055
|
+
getDescription: () => string | undefined;
|
|
820
1056
|
getCondition: () => {
|
|
821
1057
|
field: string;
|
|
822
1058
|
equals: unknown;
|
|
@@ -854,26 +1090,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
854
1090
|
lte?: number | undefined;
|
|
855
1091
|
};
|
|
856
1092
|
} | undefined;
|
|
857
|
-
}, NextUi extends import("
|
|
1093
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
858
1094
|
min: <TThis extends {
|
|
859
1095
|
kind: "field";
|
|
860
1096
|
readonly __fieldTypes?: {
|
|
861
1097
|
input: string;
|
|
862
1098
|
db: string;
|
|
863
1099
|
output: string;
|
|
864
|
-
meta: import("
|
|
865
|
-
state: import("
|
|
1100
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1101
|
+
state: import("../index.js").FieldState;
|
|
866
1102
|
} | undefined;
|
|
867
|
-
meta: import("
|
|
868
|
-
state: import("
|
|
1103
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1104
|
+
state: import("../index.js").FieldState;
|
|
869
1105
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
870
1106
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
871
1107
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
872
1108
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
873
|
-
getConfig: () => import("
|
|
1109
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
874
1110
|
getIsRequired: () => boolean;
|
|
875
1111
|
getIsTranslatable: () => boolean;
|
|
876
|
-
getVisibility: () => import("
|
|
1112
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1113
|
+
getIsDynamic: () => boolean;
|
|
1114
|
+
getDescription: () => string | undefined;
|
|
877
1115
|
getCondition: () => {
|
|
878
1116
|
field: string;
|
|
879
1117
|
equals: unknown;
|
|
@@ -911,26 +1149,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
911
1149
|
lte?: number | undefined;
|
|
912
1150
|
};
|
|
913
1151
|
} | undefined;
|
|
914
|
-
}>(this: TThis, length: number) => import("
|
|
1152
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
915
1153
|
max: <TThis extends {
|
|
916
1154
|
kind: "field";
|
|
917
1155
|
readonly __fieldTypes?: {
|
|
918
1156
|
input: string;
|
|
919
1157
|
db: string;
|
|
920
1158
|
output: string;
|
|
921
|
-
meta: import("
|
|
922
|
-
state: import("
|
|
1159
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1160
|
+
state: import("../index.js").FieldState;
|
|
923
1161
|
} | undefined;
|
|
924
|
-
meta: import("
|
|
925
|
-
state: import("
|
|
1162
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1163
|
+
state: import("../index.js").FieldState;
|
|
926
1164
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
927
1165
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
928
1166
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
929
1167
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
930
|
-
getConfig: () => import("
|
|
1168
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
931
1169
|
getIsRequired: () => boolean;
|
|
932
1170
|
getIsTranslatable: () => boolean;
|
|
933
|
-
getVisibility: () => import("
|
|
1171
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1172
|
+
getIsDynamic: () => boolean;
|
|
1173
|
+
getDescription: () => string | undefined;
|
|
934
1174
|
getCondition: () => {
|
|
935
1175
|
field: string;
|
|
936
1176
|
equals: unknown;
|
|
@@ -968,28 +1208,30 @@ export declare const SeoSettings: ContentType<{
|
|
|
968
1208
|
lte?: number | undefined;
|
|
969
1209
|
};
|
|
970
1210
|
} | undefined;
|
|
971
|
-
}>(this: TThis, length: number) => import("
|
|
972
|
-
}, import("
|
|
973
|
-
image: import("
|
|
974
|
-
imageAlt: import("
|
|
1211
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
1212
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Url">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetDescription<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>>;
|
|
1213
|
+
image: import("../index.js").FileField<"Image", false, import("../index.js").DefaultFieldState>;
|
|
1214
|
+
imageAlt: import("../index.js").WithFieldState<{
|
|
975
1215
|
kind: "field";
|
|
976
1216
|
readonly __fieldTypes?: {
|
|
977
1217
|
input: string;
|
|
978
1218
|
db: string;
|
|
979
1219
|
output: string;
|
|
980
|
-
meta: import("
|
|
981
|
-
state: import("
|
|
1220
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1221
|
+
state: import("../index.js").DefaultFieldState;
|
|
982
1222
|
} | undefined;
|
|
983
|
-
meta: import("
|
|
984
|
-
state: import("
|
|
1223
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1224
|
+
state: import("../index.js").DefaultFieldState;
|
|
985
1225
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
986
1226
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
987
1227
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
988
1228
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
989
|
-
getConfig: () => import("
|
|
1229
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
990
1230
|
getIsRequired: () => false;
|
|
991
1231
|
getIsTranslatable: () => false;
|
|
992
1232
|
getVisibility: () => "all";
|
|
1233
|
+
getIsDynamic: () => true;
|
|
1234
|
+
getDescription: () => undefined;
|
|
993
1235
|
getCondition: () => undefined;
|
|
994
1236
|
} & {
|
|
995
1237
|
type: <TThis extends {
|
|
@@ -998,19 +1240,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
998
1240
|
input: string;
|
|
999
1241
|
db: string;
|
|
1000
1242
|
output: string;
|
|
1001
|
-
meta: import("
|
|
1002
|
-
state: import("
|
|
1243
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1244
|
+
state: import("../index.js").FieldState;
|
|
1003
1245
|
} | undefined;
|
|
1004
|
-
meta: import("
|
|
1005
|
-
state: import("
|
|
1246
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1247
|
+
state: import("../index.js").FieldState;
|
|
1006
1248
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1007
1249
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1008
1250
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1009
1251
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1010
|
-
getConfig: () => import("
|
|
1252
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1011
1253
|
getIsRequired: () => boolean;
|
|
1012
1254
|
getIsTranslatable: () => boolean;
|
|
1013
|
-
getVisibility: () => import("
|
|
1255
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1256
|
+
getIsDynamic: () => boolean;
|
|
1257
|
+
getDescription: () => string | undefined;
|
|
1014
1258
|
getCondition: () => {
|
|
1015
1259
|
field: string;
|
|
1016
1260
|
equals: unknown;
|
|
@@ -1048,26 +1292,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1048
1292
|
lte?: number | undefined;
|
|
1049
1293
|
};
|
|
1050
1294
|
} | undefined;
|
|
1051
|
-
}, NextUi extends import("
|
|
1295
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1052
1296
|
min: <TThis extends {
|
|
1053
1297
|
kind: "field";
|
|
1054
1298
|
readonly __fieldTypes?: {
|
|
1055
1299
|
input: string;
|
|
1056
1300
|
db: string;
|
|
1057
1301
|
output: string;
|
|
1058
|
-
meta: import("
|
|
1059
|
-
state: import("
|
|
1302
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1303
|
+
state: import("../index.js").FieldState;
|
|
1060
1304
|
} | undefined;
|
|
1061
|
-
meta: import("
|
|
1062
|
-
state: import("
|
|
1305
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1306
|
+
state: import("../index.js").FieldState;
|
|
1063
1307
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1064
1308
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1065
1309
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1066
1310
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1067
|
-
getConfig: () => import("
|
|
1311
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1068
1312
|
getIsRequired: () => boolean;
|
|
1069
1313
|
getIsTranslatable: () => boolean;
|
|
1070
|
-
getVisibility: () => import("
|
|
1314
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1315
|
+
getIsDynamic: () => boolean;
|
|
1316
|
+
getDescription: () => string | undefined;
|
|
1071
1317
|
getCondition: () => {
|
|
1072
1318
|
field: string;
|
|
1073
1319
|
equals: unknown;
|
|
@@ -1105,26 +1351,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1105
1351
|
lte?: number | undefined;
|
|
1106
1352
|
};
|
|
1107
1353
|
} | undefined;
|
|
1108
|
-
}>(this: TThis, length: number) => import("
|
|
1354
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1109
1355
|
max: <TThis extends {
|
|
1110
1356
|
kind: "field";
|
|
1111
1357
|
readonly __fieldTypes?: {
|
|
1112
1358
|
input: string;
|
|
1113
1359
|
db: string;
|
|
1114
1360
|
output: string;
|
|
1115
|
-
meta: import("
|
|
1116
|
-
state: import("
|
|
1361
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1362
|
+
state: import("../index.js").FieldState;
|
|
1117
1363
|
} | undefined;
|
|
1118
|
-
meta: import("
|
|
1119
|
-
state: import("
|
|
1364
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1365
|
+
state: import("../index.js").FieldState;
|
|
1120
1366
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1121
1367
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1122
1368
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1123
1369
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1124
|
-
getConfig: () => import("
|
|
1370
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1125
1371
|
getIsRequired: () => boolean;
|
|
1126
1372
|
getIsTranslatable: () => boolean;
|
|
1127
|
-
getVisibility: () => import("
|
|
1373
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1374
|
+
getIsDynamic: () => boolean;
|
|
1375
|
+
getDescription: () => string | undefined;
|
|
1128
1376
|
getCondition: () => {
|
|
1129
1377
|
field: string;
|
|
1130
1378
|
equals: unknown;
|
|
@@ -1162,29 +1410,31 @@ export declare const SeoSettings: ContentType<{
|
|
|
1162
1410
|
lte?: number | undefined;
|
|
1163
1411
|
};
|
|
1164
1412
|
} | undefined;
|
|
1165
|
-
}>(this: TThis, length: number) => import("
|
|
1166
|
-
}, import("
|
|
1167
|
-
noIndex: import("
|
|
1168
|
-
customOpenGraph: import("
|
|
1169
|
-
openGraphTitle: import("
|
|
1413
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1414
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
1415
|
+
noIndex: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
1416
|
+
customOpenGraph: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
1417
|
+
openGraphTitle: import("../index.js").WithFieldState<Omit<{
|
|
1170
1418
|
kind: "field";
|
|
1171
1419
|
readonly __fieldTypes?: {
|
|
1172
1420
|
input: string;
|
|
1173
1421
|
db: string;
|
|
1174
1422
|
output: string;
|
|
1175
|
-
meta: import("
|
|
1176
|
-
state: import("
|
|
1423
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1424
|
+
state: import("../index.js").DefaultFieldState;
|
|
1177
1425
|
} | undefined;
|
|
1178
|
-
meta: import("
|
|
1179
|
-
state: import("
|
|
1426
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1427
|
+
state: import("../index.js").DefaultFieldState;
|
|
1180
1428
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1181
1429
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1182
1430
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1183
1431
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1184
|
-
getConfig: () => import("
|
|
1432
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1185
1433
|
getIsRequired: () => false;
|
|
1186
1434
|
getIsTranslatable: () => false;
|
|
1187
1435
|
getVisibility: () => "all";
|
|
1436
|
+
getIsDynamic: () => true;
|
|
1437
|
+
getDescription: () => undefined;
|
|
1188
1438
|
getCondition: () => undefined;
|
|
1189
1439
|
} & {
|
|
1190
1440
|
type: <TThis extends {
|
|
@@ -1193,19 +1443,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
1193
1443
|
input: string;
|
|
1194
1444
|
db: string;
|
|
1195
1445
|
output: string;
|
|
1196
|
-
meta: import("
|
|
1197
|
-
state: import("
|
|
1446
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1447
|
+
state: import("../index.js").FieldState;
|
|
1198
1448
|
} | undefined;
|
|
1199
|
-
meta: import("
|
|
1200
|
-
state: import("
|
|
1449
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1450
|
+
state: import("../index.js").FieldState;
|
|
1201
1451
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1202
1452
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1203
1453
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1204
1454
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1205
|
-
getConfig: () => import("
|
|
1455
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1206
1456
|
getIsRequired: () => boolean;
|
|
1207
1457
|
getIsTranslatable: () => boolean;
|
|
1208
|
-
getVisibility: () => import("
|
|
1458
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1459
|
+
getIsDynamic: () => boolean;
|
|
1460
|
+
getDescription: () => string | undefined;
|
|
1209
1461
|
getCondition: () => {
|
|
1210
1462
|
field: string;
|
|
1211
1463
|
equals: unknown;
|
|
@@ -1243,26 +1495,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1243
1495
|
lte?: number | undefined;
|
|
1244
1496
|
};
|
|
1245
1497
|
} | undefined;
|
|
1246
|
-
}, NextUi extends import("
|
|
1498
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1247
1499
|
min: <TThis extends {
|
|
1248
1500
|
kind: "field";
|
|
1249
1501
|
readonly __fieldTypes?: {
|
|
1250
1502
|
input: string;
|
|
1251
1503
|
db: string;
|
|
1252
1504
|
output: string;
|
|
1253
|
-
meta: import("
|
|
1254
|
-
state: import("
|
|
1505
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1506
|
+
state: import("../index.js").FieldState;
|
|
1255
1507
|
} | undefined;
|
|
1256
|
-
meta: import("
|
|
1257
|
-
state: import("
|
|
1508
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1509
|
+
state: import("../index.js").FieldState;
|
|
1258
1510
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1259
1511
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1260
1512
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1261
1513
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1262
|
-
getConfig: () => import("
|
|
1514
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1263
1515
|
getIsRequired: () => boolean;
|
|
1264
1516
|
getIsTranslatable: () => boolean;
|
|
1265
|
-
getVisibility: () => import("
|
|
1517
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1518
|
+
getIsDynamic: () => boolean;
|
|
1519
|
+
getDescription: () => string | undefined;
|
|
1266
1520
|
getCondition: () => {
|
|
1267
1521
|
field: string;
|
|
1268
1522
|
equals: unknown;
|
|
@@ -1300,26 +1554,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1300
1554
|
lte?: number | undefined;
|
|
1301
1555
|
};
|
|
1302
1556
|
} | undefined;
|
|
1303
|
-
}>(this: TThis, length: number) => import("
|
|
1557
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1304
1558
|
max: <TThis extends {
|
|
1305
1559
|
kind: "field";
|
|
1306
1560
|
readonly __fieldTypes?: {
|
|
1307
1561
|
input: string;
|
|
1308
1562
|
db: string;
|
|
1309
1563
|
output: string;
|
|
1310
|
-
meta: import("
|
|
1311
|
-
state: import("
|
|
1564
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1565
|
+
state: import("../index.js").FieldState;
|
|
1312
1566
|
} | undefined;
|
|
1313
|
-
meta: import("
|
|
1314
|
-
state: import("
|
|
1567
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1568
|
+
state: import("../index.js").FieldState;
|
|
1315
1569
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1316
1570
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1317
1571
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1318
1572
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1319
|
-
getConfig: () => import("
|
|
1573
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1320
1574
|
getIsRequired: () => boolean;
|
|
1321
1575
|
getIsTranslatable: () => boolean;
|
|
1322
|
-
getVisibility: () => import("
|
|
1576
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1577
|
+
getIsDynamic: () => boolean;
|
|
1578
|
+
getDescription: () => string | undefined;
|
|
1323
1579
|
getCondition: () => {
|
|
1324
1580
|
field: string;
|
|
1325
1581
|
equals: unknown;
|
|
@@ -1357,30 +1613,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
1357
1613
|
lte?: number | undefined;
|
|
1358
1614
|
};
|
|
1359
1615
|
} | undefined;
|
|
1360
|
-
}>(this: TThis, length: number) => import("
|
|
1361
|
-
}, keyof import("
|
|
1616
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1617
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Text">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
1362
1618
|
field: string;
|
|
1363
1619
|
equals: boolean;
|
|
1364
1620
|
}>>;
|
|
1365
|
-
openGraphDescription: import("
|
|
1621
|
+
openGraphDescription: import("../index.js").WithFieldState<Omit<{
|
|
1366
1622
|
kind: "field";
|
|
1367
1623
|
readonly __fieldTypes?: {
|
|
1368
1624
|
input: string;
|
|
1369
1625
|
db: string;
|
|
1370
1626
|
output: string;
|
|
1371
|
-
meta: import("
|
|
1372
|
-
state: import("
|
|
1627
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1628
|
+
state: import("../index.js").DefaultFieldState;
|
|
1373
1629
|
} | undefined;
|
|
1374
|
-
meta: import("
|
|
1375
|
-
state: import("
|
|
1630
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1631
|
+
state: import("../index.js").DefaultFieldState;
|
|
1376
1632
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1377
1633
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1378
1634
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1379
1635
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1380
|
-
getConfig: () => import("
|
|
1636
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1381
1637
|
getIsRequired: () => false;
|
|
1382
1638
|
getIsTranslatable: () => false;
|
|
1383
1639
|
getVisibility: () => "all";
|
|
1640
|
+
getIsDynamic: () => true;
|
|
1641
|
+
getDescription: () => undefined;
|
|
1384
1642
|
getCondition: () => undefined;
|
|
1385
1643
|
} & {
|
|
1386
1644
|
type: <TThis extends {
|
|
@@ -1389,19 +1647,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
1389
1647
|
input: string;
|
|
1390
1648
|
db: string;
|
|
1391
1649
|
output: string;
|
|
1392
|
-
meta: import("
|
|
1393
|
-
state: import("
|
|
1650
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1651
|
+
state: import("../index.js").FieldState;
|
|
1394
1652
|
} | undefined;
|
|
1395
|
-
meta: import("
|
|
1396
|
-
state: import("
|
|
1653
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1654
|
+
state: import("../index.js").FieldState;
|
|
1397
1655
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1398
1656
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1399
1657
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1400
1658
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1401
|
-
getConfig: () => import("
|
|
1659
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1402
1660
|
getIsRequired: () => boolean;
|
|
1403
1661
|
getIsTranslatable: () => boolean;
|
|
1404
|
-
getVisibility: () => import("
|
|
1662
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1663
|
+
getIsDynamic: () => boolean;
|
|
1664
|
+
getDescription: () => string | undefined;
|
|
1405
1665
|
getCondition: () => {
|
|
1406
1666
|
field: string;
|
|
1407
1667
|
equals: unknown;
|
|
@@ -1439,26 +1699,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1439
1699
|
lte?: number | undefined;
|
|
1440
1700
|
};
|
|
1441
1701
|
} | undefined;
|
|
1442
|
-
}, NextUi extends import("
|
|
1702
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1443
1703
|
min: <TThis extends {
|
|
1444
1704
|
kind: "field";
|
|
1445
1705
|
readonly __fieldTypes?: {
|
|
1446
1706
|
input: string;
|
|
1447
1707
|
db: string;
|
|
1448
1708
|
output: string;
|
|
1449
|
-
meta: import("
|
|
1450
|
-
state: import("
|
|
1709
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1710
|
+
state: import("../index.js").FieldState;
|
|
1451
1711
|
} | undefined;
|
|
1452
|
-
meta: import("
|
|
1453
|
-
state: import("
|
|
1712
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1713
|
+
state: import("../index.js").FieldState;
|
|
1454
1714
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1455
1715
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1456
1716
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1457
1717
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1458
|
-
getConfig: () => import("
|
|
1718
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1459
1719
|
getIsRequired: () => boolean;
|
|
1460
1720
|
getIsTranslatable: () => boolean;
|
|
1461
|
-
getVisibility: () => import("
|
|
1721
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1722
|
+
getIsDynamic: () => boolean;
|
|
1723
|
+
getDescription: () => string | undefined;
|
|
1462
1724
|
getCondition: () => {
|
|
1463
1725
|
field: string;
|
|
1464
1726
|
equals: unknown;
|
|
@@ -1496,26 +1758,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1496
1758
|
lte?: number | undefined;
|
|
1497
1759
|
};
|
|
1498
1760
|
} | undefined;
|
|
1499
|
-
}>(this: TThis, length: number) => import("
|
|
1761
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
1500
1762
|
max: <TThis extends {
|
|
1501
1763
|
kind: "field";
|
|
1502
1764
|
readonly __fieldTypes?: {
|
|
1503
1765
|
input: string;
|
|
1504
1766
|
db: string;
|
|
1505
1767
|
output: string;
|
|
1506
|
-
meta: import("
|
|
1507
|
-
state: import("
|
|
1768
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1769
|
+
state: import("../index.js").FieldState;
|
|
1508
1770
|
} | undefined;
|
|
1509
|
-
meta: import("
|
|
1510
|
-
state: import("
|
|
1771
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1772
|
+
state: import("../index.js").FieldState;
|
|
1511
1773
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1512
1774
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1513
1775
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1514
1776
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1515
|
-
getConfig: () => import("
|
|
1777
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1516
1778
|
getIsRequired: () => boolean;
|
|
1517
1779
|
getIsTranslatable: () => boolean;
|
|
1518
|
-
getVisibility: () => import("
|
|
1780
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1781
|
+
getIsDynamic: () => boolean;
|
|
1782
|
+
getDescription: () => string | undefined;
|
|
1519
1783
|
getCondition: () => {
|
|
1520
1784
|
field: string;
|
|
1521
1785
|
equals: unknown;
|
|
@@ -1553,30 +1817,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
1553
1817
|
lte?: number | undefined;
|
|
1554
1818
|
};
|
|
1555
1819
|
} | undefined;
|
|
1556
|
-
}>(this: TThis, length: number) => import("
|
|
1557
|
-
}, keyof import("
|
|
1820
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
1821
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Textarea">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
1558
1822
|
field: string;
|
|
1559
1823
|
equals: boolean;
|
|
1560
1824
|
}>>;
|
|
1561
|
-
openGraphUrl: import("
|
|
1825
|
+
openGraphUrl: import("../index.js").WithFieldState<Omit<{
|
|
1562
1826
|
kind: "field";
|
|
1563
1827
|
readonly __fieldTypes?: {
|
|
1564
1828
|
input: string;
|
|
1565
1829
|
db: string;
|
|
1566
1830
|
output: string;
|
|
1567
|
-
meta: import("
|
|
1568
|
-
state: import("
|
|
1831
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1832
|
+
state: import("../index.js").DefaultFieldState;
|
|
1569
1833
|
} | undefined;
|
|
1570
|
-
meta: import("
|
|
1571
|
-
state: import("
|
|
1834
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1835
|
+
state: import("../index.js").DefaultFieldState;
|
|
1572
1836
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1573
1837
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1574
1838
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1575
1839
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1576
|
-
getConfig: () => import("
|
|
1840
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1577
1841
|
getIsRequired: () => false;
|
|
1578
1842
|
getIsTranslatable: () => false;
|
|
1579
1843
|
getVisibility: () => "all";
|
|
1844
|
+
getIsDynamic: () => true;
|
|
1845
|
+
getDescription: () => undefined;
|
|
1580
1846
|
getCondition: () => undefined;
|
|
1581
1847
|
} & {
|
|
1582
1848
|
type: <TThis extends {
|
|
@@ -1585,19 +1851,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
1585
1851
|
input: string;
|
|
1586
1852
|
db: string;
|
|
1587
1853
|
output: string;
|
|
1588
|
-
meta: import("
|
|
1589
|
-
state: import("
|
|
1854
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1855
|
+
state: import("../index.js").FieldState;
|
|
1590
1856
|
} | undefined;
|
|
1591
|
-
meta: import("
|
|
1592
|
-
state: import("
|
|
1857
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1858
|
+
state: import("../index.js").FieldState;
|
|
1593
1859
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1594
1860
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1595
1861
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1596
1862
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1597
|
-
getConfig: () => import("
|
|
1863
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1598
1864
|
getIsRequired: () => boolean;
|
|
1599
1865
|
getIsTranslatable: () => boolean;
|
|
1600
|
-
getVisibility: () => import("
|
|
1866
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1867
|
+
getIsDynamic: () => boolean;
|
|
1868
|
+
getDescription: () => string | undefined;
|
|
1601
1869
|
getCondition: () => {
|
|
1602
1870
|
field: string;
|
|
1603
1871
|
equals: unknown;
|
|
@@ -1635,26 +1903,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1635
1903
|
lte?: number | undefined;
|
|
1636
1904
|
};
|
|
1637
1905
|
} | undefined;
|
|
1638
|
-
}, NextUi extends import("
|
|
1906
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1639
1907
|
min: <TThis extends {
|
|
1640
1908
|
kind: "field";
|
|
1641
1909
|
readonly __fieldTypes?: {
|
|
1642
1910
|
input: string;
|
|
1643
1911
|
db: string;
|
|
1644
1912
|
output: string;
|
|
1645
|
-
meta: import("
|
|
1646
|
-
state: import("
|
|
1913
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1914
|
+
state: import("../index.js").FieldState;
|
|
1647
1915
|
} | undefined;
|
|
1648
|
-
meta: import("
|
|
1649
|
-
state: import("
|
|
1916
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1917
|
+
state: import("../index.js").FieldState;
|
|
1650
1918
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1651
1919
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1652
1920
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1653
1921
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1654
|
-
getConfig: () => import("
|
|
1922
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1655
1923
|
getIsRequired: () => boolean;
|
|
1656
1924
|
getIsTranslatable: () => boolean;
|
|
1657
|
-
getVisibility: () => import("
|
|
1925
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1926
|
+
getIsDynamic: () => boolean;
|
|
1927
|
+
getDescription: () => string | undefined;
|
|
1658
1928
|
getCondition: () => {
|
|
1659
1929
|
field: string;
|
|
1660
1930
|
equals: unknown;
|
|
@@ -1692,26 +1962,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1692
1962
|
lte?: number | undefined;
|
|
1693
1963
|
};
|
|
1694
1964
|
} | undefined;
|
|
1695
|
-
}>(this: TThis, length: number) => import("
|
|
1965
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
1696
1966
|
max: <TThis extends {
|
|
1697
1967
|
kind: "field";
|
|
1698
1968
|
readonly __fieldTypes?: {
|
|
1699
1969
|
input: string;
|
|
1700
1970
|
db: string;
|
|
1701
1971
|
output: string;
|
|
1702
|
-
meta: import("
|
|
1703
|
-
state: import("
|
|
1972
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1973
|
+
state: import("../index.js").FieldState;
|
|
1704
1974
|
} | undefined;
|
|
1705
|
-
meta: import("
|
|
1706
|
-
state: import("
|
|
1975
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1976
|
+
state: import("../index.js").FieldState;
|
|
1707
1977
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1708
1978
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1709
1979
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1710
1980
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1711
|
-
getConfig: () => import("
|
|
1981
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1712
1982
|
getIsRequired: () => boolean;
|
|
1713
1983
|
getIsTranslatable: () => boolean;
|
|
1714
|
-
getVisibility: () => import("
|
|
1984
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1985
|
+
getIsDynamic: () => boolean;
|
|
1986
|
+
getDescription: () => string | undefined;
|
|
1715
1987
|
getCondition: () => {
|
|
1716
1988
|
field: string;
|
|
1717
1989
|
equals: unknown;
|
|
@@ -1749,30 +2021,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
1749
2021
|
lte?: number | undefined;
|
|
1750
2022
|
};
|
|
1751
2023
|
} | undefined;
|
|
1752
|
-
}>(this: TThis, length: number) => import("
|
|
1753
|
-
}, keyof import("
|
|
2024
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
2025
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Url">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
1754
2026
|
field: string;
|
|
1755
2027
|
equals: boolean;
|
|
1756
2028
|
}>>;
|
|
1757
|
-
openGraphSiteName: import("
|
|
2029
|
+
openGraphSiteName: import("../index.js").WithFieldState<Omit<{
|
|
1758
2030
|
kind: "field";
|
|
1759
2031
|
readonly __fieldTypes?: {
|
|
1760
2032
|
input: string;
|
|
1761
2033
|
db: string;
|
|
1762
2034
|
output: string;
|
|
1763
|
-
meta: import("
|
|
1764
|
-
state: import("
|
|
2035
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2036
|
+
state: import("../index.js").DefaultFieldState;
|
|
1765
2037
|
} | undefined;
|
|
1766
|
-
meta: import("
|
|
1767
|
-
state: import("
|
|
2038
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2039
|
+
state: import("../index.js").DefaultFieldState;
|
|
1768
2040
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1769
2041
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1770
2042
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1771
2043
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1772
|
-
getConfig: () => import("
|
|
2044
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1773
2045
|
getIsRequired: () => false;
|
|
1774
2046
|
getIsTranslatable: () => false;
|
|
1775
2047
|
getVisibility: () => "all";
|
|
2048
|
+
getIsDynamic: () => true;
|
|
2049
|
+
getDescription: () => undefined;
|
|
1776
2050
|
getCondition: () => undefined;
|
|
1777
2051
|
} & {
|
|
1778
2052
|
type: <TThis extends {
|
|
@@ -1781,19 +2055,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
1781
2055
|
input: string;
|
|
1782
2056
|
db: string;
|
|
1783
2057
|
output: string;
|
|
1784
|
-
meta: import("
|
|
1785
|
-
state: import("
|
|
2058
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2059
|
+
state: import("../index.js").FieldState;
|
|
1786
2060
|
} | undefined;
|
|
1787
|
-
meta: import("
|
|
1788
|
-
state: import("
|
|
2061
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2062
|
+
state: import("../index.js").FieldState;
|
|
1789
2063
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1790
2064
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1791
2065
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1792
2066
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1793
|
-
getConfig: () => import("
|
|
2067
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1794
2068
|
getIsRequired: () => boolean;
|
|
1795
2069
|
getIsTranslatable: () => boolean;
|
|
1796
|
-
getVisibility: () => import("
|
|
2070
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2071
|
+
getIsDynamic: () => boolean;
|
|
2072
|
+
getDescription: () => string | undefined;
|
|
1797
2073
|
getCondition: () => {
|
|
1798
2074
|
field: string;
|
|
1799
2075
|
equals: unknown;
|
|
@@ -1831,26 +2107,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1831
2107
|
lte?: number | undefined;
|
|
1832
2108
|
};
|
|
1833
2109
|
} | undefined;
|
|
1834
|
-
}, NextUi extends import("
|
|
2110
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1835
2111
|
min: <TThis extends {
|
|
1836
2112
|
kind: "field";
|
|
1837
2113
|
readonly __fieldTypes?: {
|
|
1838
2114
|
input: string;
|
|
1839
2115
|
db: string;
|
|
1840
2116
|
output: string;
|
|
1841
|
-
meta: import("
|
|
1842
|
-
state: import("
|
|
2117
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2118
|
+
state: import("../index.js").FieldState;
|
|
1843
2119
|
} | undefined;
|
|
1844
|
-
meta: import("
|
|
1845
|
-
state: import("
|
|
2120
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2121
|
+
state: import("../index.js").FieldState;
|
|
1846
2122
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1847
2123
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1848
2124
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1849
2125
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1850
|
-
getConfig: () => import("
|
|
2126
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1851
2127
|
getIsRequired: () => boolean;
|
|
1852
2128
|
getIsTranslatable: () => boolean;
|
|
1853
|
-
getVisibility: () => import("
|
|
2129
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2130
|
+
getIsDynamic: () => boolean;
|
|
2131
|
+
getDescription: () => string | undefined;
|
|
1854
2132
|
getCondition: () => {
|
|
1855
2133
|
field: string;
|
|
1856
2134
|
equals: unknown;
|
|
@@ -1888,26 +2166,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
1888
2166
|
lte?: number | undefined;
|
|
1889
2167
|
};
|
|
1890
2168
|
} | undefined;
|
|
1891
|
-
}>(this: TThis, length: number) => import("
|
|
2169
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1892
2170
|
max: <TThis extends {
|
|
1893
2171
|
kind: "field";
|
|
1894
2172
|
readonly __fieldTypes?: {
|
|
1895
2173
|
input: string;
|
|
1896
2174
|
db: string;
|
|
1897
2175
|
output: string;
|
|
1898
|
-
meta: import("
|
|
1899
|
-
state: import("
|
|
2176
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2177
|
+
state: import("../index.js").FieldState;
|
|
1900
2178
|
} | undefined;
|
|
1901
|
-
meta: import("
|
|
1902
|
-
state: import("
|
|
2179
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2180
|
+
state: import("../index.js").FieldState;
|
|
1903
2181
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1904
2182
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1905
2183
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1906
2184
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1907
|
-
getConfig: () => import("
|
|
2185
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1908
2186
|
getIsRequired: () => boolean;
|
|
1909
2187
|
getIsTranslatable: () => boolean;
|
|
1910
|
-
getVisibility: () => import("
|
|
2188
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2189
|
+
getIsDynamic: () => boolean;
|
|
2190
|
+
getDescription: () => string | undefined;
|
|
1911
2191
|
getCondition: () => {
|
|
1912
2192
|
field: string;
|
|
1913
2193
|
equals: unknown;
|
|
@@ -1945,30 +2225,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
1945
2225
|
lte?: number | undefined;
|
|
1946
2226
|
};
|
|
1947
2227
|
} | undefined;
|
|
1948
|
-
}>(this: TThis, length: number) => import("
|
|
1949
|
-
}, keyof import("
|
|
2228
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
2229
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Text">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
1950
2230
|
field: string;
|
|
1951
2231
|
equals: boolean;
|
|
1952
2232
|
}>>;
|
|
1953
|
-
openGraphType: import("
|
|
2233
|
+
openGraphType: import("../index.js").WithFieldState<{
|
|
1954
2234
|
kind: "field";
|
|
1955
2235
|
readonly __fieldTypes?: {
|
|
1956
2236
|
input: "website" | "article" | "profile" | "book";
|
|
1957
2237
|
db: "website" | "article" | "profile" | "book";
|
|
1958
2238
|
output: "website" | "article" | "profile" | "book";
|
|
1959
|
-
meta: import("
|
|
1960
|
-
state: import("
|
|
2239
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
2240
|
+
state: import("../index.js").DefaultFieldState;
|
|
1961
2241
|
} | undefined;
|
|
1962
|
-
meta: import("
|
|
1963
|
-
state: import("
|
|
2242
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
2243
|
+
state: import("../index.js").DefaultFieldState;
|
|
1964
2244
|
toZod: () => import("zod").ZodType<"website" | "article" | "profile" | "book", unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book", unknown>>;
|
|
1965
2245
|
getInputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | null | undefined, unknown>>;
|
|
1966
2246
|
getSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1967
2247
|
getOutputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1968
|
-
getConfig: () => import("
|
|
2248
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1969
2249
|
getIsRequired: () => false;
|
|
1970
2250
|
getIsTranslatable: () => false;
|
|
1971
2251
|
getVisibility: () => "all";
|
|
2252
|
+
getIsDynamic: () => true;
|
|
2253
|
+
getDescription: () => undefined;
|
|
1972
2254
|
getCondition: () => undefined;
|
|
1973
2255
|
} & {
|
|
1974
2256
|
multiple: <TThis extends {
|
|
@@ -1977,19 +2259,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
1977
2259
|
input: "website" | "article" | "profile" | "book";
|
|
1978
2260
|
db: "website" | "article" | "profile" | "book";
|
|
1979
2261
|
output: "website" | "article" | "profile" | "book";
|
|
1980
|
-
meta: import("
|
|
1981
|
-
state: import("
|
|
2262
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
2263
|
+
state: import("../index.js").FieldState;
|
|
1982
2264
|
} | undefined;
|
|
1983
|
-
meta: import("
|
|
1984
|
-
state: import("
|
|
2265
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
2266
|
+
state: import("../index.js").FieldState;
|
|
1985
2267
|
toZod: () => import("zod").ZodType<"website" | "article" | "profile" | "book", unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book", unknown>>;
|
|
1986
2268
|
getInputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | null | undefined, unknown>>;
|
|
1987
2269
|
getSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1988
2270
|
getOutputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1989
|
-
getConfig: () => import("
|
|
2271
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1990
2272
|
getIsRequired: () => boolean;
|
|
1991
2273
|
getIsTranslatable: () => boolean;
|
|
1992
|
-
getVisibility: () => import("
|
|
2274
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2275
|
+
getIsDynamic: () => boolean;
|
|
2276
|
+
getDescription: () => string | undefined;
|
|
1993
2277
|
getCondition: () => {
|
|
1994
2278
|
field: string;
|
|
1995
2279
|
equals: unknown;
|
|
@@ -2027,12 +2311,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
2027
2311
|
lte?: number | undefined;
|
|
2028
2312
|
};
|
|
2029
2313
|
} | undefined;
|
|
2030
|
-
}>(this: TThis) => import("
|
|
2031
|
-
}, import("
|
|
2314
|
+
}>(this: TThis) => import("../index.js").SelectField<readonly ["website", "article", "profile", "book"], true, import("../index.js").FieldStateOf<TThis>>;
|
|
2315
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
2032
2316
|
field: string;
|
|
2033
2317
|
equals: boolean;
|
|
2034
2318
|
}>>;
|
|
2035
|
-
openGraphImage: import("
|
|
2319
|
+
openGraphImage: import("../index.js").WithFieldState<{
|
|
2036
2320
|
kind: "field";
|
|
2037
2321
|
readonly __fieldTypes?: {
|
|
2038
2322
|
input: {
|
|
@@ -2069,11 +2353,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
2069
2353
|
}[] | undefined;
|
|
2070
2354
|
srcSet?: string | null | undefined;
|
|
2071
2355
|
};
|
|
2072
|
-
meta: import("
|
|
2073
|
-
state: import("
|
|
2356
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2357
|
+
state: import("../index.js").DefaultFieldState;
|
|
2074
2358
|
} | undefined;
|
|
2075
|
-
meta: import("
|
|
2076
|
-
state: import("
|
|
2359
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2360
|
+
state: import("../index.js").DefaultFieldState;
|
|
2077
2361
|
toZod: () => import("zod").ZodType<{
|
|
2078
2362
|
type: "existing";
|
|
2079
2363
|
_id: string;
|
|
@@ -2148,12 +2432,14 @@ export declare const SeoSettings: ContentType<{
|
|
|
2148
2432
|
}[] | undefined;
|
|
2149
2433
|
srcSet?: string | null | undefined;
|
|
2150
2434
|
} | undefined, unknown>>;
|
|
2151
|
-
getConfig: () => import("
|
|
2435
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
2152
2436
|
getIsRequired: () => false;
|
|
2153
2437
|
getIsTranslatable: () => false;
|
|
2154
2438
|
getVisibility: () => "all";
|
|
2439
|
+
getIsDynamic: () => true;
|
|
2440
|
+
getDescription: () => undefined;
|
|
2155
2441
|
getCondition: () => undefined;
|
|
2156
|
-
} & import("
|
|
2442
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
2157
2443
|
url: string;
|
|
2158
2444
|
previewUrl: string | null;
|
|
2159
2445
|
name: string;
|
|
@@ -2176,7 +2462,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
2176
2462
|
size: number;
|
|
2177
2463
|
}[] | undefined;
|
|
2178
2464
|
srcSet?: string | null | undefined;
|
|
2179
|
-
}, import("
|
|
2465
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
2180
2466
|
type: <TThis extends {
|
|
2181
2467
|
kind: "field";
|
|
2182
2468
|
readonly __fieldTypes?: {
|
|
@@ -2214,11 +2500,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
2214
2500
|
}[] | undefined;
|
|
2215
2501
|
srcSet?: string | null | undefined;
|
|
2216
2502
|
};
|
|
2217
|
-
meta: import("
|
|
2218
|
-
state: import("
|
|
2503
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2504
|
+
state: import("../index.js").FieldState;
|
|
2219
2505
|
} | undefined;
|
|
2220
|
-
meta: import("
|
|
2221
|
-
state: import("
|
|
2506
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2507
|
+
state: import("../index.js").FieldState;
|
|
2222
2508
|
toZod: () => import("zod").ZodType<{
|
|
2223
2509
|
type: "existing";
|
|
2224
2510
|
_id: string;
|
|
@@ -2293,10 +2579,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
2293
2579
|
}[] | undefined;
|
|
2294
2580
|
srcSet?: string | null | undefined;
|
|
2295
2581
|
} | undefined, unknown>>;
|
|
2296
|
-
getConfig: () => import("
|
|
2582
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
2297
2583
|
getIsRequired: () => boolean;
|
|
2298
2584
|
getIsTranslatable: () => boolean;
|
|
2299
|
-
getVisibility: () => import("
|
|
2585
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2586
|
+
getIsDynamic: () => boolean;
|
|
2587
|
+
getDescription: () => string | undefined;
|
|
2300
2588
|
getCondition: () => {
|
|
2301
2589
|
field: string;
|
|
2302
2590
|
equals: unknown;
|
|
@@ -2334,7 +2622,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
2334
2622
|
lte?: number | undefined;
|
|
2335
2623
|
};
|
|
2336
2624
|
} | undefined;
|
|
2337
|
-
}, NextMediaType extends import("
|
|
2625
|
+
}, NextMediaType extends import("../index.js").FileMediaType>(this: TThis, mediaType: NextMediaType) => import("../index.js").FileField<NextMediaType, false, import("../index.js").FieldStateOf<TThis>>;
|
|
2338
2626
|
multiple: <TThis extends {
|
|
2339
2627
|
kind: "field";
|
|
2340
2628
|
readonly __fieldTypes?: {
|
|
@@ -2372,11 +2660,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
2372
2660
|
}[] | undefined;
|
|
2373
2661
|
srcSet?: string | null | undefined;
|
|
2374
2662
|
};
|
|
2375
|
-
meta: import("
|
|
2376
|
-
state: import("
|
|
2663
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2664
|
+
state: import("../index.js").FieldState;
|
|
2377
2665
|
} | undefined;
|
|
2378
|
-
meta: import("
|
|
2379
|
-
state: import("
|
|
2666
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2667
|
+
state: import("../index.js").FieldState;
|
|
2380
2668
|
toZod: () => import("zod").ZodType<{
|
|
2381
2669
|
type: "existing";
|
|
2382
2670
|
_id: string;
|
|
@@ -2451,10 +2739,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
2451
2739
|
}[] | undefined;
|
|
2452
2740
|
srcSet?: string | null | undefined;
|
|
2453
2741
|
} | undefined, unknown>>;
|
|
2454
|
-
getConfig: () => import("
|
|
2742
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
2455
2743
|
getIsRequired: () => boolean;
|
|
2456
2744
|
getIsTranslatable: () => boolean;
|
|
2457
|
-
getVisibility: () => import("
|
|
2745
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2746
|
+
getIsDynamic: () => boolean;
|
|
2747
|
+
getDescription: () => string | undefined;
|
|
2458
2748
|
getCondition: () => {
|
|
2459
2749
|
field: string;
|
|
2460
2750
|
equals: unknown;
|
|
@@ -2492,7 +2782,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
2492
2782
|
lte?: number | undefined;
|
|
2493
2783
|
};
|
|
2494
2784
|
} | undefined;
|
|
2495
|
-
}>(this: TThis) => import("
|
|
2785
|
+
}>(this: TThis) => import("../index.js").FileField<"Image", true, import("../index.js").FieldStateOf<TThis>>;
|
|
2496
2786
|
optimize: <TThis extends {
|
|
2497
2787
|
kind: "field";
|
|
2498
2788
|
readonly __fieldTypes?: {
|
|
@@ -2530,11 +2820,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
2530
2820
|
}[] | undefined;
|
|
2531
2821
|
srcSet?: string | null | undefined;
|
|
2532
2822
|
};
|
|
2533
|
-
meta: import("
|
|
2534
|
-
state: import("
|
|
2823
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2824
|
+
state: import("../index.js").FieldState;
|
|
2535
2825
|
} | undefined;
|
|
2536
|
-
meta: import("
|
|
2537
|
-
state: import("
|
|
2826
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2827
|
+
state: import("../index.js").FieldState;
|
|
2538
2828
|
toZod: () => import("zod").ZodType<{
|
|
2539
2829
|
type: "existing";
|
|
2540
2830
|
_id: string;
|
|
@@ -2609,10 +2899,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
2609
2899
|
}[] | undefined;
|
|
2610
2900
|
srcSet?: string | null | undefined;
|
|
2611
2901
|
} | undefined, unknown>>;
|
|
2612
|
-
getConfig: () => import("
|
|
2902
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
2613
2903
|
getIsRequired: () => boolean;
|
|
2614
2904
|
getIsTranslatable: () => boolean;
|
|
2615
|
-
getVisibility: () => import("
|
|
2905
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2906
|
+
getIsDynamic: () => boolean;
|
|
2907
|
+
getDescription: () => string | undefined;
|
|
2616
2908
|
getCondition: () => {
|
|
2617
2909
|
field: string;
|
|
2618
2910
|
equals: unknown;
|
|
@@ -2650,30 +2942,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
2650
2942
|
lte?: number | undefined;
|
|
2651
2943
|
};
|
|
2652
2944
|
} | undefined;
|
|
2653
|
-
}>(this: TThis, options?: Partial<import("
|
|
2654
|
-
}, import("
|
|
2945
|
+
}>(this: TThis, options?: Partial<import("../index.js").FileOptimizeOptions>) => import("../index.js").FileField<"Image", false, import("../index.js").FieldStateOf<TThis>>;
|
|
2946
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
2655
2947
|
field: string;
|
|
2656
2948
|
equals: boolean;
|
|
2657
2949
|
}>>;
|
|
2658
|
-
openGraphImageAlt: import("
|
|
2950
|
+
openGraphImageAlt: import("../index.js").WithFieldState<Omit<{
|
|
2659
2951
|
kind: "field";
|
|
2660
2952
|
readonly __fieldTypes?: {
|
|
2661
2953
|
input: string;
|
|
2662
2954
|
db: string;
|
|
2663
2955
|
output: string;
|
|
2664
|
-
meta: import("
|
|
2665
|
-
state: import("
|
|
2956
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2957
|
+
state: import("../index.js").DefaultFieldState;
|
|
2666
2958
|
} | undefined;
|
|
2667
|
-
meta: import("
|
|
2668
|
-
state: import("
|
|
2959
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2960
|
+
state: import("../index.js").DefaultFieldState;
|
|
2669
2961
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2670
2962
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2671
2963
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2672
2964
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2673
|
-
getConfig: () => import("
|
|
2965
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2674
2966
|
getIsRequired: () => false;
|
|
2675
2967
|
getIsTranslatable: () => false;
|
|
2676
2968
|
getVisibility: () => "all";
|
|
2969
|
+
getIsDynamic: () => true;
|
|
2970
|
+
getDescription: () => undefined;
|
|
2677
2971
|
getCondition: () => undefined;
|
|
2678
2972
|
} & {
|
|
2679
2973
|
type: <TThis extends {
|
|
@@ -2682,19 +2976,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
2682
2976
|
input: string;
|
|
2683
2977
|
db: string;
|
|
2684
2978
|
output: string;
|
|
2685
|
-
meta: import("
|
|
2686
|
-
state: import("
|
|
2979
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2980
|
+
state: import("../index.js").FieldState;
|
|
2687
2981
|
} | undefined;
|
|
2688
|
-
meta: import("
|
|
2689
|
-
state: import("
|
|
2982
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2983
|
+
state: import("../index.js").FieldState;
|
|
2690
2984
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2691
2985
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2692
2986
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2693
2987
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2694
|
-
getConfig: () => import("
|
|
2988
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2695
2989
|
getIsRequired: () => boolean;
|
|
2696
2990
|
getIsTranslatable: () => boolean;
|
|
2697
|
-
getVisibility: () => import("
|
|
2991
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2992
|
+
getIsDynamic: () => boolean;
|
|
2993
|
+
getDescription: () => string | undefined;
|
|
2698
2994
|
getCondition: () => {
|
|
2699
2995
|
field: string;
|
|
2700
2996
|
equals: unknown;
|
|
@@ -2732,26 +3028,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
2732
3028
|
lte?: number | undefined;
|
|
2733
3029
|
};
|
|
2734
3030
|
} | undefined;
|
|
2735
|
-
}, NextUi extends import("
|
|
3031
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
2736
3032
|
min: <TThis extends {
|
|
2737
3033
|
kind: "field";
|
|
2738
3034
|
readonly __fieldTypes?: {
|
|
2739
3035
|
input: string;
|
|
2740
3036
|
db: string;
|
|
2741
3037
|
output: string;
|
|
2742
|
-
meta: import("
|
|
2743
|
-
state: import("
|
|
3038
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3039
|
+
state: import("../index.js").FieldState;
|
|
2744
3040
|
} | undefined;
|
|
2745
|
-
meta: import("
|
|
2746
|
-
state: import("
|
|
3041
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3042
|
+
state: import("../index.js").FieldState;
|
|
2747
3043
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2748
3044
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2749
3045
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2750
3046
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2751
|
-
getConfig: () => import("
|
|
3047
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2752
3048
|
getIsRequired: () => boolean;
|
|
2753
3049
|
getIsTranslatable: () => boolean;
|
|
2754
|
-
getVisibility: () => import("
|
|
3050
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3051
|
+
getIsDynamic: () => boolean;
|
|
3052
|
+
getDescription: () => string | undefined;
|
|
2755
3053
|
getCondition: () => {
|
|
2756
3054
|
field: string;
|
|
2757
3055
|
equals: unknown;
|
|
@@ -2789,26 +3087,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
2789
3087
|
lte?: number | undefined;
|
|
2790
3088
|
};
|
|
2791
3089
|
} | undefined;
|
|
2792
|
-
}>(this: TThis, length: number) => import("
|
|
3090
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
2793
3091
|
max: <TThis extends {
|
|
2794
3092
|
kind: "field";
|
|
2795
3093
|
readonly __fieldTypes?: {
|
|
2796
3094
|
input: string;
|
|
2797
3095
|
db: string;
|
|
2798
3096
|
output: string;
|
|
2799
|
-
meta: import("
|
|
2800
|
-
state: import("
|
|
3097
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3098
|
+
state: import("../index.js").FieldState;
|
|
2801
3099
|
} | undefined;
|
|
2802
|
-
meta: import("
|
|
2803
|
-
state: import("
|
|
3100
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3101
|
+
state: import("../index.js").FieldState;
|
|
2804
3102
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2805
3103
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2806
3104
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2807
3105
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2808
|
-
getConfig: () => import("
|
|
3106
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2809
3107
|
getIsRequired: () => boolean;
|
|
2810
3108
|
getIsTranslatable: () => boolean;
|
|
2811
|
-
getVisibility: () => import("
|
|
3109
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3110
|
+
getIsDynamic: () => boolean;
|
|
3111
|
+
getDescription: () => string | undefined;
|
|
2812
3112
|
getCondition: () => {
|
|
2813
3113
|
field: string;
|
|
2814
3114
|
equals: unknown;
|
|
@@ -2846,31 +3146,33 @@ export declare const SeoSettings: ContentType<{
|
|
|
2846
3146
|
lte?: number | undefined;
|
|
2847
3147
|
};
|
|
2848
3148
|
} | undefined;
|
|
2849
|
-
}>(this: TThis, length: number) => import("
|
|
2850
|
-
}, keyof import("
|
|
3149
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3150
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Text">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
2851
3151
|
field: string;
|
|
2852
3152
|
equals: boolean;
|
|
2853
3153
|
}>>;
|
|
2854
|
-
customTwitter: import("
|
|
2855
|
-
twitterCard: import("
|
|
3154
|
+
customTwitter: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
3155
|
+
twitterCard: import("../index.js").WithFieldState<{
|
|
2856
3156
|
kind: "field";
|
|
2857
3157
|
readonly __fieldTypes?: {
|
|
2858
3158
|
input: "summary" | "summary_large_image" | "app" | "player";
|
|
2859
3159
|
db: "summary" | "summary_large_image" | "app" | "player";
|
|
2860
3160
|
output: "summary" | "summary_large_image" | "app" | "player";
|
|
2861
|
-
meta: import("
|
|
2862
|
-
state: import("
|
|
3161
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
3162
|
+
state: import("../index.js").DefaultFieldState;
|
|
2863
3163
|
} | undefined;
|
|
2864
|
-
meta: import("
|
|
2865
|
-
state: import("
|
|
3164
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
3165
|
+
state: import("../index.js").DefaultFieldState;
|
|
2866
3166
|
toZod: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player", unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player", unknown>>;
|
|
2867
3167
|
getInputSchema: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player" | null | undefined, unknown>>;
|
|
2868
3168
|
getSchema: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown>>;
|
|
2869
3169
|
getOutputSchema: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown>>;
|
|
2870
|
-
getConfig: () => import("
|
|
3170
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2871
3171
|
getIsRequired: () => false;
|
|
2872
3172
|
getIsTranslatable: () => false;
|
|
2873
3173
|
getVisibility: () => "all";
|
|
3174
|
+
getIsDynamic: () => true;
|
|
3175
|
+
getDescription: () => undefined;
|
|
2874
3176
|
getCondition: () => undefined;
|
|
2875
3177
|
} & {
|
|
2876
3178
|
multiple: <TThis extends {
|
|
@@ -2879,19 +3181,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
2879
3181
|
input: "summary" | "summary_large_image" | "app" | "player";
|
|
2880
3182
|
db: "summary" | "summary_large_image" | "app" | "player";
|
|
2881
3183
|
output: "summary" | "summary_large_image" | "app" | "player";
|
|
2882
|
-
meta: import("
|
|
2883
|
-
state: import("
|
|
3184
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
3185
|
+
state: import("../index.js").FieldState;
|
|
2884
3186
|
} | undefined;
|
|
2885
|
-
meta: import("
|
|
2886
|
-
state: import("
|
|
3187
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
3188
|
+
state: import("../index.js").FieldState;
|
|
2887
3189
|
toZod: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player", unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player", unknown>>;
|
|
2888
3190
|
getInputSchema: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player" | null | undefined, unknown>>;
|
|
2889
3191
|
getSchema: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown>>;
|
|
2890
3192
|
getOutputSchema: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player" | undefined, unknown>>;
|
|
2891
|
-
getConfig: () => import("
|
|
3193
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2892
3194
|
getIsRequired: () => boolean;
|
|
2893
3195
|
getIsTranslatable: () => boolean;
|
|
2894
|
-
getVisibility: () => import("
|
|
3196
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3197
|
+
getIsDynamic: () => boolean;
|
|
3198
|
+
getDescription: () => string | undefined;
|
|
2895
3199
|
getCondition: () => {
|
|
2896
3200
|
field: string;
|
|
2897
3201
|
equals: unknown;
|
|
@@ -2929,30 +3233,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
2929
3233
|
lte?: number | undefined;
|
|
2930
3234
|
};
|
|
2931
3235
|
} | undefined;
|
|
2932
|
-
}>(this: TThis) => import("
|
|
2933
|
-
}, import("
|
|
3236
|
+
}>(this: TThis) => import("../index.js").SelectField<readonly ["summary", "summary_large_image", "app", "player"], true, import("../index.js").FieldStateOf<TThis>>;
|
|
3237
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
2934
3238
|
field: string;
|
|
2935
3239
|
equals: boolean;
|
|
2936
3240
|
}>>;
|
|
2937
|
-
twitterTitle: import("
|
|
3241
|
+
twitterTitle: import("../index.js").WithFieldState<Omit<{
|
|
2938
3242
|
kind: "field";
|
|
2939
3243
|
readonly __fieldTypes?: {
|
|
2940
3244
|
input: string;
|
|
2941
3245
|
db: string;
|
|
2942
3246
|
output: string;
|
|
2943
|
-
meta: import("
|
|
2944
|
-
state: import("
|
|
3247
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3248
|
+
state: import("../index.js").DefaultFieldState;
|
|
2945
3249
|
} | undefined;
|
|
2946
|
-
meta: import("
|
|
2947
|
-
state: import("
|
|
3250
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3251
|
+
state: import("../index.js").DefaultFieldState;
|
|
2948
3252
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2949
3253
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2950
3254
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2951
3255
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2952
|
-
getConfig: () => import("
|
|
3256
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2953
3257
|
getIsRequired: () => false;
|
|
2954
3258
|
getIsTranslatable: () => false;
|
|
2955
3259
|
getVisibility: () => "all";
|
|
3260
|
+
getIsDynamic: () => true;
|
|
3261
|
+
getDescription: () => undefined;
|
|
2956
3262
|
getCondition: () => undefined;
|
|
2957
3263
|
} & {
|
|
2958
3264
|
type: <TThis extends {
|
|
@@ -2961,19 +3267,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
2961
3267
|
input: string;
|
|
2962
3268
|
db: string;
|
|
2963
3269
|
output: string;
|
|
2964
|
-
meta: import("
|
|
2965
|
-
state: import("
|
|
3270
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3271
|
+
state: import("../index.js").FieldState;
|
|
2966
3272
|
} | undefined;
|
|
2967
|
-
meta: import("
|
|
2968
|
-
state: import("
|
|
3273
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3274
|
+
state: import("../index.js").FieldState;
|
|
2969
3275
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2970
3276
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2971
3277
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2972
3278
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2973
|
-
getConfig: () => import("
|
|
3279
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2974
3280
|
getIsRequired: () => boolean;
|
|
2975
3281
|
getIsTranslatable: () => boolean;
|
|
2976
|
-
getVisibility: () => import("
|
|
3282
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3283
|
+
getIsDynamic: () => boolean;
|
|
3284
|
+
getDescription: () => string | undefined;
|
|
2977
3285
|
getCondition: () => {
|
|
2978
3286
|
field: string;
|
|
2979
3287
|
equals: unknown;
|
|
@@ -3011,26 +3319,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
3011
3319
|
lte?: number | undefined;
|
|
3012
3320
|
};
|
|
3013
3321
|
} | undefined;
|
|
3014
|
-
}, NextUi extends import("
|
|
3322
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
3015
3323
|
min: <TThis extends {
|
|
3016
3324
|
kind: "field";
|
|
3017
3325
|
readonly __fieldTypes?: {
|
|
3018
3326
|
input: string;
|
|
3019
3327
|
db: string;
|
|
3020
3328
|
output: string;
|
|
3021
|
-
meta: import("
|
|
3022
|
-
state: import("
|
|
3329
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3330
|
+
state: import("../index.js").FieldState;
|
|
3023
3331
|
} | undefined;
|
|
3024
|
-
meta: import("
|
|
3025
|
-
state: import("
|
|
3332
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3333
|
+
state: import("../index.js").FieldState;
|
|
3026
3334
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3027
3335
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3028
3336
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3029
3337
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3030
|
-
getConfig: () => import("
|
|
3338
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3031
3339
|
getIsRequired: () => boolean;
|
|
3032
3340
|
getIsTranslatable: () => boolean;
|
|
3033
|
-
getVisibility: () => import("
|
|
3341
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3342
|
+
getIsDynamic: () => boolean;
|
|
3343
|
+
getDescription: () => string | undefined;
|
|
3034
3344
|
getCondition: () => {
|
|
3035
3345
|
field: string;
|
|
3036
3346
|
equals: unknown;
|
|
@@ -3068,26 +3378,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
3068
3378
|
lte?: number | undefined;
|
|
3069
3379
|
};
|
|
3070
3380
|
} | undefined;
|
|
3071
|
-
}>(this: TThis, length: number) => import("
|
|
3381
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3072
3382
|
max: <TThis extends {
|
|
3073
3383
|
kind: "field";
|
|
3074
3384
|
readonly __fieldTypes?: {
|
|
3075
3385
|
input: string;
|
|
3076
3386
|
db: string;
|
|
3077
3387
|
output: string;
|
|
3078
|
-
meta: import("
|
|
3079
|
-
state: import("
|
|
3388
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3389
|
+
state: import("../index.js").FieldState;
|
|
3080
3390
|
} | undefined;
|
|
3081
|
-
meta: import("
|
|
3082
|
-
state: import("
|
|
3391
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3392
|
+
state: import("../index.js").FieldState;
|
|
3083
3393
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3084
3394
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3085
3395
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3086
3396
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3087
|
-
getConfig: () => import("
|
|
3397
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3088
3398
|
getIsRequired: () => boolean;
|
|
3089
3399
|
getIsTranslatable: () => boolean;
|
|
3090
|
-
getVisibility: () => import("
|
|
3400
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3401
|
+
getIsDynamic: () => boolean;
|
|
3402
|
+
getDescription: () => string | undefined;
|
|
3091
3403
|
getCondition: () => {
|
|
3092
3404
|
field: string;
|
|
3093
3405
|
equals: unknown;
|
|
@@ -3125,30 +3437,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
3125
3437
|
lte?: number | undefined;
|
|
3126
3438
|
};
|
|
3127
3439
|
} | undefined;
|
|
3128
|
-
}>(this: TThis, length: number) => import("
|
|
3129
|
-
}, keyof import("
|
|
3440
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3441
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Text">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
3130
3442
|
field: string;
|
|
3131
3443
|
equals: boolean;
|
|
3132
3444
|
}>>;
|
|
3133
|
-
twitterDescription: import("
|
|
3445
|
+
twitterDescription: import("../index.js").WithFieldState<Omit<{
|
|
3134
3446
|
kind: "field";
|
|
3135
3447
|
readonly __fieldTypes?: {
|
|
3136
3448
|
input: string;
|
|
3137
3449
|
db: string;
|
|
3138
3450
|
output: string;
|
|
3139
|
-
meta: import("
|
|
3140
|
-
state: import("
|
|
3451
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3452
|
+
state: import("../index.js").DefaultFieldState;
|
|
3141
3453
|
} | undefined;
|
|
3142
|
-
meta: import("
|
|
3143
|
-
state: import("
|
|
3454
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3455
|
+
state: import("../index.js").DefaultFieldState;
|
|
3144
3456
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3145
3457
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3146
3458
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3147
3459
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3148
|
-
getConfig: () => import("
|
|
3460
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
3149
3461
|
getIsRequired: () => false;
|
|
3150
3462
|
getIsTranslatable: () => false;
|
|
3151
3463
|
getVisibility: () => "all";
|
|
3464
|
+
getIsDynamic: () => true;
|
|
3465
|
+
getDescription: () => undefined;
|
|
3152
3466
|
getCondition: () => undefined;
|
|
3153
3467
|
} & {
|
|
3154
3468
|
type: <TThis extends {
|
|
@@ -3157,19 +3471,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
3157
3471
|
input: string;
|
|
3158
3472
|
db: string;
|
|
3159
3473
|
output: string;
|
|
3160
|
-
meta: import("
|
|
3161
|
-
state: import("
|
|
3474
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3475
|
+
state: import("../index.js").FieldState;
|
|
3162
3476
|
} | undefined;
|
|
3163
|
-
meta: import("
|
|
3164
|
-
state: import("
|
|
3477
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3478
|
+
state: import("../index.js").FieldState;
|
|
3165
3479
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3166
3480
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3167
3481
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3168
3482
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3169
|
-
getConfig: () => import("
|
|
3483
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
3170
3484
|
getIsRequired: () => boolean;
|
|
3171
3485
|
getIsTranslatable: () => boolean;
|
|
3172
|
-
getVisibility: () => import("
|
|
3486
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3487
|
+
getIsDynamic: () => boolean;
|
|
3488
|
+
getDescription: () => string | undefined;
|
|
3173
3489
|
getCondition: () => {
|
|
3174
3490
|
field: string;
|
|
3175
3491
|
equals: unknown;
|
|
@@ -3207,26 +3523,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
3207
3523
|
lte?: number | undefined;
|
|
3208
3524
|
};
|
|
3209
3525
|
} | undefined;
|
|
3210
|
-
}, NextUi extends import("
|
|
3526
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
3211
3527
|
min: <TThis extends {
|
|
3212
3528
|
kind: "field";
|
|
3213
3529
|
readonly __fieldTypes?: {
|
|
3214
3530
|
input: string;
|
|
3215
3531
|
db: string;
|
|
3216
3532
|
output: string;
|
|
3217
|
-
meta: import("
|
|
3218
|
-
state: import("
|
|
3533
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3534
|
+
state: import("../index.js").FieldState;
|
|
3219
3535
|
} | undefined;
|
|
3220
|
-
meta: import("
|
|
3221
|
-
state: import("
|
|
3536
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3537
|
+
state: import("../index.js").FieldState;
|
|
3222
3538
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3223
3539
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3224
3540
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3225
3541
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3226
|
-
getConfig: () => import("
|
|
3542
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
3227
3543
|
getIsRequired: () => boolean;
|
|
3228
3544
|
getIsTranslatable: () => boolean;
|
|
3229
|
-
getVisibility: () => import("
|
|
3545
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3546
|
+
getIsDynamic: () => boolean;
|
|
3547
|
+
getDescription: () => string | undefined;
|
|
3230
3548
|
getCondition: () => {
|
|
3231
3549
|
field: string;
|
|
3232
3550
|
equals: unknown;
|
|
@@ -3264,26 +3582,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
3264
3582
|
lte?: number | undefined;
|
|
3265
3583
|
};
|
|
3266
3584
|
} | undefined;
|
|
3267
|
-
}>(this: TThis, length: number) => import("
|
|
3585
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
3268
3586
|
max: <TThis extends {
|
|
3269
3587
|
kind: "field";
|
|
3270
3588
|
readonly __fieldTypes?: {
|
|
3271
3589
|
input: string;
|
|
3272
3590
|
db: string;
|
|
3273
3591
|
output: string;
|
|
3274
|
-
meta: import("
|
|
3275
|
-
state: import("
|
|
3592
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3593
|
+
state: import("../index.js").FieldState;
|
|
3276
3594
|
} | undefined;
|
|
3277
|
-
meta: import("
|
|
3278
|
-
state: import("
|
|
3595
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
3596
|
+
state: import("../index.js").FieldState;
|
|
3279
3597
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3280
3598
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3281
3599
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3282
3600
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3283
|
-
getConfig: () => import("
|
|
3601
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
3284
3602
|
getIsRequired: () => boolean;
|
|
3285
3603
|
getIsTranslatable: () => boolean;
|
|
3286
|
-
getVisibility: () => import("
|
|
3604
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3605
|
+
getIsDynamic: () => boolean;
|
|
3606
|
+
getDescription: () => string | undefined;
|
|
3287
3607
|
getCondition: () => {
|
|
3288
3608
|
field: string;
|
|
3289
3609
|
equals: unknown;
|
|
@@ -3321,12 +3641,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
3321
3641
|
lte?: number | undefined;
|
|
3322
3642
|
};
|
|
3323
3643
|
} | undefined;
|
|
3324
|
-
}>(this: TThis, length: number) => import("
|
|
3325
|
-
}, keyof import("
|
|
3644
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
3645
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Textarea">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
3326
3646
|
field: string;
|
|
3327
3647
|
equals: boolean;
|
|
3328
3648
|
}>>;
|
|
3329
|
-
twitterImage: import("
|
|
3649
|
+
twitterImage: import("../index.js").WithFieldState<{
|
|
3330
3650
|
kind: "field";
|
|
3331
3651
|
readonly __fieldTypes?: {
|
|
3332
3652
|
input: {
|
|
@@ -3363,11 +3683,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
3363
3683
|
}[] | undefined;
|
|
3364
3684
|
srcSet?: string | null | undefined;
|
|
3365
3685
|
};
|
|
3366
|
-
meta: import("
|
|
3367
|
-
state: import("
|
|
3686
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3687
|
+
state: import("../index.js").DefaultFieldState;
|
|
3368
3688
|
} | undefined;
|
|
3369
|
-
meta: import("
|
|
3370
|
-
state: import("
|
|
3689
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3690
|
+
state: import("../index.js").DefaultFieldState;
|
|
3371
3691
|
toZod: () => import("zod").ZodType<{
|
|
3372
3692
|
type: "existing";
|
|
3373
3693
|
_id: string;
|
|
@@ -3442,12 +3762,14 @@ export declare const SeoSettings: ContentType<{
|
|
|
3442
3762
|
}[] | undefined;
|
|
3443
3763
|
srcSet?: string | null | undefined;
|
|
3444
3764
|
} | undefined, unknown>>;
|
|
3445
|
-
getConfig: () => import("
|
|
3765
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3446
3766
|
getIsRequired: () => false;
|
|
3447
3767
|
getIsTranslatable: () => false;
|
|
3448
3768
|
getVisibility: () => "all";
|
|
3769
|
+
getIsDynamic: () => true;
|
|
3770
|
+
getDescription: () => undefined;
|
|
3449
3771
|
getCondition: () => undefined;
|
|
3450
|
-
} & import("
|
|
3772
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
3451
3773
|
url: string;
|
|
3452
3774
|
previewUrl: string | null;
|
|
3453
3775
|
name: string;
|
|
@@ -3470,7 +3792,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
3470
3792
|
size: number;
|
|
3471
3793
|
}[] | undefined;
|
|
3472
3794
|
srcSet?: string | null | undefined;
|
|
3473
|
-
}, import("
|
|
3795
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
3474
3796
|
type: <TThis extends {
|
|
3475
3797
|
kind: "field";
|
|
3476
3798
|
readonly __fieldTypes?: {
|
|
@@ -3508,11 +3830,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
3508
3830
|
}[] | undefined;
|
|
3509
3831
|
srcSet?: string | null | undefined;
|
|
3510
3832
|
};
|
|
3511
|
-
meta: import("
|
|
3512
|
-
state: import("
|
|
3833
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3834
|
+
state: import("../index.js").FieldState;
|
|
3513
3835
|
} | undefined;
|
|
3514
|
-
meta: import("
|
|
3515
|
-
state: import("
|
|
3836
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3837
|
+
state: import("../index.js").FieldState;
|
|
3516
3838
|
toZod: () => import("zod").ZodType<{
|
|
3517
3839
|
type: "existing";
|
|
3518
3840
|
_id: string;
|
|
@@ -3587,10 +3909,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
3587
3909
|
}[] | undefined;
|
|
3588
3910
|
srcSet?: string | null | undefined;
|
|
3589
3911
|
} | undefined, unknown>>;
|
|
3590
|
-
getConfig: () => import("
|
|
3912
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3591
3913
|
getIsRequired: () => boolean;
|
|
3592
3914
|
getIsTranslatable: () => boolean;
|
|
3593
|
-
getVisibility: () => import("
|
|
3915
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3916
|
+
getIsDynamic: () => boolean;
|
|
3917
|
+
getDescription: () => string | undefined;
|
|
3594
3918
|
getCondition: () => {
|
|
3595
3919
|
field: string;
|
|
3596
3920
|
equals: unknown;
|
|
@@ -3628,7 +3952,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
3628
3952
|
lte?: number | undefined;
|
|
3629
3953
|
};
|
|
3630
3954
|
} | undefined;
|
|
3631
|
-
}, NextMediaType extends import("
|
|
3955
|
+
}, NextMediaType extends import("../index.js").FileMediaType>(this: TThis, mediaType: NextMediaType) => import("../index.js").FileField<NextMediaType, false, import("../index.js").FieldStateOf<TThis>>;
|
|
3632
3956
|
multiple: <TThis extends {
|
|
3633
3957
|
kind: "field";
|
|
3634
3958
|
readonly __fieldTypes?: {
|
|
@@ -3666,11 +3990,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
3666
3990
|
}[] | undefined;
|
|
3667
3991
|
srcSet?: string | null | undefined;
|
|
3668
3992
|
};
|
|
3669
|
-
meta: import("
|
|
3670
|
-
state: import("
|
|
3993
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3994
|
+
state: import("../index.js").FieldState;
|
|
3671
3995
|
} | undefined;
|
|
3672
|
-
meta: import("
|
|
3673
|
-
state: import("
|
|
3996
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3997
|
+
state: import("../index.js").FieldState;
|
|
3674
3998
|
toZod: () => import("zod").ZodType<{
|
|
3675
3999
|
type: "existing";
|
|
3676
4000
|
_id: string;
|
|
@@ -3745,10 +4069,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
3745
4069
|
}[] | undefined;
|
|
3746
4070
|
srcSet?: string | null | undefined;
|
|
3747
4071
|
} | undefined, unknown>>;
|
|
3748
|
-
getConfig: () => import("
|
|
4072
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3749
4073
|
getIsRequired: () => boolean;
|
|
3750
4074
|
getIsTranslatable: () => boolean;
|
|
3751
|
-
getVisibility: () => import("
|
|
4075
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
4076
|
+
getIsDynamic: () => boolean;
|
|
4077
|
+
getDescription: () => string | undefined;
|
|
3752
4078
|
getCondition: () => {
|
|
3753
4079
|
field: string;
|
|
3754
4080
|
equals: unknown;
|
|
@@ -3786,7 +4112,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
3786
4112
|
lte?: number | undefined;
|
|
3787
4113
|
};
|
|
3788
4114
|
} | undefined;
|
|
3789
|
-
}>(this: TThis) => import("
|
|
4115
|
+
}>(this: TThis) => import("../index.js").FileField<"Image", true, import("../index.js").FieldStateOf<TThis>>;
|
|
3790
4116
|
optimize: <TThis extends {
|
|
3791
4117
|
kind: "field";
|
|
3792
4118
|
readonly __fieldTypes?: {
|
|
@@ -3824,11 +4150,11 @@ export declare const SeoSettings: ContentType<{
|
|
|
3824
4150
|
}[] | undefined;
|
|
3825
4151
|
srcSet?: string | null | undefined;
|
|
3826
4152
|
};
|
|
3827
|
-
meta: import("
|
|
3828
|
-
state: import("
|
|
4153
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
4154
|
+
state: import("../index.js").FieldState;
|
|
3829
4155
|
} | undefined;
|
|
3830
|
-
meta: import("
|
|
3831
|
-
state: import("
|
|
4156
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
4157
|
+
state: import("../index.js").FieldState;
|
|
3832
4158
|
toZod: () => import("zod").ZodType<{
|
|
3833
4159
|
type: "existing";
|
|
3834
4160
|
_id: string;
|
|
@@ -3903,10 +4229,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
3903
4229
|
}[] | undefined;
|
|
3904
4230
|
srcSet?: string | null | undefined;
|
|
3905
4231
|
} | undefined, unknown>>;
|
|
3906
|
-
getConfig: () => import("
|
|
4232
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3907
4233
|
getIsRequired: () => boolean;
|
|
3908
4234
|
getIsTranslatable: () => boolean;
|
|
3909
|
-
getVisibility: () => import("
|
|
4235
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
4236
|
+
getIsDynamic: () => boolean;
|
|
4237
|
+
getDescription: () => string | undefined;
|
|
3910
4238
|
getCondition: () => {
|
|
3911
4239
|
field: string;
|
|
3912
4240
|
equals: unknown;
|
|
@@ -3944,30 +4272,32 @@ export declare const SeoSettings: ContentType<{
|
|
|
3944
4272
|
lte?: number | undefined;
|
|
3945
4273
|
};
|
|
3946
4274
|
} | undefined;
|
|
3947
|
-
}>(this: TThis, options?: Partial<import("
|
|
3948
|
-
}, import("
|
|
4275
|
+
}>(this: TThis, options?: Partial<import("../index.js").FileOptimizeOptions>) => import("../index.js").FileField<"Image", false, import("../index.js").FieldStateOf<TThis>>;
|
|
4276
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
3949
4277
|
field: string;
|
|
3950
4278
|
equals: boolean;
|
|
3951
4279
|
}>>;
|
|
3952
|
-
twitterImageAlt: import("
|
|
4280
|
+
twitterImageAlt: import("../index.js").WithFieldState<Omit<{
|
|
3953
4281
|
kind: "field";
|
|
3954
4282
|
readonly __fieldTypes?: {
|
|
3955
4283
|
input: string;
|
|
3956
4284
|
db: string;
|
|
3957
4285
|
output: string;
|
|
3958
|
-
meta: import("
|
|
3959
|
-
state: import("
|
|
4286
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4287
|
+
state: import("../index.js").DefaultFieldState;
|
|
3960
4288
|
} | undefined;
|
|
3961
|
-
meta: import("
|
|
3962
|
-
state: import("
|
|
4289
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4290
|
+
state: import("../index.js").DefaultFieldState;
|
|
3963
4291
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3964
4292
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3965
4293
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3966
4294
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3967
|
-
getConfig: () => import("
|
|
4295
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3968
4296
|
getIsRequired: () => false;
|
|
3969
4297
|
getIsTranslatable: () => false;
|
|
3970
4298
|
getVisibility: () => "all";
|
|
4299
|
+
getIsDynamic: () => true;
|
|
4300
|
+
getDescription: () => undefined;
|
|
3971
4301
|
getCondition: () => undefined;
|
|
3972
4302
|
} & {
|
|
3973
4303
|
type: <TThis extends {
|
|
@@ -3976,19 +4306,21 @@ export declare const SeoSettings: ContentType<{
|
|
|
3976
4306
|
input: string;
|
|
3977
4307
|
db: string;
|
|
3978
4308
|
output: string;
|
|
3979
|
-
meta: import("
|
|
3980
|
-
state: import("
|
|
4309
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4310
|
+
state: import("../index.js").FieldState;
|
|
3981
4311
|
} | undefined;
|
|
3982
|
-
meta: import("
|
|
3983
|
-
state: import("
|
|
4312
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4313
|
+
state: import("../index.js").FieldState;
|
|
3984
4314
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3985
4315
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3986
4316
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3987
4317
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3988
|
-
getConfig: () => import("
|
|
4318
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3989
4319
|
getIsRequired: () => boolean;
|
|
3990
4320
|
getIsTranslatable: () => boolean;
|
|
3991
|
-
getVisibility: () => import("
|
|
4321
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
4322
|
+
getIsDynamic: () => boolean;
|
|
4323
|
+
getDescription: () => string | undefined;
|
|
3992
4324
|
getCondition: () => {
|
|
3993
4325
|
field: string;
|
|
3994
4326
|
equals: unknown;
|
|
@@ -4026,26 +4358,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
4026
4358
|
lte?: number | undefined;
|
|
4027
4359
|
};
|
|
4028
4360
|
} | undefined;
|
|
4029
|
-
}, NextUi extends import("
|
|
4361
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
4030
4362
|
min: <TThis extends {
|
|
4031
4363
|
kind: "field";
|
|
4032
4364
|
readonly __fieldTypes?: {
|
|
4033
4365
|
input: string;
|
|
4034
4366
|
db: string;
|
|
4035
4367
|
output: string;
|
|
4036
|
-
meta: import("
|
|
4037
|
-
state: import("
|
|
4368
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4369
|
+
state: import("../index.js").FieldState;
|
|
4038
4370
|
} | undefined;
|
|
4039
|
-
meta: import("
|
|
4040
|
-
state: import("
|
|
4371
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4372
|
+
state: import("../index.js").FieldState;
|
|
4041
4373
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
4042
4374
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
4043
4375
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
4044
4376
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
4045
|
-
getConfig: () => import("
|
|
4377
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
4046
4378
|
getIsRequired: () => boolean;
|
|
4047
4379
|
getIsTranslatable: () => boolean;
|
|
4048
|
-
getVisibility: () => import("
|
|
4380
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
4381
|
+
getIsDynamic: () => boolean;
|
|
4382
|
+
getDescription: () => string | undefined;
|
|
4049
4383
|
getCondition: () => {
|
|
4050
4384
|
field: string;
|
|
4051
4385
|
equals: unknown;
|
|
@@ -4083,26 +4417,28 @@ export declare const SeoSettings: ContentType<{
|
|
|
4083
4417
|
lte?: number | undefined;
|
|
4084
4418
|
};
|
|
4085
4419
|
} | undefined;
|
|
4086
|
-
}>(this: TThis, length: number) => import("
|
|
4420
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
4087
4421
|
max: <TThis extends {
|
|
4088
4422
|
kind: "field";
|
|
4089
4423
|
readonly __fieldTypes?: {
|
|
4090
4424
|
input: string;
|
|
4091
4425
|
db: string;
|
|
4092
4426
|
output: string;
|
|
4093
|
-
meta: import("
|
|
4094
|
-
state: import("
|
|
4427
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4428
|
+
state: import("../index.js").FieldState;
|
|
4095
4429
|
} | undefined;
|
|
4096
|
-
meta: import("
|
|
4097
|
-
state: import("
|
|
4430
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
4431
|
+
state: import("../index.js").FieldState;
|
|
4098
4432
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
4099
4433
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
4100
4434
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
4101
4435
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
4102
|
-
getConfig: () => import("
|
|
4436
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
4103
4437
|
getIsRequired: () => boolean;
|
|
4104
4438
|
getIsTranslatable: () => boolean;
|
|
4105
|
-
getVisibility: () => import("
|
|
4439
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
4440
|
+
getIsDynamic: () => boolean;
|
|
4441
|
+
getDescription: () => string | undefined;
|
|
4106
4442
|
getCondition: () => {
|
|
4107
4443
|
field: string;
|
|
4108
4444
|
equals: unknown;
|
|
@@ -4140,13 +4476,13 @@ export declare const SeoSettings: ContentType<{
|
|
|
4140
4476
|
lte?: number | undefined;
|
|
4141
4477
|
};
|
|
4142
4478
|
} | undefined;
|
|
4143
|
-
}>(this: TThis, length: number) => import("
|
|
4144
|
-
}, keyof import("
|
|
4479
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
4480
|
+
}, keyof import("../index.js").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("../index.js").FieldLike<string, string, string, import("../index.js").StringMeta<"Text">, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>, import("../index.js").SetCondition<import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>, {
|
|
4145
4481
|
field: string;
|
|
4146
4482
|
equals: boolean;
|
|
4147
4483
|
}>>;
|
|
4148
|
-
}, "Seo">, "new", import("
|
|
4149
|
-
}, "SeoSettings">;
|
|
4484
|
+
}, "Seo", undefined>, "new", import("../index.js").DefaultFieldState>;
|
|
4485
|
+
}, "SeoSettings", undefined>;
|
|
4150
4486
|
export type SeoSettings = typeof SeoSettings;
|
|
4151
4487
|
export type SeoSettingsSchema = DataFront<SeoSettings>;
|
|
4152
4488
|
export type SeoSettingsManager = DBOutput<SeoSettings>;
|