@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 Seo: ContentType<{
|
|
4
|
-
title: import("
|
|
4
|
+
title: 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 Seo: 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 Seo: 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 Seo: 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 Seo: ContentType<{
|
|
|
192
200
|
lte?: number | undefined;
|
|
193
201
|
};
|
|
194
202
|
} | undefined;
|
|
195
|
-
}>(this: TThis, length: number) => import("
|
|
196
|
-
}, import("
|
|
197
|
-
description: import("
|
|
203
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
204
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
205
|
+
description: 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<"Textarea">;
|
|
212
|
+
state: import("../index.js").DefaultFieldState;
|
|
205
213
|
} | undefined;
|
|
206
|
-
meta: import("
|
|
207
|
-
state: import("
|
|
214
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
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<"Textarea">;
|
|
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 Seo: 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<"Textarea">;
|
|
235
|
+
state: import("../index.js").FieldState;
|
|
226
236
|
} | undefined;
|
|
227
|
-
meta: import("
|
|
228
|
-
state: import("
|
|
237
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
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<"Textarea">;
|
|
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 Seo: 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<"Textarea">;
|
|
294
|
+
state: import("../index.js").FieldState;
|
|
283
295
|
} | undefined;
|
|
284
|
-
meta: import("
|
|
285
|
-
state: import("
|
|
296
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
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<"Textarea">;
|
|
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 Seo: 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<"Textarea", 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<"Textarea">;
|
|
353
|
+
state: import("../index.js").FieldState;
|
|
340
354
|
} | undefined;
|
|
341
|
-
meta: import("
|
|
342
|
-
state: import("
|
|
355
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
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<"Textarea">;
|
|
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,27 +401,29 @@ export declare const Seo: ContentType<{
|
|
|
385
401
|
lte?: number | undefined;
|
|
386
402
|
};
|
|
387
403
|
} | undefined;
|
|
388
|
-
}>(this: TThis, length: number) => import("
|
|
389
|
-
}, import("
|
|
390
|
-
canonicalUrl: import("
|
|
404
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
405
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
406
|
+
canonicalUrl: import("../index.js").WithFieldState<Omit<{
|
|
391
407
|
kind: "field";
|
|
392
408
|
readonly __fieldTypes?: {
|
|
393
409
|
input: string;
|
|
394
410
|
db: string;
|
|
395
411
|
output: string;
|
|
396
|
-
meta: import("
|
|
397
|
-
state: import("
|
|
412
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
413
|
+
state: import("../index.js").DefaultFieldState;
|
|
398
414
|
} | undefined;
|
|
399
|
-
meta: import("
|
|
400
|
-
state: import("
|
|
415
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
416
|
+
state: import("../index.js").DefaultFieldState;
|
|
401
417
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
402
418
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
403
419
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
404
420
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
405
|
-
getConfig: () => import("
|
|
421
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
406
422
|
getIsRequired: () => false;
|
|
407
423
|
getIsTranslatable: () => false;
|
|
408
424
|
getVisibility: () => "all";
|
|
425
|
+
getIsDynamic: () => true;
|
|
426
|
+
getDescription: () => undefined;
|
|
409
427
|
getCondition: () => undefined;
|
|
410
428
|
} & {
|
|
411
429
|
type: <TThis extends {
|
|
@@ -414,19 +432,21 @@ export declare const Seo: ContentType<{
|
|
|
414
432
|
input: string;
|
|
415
433
|
db: string;
|
|
416
434
|
output: string;
|
|
417
|
-
meta: import("
|
|
418
|
-
state: import("
|
|
435
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
436
|
+
state: import("../index.js").FieldState;
|
|
419
437
|
} | undefined;
|
|
420
|
-
meta: import("
|
|
421
|
-
state: import("
|
|
438
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
439
|
+
state: import("../index.js").FieldState;
|
|
422
440
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
423
441
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
424
442
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
425
443
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
426
|
-
getConfig: () => import("
|
|
444
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
427
445
|
getIsRequired: () => boolean;
|
|
428
446
|
getIsTranslatable: () => boolean;
|
|
429
|
-
getVisibility: () => import("
|
|
447
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
448
|
+
getIsDynamic: () => boolean;
|
|
449
|
+
getDescription: () => string | undefined;
|
|
430
450
|
getCondition: () => {
|
|
431
451
|
field: string;
|
|
432
452
|
equals: unknown;
|
|
@@ -464,26 +484,28 @@ export declare const Seo: ContentType<{
|
|
|
464
484
|
lte?: number | undefined;
|
|
465
485
|
};
|
|
466
486
|
} | undefined;
|
|
467
|
-
}, NextUi extends import("
|
|
487
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
468
488
|
min: <TThis extends {
|
|
469
489
|
kind: "field";
|
|
470
490
|
readonly __fieldTypes?: {
|
|
471
491
|
input: string;
|
|
472
492
|
db: string;
|
|
473
493
|
output: string;
|
|
474
|
-
meta: import("
|
|
475
|
-
state: import("
|
|
494
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
495
|
+
state: import("../index.js").FieldState;
|
|
476
496
|
} | undefined;
|
|
477
|
-
meta: import("
|
|
478
|
-
state: import("
|
|
497
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
498
|
+
state: import("../index.js").FieldState;
|
|
479
499
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
480
500
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
481
501
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
482
502
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
483
|
-
getConfig: () => import("
|
|
503
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
484
504
|
getIsRequired: () => boolean;
|
|
485
505
|
getIsTranslatable: () => boolean;
|
|
486
|
-
getVisibility: () => import("
|
|
506
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
507
|
+
getIsDynamic: () => boolean;
|
|
508
|
+
getDescription: () => string | undefined;
|
|
487
509
|
getCondition: () => {
|
|
488
510
|
field: string;
|
|
489
511
|
equals: unknown;
|
|
@@ -521,26 +543,28 @@ export declare const Seo: ContentType<{
|
|
|
521
543
|
lte?: number | undefined;
|
|
522
544
|
};
|
|
523
545
|
} | undefined;
|
|
524
|
-
}>(this: TThis, length: number) => import("
|
|
546
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
525
547
|
max: <TThis extends {
|
|
526
548
|
kind: "field";
|
|
527
549
|
readonly __fieldTypes?: {
|
|
528
550
|
input: string;
|
|
529
551
|
db: string;
|
|
530
552
|
output: string;
|
|
531
|
-
meta: import("
|
|
532
|
-
state: import("
|
|
553
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
554
|
+
state: import("../index.js").FieldState;
|
|
533
555
|
} | undefined;
|
|
534
|
-
meta: import("
|
|
535
|
-
state: import("
|
|
556
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
557
|
+
state: import("../index.js").FieldState;
|
|
536
558
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
537
559
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
538
560
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
539
561
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
540
|
-
getConfig: () => import("
|
|
562
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
541
563
|
getIsRequired: () => boolean;
|
|
542
564
|
getIsTranslatable: () => boolean;
|
|
543
|
-
getVisibility: () => import("
|
|
565
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
566
|
+
getIsDynamic: () => boolean;
|
|
567
|
+
getDescription: () => string | undefined;
|
|
544
568
|
getCondition: () => {
|
|
545
569
|
field: string;
|
|
546
570
|
equals: unknown;
|
|
@@ -578,28 +602,30 @@ export declare const Seo: ContentType<{
|
|
|
578
602
|
lte?: number | undefined;
|
|
579
603
|
};
|
|
580
604
|
} | undefined;
|
|
581
|
-
}>(this: TThis, length: number) => import("
|
|
582
|
-
}, import("
|
|
583
|
-
image: import("
|
|
584
|
-
imageAlt: import("
|
|
605
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
606
|
+
}, 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>>>;
|
|
607
|
+
image: import("../index.js").FileField<"Image", false, import("../index.js").DefaultFieldState>;
|
|
608
|
+
imageAlt: import("../index.js").WithFieldState<{
|
|
585
609
|
kind: "field";
|
|
586
610
|
readonly __fieldTypes?: {
|
|
587
611
|
input: string;
|
|
588
612
|
db: string;
|
|
589
613
|
output: string;
|
|
590
|
-
meta: import("
|
|
591
|
-
state: import("
|
|
614
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
615
|
+
state: import("../index.js").DefaultFieldState;
|
|
592
616
|
} | undefined;
|
|
593
|
-
meta: import("
|
|
594
|
-
state: import("
|
|
617
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
618
|
+
state: import("../index.js").DefaultFieldState;
|
|
595
619
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
596
620
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
597
621
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
598
622
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
599
|
-
getConfig: () => import("
|
|
623
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
600
624
|
getIsRequired: () => false;
|
|
601
625
|
getIsTranslatable: () => false;
|
|
602
626
|
getVisibility: () => "all";
|
|
627
|
+
getIsDynamic: () => true;
|
|
628
|
+
getDescription: () => undefined;
|
|
603
629
|
getCondition: () => undefined;
|
|
604
630
|
} & {
|
|
605
631
|
type: <TThis extends {
|
|
@@ -608,19 +634,21 @@ export declare const Seo: ContentType<{
|
|
|
608
634
|
input: string;
|
|
609
635
|
db: string;
|
|
610
636
|
output: string;
|
|
611
|
-
meta: import("
|
|
612
|
-
state: import("
|
|
637
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
638
|
+
state: import("../index.js").FieldState;
|
|
613
639
|
} | undefined;
|
|
614
|
-
meta: import("
|
|
615
|
-
state: import("
|
|
640
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
641
|
+
state: import("../index.js").FieldState;
|
|
616
642
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
617
643
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
618
644
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
619
645
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
620
|
-
getConfig: () => import("
|
|
646
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
621
647
|
getIsRequired: () => boolean;
|
|
622
648
|
getIsTranslatable: () => boolean;
|
|
623
|
-
getVisibility: () => import("
|
|
649
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
650
|
+
getIsDynamic: () => boolean;
|
|
651
|
+
getDescription: () => string | undefined;
|
|
624
652
|
getCondition: () => {
|
|
625
653
|
field: string;
|
|
626
654
|
equals: unknown;
|
|
@@ -658,26 +686,28 @@ export declare const Seo: ContentType<{
|
|
|
658
686
|
lte?: number | undefined;
|
|
659
687
|
};
|
|
660
688
|
} | undefined;
|
|
661
|
-
}, NextUi extends import("
|
|
689
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
662
690
|
min: <TThis extends {
|
|
663
691
|
kind: "field";
|
|
664
692
|
readonly __fieldTypes?: {
|
|
665
693
|
input: string;
|
|
666
694
|
db: string;
|
|
667
695
|
output: string;
|
|
668
|
-
meta: import("
|
|
669
|
-
state: import("
|
|
696
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
697
|
+
state: import("../index.js").FieldState;
|
|
670
698
|
} | undefined;
|
|
671
|
-
meta: import("
|
|
672
|
-
state: import("
|
|
699
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
700
|
+
state: import("../index.js").FieldState;
|
|
673
701
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
674
702
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
675
703
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
676
704
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
677
|
-
getConfig: () => import("
|
|
705
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
678
706
|
getIsRequired: () => boolean;
|
|
679
707
|
getIsTranslatable: () => boolean;
|
|
680
|
-
getVisibility: () => import("
|
|
708
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
709
|
+
getIsDynamic: () => boolean;
|
|
710
|
+
getDescription: () => string | undefined;
|
|
681
711
|
getCondition: () => {
|
|
682
712
|
field: string;
|
|
683
713
|
equals: unknown;
|
|
@@ -715,26 +745,28 @@ export declare const Seo: ContentType<{
|
|
|
715
745
|
lte?: number | undefined;
|
|
716
746
|
};
|
|
717
747
|
} | undefined;
|
|
718
|
-
}>(this: TThis, length: number) => import("
|
|
748
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
719
749
|
max: <TThis extends {
|
|
720
750
|
kind: "field";
|
|
721
751
|
readonly __fieldTypes?: {
|
|
722
752
|
input: string;
|
|
723
753
|
db: string;
|
|
724
754
|
output: string;
|
|
725
|
-
meta: import("
|
|
726
|
-
state: import("
|
|
755
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
756
|
+
state: import("../index.js").FieldState;
|
|
727
757
|
} | undefined;
|
|
728
|
-
meta: import("
|
|
729
|
-
state: import("
|
|
758
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
759
|
+
state: import("../index.js").FieldState;
|
|
730
760
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
731
761
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
732
762
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
733
763
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
734
|
-
getConfig: () => import("
|
|
764
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
735
765
|
getIsRequired: () => boolean;
|
|
736
766
|
getIsTranslatable: () => boolean;
|
|
737
|
-
getVisibility: () => import("
|
|
767
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
768
|
+
getIsDynamic: () => boolean;
|
|
769
|
+
getDescription: () => string | undefined;
|
|
738
770
|
getCondition: () => {
|
|
739
771
|
field: string;
|
|
740
772
|
equals: unknown;
|
|
@@ -772,29 +804,31 @@ export declare const Seo: ContentType<{
|
|
|
772
804
|
lte?: number | undefined;
|
|
773
805
|
};
|
|
774
806
|
} | undefined;
|
|
775
|
-
}>(this: TThis, length: number) => import("
|
|
776
|
-
}, import("
|
|
777
|
-
noIndex: import("
|
|
778
|
-
customOpenGraph: import("
|
|
779
|
-
openGraphTitle: import("
|
|
807
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
808
|
+
}, import("../index.js").SetTranslatable<import("../index.js").DefaultFieldState>>;
|
|
809
|
+
noIndex: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
810
|
+
customOpenGraph: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
811
|
+
openGraphTitle: import("../index.js").WithFieldState<Omit<{
|
|
780
812
|
kind: "field";
|
|
781
813
|
readonly __fieldTypes?: {
|
|
782
814
|
input: string;
|
|
783
815
|
db: string;
|
|
784
816
|
output: string;
|
|
785
|
-
meta: import("
|
|
786
|
-
state: import("
|
|
817
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
818
|
+
state: import("../index.js").DefaultFieldState;
|
|
787
819
|
} | undefined;
|
|
788
|
-
meta: import("
|
|
789
|
-
state: import("
|
|
820
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
821
|
+
state: import("../index.js").DefaultFieldState;
|
|
790
822
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
791
823
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
792
824
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
793
825
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
794
|
-
getConfig: () => import("
|
|
826
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
795
827
|
getIsRequired: () => false;
|
|
796
828
|
getIsTranslatable: () => false;
|
|
797
829
|
getVisibility: () => "all";
|
|
830
|
+
getIsDynamic: () => true;
|
|
831
|
+
getDescription: () => undefined;
|
|
798
832
|
getCondition: () => undefined;
|
|
799
833
|
} & {
|
|
800
834
|
type: <TThis extends {
|
|
@@ -803,19 +837,21 @@ export declare const Seo: ContentType<{
|
|
|
803
837
|
input: string;
|
|
804
838
|
db: string;
|
|
805
839
|
output: string;
|
|
806
|
-
meta: import("
|
|
807
|
-
state: import("
|
|
840
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
841
|
+
state: import("../index.js").FieldState;
|
|
808
842
|
} | undefined;
|
|
809
|
-
meta: import("
|
|
810
|
-
state: import("
|
|
843
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
844
|
+
state: import("../index.js").FieldState;
|
|
811
845
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
812
846
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
813
847
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
814
848
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
815
|
-
getConfig: () => import("
|
|
849
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
816
850
|
getIsRequired: () => boolean;
|
|
817
851
|
getIsTranslatable: () => boolean;
|
|
818
|
-
getVisibility: () => import("
|
|
852
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
853
|
+
getIsDynamic: () => boolean;
|
|
854
|
+
getDescription: () => string | undefined;
|
|
819
855
|
getCondition: () => {
|
|
820
856
|
field: string;
|
|
821
857
|
equals: unknown;
|
|
@@ -853,26 +889,28 @@ export declare const Seo: ContentType<{
|
|
|
853
889
|
lte?: number | undefined;
|
|
854
890
|
};
|
|
855
891
|
} | undefined;
|
|
856
|
-
}, NextUi extends import("
|
|
892
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
857
893
|
min: <TThis extends {
|
|
858
894
|
kind: "field";
|
|
859
895
|
readonly __fieldTypes?: {
|
|
860
896
|
input: string;
|
|
861
897
|
db: string;
|
|
862
898
|
output: string;
|
|
863
|
-
meta: import("
|
|
864
|
-
state: import("
|
|
899
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
900
|
+
state: import("../index.js").FieldState;
|
|
865
901
|
} | undefined;
|
|
866
|
-
meta: import("
|
|
867
|
-
state: import("
|
|
902
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
903
|
+
state: import("../index.js").FieldState;
|
|
868
904
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
869
905
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
870
906
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
871
907
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
872
|
-
getConfig: () => import("
|
|
908
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
873
909
|
getIsRequired: () => boolean;
|
|
874
910
|
getIsTranslatable: () => boolean;
|
|
875
|
-
getVisibility: () => import("
|
|
911
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
912
|
+
getIsDynamic: () => boolean;
|
|
913
|
+
getDescription: () => string | undefined;
|
|
876
914
|
getCondition: () => {
|
|
877
915
|
field: string;
|
|
878
916
|
equals: unknown;
|
|
@@ -910,26 +948,28 @@ export declare const Seo: ContentType<{
|
|
|
910
948
|
lte?: number | undefined;
|
|
911
949
|
};
|
|
912
950
|
} | undefined;
|
|
913
|
-
}>(this: TThis, length: number) => import("
|
|
951
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
914
952
|
max: <TThis extends {
|
|
915
953
|
kind: "field";
|
|
916
954
|
readonly __fieldTypes?: {
|
|
917
955
|
input: string;
|
|
918
956
|
db: string;
|
|
919
957
|
output: string;
|
|
920
|
-
meta: import("
|
|
921
|
-
state: import("
|
|
958
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
959
|
+
state: import("../index.js").FieldState;
|
|
922
960
|
} | undefined;
|
|
923
|
-
meta: import("
|
|
924
|
-
state: import("
|
|
961
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
962
|
+
state: import("../index.js").FieldState;
|
|
925
963
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
926
964
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
927
965
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
928
966
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
929
|
-
getConfig: () => import("
|
|
967
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
930
968
|
getIsRequired: () => boolean;
|
|
931
969
|
getIsTranslatable: () => boolean;
|
|
932
|
-
getVisibility: () => import("
|
|
970
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
971
|
+
getIsDynamic: () => boolean;
|
|
972
|
+
getDescription: () => string | undefined;
|
|
933
973
|
getCondition: () => {
|
|
934
974
|
field: string;
|
|
935
975
|
equals: unknown;
|
|
@@ -967,30 +1007,32 @@ export declare const Seo: ContentType<{
|
|
|
967
1007
|
lte?: number | undefined;
|
|
968
1008
|
};
|
|
969
1009
|
} | undefined;
|
|
970
|
-
}>(this: TThis, length: number) => import("
|
|
971
|
-
}, keyof import("
|
|
1010
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1011
|
+
}, 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>, {
|
|
972
1012
|
field: string;
|
|
973
1013
|
equals: boolean;
|
|
974
1014
|
}>>;
|
|
975
|
-
openGraphDescription: import("
|
|
1015
|
+
openGraphDescription: import("../index.js").WithFieldState<Omit<{
|
|
976
1016
|
kind: "field";
|
|
977
1017
|
readonly __fieldTypes?: {
|
|
978
1018
|
input: string;
|
|
979
1019
|
db: string;
|
|
980
1020
|
output: string;
|
|
981
|
-
meta: import("
|
|
982
|
-
state: import("
|
|
1021
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1022
|
+
state: import("../index.js").DefaultFieldState;
|
|
983
1023
|
} | undefined;
|
|
984
|
-
meta: import("
|
|
985
|
-
state: import("
|
|
1024
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1025
|
+
state: import("../index.js").DefaultFieldState;
|
|
986
1026
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
987
1027
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
988
1028
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
989
1029
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
990
|
-
getConfig: () => import("
|
|
1030
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
991
1031
|
getIsRequired: () => false;
|
|
992
1032
|
getIsTranslatable: () => false;
|
|
993
1033
|
getVisibility: () => "all";
|
|
1034
|
+
getIsDynamic: () => true;
|
|
1035
|
+
getDescription: () => undefined;
|
|
994
1036
|
getCondition: () => undefined;
|
|
995
1037
|
} & {
|
|
996
1038
|
type: <TThis extends {
|
|
@@ -999,19 +1041,21 @@ export declare const Seo: ContentType<{
|
|
|
999
1041
|
input: string;
|
|
1000
1042
|
db: string;
|
|
1001
1043
|
output: string;
|
|
1002
|
-
meta: import("
|
|
1003
|
-
state: import("
|
|
1044
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1045
|
+
state: import("../index.js").FieldState;
|
|
1004
1046
|
} | undefined;
|
|
1005
|
-
meta: import("
|
|
1006
|
-
state: import("
|
|
1047
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1048
|
+
state: import("../index.js").FieldState;
|
|
1007
1049
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1008
1050
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1009
1051
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1010
1052
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1011
|
-
getConfig: () => import("
|
|
1053
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1012
1054
|
getIsRequired: () => boolean;
|
|
1013
1055
|
getIsTranslatable: () => boolean;
|
|
1014
|
-
getVisibility: () => import("
|
|
1056
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1057
|
+
getIsDynamic: () => boolean;
|
|
1058
|
+
getDescription: () => string | undefined;
|
|
1015
1059
|
getCondition: () => {
|
|
1016
1060
|
field: string;
|
|
1017
1061
|
equals: unknown;
|
|
@@ -1049,26 +1093,28 @@ export declare const Seo: ContentType<{
|
|
|
1049
1093
|
lte?: number | undefined;
|
|
1050
1094
|
};
|
|
1051
1095
|
} | undefined;
|
|
1052
|
-
}, NextUi extends import("
|
|
1096
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1053
1097
|
min: <TThis extends {
|
|
1054
1098
|
kind: "field";
|
|
1055
1099
|
readonly __fieldTypes?: {
|
|
1056
1100
|
input: string;
|
|
1057
1101
|
db: string;
|
|
1058
1102
|
output: string;
|
|
1059
|
-
meta: import("
|
|
1060
|
-
state: import("
|
|
1103
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1104
|
+
state: import("../index.js").FieldState;
|
|
1061
1105
|
} | undefined;
|
|
1062
|
-
meta: import("
|
|
1063
|
-
state: import("
|
|
1106
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1107
|
+
state: import("../index.js").FieldState;
|
|
1064
1108
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1065
1109
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1066
1110
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1067
1111
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1068
|
-
getConfig: () => import("
|
|
1112
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1069
1113
|
getIsRequired: () => boolean;
|
|
1070
1114
|
getIsTranslatable: () => boolean;
|
|
1071
|
-
getVisibility: () => import("
|
|
1115
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1116
|
+
getIsDynamic: () => boolean;
|
|
1117
|
+
getDescription: () => string | undefined;
|
|
1072
1118
|
getCondition: () => {
|
|
1073
1119
|
field: string;
|
|
1074
1120
|
equals: unknown;
|
|
@@ -1106,26 +1152,28 @@ export declare const Seo: ContentType<{
|
|
|
1106
1152
|
lte?: number | undefined;
|
|
1107
1153
|
};
|
|
1108
1154
|
} | undefined;
|
|
1109
|
-
}>(this: TThis, length: number) => import("
|
|
1155
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
1110
1156
|
max: <TThis extends {
|
|
1111
1157
|
kind: "field";
|
|
1112
1158
|
readonly __fieldTypes?: {
|
|
1113
1159
|
input: string;
|
|
1114
1160
|
db: string;
|
|
1115
1161
|
output: string;
|
|
1116
|
-
meta: import("
|
|
1117
|
-
state: import("
|
|
1162
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1163
|
+
state: import("../index.js").FieldState;
|
|
1118
1164
|
} | undefined;
|
|
1119
|
-
meta: import("
|
|
1120
|
-
state: import("
|
|
1165
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
1166
|
+
state: import("../index.js").FieldState;
|
|
1121
1167
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1122
1168
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1123
1169
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1124
1170
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1125
|
-
getConfig: () => import("
|
|
1171
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
1126
1172
|
getIsRequired: () => boolean;
|
|
1127
1173
|
getIsTranslatable: () => boolean;
|
|
1128
|
-
getVisibility: () => import("
|
|
1174
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1175
|
+
getIsDynamic: () => boolean;
|
|
1176
|
+
getDescription: () => string | undefined;
|
|
1129
1177
|
getCondition: () => {
|
|
1130
1178
|
field: string;
|
|
1131
1179
|
equals: unknown;
|
|
@@ -1163,30 +1211,32 @@ export declare const Seo: ContentType<{
|
|
|
1163
1211
|
lte?: number | undefined;
|
|
1164
1212
|
};
|
|
1165
1213
|
} | undefined;
|
|
1166
|
-
}>(this: TThis, length: number) => import("
|
|
1167
|
-
}, keyof import("
|
|
1214
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
1215
|
+
}, 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>, {
|
|
1168
1216
|
field: string;
|
|
1169
1217
|
equals: boolean;
|
|
1170
1218
|
}>>;
|
|
1171
|
-
openGraphUrl: import("
|
|
1219
|
+
openGraphUrl: import("../index.js").WithFieldState<Omit<{
|
|
1172
1220
|
kind: "field";
|
|
1173
1221
|
readonly __fieldTypes?: {
|
|
1174
1222
|
input: string;
|
|
1175
1223
|
db: string;
|
|
1176
1224
|
output: string;
|
|
1177
|
-
meta: import("
|
|
1178
|
-
state: import("
|
|
1225
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1226
|
+
state: import("../index.js").DefaultFieldState;
|
|
1179
1227
|
} | undefined;
|
|
1180
|
-
meta: import("
|
|
1181
|
-
state: import("
|
|
1228
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1229
|
+
state: import("../index.js").DefaultFieldState;
|
|
1182
1230
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1183
1231
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1184
1232
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1185
1233
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1186
|
-
getConfig: () => import("
|
|
1234
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1187
1235
|
getIsRequired: () => false;
|
|
1188
1236
|
getIsTranslatable: () => false;
|
|
1189
1237
|
getVisibility: () => "all";
|
|
1238
|
+
getIsDynamic: () => true;
|
|
1239
|
+
getDescription: () => undefined;
|
|
1190
1240
|
getCondition: () => undefined;
|
|
1191
1241
|
} & {
|
|
1192
1242
|
type: <TThis extends {
|
|
@@ -1195,19 +1245,21 @@ export declare const Seo: ContentType<{
|
|
|
1195
1245
|
input: string;
|
|
1196
1246
|
db: string;
|
|
1197
1247
|
output: string;
|
|
1198
|
-
meta: import("
|
|
1199
|
-
state: import("
|
|
1248
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1249
|
+
state: import("../index.js").FieldState;
|
|
1200
1250
|
} | undefined;
|
|
1201
|
-
meta: import("
|
|
1202
|
-
state: import("
|
|
1251
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1252
|
+
state: import("../index.js").FieldState;
|
|
1203
1253
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1204
1254
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1205
1255
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1206
1256
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1207
|
-
getConfig: () => import("
|
|
1257
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1208
1258
|
getIsRequired: () => boolean;
|
|
1209
1259
|
getIsTranslatable: () => boolean;
|
|
1210
|
-
getVisibility: () => import("
|
|
1260
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1261
|
+
getIsDynamic: () => boolean;
|
|
1262
|
+
getDescription: () => string | undefined;
|
|
1211
1263
|
getCondition: () => {
|
|
1212
1264
|
field: string;
|
|
1213
1265
|
equals: unknown;
|
|
@@ -1245,26 +1297,28 @@ export declare const Seo: ContentType<{
|
|
|
1245
1297
|
lte?: number | undefined;
|
|
1246
1298
|
};
|
|
1247
1299
|
} | undefined;
|
|
1248
|
-
}, NextUi extends import("
|
|
1300
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1249
1301
|
min: <TThis extends {
|
|
1250
1302
|
kind: "field";
|
|
1251
1303
|
readonly __fieldTypes?: {
|
|
1252
1304
|
input: string;
|
|
1253
1305
|
db: string;
|
|
1254
1306
|
output: string;
|
|
1255
|
-
meta: import("
|
|
1256
|
-
state: import("
|
|
1307
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1308
|
+
state: import("../index.js").FieldState;
|
|
1257
1309
|
} | undefined;
|
|
1258
|
-
meta: import("
|
|
1259
|
-
state: import("
|
|
1310
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1311
|
+
state: import("../index.js").FieldState;
|
|
1260
1312
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1261
1313
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1262
1314
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1263
1315
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1264
|
-
getConfig: () => import("
|
|
1316
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1265
1317
|
getIsRequired: () => boolean;
|
|
1266
1318
|
getIsTranslatable: () => boolean;
|
|
1267
|
-
getVisibility: () => import("
|
|
1319
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1320
|
+
getIsDynamic: () => boolean;
|
|
1321
|
+
getDescription: () => string | undefined;
|
|
1268
1322
|
getCondition: () => {
|
|
1269
1323
|
field: string;
|
|
1270
1324
|
equals: unknown;
|
|
@@ -1302,26 +1356,28 @@ export declare const Seo: ContentType<{
|
|
|
1302
1356
|
lte?: number | undefined;
|
|
1303
1357
|
};
|
|
1304
1358
|
} | undefined;
|
|
1305
|
-
}>(this: TThis, length: number) => import("
|
|
1359
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
1306
1360
|
max: <TThis extends {
|
|
1307
1361
|
kind: "field";
|
|
1308
1362
|
readonly __fieldTypes?: {
|
|
1309
1363
|
input: string;
|
|
1310
1364
|
db: string;
|
|
1311
1365
|
output: string;
|
|
1312
|
-
meta: import("
|
|
1313
|
-
state: import("
|
|
1366
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1367
|
+
state: import("../index.js").FieldState;
|
|
1314
1368
|
} | undefined;
|
|
1315
|
-
meta: import("
|
|
1316
|
-
state: import("
|
|
1369
|
+
meta: import("../index.js").StringMeta<"Url">;
|
|
1370
|
+
state: import("../index.js").FieldState;
|
|
1317
1371
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1318
1372
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1319
1373
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1320
1374
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1321
|
-
getConfig: () => import("
|
|
1375
|
+
getConfig: () => import("../index.js").StringMeta<"Url">;
|
|
1322
1376
|
getIsRequired: () => boolean;
|
|
1323
1377
|
getIsTranslatable: () => boolean;
|
|
1324
|
-
getVisibility: () => import("
|
|
1378
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1379
|
+
getIsDynamic: () => boolean;
|
|
1380
|
+
getDescription: () => string | undefined;
|
|
1325
1381
|
getCondition: () => {
|
|
1326
1382
|
field: string;
|
|
1327
1383
|
equals: unknown;
|
|
@@ -1359,30 +1415,32 @@ export declare const Seo: ContentType<{
|
|
|
1359
1415
|
lte?: number | undefined;
|
|
1360
1416
|
};
|
|
1361
1417
|
} | undefined;
|
|
1362
|
-
}>(this: TThis, length: number) => import("
|
|
1363
|
-
}, keyof import("
|
|
1418
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Url", import("../index.js").FieldStateOf<TThis>>;
|
|
1419
|
+
}, 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>, {
|
|
1364
1420
|
field: string;
|
|
1365
1421
|
equals: boolean;
|
|
1366
1422
|
}>>;
|
|
1367
|
-
openGraphSiteName: import("
|
|
1423
|
+
openGraphSiteName: import("../index.js").WithFieldState<Omit<{
|
|
1368
1424
|
kind: "field";
|
|
1369
1425
|
readonly __fieldTypes?: {
|
|
1370
1426
|
input: string;
|
|
1371
1427
|
db: string;
|
|
1372
1428
|
output: string;
|
|
1373
|
-
meta: import("
|
|
1374
|
-
state: import("
|
|
1429
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1430
|
+
state: import("../index.js").DefaultFieldState;
|
|
1375
1431
|
} | undefined;
|
|
1376
|
-
meta: import("
|
|
1377
|
-
state: import("
|
|
1432
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1433
|
+
state: import("../index.js").DefaultFieldState;
|
|
1378
1434
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1379
1435
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1380
1436
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1381
1437
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1382
|
-
getConfig: () => import("
|
|
1438
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1383
1439
|
getIsRequired: () => false;
|
|
1384
1440
|
getIsTranslatable: () => false;
|
|
1385
1441
|
getVisibility: () => "all";
|
|
1442
|
+
getIsDynamic: () => true;
|
|
1443
|
+
getDescription: () => undefined;
|
|
1386
1444
|
getCondition: () => undefined;
|
|
1387
1445
|
} & {
|
|
1388
1446
|
type: <TThis extends {
|
|
@@ -1391,19 +1449,21 @@ export declare const Seo: ContentType<{
|
|
|
1391
1449
|
input: string;
|
|
1392
1450
|
db: string;
|
|
1393
1451
|
output: string;
|
|
1394
|
-
meta: import("
|
|
1395
|
-
state: import("
|
|
1452
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1453
|
+
state: import("../index.js").FieldState;
|
|
1396
1454
|
} | undefined;
|
|
1397
|
-
meta: import("
|
|
1398
|
-
state: import("
|
|
1455
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1456
|
+
state: import("../index.js").FieldState;
|
|
1399
1457
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1400
1458
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1401
1459
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1402
1460
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1403
|
-
getConfig: () => import("
|
|
1461
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1404
1462
|
getIsRequired: () => boolean;
|
|
1405
1463
|
getIsTranslatable: () => boolean;
|
|
1406
|
-
getVisibility: () => import("
|
|
1464
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1465
|
+
getIsDynamic: () => boolean;
|
|
1466
|
+
getDescription: () => string | undefined;
|
|
1407
1467
|
getCondition: () => {
|
|
1408
1468
|
field: string;
|
|
1409
1469
|
equals: unknown;
|
|
@@ -1441,26 +1501,28 @@ export declare const Seo: ContentType<{
|
|
|
1441
1501
|
lte?: number | undefined;
|
|
1442
1502
|
};
|
|
1443
1503
|
} | undefined;
|
|
1444
|
-
}, NextUi extends import("
|
|
1504
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1445
1505
|
min: <TThis extends {
|
|
1446
1506
|
kind: "field";
|
|
1447
1507
|
readonly __fieldTypes?: {
|
|
1448
1508
|
input: string;
|
|
1449
1509
|
db: string;
|
|
1450
1510
|
output: string;
|
|
1451
|
-
meta: import("
|
|
1452
|
-
state: import("
|
|
1511
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1512
|
+
state: import("../index.js").FieldState;
|
|
1453
1513
|
} | undefined;
|
|
1454
|
-
meta: import("
|
|
1455
|
-
state: import("
|
|
1514
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1515
|
+
state: import("../index.js").FieldState;
|
|
1456
1516
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1457
1517
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1458
1518
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1459
1519
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1460
|
-
getConfig: () => import("
|
|
1520
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1461
1521
|
getIsRequired: () => boolean;
|
|
1462
1522
|
getIsTranslatable: () => boolean;
|
|
1463
|
-
getVisibility: () => import("
|
|
1523
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1524
|
+
getIsDynamic: () => boolean;
|
|
1525
|
+
getDescription: () => string | undefined;
|
|
1464
1526
|
getCondition: () => {
|
|
1465
1527
|
field: string;
|
|
1466
1528
|
equals: unknown;
|
|
@@ -1498,26 +1560,28 @@ export declare const Seo: ContentType<{
|
|
|
1498
1560
|
lte?: number | undefined;
|
|
1499
1561
|
};
|
|
1500
1562
|
} | undefined;
|
|
1501
|
-
}>(this: TThis, length: number) => import("
|
|
1563
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1502
1564
|
max: <TThis extends {
|
|
1503
1565
|
kind: "field";
|
|
1504
1566
|
readonly __fieldTypes?: {
|
|
1505
1567
|
input: string;
|
|
1506
1568
|
db: string;
|
|
1507
1569
|
output: string;
|
|
1508
|
-
meta: import("
|
|
1509
|
-
state: import("
|
|
1570
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1571
|
+
state: import("../index.js").FieldState;
|
|
1510
1572
|
} | undefined;
|
|
1511
|
-
meta: import("
|
|
1512
|
-
state: import("
|
|
1573
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1574
|
+
state: import("../index.js").FieldState;
|
|
1513
1575
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1514
1576
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1515
1577
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1516
1578
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1517
|
-
getConfig: () => import("
|
|
1579
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1518
1580
|
getIsRequired: () => boolean;
|
|
1519
1581
|
getIsTranslatable: () => boolean;
|
|
1520
|
-
getVisibility: () => import("
|
|
1582
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1583
|
+
getIsDynamic: () => boolean;
|
|
1584
|
+
getDescription: () => string | undefined;
|
|
1521
1585
|
getCondition: () => {
|
|
1522
1586
|
field: string;
|
|
1523
1587
|
equals: unknown;
|
|
@@ -1555,30 +1619,32 @@ export declare const Seo: ContentType<{
|
|
|
1555
1619
|
lte?: number | undefined;
|
|
1556
1620
|
};
|
|
1557
1621
|
} | undefined;
|
|
1558
|
-
}>(this: TThis, length: number) => import("
|
|
1559
|
-
}, keyof import("
|
|
1622
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1623
|
+
}, 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>, {
|
|
1560
1624
|
field: string;
|
|
1561
1625
|
equals: boolean;
|
|
1562
1626
|
}>>;
|
|
1563
|
-
openGraphType: import("
|
|
1627
|
+
openGraphType: import("../index.js").WithFieldState<{
|
|
1564
1628
|
kind: "field";
|
|
1565
1629
|
readonly __fieldTypes?: {
|
|
1566
1630
|
input: "website" | "article" | "profile" | "book";
|
|
1567
1631
|
db: "website" | "article" | "profile" | "book";
|
|
1568
1632
|
output: "website" | "article" | "profile" | "book";
|
|
1569
|
-
meta: import("
|
|
1570
|
-
state: import("
|
|
1633
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1634
|
+
state: import("../index.js").DefaultFieldState;
|
|
1571
1635
|
} | undefined;
|
|
1572
|
-
meta: import("
|
|
1573
|
-
state: import("
|
|
1636
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1637
|
+
state: import("../index.js").DefaultFieldState;
|
|
1574
1638
|
toZod: () => import("zod").ZodType<"website" | "article" | "profile" | "book", unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book", unknown>>;
|
|
1575
1639
|
getInputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | null | undefined, unknown>>;
|
|
1576
1640
|
getSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1577
1641
|
getOutputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1578
|
-
getConfig: () => import("
|
|
1642
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1579
1643
|
getIsRequired: () => false;
|
|
1580
1644
|
getIsTranslatable: () => false;
|
|
1581
1645
|
getVisibility: () => "all";
|
|
1646
|
+
getIsDynamic: () => true;
|
|
1647
|
+
getDescription: () => undefined;
|
|
1582
1648
|
getCondition: () => undefined;
|
|
1583
1649
|
} & {
|
|
1584
1650
|
multiple: <TThis extends {
|
|
@@ -1587,19 +1653,21 @@ export declare const Seo: ContentType<{
|
|
|
1587
1653
|
input: "website" | "article" | "profile" | "book";
|
|
1588
1654
|
db: "website" | "article" | "profile" | "book";
|
|
1589
1655
|
output: "website" | "article" | "profile" | "book";
|
|
1590
|
-
meta: import("
|
|
1591
|
-
state: import("
|
|
1656
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1657
|
+
state: import("../index.js").FieldState;
|
|
1592
1658
|
} | undefined;
|
|
1593
|
-
meta: import("
|
|
1594
|
-
state: import("
|
|
1659
|
+
meta: import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1660
|
+
state: import("../index.js").FieldState;
|
|
1595
1661
|
toZod: () => import("zod").ZodType<"website" | "article" | "profile" | "book", unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book", unknown>>;
|
|
1596
1662
|
getInputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | null | undefined, unknown>>;
|
|
1597
1663
|
getSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1598
1664
|
getOutputSchema: () => import("zod").ZodType<"website" | "article" | "profile" | "book" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"website" | "article" | "profile" | "book" | undefined, unknown>>;
|
|
1599
|
-
getConfig: () => import("
|
|
1665
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["website", "article", "profile", "book"], false>;
|
|
1600
1666
|
getIsRequired: () => boolean;
|
|
1601
1667
|
getIsTranslatable: () => boolean;
|
|
1602
|
-
getVisibility: () => import("
|
|
1668
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1669
|
+
getIsDynamic: () => boolean;
|
|
1670
|
+
getDescription: () => string | undefined;
|
|
1603
1671
|
getCondition: () => {
|
|
1604
1672
|
field: string;
|
|
1605
1673
|
equals: unknown;
|
|
@@ -1637,12 +1705,12 @@ export declare const Seo: ContentType<{
|
|
|
1637
1705
|
lte?: number | undefined;
|
|
1638
1706
|
};
|
|
1639
1707
|
} | undefined;
|
|
1640
|
-
}>(this: TThis) => import("
|
|
1641
|
-
}, import("
|
|
1708
|
+
}>(this: TThis) => import("../index.js").SelectField<readonly ["website", "article", "profile", "book"], true, import("../index.js").FieldStateOf<TThis>>;
|
|
1709
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
1642
1710
|
field: string;
|
|
1643
1711
|
equals: boolean;
|
|
1644
1712
|
}>>;
|
|
1645
|
-
openGraphImage: import("
|
|
1713
|
+
openGraphImage: import("../index.js").WithFieldState<{
|
|
1646
1714
|
kind: "field";
|
|
1647
1715
|
readonly __fieldTypes?: {
|
|
1648
1716
|
input: {
|
|
@@ -1679,11 +1747,11 @@ export declare const Seo: ContentType<{
|
|
|
1679
1747
|
}[] | undefined;
|
|
1680
1748
|
srcSet?: string | null | undefined;
|
|
1681
1749
|
};
|
|
1682
|
-
meta: import("
|
|
1683
|
-
state: import("
|
|
1750
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
1751
|
+
state: import("../index.js").DefaultFieldState;
|
|
1684
1752
|
} | undefined;
|
|
1685
|
-
meta: import("
|
|
1686
|
-
state: import("
|
|
1753
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
1754
|
+
state: import("../index.js").DefaultFieldState;
|
|
1687
1755
|
toZod: () => import("zod").ZodType<{
|
|
1688
1756
|
type: "existing";
|
|
1689
1757
|
_id: string;
|
|
@@ -1758,12 +1826,14 @@ export declare const Seo: ContentType<{
|
|
|
1758
1826
|
}[] | undefined;
|
|
1759
1827
|
srcSet?: string | null | undefined;
|
|
1760
1828
|
} | undefined, unknown>>;
|
|
1761
|
-
getConfig: () => import("
|
|
1829
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
1762
1830
|
getIsRequired: () => false;
|
|
1763
1831
|
getIsTranslatable: () => false;
|
|
1764
1832
|
getVisibility: () => "all";
|
|
1833
|
+
getIsDynamic: () => true;
|
|
1834
|
+
getDescription: () => undefined;
|
|
1765
1835
|
getCondition: () => undefined;
|
|
1766
|
-
} & import("
|
|
1836
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
1767
1837
|
url: string;
|
|
1768
1838
|
previewUrl: string | null;
|
|
1769
1839
|
name: string;
|
|
@@ -1786,7 +1856,7 @@ export declare const Seo: ContentType<{
|
|
|
1786
1856
|
size: number;
|
|
1787
1857
|
}[] | undefined;
|
|
1788
1858
|
srcSet?: string | null | undefined;
|
|
1789
|
-
}, import("
|
|
1859
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
1790
1860
|
type: <TThis extends {
|
|
1791
1861
|
kind: "field";
|
|
1792
1862
|
readonly __fieldTypes?: {
|
|
@@ -1824,11 +1894,11 @@ export declare const Seo: ContentType<{
|
|
|
1824
1894
|
}[] | undefined;
|
|
1825
1895
|
srcSet?: string | null | undefined;
|
|
1826
1896
|
};
|
|
1827
|
-
meta: import("
|
|
1828
|
-
state: import("
|
|
1897
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
1898
|
+
state: import("../index.js").FieldState;
|
|
1829
1899
|
} | undefined;
|
|
1830
|
-
meta: import("
|
|
1831
|
-
state: import("
|
|
1900
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
1901
|
+
state: import("../index.js").FieldState;
|
|
1832
1902
|
toZod: () => import("zod").ZodType<{
|
|
1833
1903
|
type: "existing";
|
|
1834
1904
|
_id: string;
|
|
@@ -1903,10 +1973,12 @@ export declare const Seo: ContentType<{
|
|
|
1903
1973
|
}[] | undefined;
|
|
1904
1974
|
srcSet?: string | null | undefined;
|
|
1905
1975
|
} | undefined, unknown>>;
|
|
1906
|
-
getConfig: () => import("
|
|
1976
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
1907
1977
|
getIsRequired: () => boolean;
|
|
1908
1978
|
getIsTranslatable: () => boolean;
|
|
1909
|
-
getVisibility: () => import("
|
|
1979
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1980
|
+
getIsDynamic: () => boolean;
|
|
1981
|
+
getDescription: () => string | undefined;
|
|
1910
1982
|
getCondition: () => {
|
|
1911
1983
|
field: string;
|
|
1912
1984
|
equals: unknown;
|
|
@@ -1944,7 +2016,7 @@ export declare const Seo: ContentType<{
|
|
|
1944
2016
|
lte?: number | undefined;
|
|
1945
2017
|
};
|
|
1946
2018
|
} | undefined;
|
|
1947
|
-
}, NextMediaType extends import("
|
|
2019
|
+
}, NextMediaType extends import("../index.js").FileMediaType>(this: TThis, mediaType: NextMediaType) => import("../index.js").FileField<NextMediaType, false, import("../index.js").FieldStateOf<TThis>>;
|
|
1948
2020
|
multiple: <TThis extends {
|
|
1949
2021
|
kind: "field";
|
|
1950
2022
|
readonly __fieldTypes?: {
|
|
@@ -1982,11 +2054,11 @@ export declare const Seo: ContentType<{
|
|
|
1982
2054
|
}[] | undefined;
|
|
1983
2055
|
srcSet?: string | null | undefined;
|
|
1984
2056
|
};
|
|
1985
|
-
meta: import("
|
|
1986
|
-
state: import("
|
|
2057
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2058
|
+
state: import("../index.js").FieldState;
|
|
1987
2059
|
} | undefined;
|
|
1988
|
-
meta: import("
|
|
1989
|
-
state: import("
|
|
2060
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2061
|
+
state: import("../index.js").FieldState;
|
|
1990
2062
|
toZod: () => import("zod").ZodType<{
|
|
1991
2063
|
type: "existing";
|
|
1992
2064
|
_id: string;
|
|
@@ -2061,10 +2133,12 @@ export declare const Seo: ContentType<{
|
|
|
2061
2133
|
}[] | undefined;
|
|
2062
2134
|
srcSet?: string | null | undefined;
|
|
2063
2135
|
} | undefined, unknown>>;
|
|
2064
|
-
getConfig: () => import("
|
|
2136
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
2065
2137
|
getIsRequired: () => boolean;
|
|
2066
2138
|
getIsTranslatable: () => boolean;
|
|
2067
|
-
getVisibility: () => import("
|
|
2139
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2140
|
+
getIsDynamic: () => boolean;
|
|
2141
|
+
getDescription: () => string | undefined;
|
|
2068
2142
|
getCondition: () => {
|
|
2069
2143
|
field: string;
|
|
2070
2144
|
equals: unknown;
|
|
@@ -2102,7 +2176,7 @@ export declare const Seo: ContentType<{
|
|
|
2102
2176
|
lte?: number | undefined;
|
|
2103
2177
|
};
|
|
2104
2178
|
} | undefined;
|
|
2105
|
-
}>(this: TThis) => import("
|
|
2179
|
+
}>(this: TThis) => import("../index.js").FileField<"Image", true, import("../index.js").FieldStateOf<TThis>>;
|
|
2106
2180
|
optimize: <TThis extends {
|
|
2107
2181
|
kind: "field";
|
|
2108
2182
|
readonly __fieldTypes?: {
|
|
@@ -2140,11 +2214,11 @@ export declare const Seo: ContentType<{
|
|
|
2140
2214
|
}[] | undefined;
|
|
2141
2215
|
srcSet?: string | null | undefined;
|
|
2142
2216
|
};
|
|
2143
|
-
meta: import("
|
|
2144
|
-
state: import("
|
|
2217
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2218
|
+
state: import("../index.js").FieldState;
|
|
2145
2219
|
} | undefined;
|
|
2146
|
-
meta: import("
|
|
2147
|
-
state: import("
|
|
2220
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
2221
|
+
state: import("../index.js").FieldState;
|
|
2148
2222
|
toZod: () => import("zod").ZodType<{
|
|
2149
2223
|
type: "existing";
|
|
2150
2224
|
_id: string;
|
|
@@ -2219,10 +2293,12 @@ export declare const Seo: ContentType<{
|
|
|
2219
2293
|
}[] | undefined;
|
|
2220
2294
|
srcSet?: string | null | undefined;
|
|
2221
2295
|
} | undefined, unknown>>;
|
|
2222
|
-
getConfig: () => import("
|
|
2296
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
2223
2297
|
getIsRequired: () => boolean;
|
|
2224
2298
|
getIsTranslatable: () => boolean;
|
|
2225
|
-
getVisibility: () => import("
|
|
2299
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2300
|
+
getIsDynamic: () => boolean;
|
|
2301
|
+
getDescription: () => string | undefined;
|
|
2226
2302
|
getCondition: () => {
|
|
2227
2303
|
field: string;
|
|
2228
2304
|
equals: unknown;
|
|
@@ -2260,30 +2336,32 @@ export declare const Seo: ContentType<{
|
|
|
2260
2336
|
lte?: number | undefined;
|
|
2261
2337
|
};
|
|
2262
2338
|
} | undefined;
|
|
2263
|
-
}>(this: TThis, options?: Partial<import("
|
|
2264
|
-
}, import("
|
|
2339
|
+
}>(this: TThis, options?: Partial<import("../index.js").FileOptimizeOptions>) => import("../index.js").FileField<"Image", false, import("../index.js").FieldStateOf<TThis>>;
|
|
2340
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
2265
2341
|
field: string;
|
|
2266
2342
|
equals: boolean;
|
|
2267
2343
|
}>>;
|
|
2268
|
-
openGraphImageAlt: import("
|
|
2344
|
+
openGraphImageAlt: import("../index.js").WithFieldState<Omit<{
|
|
2269
2345
|
kind: "field";
|
|
2270
2346
|
readonly __fieldTypes?: {
|
|
2271
2347
|
input: string;
|
|
2272
2348
|
db: string;
|
|
2273
2349
|
output: string;
|
|
2274
|
-
meta: import("
|
|
2275
|
-
state: import("
|
|
2350
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2351
|
+
state: import("../index.js").DefaultFieldState;
|
|
2276
2352
|
} | undefined;
|
|
2277
|
-
meta: import("
|
|
2278
|
-
state: import("
|
|
2353
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2354
|
+
state: import("../index.js").DefaultFieldState;
|
|
2279
2355
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2280
2356
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2281
2357
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2282
2358
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2283
|
-
getConfig: () => import("
|
|
2359
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2284
2360
|
getIsRequired: () => false;
|
|
2285
2361
|
getIsTranslatable: () => false;
|
|
2286
2362
|
getVisibility: () => "all";
|
|
2363
|
+
getIsDynamic: () => true;
|
|
2364
|
+
getDescription: () => undefined;
|
|
2287
2365
|
getCondition: () => undefined;
|
|
2288
2366
|
} & {
|
|
2289
2367
|
type: <TThis extends {
|
|
@@ -2292,19 +2370,21 @@ export declare const Seo: ContentType<{
|
|
|
2292
2370
|
input: string;
|
|
2293
2371
|
db: string;
|
|
2294
2372
|
output: string;
|
|
2295
|
-
meta: import("
|
|
2296
|
-
state: import("
|
|
2373
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2374
|
+
state: import("../index.js").FieldState;
|
|
2297
2375
|
} | undefined;
|
|
2298
|
-
meta: import("
|
|
2299
|
-
state: import("
|
|
2376
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2377
|
+
state: import("../index.js").FieldState;
|
|
2300
2378
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2301
2379
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2302
2380
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2303
2381
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2304
|
-
getConfig: () => import("
|
|
2382
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2305
2383
|
getIsRequired: () => boolean;
|
|
2306
2384
|
getIsTranslatable: () => boolean;
|
|
2307
|
-
getVisibility: () => import("
|
|
2385
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2386
|
+
getIsDynamic: () => boolean;
|
|
2387
|
+
getDescription: () => string | undefined;
|
|
2308
2388
|
getCondition: () => {
|
|
2309
2389
|
field: string;
|
|
2310
2390
|
equals: unknown;
|
|
@@ -2342,26 +2422,28 @@ export declare const Seo: ContentType<{
|
|
|
2342
2422
|
lte?: number | undefined;
|
|
2343
2423
|
};
|
|
2344
2424
|
} | undefined;
|
|
2345
|
-
}, NextUi extends import("
|
|
2425
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
2346
2426
|
min: <TThis extends {
|
|
2347
2427
|
kind: "field";
|
|
2348
2428
|
readonly __fieldTypes?: {
|
|
2349
2429
|
input: string;
|
|
2350
2430
|
db: string;
|
|
2351
2431
|
output: string;
|
|
2352
|
-
meta: import("
|
|
2353
|
-
state: import("
|
|
2432
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2433
|
+
state: import("../index.js").FieldState;
|
|
2354
2434
|
} | undefined;
|
|
2355
|
-
meta: import("
|
|
2356
|
-
state: import("
|
|
2435
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2436
|
+
state: import("../index.js").FieldState;
|
|
2357
2437
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2358
2438
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2359
2439
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2360
2440
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2361
|
-
getConfig: () => import("
|
|
2441
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2362
2442
|
getIsRequired: () => boolean;
|
|
2363
2443
|
getIsTranslatable: () => boolean;
|
|
2364
|
-
getVisibility: () => import("
|
|
2444
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2445
|
+
getIsDynamic: () => boolean;
|
|
2446
|
+
getDescription: () => string | undefined;
|
|
2365
2447
|
getCondition: () => {
|
|
2366
2448
|
field: string;
|
|
2367
2449
|
equals: unknown;
|
|
@@ -2399,26 +2481,28 @@ export declare const Seo: ContentType<{
|
|
|
2399
2481
|
lte?: number | undefined;
|
|
2400
2482
|
};
|
|
2401
2483
|
} | undefined;
|
|
2402
|
-
}>(this: TThis, length: number) => import("
|
|
2484
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
2403
2485
|
max: <TThis extends {
|
|
2404
2486
|
kind: "field";
|
|
2405
2487
|
readonly __fieldTypes?: {
|
|
2406
2488
|
input: string;
|
|
2407
2489
|
db: string;
|
|
2408
2490
|
output: string;
|
|
2409
|
-
meta: import("
|
|
2410
|
-
state: import("
|
|
2491
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2492
|
+
state: import("../index.js").FieldState;
|
|
2411
2493
|
} | undefined;
|
|
2412
|
-
meta: import("
|
|
2413
|
-
state: import("
|
|
2494
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2495
|
+
state: import("../index.js").FieldState;
|
|
2414
2496
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2415
2497
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2416
2498
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2417
2499
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2418
|
-
getConfig: () => import("
|
|
2500
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2419
2501
|
getIsRequired: () => boolean;
|
|
2420
2502
|
getIsTranslatable: () => boolean;
|
|
2421
|
-
getVisibility: () => import("
|
|
2503
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2504
|
+
getIsDynamic: () => boolean;
|
|
2505
|
+
getDescription: () => string | undefined;
|
|
2422
2506
|
getCondition: () => {
|
|
2423
2507
|
field: string;
|
|
2424
2508
|
equals: unknown;
|
|
@@ -2456,31 +2540,33 @@ export declare const Seo: ContentType<{
|
|
|
2456
2540
|
lte?: number | undefined;
|
|
2457
2541
|
};
|
|
2458
2542
|
} | undefined;
|
|
2459
|
-
}>(this: TThis, length: number) => import("
|
|
2460
|
-
}, keyof import("
|
|
2543
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
2544
|
+
}, 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>, {
|
|
2461
2545
|
field: string;
|
|
2462
2546
|
equals: boolean;
|
|
2463
2547
|
}>>;
|
|
2464
|
-
customTwitter: import("
|
|
2465
|
-
twitterCard: import("
|
|
2548
|
+
customTwitter: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
2549
|
+
twitterCard: import("../index.js").WithFieldState<{
|
|
2466
2550
|
kind: "field";
|
|
2467
2551
|
readonly __fieldTypes?: {
|
|
2468
2552
|
input: "summary" | "summary_large_image" | "app" | "player";
|
|
2469
2553
|
db: "summary" | "summary_large_image" | "app" | "player";
|
|
2470
2554
|
output: "summary" | "summary_large_image" | "app" | "player";
|
|
2471
|
-
meta: import("
|
|
2472
|
-
state: import("
|
|
2555
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2556
|
+
state: import("../index.js").DefaultFieldState;
|
|
2473
2557
|
} | undefined;
|
|
2474
|
-
meta: import("
|
|
2475
|
-
state: import("
|
|
2558
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2559
|
+
state: import("../index.js").DefaultFieldState;
|
|
2476
2560
|
toZod: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player", unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player", unknown>>;
|
|
2477
2561
|
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>>;
|
|
2478
2562
|
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>>;
|
|
2479
2563
|
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>>;
|
|
2480
|
-
getConfig: () => import("
|
|
2564
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2481
2565
|
getIsRequired: () => false;
|
|
2482
2566
|
getIsTranslatable: () => false;
|
|
2483
2567
|
getVisibility: () => "all";
|
|
2568
|
+
getIsDynamic: () => true;
|
|
2569
|
+
getDescription: () => undefined;
|
|
2484
2570
|
getCondition: () => undefined;
|
|
2485
2571
|
} & {
|
|
2486
2572
|
multiple: <TThis extends {
|
|
@@ -2489,19 +2575,21 @@ export declare const Seo: ContentType<{
|
|
|
2489
2575
|
input: "summary" | "summary_large_image" | "app" | "player";
|
|
2490
2576
|
db: "summary" | "summary_large_image" | "app" | "player";
|
|
2491
2577
|
output: "summary" | "summary_large_image" | "app" | "player";
|
|
2492
|
-
meta: import("
|
|
2493
|
-
state: import("
|
|
2578
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2579
|
+
state: import("../index.js").FieldState;
|
|
2494
2580
|
} | undefined;
|
|
2495
|
-
meta: import("
|
|
2496
|
-
state: import("
|
|
2581
|
+
meta: import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2582
|
+
state: import("../index.js").FieldState;
|
|
2497
2583
|
toZod: () => import("zod").ZodType<"summary" | "summary_large_image" | "app" | "player", unknown, import("zod/v4/core").$ZodTypeInternals<"summary" | "summary_large_image" | "app" | "player", unknown>>;
|
|
2498
2584
|
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>>;
|
|
2499
2585
|
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>>;
|
|
2500
2586
|
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>>;
|
|
2501
|
-
getConfig: () => import("
|
|
2587
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["summary", "summary_large_image", "app", "player"], false>;
|
|
2502
2588
|
getIsRequired: () => boolean;
|
|
2503
2589
|
getIsTranslatable: () => boolean;
|
|
2504
|
-
getVisibility: () => import("
|
|
2590
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2591
|
+
getIsDynamic: () => boolean;
|
|
2592
|
+
getDescription: () => string | undefined;
|
|
2505
2593
|
getCondition: () => {
|
|
2506
2594
|
field: string;
|
|
2507
2595
|
equals: unknown;
|
|
@@ -2539,30 +2627,32 @@ export declare const Seo: ContentType<{
|
|
|
2539
2627
|
lte?: number | undefined;
|
|
2540
2628
|
};
|
|
2541
2629
|
} | undefined;
|
|
2542
|
-
}>(this: TThis) => import("
|
|
2543
|
-
}, import("
|
|
2630
|
+
}>(this: TThis) => import("../index.js").SelectField<readonly ["summary", "summary_large_image", "app", "player"], true, import("../index.js").FieldStateOf<TThis>>;
|
|
2631
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
2544
2632
|
field: string;
|
|
2545
2633
|
equals: boolean;
|
|
2546
2634
|
}>>;
|
|
2547
|
-
twitterTitle: import("
|
|
2635
|
+
twitterTitle: import("../index.js").WithFieldState<Omit<{
|
|
2548
2636
|
kind: "field";
|
|
2549
2637
|
readonly __fieldTypes?: {
|
|
2550
2638
|
input: string;
|
|
2551
2639
|
db: string;
|
|
2552
2640
|
output: string;
|
|
2553
|
-
meta: import("
|
|
2554
|
-
state: import("
|
|
2641
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2642
|
+
state: import("../index.js").DefaultFieldState;
|
|
2555
2643
|
} | undefined;
|
|
2556
|
-
meta: import("
|
|
2557
|
-
state: import("
|
|
2644
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2645
|
+
state: import("../index.js").DefaultFieldState;
|
|
2558
2646
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2559
2647
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2560
2648
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2561
2649
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2562
|
-
getConfig: () => import("
|
|
2650
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2563
2651
|
getIsRequired: () => false;
|
|
2564
2652
|
getIsTranslatable: () => false;
|
|
2565
2653
|
getVisibility: () => "all";
|
|
2654
|
+
getIsDynamic: () => true;
|
|
2655
|
+
getDescription: () => undefined;
|
|
2566
2656
|
getCondition: () => undefined;
|
|
2567
2657
|
} & {
|
|
2568
2658
|
type: <TThis extends {
|
|
@@ -2571,19 +2661,21 @@ export declare const Seo: ContentType<{
|
|
|
2571
2661
|
input: string;
|
|
2572
2662
|
db: string;
|
|
2573
2663
|
output: string;
|
|
2574
|
-
meta: import("
|
|
2575
|
-
state: import("
|
|
2664
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2665
|
+
state: import("../index.js").FieldState;
|
|
2576
2666
|
} | undefined;
|
|
2577
|
-
meta: import("
|
|
2578
|
-
state: import("
|
|
2667
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2668
|
+
state: import("../index.js").FieldState;
|
|
2579
2669
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2580
2670
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2581
2671
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2582
2672
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2583
|
-
getConfig: () => import("
|
|
2673
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2584
2674
|
getIsRequired: () => boolean;
|
|
2585
2675
|
getIsTranslatable: () => boolean;
|
|
2586
|
-
getVisibility: () => import("
|
|
2676
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2677
|
+
getIsDynamic: () => boolean;
|
|
2678
|
+
getDescription: () => string | undefined;
|
|
2587
2679
|
getCondition: () => {
|
|
2588
2680
|
field: string;
|
|
2589
2681
|
equals: unknown;
|
|
@@ -2621,26 +2713,28 @@ export declare const Seo: ContentType<{
|
|
|
2621
2713
|
lte?: number | undefined;
|
|
2622
2714
|
};
|
|
2623
2715
|
} | undefined;
|
|
2624
|
-
}, NextUi extends import("
|
|
2716
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
2625
2717
|
min: <TThis extends {
|
|
2626
2718
|
kind: "field";
|
|
2627
2719
|
readonly __fieldTypes?: {
|
|
2628
2720
|
input: string;
|
|
2629
2721
|
db: string;
|
|
2630
2722
|
output: string;
|
|
2631
|
-
meta: import("
|
|
2632
|
-
state: import("
|
|
2723
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2724
|
+
state: import("../index.js").FieldState;
|
|
2633
2725
|
} | undefined;
|
|
2634
|
-
meta: import("
|
|
2635
|
-
state: import("
|
|
2726
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2727
|
+
state: import("../index.js").FieldState;
|
|
2636
2728
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2637
2729
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2638
2730
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2639
2731
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2640
|
-
getConfig: () => import("
|
|
2732
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2641
2733
|
getIsRequired: () => boolean;
|
|
2642
2734
|
getIsTranslatable: () => boolean;
|
|
2643
|
-
getVisibility: () => import("
|
|
2735
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2736
|
+
getIsDynamic: () => boolean;
|
|
2737
|
+
getDescription: () => string | undefined;
|
|
2644
2738
|
getCondition: () => {
|
|
2645
2739
|
field: string;
|
|
2646
2740
|
equals: unknown;
|
|
@@ -2678,26 +2772,28 @@ export declare const Seo: ContentType<{
|
|
|
2678
2772
|
lte?: number | undefined;
|
|
2679
2773
|
};
|
|
2680
2774
|
} | undefined;
|
|
2681
|
-
}>(this: TThis, length: number) => import("
|
|
2775
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
2682
2776
|
max: <TThis extends {
|
|
2683
2777
|
kind: "field";
|
|
2684
2778
|
readonly __fieldTypes?: {
|
|
2685
2779
|
input: string;
|
|
2686
2780
|
db: string;
|
|
2687
2781
|
output: string;
|
|
2688
|
-
meta: import("
|
|
2689
|
-
state: import("
|
|
2782
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2783
|
+
state: import("../index.js").FieldState;
|
|
2690
2784
|
} | undefined;
|
|
2691
|
-
meta: import("
|
|
2692
|
-
state: import("
|
|
2785
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
2786
|
+
state: import("../index.js").FieldState;
|
|
2693
2787
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2694
2788
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2695
2789
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2696
2790
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2697
|
-
getConfig: () => import("
|
|
2791
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
2698
2792
|
getIsRequired: () => boolean;
|
|
2699
2793
|
getIsTranslatable: () => boolean;
|
|
2700
|
-
getVisibility: () => import("
|
|
2794
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2795
|
+
getIsDynamic: () => boolean;
|
|
2796
|
+
getDescription: () => string | undefined;
|
|
2701
2797
|
getCondition: () => {
|
|
2702
2798
|
field: string;
|
|
2703
2799
|
equals: unknown;
|
|
@@ -2735,30 +2831,32 @@ export declare const Seo: ContentType<{
|
|
|
2735
2831
|
lte?: number | undefined;
|
|
2736
2832
|
};
|
|
2737
2833
|
} | undefined;
|
|
2738
|
-
}>(this: TThis, length: number) => import("
|
|
2739
|
-
}, keyof import("
|
|
2834
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
2835
|
+
}, 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>, {
|
|
2740
2836
|
field: string;
|
|
2741
2837
|
equals: boolean;
|
|
2742
2838
|
}>>;
|
|
2743
|
-
twitterDescription: import("
|
|
2839
|
+
twitterDescription: import("../index.js").WithFieldState<Omit<{
|
|
2744
2840
|
kind: "field";
|
|
2745
2841
|
readonly __fieldTypes?: {
|
|
2746
2842
|
input: string;
|
|
2747
2843
|
db: string;
|
|
2748
2844
|
output: string;
|
|
2749
|
-
meta: import("
|
|
2750
|
-
state: import("
|
|
2845
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2846
|
+
state: import("../index.js").DefaultFieldState;
|
|
2751
2847
|
} | undefined;
|
|
2752
|
-
meta: import("
|
|
2753
|
-
state: import("
|
|
2848
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2849
|
+
state: import("../index.js").DefaultFieldState;
|
|
2754
2850
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2755
2851
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2756
2852
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2757
2853
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2758
|
-
getConfig: () => import("
|
|
2854
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
2759
2855
|
getIsRequired: () => false;
|
|
2760
2856
|
getIsTranslatable: () => false;
|
|
2761
2857
|
getVisibility: () => "all";
|
|
2858
|
+
getIsDynamic: () => true;
|
|
2859
|
+
getDescription: () => undefined;
|
|
2762
2860
|
getCondition: () => undefined;
|
|
2763
2861
|
} & {
|
|
2764
2862
|
type: <TThis extends {
|
|
@@ -2767,19 +2865,21 @@ export declare const Seo: ContentType<{
|
|
|
2767
2865
|
input: string;
|
|
2768
2866
|
db: string;
|
|
2769
2867
|
output: string;
|
|
2770
|
-
meta: import("
|
|
2771
|
-
state: import("
|
|
2868
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2869
|
+
state: import("../index.js").FieldState;
|
|
2772
2870
|
} | undefined;
|
|
2773
|
-
meta: import("
|
|
2774
|
-
state: import("
|
|
2871
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2872
|
+
state: import("../index.js").FieldState;
|
|
2775
2873
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2776
2874
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2777
2875
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2778
2876
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2779
|
-
getConfig: () => import("
|
|
2877
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
2780
2878
|
getIsRequired: () => boolean;
|
|
2781
2879
|
getIsTranslatable: () => boolean;
|
|
2782
|
-
getVisibility: () => import("
|
|
2880
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2881
|
+
getIsDynamic: () => boolean;
|
|
2882
|
+
getDescription: () => string | undefined;
|
|
2783
2883
|
getCondition: () => {
|
|
2784
2884
|
field: string;
|
|
2785
2885
|
equals: unknown;
|
|
@@ -2817,26 +2917,28 @@ export declare const Seo: ContentType<{
|
|
|
2817
2917
|
lte?: number | undefined;
|
|
2818
2918
|
};
|
|
2819
2919
|
} | undefined;
|
|
2820
|
-
}, NextUi extends import("
|
|
2920
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
2821
2921
|
min: <TThis extends {
|
|
2822
2922
|
kind: "field";
|
|
2823
2923
|
readonly __fieldTypes?: {
|
|
2824
2924
|
input: string;
|
|
2825
2925
|
db: string;
|
|
2826
2926
|
output: string;
|
|
2827
|
-
meta: import("
|
|
2828
|
-
state: import("
|
|
2927
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2928
|
+
state: import("../index.js").FieldState;
|
|
2829
2929
|
} | undefined;
|
|
2830
|
-
meta: import("
|
|
2831
|
-
state: import("
|
|
2930
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2931
|
+
state: import("../index.js").FieldState;
|
|
2832
2932
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2833
2933
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2834
2934
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2835
2935
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2836
|
-
getConfig: () => import("
|
|
2936
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
2837
2937
|
getIsRequired: () => boolean;
|
|
2838
2938
|
getIsTranslatable: () => boolean;
|
|
2839
|
-
getVisibility: () => import("
|
|
2939
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2940
|
+
getIsDynamic: () => boolean;
|
|
2941
|
+
getDescription: () => string | undefined;
|
|
2840
2942
|
getCondition: () => {
|
|
2841
2943
|
field: string;
|
|
2842
2944
|
equals: unknown;
|
|
@@ -2874,26 +2976,28 @@ export declare const Seo: ContentType<{
|
|
|
2874
2976
|
lte?: number | undefined;
|
|
2875
2977
|
};
|
|
2876
2978
|
} | undefined;
|
|
2877
|
-
}>(this: TThis, length: number) => import("
|
|
2979
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
2878
2980
|
max: <TThis extends {
|
|
2879
2981
|
kind: "field";
|
|
2880
2982
|
readonly __fieldTypes?: {
|
|
2881
2983
|
input: string;
|
|
2882
2984
|
db: string;
|
|
2883
2985
|
output: string;
|
|
2884
|
-
meta: import("
|
|
2885
|
-
state: import("
|
|
2986
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2987
|
+
state: import("../index.js").FieldState;
|
|
2886
2988
|
} | undefined;
|
|
2887
|
-
meta: import("
|
|
2888
|
-
state: import("
|
|
2989
|
+
meta: import("../index.js").StringMeta<"Textarea">;
|
|
2990
|
+
state: import("../index.js").FieldState;
|
|
2889
2991
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
2890
2992
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
2891
2993
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2892
2994
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
2893
|
-
getConfig: () => import("
|
|
2995
|
+
getConfig: () => import("../index.js").StringMeta<"Textarea">;
|
|
2894
2996
|
getIsRequired: () => boolean;
|
|
2895
2997
|
getIsTranslatable: () => boolean;
|
|
2896
|
-
getVisibility: () => import("
|
|
2998
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
2999
|
+
getIsDynamic: () => boolean;
|
|
3000
|
+
getDescription: () => string | undefined;
|
|
2897
3001
|
getCondition: () => {
|
|
2898
3002
|
field: string;
|
|
2899
3003
|
equals: unknown;
|
|
@@ -2931,12 +3035,12 @@ export declare const Seo: ContentType<{
|
|
|
2931
3035
|
lte?: number | undefined;
|
|
2932
3036
|
};
|
|
2933
3037
|
} | undefined;
|
|
2934
|
-
}>(this: TThis, length: number) => import("
|
|
2935
|
-
}, keyof import("
|
|
3038
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Textarea", import("../index.js").FieldStateOf<TThis>>;
|
|
3039
|
+
}, 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>, {
|
|
2936
3040
|
field: string;
|
|
2937
3041
|
equals: boolean;
|
|
2938
3042
|
}>>;
|
|
2939
|
-
twitterImage: import("
|
|
3043
|
+
twitterImage: import("../index.js").WithFieldState<{
|
|
2940
3044
|
kind: "field";
|
|
2941
3045
|
readonly __fieldTypes?: {
|
|
2942
3046
|
input: {
|
|
@@ -2973,11 +3077,11 @@ export declare const Seo: ContentType<{
|
|
|
2973
3077
|
}[] | undefined;
|
|
2974
3078
|
srcSet?: string | null | undefined;
|
|
2975
3079
|
};
|
|
2976
|
-
meta: import("
|
|
2977
|
-
state: import("
|
|
3080
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3081
|
+
state: import("../index.js").DefaultFieldState;
|
|
2978
3082
|
} | undefined;
|
|
2979
|
-
meta: import("
|
|
2980
|
-
state: import("
|
|
3083
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3084
|
+
state: import("../index.js").DefaultFieldState;
|
|
2981
3085
|
toZod: () => import("zod").ZodType<{
|
|
2982
3086
|
type: "existing";
|
|
2983
3087
|
_id: string;
|
|
@@ -3052,12 +3156,14 @@ export declare const Seo: ContentType<{
|
|
|
3052
3156
|
}[] | undefined;
|
|
3053
3157
|
srcSet?: string | null | undefined;
|
|
3054
3158
|
} | undefined, unknown>>;
|
|
3055
|
-
getConfig: () => import("
|
|
3159
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3056
3160
|
getIsRequired: () => false;
|
|
3057
3161
|
getIsTranslatable: () => false;
|
|
3058
3162
|
getVisibility: () => "all";
|
|
3163
|
+
getIsDynamic: () => true;
|
|
3164
|
+
getDescription: () => undefined;
|
|
3059
3165
|
getCondition: () => undefined;
|
|
3060
|
-
} & import("
|
|
3166
|
+
} & import("../index.js").PopulatableFieldLike<{
|
|
3061
3167
|
url: string;
|
|
3062
3168
|
previewUrl: string | null;
|
|
3063
3169
|
name: string;
|
|
@@ -3080,7 +3186,7 @@ export declare const Seo: ContentType<{
|
|
|
3080
3186
|
size: number;
|
|
3081
3187
|
}[] | undefined;
|
|
3082
3188
|
srcSet?: string | null | undefined;
|
|
3083
|
-
}, import("
|
|
3189
|
+
}, import("../index.js").DefaultFieldState> & {
|
|
3084
3190
|
type: <TThis extends {
|
|
3085
3191
|
kind: "field";
|
|
3086
3192
|
readonly __fieldTypes?: {
|
|
@@ -3118,11 +3224,11 @@ export declare const Seo: ContentType<{
|
|
|
3118
3224
|
}[] | undefined;
|
|
3119
3225
|
srcSet?: string | null | undefined;
|
|
3120
3226
|
};
|
|
3121
|
-
meta: import("
|
|
3122
|
-
state: import("
|
|
3227
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3228
|
+
state: import("../index.js").FieldState;
|
|
3123
3229
|
} | undefined;
|
|
3124
|
-
meta: import("
|
|
3125
|
-
state: import("
|
|
3230
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3231
|
+
state: import("../index.js").FieldState;
|
|
3126
3232
|
toZod: () => import("zod").ZodType<{
|
|
3127
3233
|
type: "existing";
|
|
3128
3234
|
_id: string;
|
|
@@ -3197,10 +3303,12 @@ export declare const Seo: ContentType<{
|
|
|
3197
3303
|
}[] | undefined;
|
|
3198
3304
|
srcSet?: string | null | undefined;
|
|
3199
3305
|
} | undefined, unknown>>;
|
|
3200
|
-
getConfig: () => import("
|
|
3306
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3201
3307
|
getIsRequired: () => boolean;
|
|
3202
3308
|
getIsTranslatable: () => boolean;
|
|
3203
|
-
getVisibility: () => import("
|
|
3309
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3310
|
+
getIsDynamic: () => boolean;
|
|
3311
|
+
getDescription: () => string | undefined;
|
|
3204
3312
|
getCondition: () => {
|
|
3205
3313
|
field: string;
|
|
3206
3314
|
equals: unknown;
|
|
@@ -3238,7 +3346,7 @@ export declare const Seo: ContentType<{
|
|
|
3238
3346
|
lte?: number | undefined;
|
|
3239
3347
|
};
|
|
3240
3348
|
} | undefined;
|
|
3241
|
-
}, NextMediaType extends import("
|
|
3349
|
+
}, NextMediaType extends import("../index.js").FileMediaType>(this: TThis, mediaType: NextMediaType) => import("../index.js").FileField<NextMediaType, false, import("../index.js").FieldStateOf<TThis>>;
|
|
3242
3350
|
multiple: <TThis extends {
|
|
3243
3351
|
kind: "field";
|
|
3244
3352
|
readonly __fieldTypes?: {
|
|
@@ -3276,11 +3384,11 @@ export declare const Seo: ContentType<{
|
|
|
3276
3384
|
}[] | undefined;
|
|
3277
3385
|
srcSet?: string | null | undefined;
|
|
3278
3386
|
};
|
|
3279
|
-
meta: import("
|
|
3280
|
-
state: import("
|
|
3387
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3388
|
+
state: import("../index.js").FieldState;
|
|
3281
3389
|
} | undefined;
|
|
3282
|
-
meta: import("
|
|
3283
|
-
state: import("
|
|
3390
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3391
|
+
state: import("../index.js").FieldState;
|
|
3284
3392
|
toZod: () => import("zod").ZodType<{
|
|
3285
3393
|
type: "existing";
|
|
3286
3394
|
_id: string;
|
|
@@ -3355,10 +3463,12 @@ export declare const Seo: ContentType<{
|
|
|
3355
3463
|
}[] | undefined;
|
|
3356
3464
|
srcSet?: string | null | undefined;
|
|
3357
3465
|
} | undefined, unknown>>;
|
|
3358
|
-
getConfig: () => import("
|
|
3466
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3359
3467
|
getIsRequired: () => boolean;
|
|
3360
3468
|
getIsTranslatable: () => boolean;
|
|
3361
|
-
getVisibility: () => import("
|
|
3469
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3470
|
+
getIsDynamic: () => boolean;
|
|
3471
|
+
getDescription: () => string | undefined;
|
|
3362
3472
|
getCondition: () => {
|
|
3363
3473
|
field: string;
|
|
3364
3474
|
equals: unknown;
|
|
@@ -3396,7 +3506,7 @@ export declare const Seo: ContentType<{
|
|
|
3396
3506
|
lte?: number | undefined;
|
|
3397
3507
|
};
|
|
3398
3508
|
} | undefined;
|
|
3399
|
-
}>(this: TThis) => import("
|
|
3509
|
+
}>(this: TThis) => import("../index.js").FileField<"Image", true, import("../index.js").FieldStateOf<TThis>>;
|
|
3400
3510
|
optimize: <TThis extends {
|
|
3401
3511
|
kind: "field";
|
|
3402
3512
|
readonly __fieldTypes?: {
|
|
@@ -3434,11 +3544,11 @@ export declare const Seo: ContentType<{
|
|
|
3434
3544
|
}[] | undefined;
|
|
3435
3545
|
srcSet?: string | null | undefined;
|
|
3436
3546
|
};
|
|
3437
|
-
meta: import("
|
|
3438
|
-
state: import("
|
|
3547
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3548
|
+
state: import("../index.js").FieldState;
|
|
3439
3549
|
} | undefined;
|
|
3440
|
-
meta: import("
|
|
3441
|
-
state: import("
|
|
3550
|
+
meta: import("../index.js").FileMeta<"Image", false>;
|
|
3551
|
+
state: import("../index.js").FieldState;
|
|
3442
3552
|
toZod: () => import("zod").ZodType<{
|
|
3443
3553
|
type: "existing";
|
|
3444
3554
|
_id: string;
|
|
@@ -3513,10 +3623,12 @@ export declare const Seo: ContentType<{
|
|
|
3513
3623
|
}[] | undefined;
|
|
3514
3624
|
srcSet?: string | null | undefined;
|
|
3515
3625
|
} | undefined, unknown>>;
|
|
3516
|
-
getConfig: () => import("
|
|
3626
|
+
getConfig: () => import("../index.js").FileMeta<"Image", false>;
|
|
3517
3627
|
getIsRequired: () => boolean;
|
|
3518
3628
|
getIsTranslatable: () => boolean;
|
|
3519
|
-
getVisibility: () => import("
|
|
3629
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3630
|
+
getIsDynamic: () => boolean;
|
|
3631
|
+
getDescription: () => string | undefined;
|
|
3520
3632
|
getCondition: () => {
|
|
3521
3633
|
field: string;
|
|
3522
3634
|
equals: unknown;
|
|
@@ -3554,30 +3666,32 @@ export declare const Seo: ContentType<{
|
|
|
3554
3666
|
lte?: number | undefined;
|
|
3555
3667
|
};
|
|
3556
3668
|
} | undefined;
|
|
3557
|
-
}>(this: TThis, options?: Partial<import("
|
|
3558
|
-
}, import("
|
|
3669
|
+
}>(this: TThis, options?: Partial<import("../index.js").FileOptimizeOptions>) => import("../index.js").FileField<"Image", false, import("../index.js").FieldStateOf<TThis>>;
|
|
3670
|
+
}, import("../index.js").SetCondition<import("../index.js").DefaultFieldState, {
|
|
3559
3671
|
field: string;
|
|
3560
3672
|
equals: boolean;
|
|
3561
3673
|
}>>;
|
|
3562
|
-
twitterImageAlt: import("
|
|
3674
|
+
twitterImageAlt: import("../index.js").WithFieldState<Omit<{
|
|
3563
3675
|
kind: "field";
|
|
3564
3676
|
readonly __fieldTypes?: {
|
|
3565
3677
|
input: string;
|
|
3566
3678
|
db: string;
|
|
3567
3679
|
output: string;
|
|
3568
|
-
meta: import("
|
|
3569
|
-
state: import("
|
|
3680
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3681
|
+
state: import("../index.js").DefaultFieldState;
|
|
3570
3682
|
} | undefined;
|
|
3571
|
-
meta: import("
|
|
3572
|
-
state: import("
|
|
3683
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3684
|
+
state: import("../index.js").DefaultFieldState;
|
|
3573
3685
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3574
3686
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3575
3687
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3576
3688
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3577
|
-
getConfig: () => import("
|
|
3689
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3578
3690
|
getIsRequired: () => false;
|
|
3579
3691
|
getIsTranslatable: () => false;
|
|
3580
3692
|
getVisibility: () => "all";
|
|
3693
|
+
getIsDynamic: () => true;
|
|
3694
|
+
getDescription: () => undefined;
|
|
3581
3695
|
getCondition: () => undefined;
|
|
3582
3696
|
} & {
|
|
3583
3697
|
type: <TThis extends {
|
|
@@ -3586,19 +3700,21 @@ export declare const Seo: ContentType<{
|
|
|
3586
3700
|
input: string;
|
|
3587
3701
|
db: string;
|
|
3588
3702
|
output: string;
|
|
3589
|
-
meta: import("
|
|
3590
|
-
state: import("
|
|
3703
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3704
|
+
state: import("../index.js").FieldState;
|
|
3591
3705
|
} | undefined;
|
|
3592
|
-
meta: import("
|
|
3593
|
-
state: import("
|
|
3706
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3707
|
+
state: import("../index.js").FieldState;
|
|
3594
3708
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3595
3709
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3596
3710
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3597
3711
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3598
|
-
getConfig: () => import("
|
|
3712
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3599
3713
|
getIsRequired: () => boolean;
|
|
3600
3714
|
getIsTranslatable: () => boolean;
|
|
3601
|
-
getVisibility: () => import("
|
|
3715
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3716
|
+
getIsDynamic: () => boolean;
|
|
3717
|
+
getDescription: () => string | undefined;
|
|
3602
3718
|
getCondition: () => {
|
|
3603
3719
|
field: string;
|
|
3604
3720
|
equals: unknown;
|
|
@@ -3636,26 +3752,28 @@ export declare const Seo: ContentType<{
|
|
|
3636
3752
|
lte?: number | undefined;
|
|
3637
3753
|
};
|
|
3638
3754
|
} | undefined;
|
|
3639
|
-
}, NextUi extends import("
|
|
3755
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
3640
3756
|
min: <TThis extends {
|
|
3641
3757
|
kind: "field";
|
|
3642
3758
|
readonly __fieldTypes?: {
|
|
3643
3759
|
input: string;
|
|
3644
3760
|
db: string;
|
|
3645
3761
|
output: string;
|
|
3646
|
-
meta: import("
|
|
3647
|
-
state: import("
|
|
3762
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3763
|
+
state: import("../index.js").FieldState;
|
|
3648
3764
|
} | undefined;
|
|
3649
|
-
meta: import("
|
|
3650
|
-
state: import("
|
|
3765
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3766
|
+
state: import("../index.js").FieldState;
|
|
3651
3767
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3652
3768
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3653
3769
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3654
3770
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3655
|
-
getConfig: () => import("
|
|
3771
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3656
3772
|
getIsRequired: () => boolean;
|
|
3657
3773
|
getIsTranslatable: () => boolean;
|
|
3658
|
-
getVisibility: () => import("
|
|
3774
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3775
|
+
getIsDynamic: () => boolean;
|
|
3776
|
+
getDescription: () => string | undefined;
|
|
3659
3777
|
getCondition: () => {
|
|
3660
3778
|
field: string;
|
|
3661
3779
|
equals: unknown;
|
|
@@ -3693,26 +3811,28 @@ export declare const Seo: ContentType<{
|
|
|
3693
3811
|
lte?: number | undefined;
|
|
3694
3812
|
};
|
|
3695
3813
|
} | undefined;
|
|
3696
|
-
}>(this: TThis, length: number) => import("
|
|
3814
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3697
3815
|
max: <TThis extends {
|
|
3698
3816
|
kind: "field";
|
|
3699
3817
|
readonly __fieldTypes?: {
|
|
3700
3818
|
input: string;
|
|
3701
3819
|
db: string;
|
|
3702
3820
|
output: string;
|
|
3703
|
-
meta: import("
|
|
3704
|
-
state: import("
|
|
3821
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3822
|
+
state: import("../index.js").FieldState;
|
|
3705
3823
|
} | undefined;
|
|
3706
|
-
meta: import("
|
|
3707
|
-
state: import("
|
|
3824
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
3825
|
+
state: import("../index.js").FieldState;
|
|
3708
3826
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
3709
3827
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
3710
3828
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3711
3829
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
3712
|
-
getConfig: () => import("
|
|
3830
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
3713
3831
|
getIsRequired: () => boolean;
|
|
3714
3832
|
getIsTranslatable: () => boolean;
|
|
3715
|
-
getVisibility: () => import("
|
|
3833
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
3834
|
+
getIsDynamic: () => boolean;
|
|
3835
|
+
getDescription: () => string | undefined;
|
|
3716
3836
|
getCondition: () => {
|
|
3717
3837
|
field: string;
|
|
3718
3838
|
equals: unknown;
|
|
@@ -3750,12 +3870,12 @@ export declare const Seo: ContentType<{
|
|
|
3750
3870
|
lte?: number | undefined;
|
|
3751
3871
|
};
|
|
3752
3872
|
} | undefined;
|
|
3753
|
-
}>(this: TThis, length: number) => import("
|
|
3754
|
-
}, keyof import("
|
|
3873
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
3874
|
+
}, 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>, {
|
|
3755
3875
|
field: string;
|
|
3756
3876
|
equals: boolean;
|
|
3757
3877
|
}>>;
|
|
3758
|
-
}, "Seo">;
|
|
3878
|
+
}, "Seo", undefined>;
|
|
3759
3879
|
export type Seo = typeof Seo;
|
|
3760
3880
|
export type SeoSchema = DataFront<Seo>;
|
|
3761
3881
|
export type SeoManager = DBOutput<Seo>;
|