@rakun-kit/core 1.3.10 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +1 -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 +192 -113
- 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/routes/web/seo.js +15 -1
- package/dist/cjs/api/routes/web/seo.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 +18 -10
- 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 +16 -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 +60 -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/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 -1
- package/dist/cjs/internal-content-types/Seo.js.map +1 -1
- package/dist/cjs/internal-content-types/SeoSettings.js +2 -1
- 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/lib/ContentType.js +185 -8
- package/dist/cjs/lib/ContentType.js.map +1 -1
- package/dist/cjs/lib/Permissions.js +69 -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 +7 -6
- package/dist/cjs/orm/index.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/cjs/schemas/web/page.js +1 -0
- package/dist/cjs/schemas/web/page.js.map +1 -1
- 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/index.d.ts +532 -4
- package/dist/esm/api/operations/index.d.ts.map +1 -1
- package/dist/esm/api/operations/manager-contract.d.ts +521 -4
- package/dist/esm/api/operations/manager-contract.d.ts.map +1 -1
- package/dist/esm/api/operations/manager-contract.js +88 -1
- 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 +520 -4
- package/dist/esm/api/operations/manager.d.ts.map +1 -1
- package/dist/esm/api/operations/manager.js +47 -3
- package/dist/esm/api/operations/manager.js.map +1 -1
- package/dist/esm/api/operations/web-contract.d.ts +13 -0
- package/dist/esm/api/operations/web-contract.d.ts.map +1 -1
- package/dist/esm/api/operations/web.d.ts +12 -0
- package/dist/esm/api/operations/web.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/apiOperations.js +1 -1
- package/dist/esm/api/routes/manager/apiOperations.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/getSession.d.ts +6 -1
- package/dist/esm/api/routes/manager/auth/getSession.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/login.d.ts +3 -1
- package/dist/esm/api/routes/manager/auth/login.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/login.js +20 -4
- package/dist/esm/api/routes/manager/auth/login.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts +6 -1
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/markTourSeen.js +3 -1
- package/dist/esm/api/routes/manager/auth/markTourSeen.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts +2 -0
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js +11 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts +6 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.js +6 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updatePassword.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updatePassword.js +15 -5
- package/dist/esm/api/routes/manager/auth/updatePassword.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts +6 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js +3 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
- 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 +11 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/create.js +1 -1
- package/dist/esm/api/routes/manager/backups/create.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/list.js +1 -1
- package/dist/esm/api/routes/manager/backups/list.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/restore.js +1 -1
- 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 +17 -0
- package/dist/esm/api/routes/manager/contentTypes.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/create.d.ts +3 -0
- package/dist/esm/api/routes/manager/create.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/create.js +10 -11
- package/dist/esm/api/routes/manager/create.js.map +1 -1
- package/dist/esm/api/routes/manager/delete.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/delete.js +11 -4
- package/dist/esm/api/routes/manager/delete.js.map +1 -1
- package/dist/esm/api/routes/manager/duplicate.d.ts +2 -0
- package/dist/esm/api/routes/manager/duplicate.d.ts.map +1 -1
- 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.map +1 -1
- package/dist/esm/api/routes/manager/get.js +3 -2
- package/dist/esm/api/routes/manager/get.js.map +1 -1
- package/dist/esm/api/routes/manager/languages.d.ts +2 -0
- package/dist/esm/api/routes/manager/languages.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/list.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/list.js +24 -9
- package/dist/esm/api/routes/manager/list.js.map +1 -1
- package/dist/esm/api/routes/manager/literals/list.js +1 -1
- package/dist/esm/api/routes/manager/literals/list.js.map +1 -1
- package/dist/esm/api/routes/manager/literals/upsert.js +1 -1
- 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/finalizeUpload.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/finalizeUpload.js +24 -1
- package/dist/esm/api/routes/manager/media/finalizeUpload.js.map +1 -1
- package/dist/esm/api/routes/manager/media/getMediaUrl.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/getMediaUrl.js +34 -2
- package/dist/esm/api/routes/manager/media/getMediaUrl.js.map +1 -1
- package/dist/esm/api/routes/manager/media/prepareUpload.d.ts +2 -1
- package/dist/esm/api/routes/manager/media/prepareUpload.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/prepareUpload.js +12 -1
- package/dist/esm/api/routes/manager/media/prepareUpload.js.map +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.js +71 -5
- package/dist/esm/api/routes/manager/media/uploadBinary.js.map +1 -1
- package/dist/esm/api/routes/manager/migrations/list.js +1 -1
- package/dist/esm/api/routes/manager/migrations/list.js.map +1 -1
- package/dist/esm/api/routes/manager/permissions.js +1 -1
- package/dist/esm/api/routes/manager/permissions.js.map +1 -1
- package/dist/esm/api/routes/manager/preview/create.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/preview/create.js +5 -1
- package/dist/esm/api/routes/manager/preview/create.js.map +1 -1
- package/dist/esm/api/routes/manager/regenerateRoutes.js +1 -1
- 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 +7 -2
- package/dist/esm/api/routes/manager/setDefaultLanguage.js.map +1 -1
- package/dist/esm/api/routes/manager/translateDocument.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/translateDocument.js +1 -9
- package/dist/esm/api/routes/manager/translateDocument.js.map +1 -1
- package/dist/esm/api/routes/manager/trash.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/trash.js +7 -2
- package/dist/esm/api/routes/manager/trash.js.map +1 -1
- package/dist/esm/api/routes/manager/update.d.ts +3 -0
- package/dist/esm/api/routes/manager/update.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/update.js +5 -10
- 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.js +1 -1
- package/dist/esm/api/routes/manager/versions/get.js.map +1 -1
- package/dist/esm/api/routes/manager/versions/list.js +1 -1
- package/dist/esm/api/routes/manager/versions/list.js.map +1 -1
- package/dist/esm/api/routes/manager/versions/restore.js +1 -1
- package/dist/esm/api/routes/manager/versions/restore.js.map +1 -1
- package/dist/esm/api/routes/web/page.d.ts +2 -1
- package/dist/esm/api/routes/web/page.d.ts.map +1 -1
- package/dist/esm/api/routes/web/page.js +192 -113
- package/dist/esm/api/routes/web/page.js.map +1 -1
- package/dist/esm/api/routes/web/previewPage.d.ts +5 -0
- package/dist/esm/api/routes/web/previewPage.d.ts.map +1 -1
- package/dist/esm/api/routes/web/robots.d.ts.map +1 -1
- package/dist/esm/api/routes/web/robots.js +10 -8
- package/dist/esm/api/routes/web/robots.js.map +1 -1
- package/dist/esm/api/routes/web/seo.d.ts +2 -1
- package/dist/esm/api/routes/web/seo.d.ts.map +1 -1
- package/dist/esm/api/routes/web/seo.js +15 -1
- package/dist/esm/api/routes/web/seo.js.map +1 -1
- package/dist/esm/api/sessionCookie.d.ts +1 -0
- 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/checkOwnership.d.ts.map +1 -1
- package/dist/esm/api/utils/checkOwnership.js +10 -7
- package/dist/esm/api/utils/checkOwnership.js.map +1 -1
- 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 +8 -1
- 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 +24 -6
- package/dist/esm/api/utils/getLink.js.map +1 -1
- package/dist/esm/api/utils/getUser.d.ts +6 -1
- package/dist/esm/api/utils/getUser.d.ts.map +1 -1
- package/dist/esm/api/utils/getUser.js +7 -1
- package/dist/esm/api/utils/getUser.js.map +1 -1
- package/dist/esm/api/utils/index.d.ts +2 -1
- package/dist/esm/api/utils/index.d.ts.map +1 -1
- package/dist/esm/api/utils/index.js +2 -1
- 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/passwords.d.ts +5 -0
- package/dist/esm/api/utils/passwords.d.ts.map +1 -1
- package/dist/esm/api/utils/passwords.js +22 -0
- package/dist/esm/api/utils/passwords.js.map +1 -1
- package/dist/esm/api/utils/populates/populateLinks.d.ts.map +1 -1
- package/dist/esm/api/utils/populates/populateLinks.js +18 -10
- package/dist/esm/api/utils/populates/populateLinks.js.map +1 -1
- package/dist/esm/api/utils/populates/populateRelations.d.ts +6 -2
- package/dist/esm/api/utils/populates/populateRelations.d.ts.map +1 -1
- package/dist/esm/api/utils/populates/populateRelations.js +23 -4
- package/dist/esm/api/utils/populates/populateRelations.js.map +1 -1
- package/dist/esm/api/utils/routes/routeDefinitions.d.ts +0 -1
- 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 +11 -4
- package/dist/esm/api/utils/routes/routeMapHelpers.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/routeMapHelpers.js +130 -23
- package/dist/esm/api/utils/routes/routeMapHelpers.js.map +1 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.js +0 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
- package/dist/esm/api/utils/routes/updateRoutesMap.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/updateRoutesMap.js +68 -27
- 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/bootstrapState.d.ts +8 -4
- package/dist/esm/bootstrapState.d.ts.map +1 -1
- package/dist/esm/bootstrapState.js.map +1 -1
- package/dist/esm/client.d.ts +8 -1
- package/dist/esm/client.d.ts.map +1 -1
- package/dist/esm/client.js +4 -1
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/contracts.d.ts +5 -0
- package/dist/esm/contracts.d.ts.map +1 -1
- package/dist/esm/contracts.js +5 -0
- package/dist/esm/contracts.js.map +1 -1
- package/dist/esm/index.d.ts +11 -7
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +43 -11
- 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 +15 -1
- package/dist/esm/internal-content-types/Backup.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Backup.js +1 -0
- package/dist/esm/internal-content-types/Backup.js.map +1 -1
- package/dist/esm/internal-content-types/BackupDocument.d.ts +33 -1
- package/dist/esm/internal-content-types/BackupDocument.d.ts.map +1 -1
- package/dist/esm/internal-content-types/BackupDocument.js +1 -0
- 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 +39 -1
- package/dist/esm/internal-content-types/ContentVersion.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ContentVersion.js +1 -0
- package/dist/esm/internal-content-types/ContentVersion.js.map +1 -1
- package/dist/esm/internal-content-types/HelloWorld.d.ts +10 -2
- package/dist/esm/internal-content-types/HelloWorld.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Language.d.ts +11 -1
- package/dist/esm/internal-content-types/Language.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Language.js +1 -0
- package/dist/esm/internal-content-types/Language.js.map +1 -1
- package/dist/esm/internal-content-types/LiteralTranslation.d.ts +17 -1
- package/dist/esm/internal-content-types/LiteralTranslation.d.ts.map +1 -1
- package/dist/esm/internal-content-types/LiteralTranslation.js +1 -0
- 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 +12 -2
- package/dist/esm/internal-content-types/ManagerRole.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ManagerRole.js +2 -4
- package/dist/esm/internal-content-types/ManagerRole.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerUser.d.ts +78 -13
- package/dist/esm/internal-content-types/ManagerUser.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ManagerUser.js +2 -0
- 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 +70 -2
- package/dist/esm/internal-content-types/Media.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Media.js +1 -0
- package/dist/esm/internal-content-types/Media.js.map +1 -1
- package/dist/esm/internal-content-types/MediaFolder.d.ts +25 -1
- package/dist/esm/internal-content-types/MediaFolder.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MediaFolder.js +1 -0
- package/dist/esm/internal-content-types/MediaFolder.js.map +1 -1
- package/dist/esm/internal-content-types/MfaChallenge.d.ts +225 -34
- package/dist/esm/internal-content-types/MfaChallenge.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Migration.d.ts +37 -1
- package/dist/esm/internal-content-types/Migration.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Migration.js +4 -0
- package/dist/esm/internal-content-types/Migration.js.map +1 -1
- package/dist/esm/internal-content-types/MigrationLock.d.ts +5 -1
- package/dist/esm/internal-content-types/MigrationLock.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MigrationLock.js +1 -0
- package/dist/esm/internal-content-types/MigrationLock.js.map +1 -1
- package/dist/esm/internal-content-types/Page.d.ts +32 -9193
- package/dist/esm/internal-content-types/Page.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Page.js +7 -8
- package/dist/esm/internal-content-types/Page.js.map +1 -1
- package/dist/esm/internal-content-types/PreviewSnapshot.d.ts +61 -1
- package/dist/esm/internal-content-types/PreviewSnapshot.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Redirect.d.ts +41 -1
- package/dist/esm/internal-content-types/Redirect.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Redirect.js +1 -0
- package/dist/esm/internal-content-types/Redirect.js.map +1 -1
- package/dist/esm/internal-content-types/RobotsRule.d.ts +29 -1
- package/dist/esm/internal-content-types/RobotsRule.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RobotsRule.js +1 -0
- package/dist/esm/internal-content-types/RobotsRule.js.map +1 -1
- package/dist/esm/internal-content-types/Route.d.ts +36 -195
- package/dist/esm/internal-content-types/Route.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Route.js +1 -1
- package/dist/esm/internal-content-types/Route.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.d.ts +47 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.js +1 -0
- package/dist/esm/internal-content-types/RouteLayoutModule.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts +41 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js +1 -0
- 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 +42 -1
- package/dist/esm/internal-content-types/RouteMap.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteMap.js +5 -0
- package/dist/esm/internal-content-types/RouteMap.js.map +1 -1
- package/dist/esm/internal-content-types/RouteSettings.d.ts +41 -9194
- package/dist/esm/internal-content-types/RouteSettings.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteSettings.js +1 -0
- package/dist/esm/internal-content-types/RouteSettings.js.map +1 -1
- package/dist/esm/internal-content-types/SchemaState.d.ts +19 -1
- package/dist/esm/internal-content-types/SchemaState.d.ts.map +1 -1
- package/dist/esm/internal-content-types/SchemaState.js +4 -0
- package/dist/esm/internal-content-types/SchemaState.js.map +1 -1
- package/dist/esm/internal-content-types/Seo.d.ts +131 -11
- package/dist/esm/internal-content-types/Seo.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Seo.js +4 -1
- package/dist/esm/internal-content-types/Seo.js.map +1 -1
- package/dist/esm/internal-content-types/SeoSettings.d.ts +349 -13
- package/dist/esm/internal-content-types/SeoSettings.d.ts.map +1 -1
- package/dist/esm/internal-content-types/SeoSettings.js +2 -1
- package/dist/esm/internal-content-types/SeoSettings.js.map +1 -1
- package/dist/esm/internal-content-types/Session.d.ts +215 -34
- package/dist/esm/internal-content-types/Session.d.ts.map +1 -1
- package/dist/esm/internal-content-types/UserMfa.d.ts +205 -34
- package/dist/esm/internal-content-types/UserMfa.d.ts.map +1 -1
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts +241 -34
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts.map +1 -1
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts +223 -34
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts.map +1 -1
- package/dist/esm/internal-content-types/index.d.ts +4 -0
- package/dist/esm/internal-content-types/index.d.ts.map +1 -1
- package/dist/esm/internal-content-types/index.js +4 -0
- package/dist/esm/internal-content-types/index.js.map +1 -1
- package/dist/esm/lib/ContentType.d.ts +132 -18
- package/dist/esm/lib/ContentType.d.ts.map +1 -1
- package/dist/esm/lib/ContentType.js +184 -7
- package/dist/esm/lib/ContentType.js.map +1 -1
- 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 +66 -76
- package/dist/esm/lib/Permissions.js.map +1 -1
- package/dist/esm/lib/Registry.d.ts +37 -4
- package/dist/esm/lib/Registry.d.ts.map +1 -1
- package/dist/esm/lib/Registry.js +9 -0
- 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/throwAppError.d.ts.map +1 -1
- package/dist/esm/lib/errors/throwAppError.js +27 -3
- package/dist/esm/lib/errors/throwAppError.js.map +1 -1
- package/dist/esm/lib/fields/Field.d.ts +31 -1
- 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/List.d.ts.map +1 -1
- package/dist/esm/lib/fields/List.js +25 -4
- package/dist/esm/lib/fields/List.js.map +1 -1
- package/dist/esm/lib/fields/Relation.js +3 -0
- package/dist/esm/lib/fields/Relation.js.map +1 -1
- 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 +2 -0
- package/dist/esm/lib/types/index.d.ts.map +1 -1
- package/dist/esm/manager.d.ts +283 -2879
- 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/mediaService.d.ts +2 -0
- 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/createIndexes.d.ts.map +1 -1
- package/dist/esm/orm/createIndexes.js +24 -8
- package/dist/esm/orm/createIndexes.js.map +1 -1
- package/dist/esm/orm/index.d.ts.map +1 -1
- package/dist/esm/orm/index.js +7 -6
- package/dist/esm/orm/index.js.map +1 -1
- package/dist/esm/orm/operations/create.d.ts +2 -1
- package/dist/esm/orm/operations/create.d.ts.map +1 -1
- package/dist/esm/orm/operations/create.js +25 -8
- package/dist/esm/orm/operations/create.js.map +1 -1
- package/dist/esm/orm/operations/delete.d.ts +2 -2
- package/dist/esm/orm/operations/delete.d.ts.map +1 -1
- package/dist/esm/orm/operations/delete.js +23 -3
- package/dist/esm/orm/operations/delete.js.map +1 -1
- package/dist/esm/orm/operations/findDependencies.d.ts +1 -1
- package/dist/esm/orm/operations/findDependencies.d.ts.map +1 -1
- package/dist/esm/orm/operations/findDependencies.js +75 -53
- package/dist/esm/orm/operations/findDependencies.js.map +1 -1
- package/dist/esm/orm/operations/update.d.ts +2 -1
- package/dist/esm/orm/operations/update.d.ts.map +1 -1
- package/dist/esm/orm/operations/update.js +43 -17
- package/dist/esm/orm/operations/update.js.map +1 -1
- package/dist/esm/orm/operations/updateMany.d.ts +2 -1
- package/dist/esm/orm/operations/updateMany.d.ts.map +1 -1
- package/dist/esm/orm/operations/updateMany.js +24 -7
- package/dist/esm/orm/operations/updateMany.js.map +1 -1
- package/dist/esm/orm/operations/upsert.d.ts +2 -2
- package/dist/esm/orm/operations/upsert.d.ts.map +1 -1
- package/dist/esm/orm/operations/upsert.js +4 -4
- package/dist/esm/orm/operations/upsert.js.map +1 -1
- 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/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 +1 -0
- package/dist/esm/schemas/manager/media/finalizeUpload.js.map +1 -1
- package/dist/esm/schemas/manager/media/getMediaUrl.js +1 -1
- package/dist/esm/schemas/manager/media/getMediaUrl.js.map +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 +26 -0
- package/dist/esm/schemas/web/page.d.ts.map +1 -1
- package/dist/esm/schemas/web/page.js +1 -0
- package/dist/esm/schemas/web/page.js.map +1 -1
- package/dist/esm/schemas/web/previewPage.d.ts +17 -0
- package/dist/esm/schemas/web/previewPage.d.ts.map +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/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
|
@@ -20,6 +20,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
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 {
|
|
@@ -41,6 +43,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
41
43
|
getIsRequired: () => boolean;
|
|
42
44
|
getIsTranslatable: () => boolean;
|
|
43
45
|
getVisibility: () => import("..").Visibility;
|
|
46
|
+
getIsDynamic: () => boolean;
|
|
47
|
+
getDescription: () => string | undefined;
|
|
44
48
|
getCondition: () => {
|
|
45
49
|
field: string;
|
|
46
50
|
equals: unknown;
|
|
@@ -98,6 +102,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
98
102
|
getIsRequired: () => boolean;
|
|
99
103
|
getIsTranslatable: () => boolean;
|
|
100
104
|
getVisibility: () => import("..").Visibility;
|
|
105
|
+
getIsDynamic: () => boolean;
|
|
106
|
+
getDescription: () => string | undefined;
|
|
101
107
|
getCondition: () => {
|
|
102
108
|
field: string;
|
|
103
109
|
equals: unknown;
|
|
@@ -155,6 +161,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
155
161
|
getIsRequired: () => boolean;
|
|
156
162
|
getIsTranslatable: () => boolean;
|
|
157
163
|
getVisibility: () => import("..").Visibility;
|
|
164
|
+
getIsDynamic: () => boolean;
|
|
165
|
+
getDescription: () => string | undefined;
|
|
158
166
|
getCondition: () => {
|
|
159
167
|
field: string;
|
|
160
168
|
equals: unknown;
|
|
@@ -213,6 +221,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
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 {
|
|
@@ -234,6 +244,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
234
244
|
getIsRequired: () => boolean;
|
|
235
245
|
getIsTranslatable: () => boolean;
|
|
236
246
|
getVisibility: () => import("..").Visibility;
|
|
247
|
+
getIsDynamic: () => boolean;
|
|
248
|
+
getDescription: () => string | undefined;
|
|
237
249
|
getCondition: () => {
|
|
238
250
|
field: string;
|
|
239
251
|
equals: unknown;
|
|
@@ -291,6 +303,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
291
303
|
getIsRequired: () => boolean;
|
|
292
304
|
getIsTranslatable: () => boolean;
|
|
293
305
|
getVisibility: () => import("..").Visibility;
|
|
306
|
+
getIsDynamic: () => boolean;
|
|
307
|
+
getDescription: () => string | undefined;
|
|
294
308
|
getCondition: () => {
|
|
295
309
|
field: string;
|
|
296
310
|
equals: unknown;
|
|
@@ -348,6 +362,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
348
362
|
getIsRequired: () => boolean;
|
|
349
363
|
getIsTranslatable: () => boolean;
|
|
350
364
|
getVisibility: () => import("..").Visibility;
|
|
365
|
+
getIsDynamic: () => boolean;
|
|
366
|
+
getDescription: () => string | undefined;
|
|
351
367
|
getCondition: () => {
|
|
352
368
|
field: string;
|
|
353
369
|
equals: unknown;
|
|
@@ -388,7 +404,207 @@ export declare const SeoSettings: ContentType<{
|
|
|
388
404
|
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
389
405
|
}, import("..").SetTranslatable<import("..").DefaultFieldState>>;
|
|
390
406
|
siteUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
|
|
391
|
-
titleTemplate: import("..").
|
|
407
|
+
titleTemplate: import("..").WithFieldState<{
|
|
408
|
+
kind: "field";
|
|
409
|
+
readonly __fieldTypes?: {
|
|
410
|
+
input: string;
|
|
411
|
+
db: string;
|
|
412
|
+
output: string;
|
|
413
|
+
meta: import("..").StringMeta<"Text">;
|
|
414
|
+
state: import("..").DefaultFieldState;
|
|
415
|
+
} | undefined;
|
|
416
|
+
meta: import("..").StringMeta<"Text">;
|
|
417
|
+
state: import("..").DefaultFieldState;
|
|
418
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
419
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
420
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
421
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
422
|
+
getConfig: () => import("..").StringMeta<"Text">;
|
|
423
|
+
getIsRequired: () => false;
|
|
424
|
+
getIsTranslatable: () => false;
|
|
425
|
+
getVisibility: () => "all";
|
|
426
|
+
getIsDynamic: () => true;
|
|
427
|
+
getDescription: () => undefined;
|
|
428
|
+
getCondition: () => undefined;
|
|
429
|
+
} & {
|
|
430
|
+
type: <TThis extends {
|
|
431
|
+
kind: "field";
|
|
432
|
+
readonly __fieldTypes?: {
|
|
433
|
+
input: string;
|
|
434
|
+
db: string;
|
|
435
|
+
output: string;
|
|
436
|
+
meta: import("..").StringMeta<"Text">;
|
|
437
|
+
state: import("..").FieldState;
|
|
438
|
+
} | undefined;
|
|
439
|
+
meta: import("..").StringMeta<"Text">;
|
|
440
|
+
state: import("..").FieldState;
|
|
441
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
442
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
443
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
444
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
445
|
+
getConfig: () => import("..").StringMeta<"Text">;
|
|
446
|
+
getIsRequired: () => boolean;
|
|
447
|
+
getIsTranslatable: () => boolean;
|
|
448
|
+
getVisibility: () => import("..").Visibility;
|
|
449
|
+
getIsDynamic: () => boolean;
|
|
450
|
+
getDescription: () => string | undefined;
|
|
451
|
+
getCondition: () => {
|
|
452
|
+
field: string;
|
|
453
|
+
equals: unknown;
|
|
454
|
+
} | {
|
|
455
|
+
field: string;
|
|
456
|
+
notEquals: unknown;
|
|
457
|
+
} | {
|
|
458
|
+
field: string;
|
|
459
|
+
exists: boolean;
|
|
460
|
+
} | {
|
|
461
|
+
field: string;
|
|
462
|
+
gt: number;
|
|
463
|
+
} | {
|
|
464
|
+
field: string;
|
|
465
|
+
gte: number;
|
|
466
|
+
} | {
|
|
467
|
+
field: string;
|
|
468
|
+
lt: number;
|
|
469
|
+
} | {
|
|
470
|
+
field: string;
|
|
471
|
+
lte: number;
|
|
472
|
+
} | {
|
|
473
|
+
field: string;
|
|
474
|
+
includes: unknown;
|
|
475
|
+
} | {
|
|
476
|
+
field: string;
|
|
477
|
+
notIncludes: unknown;
|
|
478
|
+
} | {
|
|
479
|
+
field: string;
|
|
480
|
+
length: {
|
|
481
|
+
equals?: number | undefined;
|
|
482
|
+
gt?: number | undefined;
|
|
483
|
+
gte?: number | undefined;
|
|
484
|
+
lt?: number | undefined;
|
|
485
|
+
lte?: number | undefined;
|
|
486
|
+
};
|
|
487
|
+
} | undefined;
|
|
488
|
+
}, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
|
|
489
|
+
min: <TThis extends {
|
|
490
|
+
kind: "field";
|
|
491
|
+
readonly __fieldTypes?: {
|
|
492
|
+
input: string;
|
|
493
|
+
db: string;
|
|
494
|
+
output: string;
|
|
495
|
+
meta: import("..").StringMeta<"Text">;
|
|
496
|
+
state: import("..").FieldState;
|
|
497
|
+
} | undefined;
|
|
498
|
+
meta: import("..").StringMeta<"Text">;
|
|
499
|
+
state: import("..").FieldState;
|
|
500
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
501
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
502
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
503
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
504
|
+
getConfig: () => import("..").StringMeta<"Text">;
|
|
505
|
+
getIsRequired: () => boolean;
|
|
506
|
+
getIsTranslatable: () => boolean;
|
|
507
|
+
getVisibility: () => import("..").Visibility;
|
|
508
|
+
getIsDynamic: () => boolean;
|
|
509
|
+
getDescription: () => string | undefined;
|
|
510
|
+
getCondition: () => {
|
|
511
|
+
field: string;
|
|
512
|
+
equals: unknown;
|
|
513
|
+
} | {
|
|
514
|
+
field: string;
|
|
515
|
+
notEquals: unknown;
|
|
516
|
+
} | {
|
|
517
|
+
field: string;
|
|
518
|
+
exists: boolean;
|
|
519
|
+
} | {
|
|
520
|
+
field: string;
|
|
521
|
+
gt: number;
|
|
522
|
+
} | {
|
|
523
|
+
field: string;
|
|
524
|
+
gte: number;
|
|
525
|
+
} | {
|
|
526
|
+
field: string;
|
|
527
|
+
lt: number;
|
|
528
|
+
} | {
|
|
529
|
+
field: string;
|
|
530
|
+
lte: number;
|
|
531
|
+
} | {
|
|
532
|
+
field: string;
|
|
533
|
+
includes: unknown;
|
|
534
|
+
} | {
|
|
535
|
+
field: string;
|
|
536
|
+
notIncludes: unknown;
|
|
537
|
+
} | {
|
|
538
|
+
field: string;
|
|
539
|
+
length: {
|
|
540
|
+
equals?: number | undefined;
|
|
541
|
+
gt?: number | undefined;
|
|
542
|
+
gte?: number | undefined;
|
|
543
|
+
lt?: number | undefined;
|
|
544
|
+
lte?: number | undefined;
|
|
545
|
+
};
|
|
546
|
+
} | undefined;
|
|
547
|
+
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
548
|
+
max: <TThis extends {
|
|
549
|
+
kind: "field";
|
|
550
|
+
readonly __fieldTypes?: {
|
|
551
|
+
input: string;
|
|
552
|
+
db: string;
|
|
553
|
+
output: string;
|
|
554
|
+
meta: import("..").StringMeta<"Text">;
|
|
555
|
+
state: import("..").FieldState;
|
|
556
|
+
} | undefined;
|
|
557
|
+
meta: import("..").StringMeta<"Text">;
|
|
558
|
+
state: import("..").FieldState;
|
|
559
|
+
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
560
|
+
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
561
|
+
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
562
|
+
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
563
|
+
getConfig: () => import("..").StringMeta<"Text">;
|
|
564
|
+
getIsRequired: () => boolean;
|
|
565
|
+
getIsTranslatable: () => boolean;
|
|
566
|
+
getVisibility: () => import("..").Visibility;
|
|
567
|
+
getIsDynamic: () => boolean;
|
|
568
|
+
getDescription: () => string | undefined;
|
|
569
|
+
getCondition: () => {
|
|
570
|
+
field: string;
|
|
571
|
+
equals: unknown;
|
|
572
|
+
} | {
|
|
573
|
+
field: string;
|
|
574
|
+
notEquals: unknown;
|
|
575
|
+
} | {
|
|
576
|
+
field: string;
|
|
577
|
+
exists: boolean;
|
|
578
|
+
} | {
|
|
579
|
+
field: string;
|
|
580
|
+
gt: number;
|
|
581
|
+
} | {
|
|
582
|
+
field: string;
|
|
583
|
+
gte: number;
|
|
584
|
+
} | {
|
|
585
|
+
field: string;
|
|
586
|
+
lt: number;
|
|
587
|
+
} | {
|
|
588
|
+
field: string;
|
|
589
|
+
lte: number;
|
|
590
|
+
} | {
|
|
591
|
+
field: string;
|
|
592
|
+
includes: unknown;
|
|
593
|
+
} | {
|
|
594
|
+
field: string;
|
|
595
|
+
notIncludes: unknown;
|
|
596
|
+
} | {
|
|
597
|
+
field: string;
|
|
598
|
+
length: {
|
|
599
|
+
equals?: number | undefined;
|
|
600
|
+
gt?: number | undefined;
|
|
601
|
+
gte?: number | undefined;
|
|
602
|
+
lt?: number | undefined;
|
|
603
|
+
lte?: number | undefined;
|
|
604
|
+
};
|
|
605
|
+
} | undefined;
|
|
606
|
+
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
607
|
+
}, import("..").SetDescription<import("..").DefaultFieldState>>;
|
|
392
608
|
twitterSite: import("..").StringField<"Text", import("..").DefaultFieldState>;
|
|
393
609
|
defaultSeo: import("..").RelationField<ContentType<{
|
|
394
610
|
title: import("..").WithFieldState<{
|
|
@@ -410,6 +626,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
410
626
|
getIsRequired: () => false;
|
|
411
627
|
getIsTranslatable: () => false;
|
|
412
628
|
getVisibility: () => "all";
|
|
629
|
+
getIsDynamic: () => true;
|
|
630
|
+
getDescription: () => undefined;
|
|
413
631
|
getCondition: () => undefined;
|
|
414
632
|
} & {
|
|
415
633
|
type: <TThis extends {
|
|
@@ -431,6 +649,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
431
649
|
getIsRequired: () => boolean;
|
|
432
650
|
getIsTranslatable: () => boolean;
|
|
433
651
|
getVisibility: () => import("..").Visibility;
|
|
652
|
+
getIsDynamic: () => boolean;
|
|
653
|
+
getDescription: () => string | undefined;
|
|
434
654
|
getCondition: () => {
|
|
435
655
|
field: string;
|
|
436
656
|
equals: unknown;
|
|
@@ -488,6 +708,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
488
708
|
getIsRequired: () => boolean;
|
|
489
709
|
getIsTranslatable: () => boolean;
|
|
490
710
|
getVisibility: () => import("..").Visibility;
|
|
711
|
+
getIsDynamic: () => boolean;
|
|
712
|
+
getDescription: () => string | undefined;
|
|
491
713
|
getCondition: () => {
|
|
492
714
|
field: string;
|
|
493
715
|
equals: unknown;
|
|
@@ -545,6 +767,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
545
767
|
getIsRequired: () => boolean;
|
|
546
768
|
getIsTranslatable: () => boolean;
|
|
547
769
|
getVisibility: () => import("..").Visibility;
|
|
770
|
+
getIsDynamic: () => boolean;
|
|
771
|
+
getDescription: () => string | undefined;
|
|
548
772
|
getCondition: () => {
|
|
549
773
|
field: string;
|
|
550
774
|
equals: unknown;
|
|
@@ -603,6 +827,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
603
827
|
getIsRequired: () => false;
|
|
604
828
|
getIsTranslatable: () => false;
|
|
605
829
|
getVisibility: () => "all";
|
|
830
|
+
getIsDynamic: () => true;
|
|
831
|
+
getDescription: () => undefined;
|
|
606
832
|
getCondition: () => undefined;
|
|
607
833
|
} & {
|
|
608
834
|
type: <TThis extends {
|
|
@@ -624,6 +850,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
624
850
|
getIsRequired: () => boolean;
|
|
625
851
|
getIsTranslatable: () => boolean;
|
|
626
852
|
getVisibility: () => import("..").Visibility;
|
|
853
|
+
getIsDynamic: () => boolean;
|
|
854
|
+
getDescription: () => string | undefined;
|
|
627
855
|
getCondition: () => {
|
|
628
856
|
field: string;
|
|
629
857
|
equals: unknown;
|
|
@@ -681,6 +909,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
681
909
|
getIsRequired: () => boolean;
|
|
682
910
|
getIsTranslatable: () => boolean;
|
|
683
911
|
getVisibility: () => import("..").Visibility;
|
|
912
|
+
getIsDynamic: () => boolean;
|
|
913
|
+
getDescription: () => string | undefined;
|
|
684
914
|
getCondition: () => {
|
|
685
915
|
field: string;
|
|
686
916
|
equals: unknown;
|
|
@@ -738,6 +968,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
738
968
|
getIsRequired: () => boolean;
|
|
739
969
|
getIsTranslatable: () => boolean;
|
|
740
970
|
getVisibility: () => import("..").Visibility;
|
|
971
|
+
getIsDynamic: () => boolean;
|
|
972
|
+
getDescription: () => string | undefined;
|
|
741
973
|
getCondition: () => {
|
|
742
974
|
field: string;
|
|
743
975
|
equals: unknown;
|
|
@@ -777,7 +1009,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
777
1009
|
} | undefined;
|
|
778
1010
|
}>(this: TThis, length: number) => import("..").StringField<"Textarea", import("..").FieldStateOf<TThis>>;
|
|
779
1011
|
}, import("..").SetTranslatable<import("..").DefaultFieldState>>;
|
|
780
|
-
canonicalUrl: import("..").WithFieldState<{
|
|
1012
|
+
canonicalUrl: import("..").WithFieldState<Omit<{
|
|
781
1013
|
kind: "field";
|
|
782
1014
|
readonly __fieldTypes?: {
|
|
783
1015
|
input: string;
|
|
@@ -796,6 +1028,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
796
1028
|
getIsRequired: () => false;
|
|
797
1029
|
getIsTranslatable: () => false;
|
|
798
1030
|
getVisibility: () => "all";
|
|
1031
|
+
getIsDynamic: () => true;
|
|
1032
|
+
getDescription: () => undefined;
|
|
799
1033
|
getCondition: () => undefined;
|
|
800
1034
|
} & {
|
|
801
1035
|
type: <TThis extends {
|
|
@@ -817,6 +1051,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
817
1051
|
getIsRequired: () => boolean;
|
|
818
1052
|
getIsTranslatable: () => boolean;
|
|
819
1053
|
getVisibility: () => import("..").Visibility;
|
|
1054
|
+
getIsDynamic: () => boolean;
|
|
1055
|
+
getDescription: () => string | undefined;
|
|
820
1056
|
getCondition: () => {
|
|
821
1057
|
field: string;
|
|
822
1058
|
equals: unknown;
|
|
@@ -874,6 +1110,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
874
1110
|
getIsRequired: () => boolean;
|
|
875
1111
|
getIsTranslatable: () => boolean;
|
|
876
1112
|
getVisibility: () => import("..").Visibility;
|
|
1113
|
+
getIsDynamic: () => boolean;
|
|
1114
|
+
getDescription: () => string | undefined;
|
|
877
1115
|
getCondition: () => {
|
|
878
1116
|
field: string;
|
|
879
1117
|
equals: unknown;
|
|
@@ -931,6 +1169,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
931
1169
|
getIsRequired: () => boolean;
|
|
932
1170
|
getIsTranslatable: () => boolean;
|
|
933
1171
|
getVisibility: () => import("..").Visibility;
|
|
1172
|
+
getIsDynamic: () => boolean;
|
|
1173
|
+
getDescription: () => string | undefined;
|
|
934
1174
|
getCondition: () => {
|
|
935
1175
|
field: string;
|
|
936
1176
|
equals: unknown;
|
|
@@ -969,7 +1209,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
969
1209
|
};
|
|
970
1210
|
} | undefined;
|
|
971
1211
|
}>(this: TThis, length: number) => import("..").StringField<"Url", import("..").FieldStateOf<TThis>>;
|
|
972
|
-
}, import("..").SetTranslatable<import("..").DefaultFieldState
|
|
1212
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Url">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetDescription<import("..").SetTranslatable<import("..").DefaultFieldState>>>;
|
|
973
1213
|
image: import("..").FileField<"Image", false, import("..").DefaultFieldState>;
|
|
974
1214
|
imageAlt: import("..").WithFieldState<{
|
|
975
1215
|
kind: "field";
|
|
@@ -990,6 +1230,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
990
1230
|
getIsRequired: () => false;
|
|
991
1231
|
getIsTranslatable: () => false;
|
|
992
1232
|
getVisibility: () => "all";
|
|
1233
|
+
getIsDynamic: () => true;
|
|
1234
|
+
getDescription: () => undefined;
|
|
993
1235
|
getCondition: () => undefined;
|
|
994
1236
|
} & {
|
|
995
1237
|
type: <TThis extends {
|
|
@@ -1011,6 +1253,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1011
1253
|
getIsRequired: () => boolean;
|
|
1012
1254
|
getIsTranslatable: () => boolean;
|
|
1013
1255
|
getVisibility: () => import("..").Visibility;
|
|
1256
|
+
getIsDynamic: () => boolean;
|
|
1257
|
+
getDescription: () => string | undefined;
|
|
1014
1258
|
getCondition: () => {
|
|
1015
1259
|
field: string;
|
|
1016
1260
|
equals: unknown;
|
|
@@ -1068,6 +1312,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1068
1312
|
getIsRequired: () => boolean;
|
|
1069
1313
|
getIsTranslatable: () => boolean;
|
|
1070
1314
|
getVisibility: () => import("..").Visibility;
|
|
1315
|
+
getIsDynamic: () => boolean;
|
|
1316
|
+
getDescription: () => string | undefined;
|
|
1071
1317
|
getCondition: () => {
|
|
1072
1318
|
field: string;
|
|
1073
1319
|
equals: unknown;
|
|
@@ -1125,6 +1371,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1125
1371
|
getIsRequired: () => boolean;
|
|
1126
1372
|
getIsTranslatable: () => boolean;
|
|
1127
1373
|
getVisibility: () => import("..").Visibility;
|
|
1374
|
+
getIsDynamic: () => boolean;
|
|
1375
|
+
getDescription: () => string | undefined;
|
|
1128
1376
|
getCondition: () => {
|
|
1129
1377
|
field: string;
|
|
1130
1378
|
equals: unknown;
|
|
@@ -1185,6 +1433,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1185
1433
|
getIsRequired: () => false;
|
|
1186
1434
|
getIsTranslatable: () => false;
|
|
1187
1435
|
getVisibility: () => "all";
|
|
1436
|
+
getIsDynamic: () => true;
|
|
1437
|
+
getDescription: () => undefined;
|
|
1188
1438
|
getCondition: () => undefined;
|
|
1189
1439
|
} & {
|
|
1190
1440
|
type: <TThis extends {
|
|
@@ -1206,6 +1456,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1206
1456
|
getIsRequired: () => boolean;
|
|
1207
1457
|
getIsTranslatable: () => boolean;
|
|
1208
1458
|
getVisibility: () => import("..").Visibility;
|
|
1459
|
+
getIsDynamic: () => boolean;
|
|
1460
|
+
getDescription: () => string | undefined;
|
|
1209
1461
|
getCondition: () => {
|
|
1210
1462
|
field: string;
|
|
1211
1463
|
equals: unknown;
|
|
@@ -1263,6 +1515,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1263
1515
|
getIsRequired: () => boolean;
|
|
1264
1516
|
getIsTranslatable: () => boolean;
|
|
1265
1517
|
getVisibility: () => import("..").Visibility;
|
|
1518
|
+
getIsDynamic: () => boolean;
|
|
1519
|
+
getDescription: () => string | undefined;
|
|
1266
1520
|
getCondition: () => {
|
|
1267
1521
|
field: string;
|
|
1268
1522
|
equals: unknown;
|
|
@@ -1320,6 +1574,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1320
1574
|
getIsRequired: () => boolean;
|
|
1321
1575
|
getIsTranslatable: () => boolean;
|
|
1322
1576
|
getVisibility: () => import("..").Visibility;
|
|
1577
|
+
getIsDynamic: () => boolean;
|
|
1578
|
+
getDescription: () => string | undefined;
|
|
1323
1579
|
getCondition: () => {
|
|
1324
1580
|
field: string;
|
|
1325
1581
|
equals: unknown;
|
|
@@ -1358,7 +1614,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
1358
1614
|
};
|
|
1359
1615
|
} | undefined;
|
|
1360
1616
|
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
1361
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
1617
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
1362
1618
|
field: string;
|
|
1363
1619
|
equals: boolean;
|
|
1364
1620
|
}>>;
|
|
@@ -1381,6 +1637,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1381
1637
|
getIsRequired: () => false;
|
|
1382
1638
|
getIsTranslatable: () => false;
|
|
1383
1639
|
getVisibility: () => "all";
|
|
1640
|
+
getIsDynamic: () => true;
|
|
1641
|
+
getDescription: () => undefined;
|
|
1384
1642
|
getCondition: () => undefined;
|
|
1385
1643
|
} & {
|
|
1386
1644
|
type: <TThis extends {
|
|
@@ -1402,6 +1660,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1402
1660
|
getIsRequired: () => boolean;
|
|
1403
1661
|
getIsTranslatable: () => boolean;
|
|
1404
1662
|
getVisibility: () => import("..").Visibility;
|
|
1663
|
+
getIsDynamic: () => boolean;
|
|
1664
|
+
getDescription: () => string | undefined;
|
|
1405
1665
|
getCondition: () => {
|
|
1406
1666
|
field: string;
|
|
1407
1667
|
equals: unknown;
|
|
@@ -1459,6 +1719,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1459
1719
|
getIsRequired: () => boolean;
|
|
1460
1720
|
getIsTranslatable: () => boolean;
|
|
1461
1721
|
getVisibility: () => import("..").Visibility;
|
|
1722
|
+
getIsDynamic: () => boolean;
|
|
1723
|
+
getDescription: () => string | undefined;
|
|
1462
1724
|
getCondition: () => {
|
|
1463
1725
|
field: string;
|
|
1464
1726
|
equals: unknown;
|
|
@@ -1516,6 +1778,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1516
1778
|
getIsRequired: () => boolean;
|
|
1517
1779
|
getIsTranslatable: () => boolean;
|
|
1518
1780
|
getVisibility: () => import("..").Visibility;
|
|
1781
|
+
getIsDynamic: () => boolean;
|
|
1782
|
+
getDescription: () => string | undefined;
|
|
1519
1783
|
getCondition: () => {
|
|
1520
1784
|
field: string;
|
|
1521
1785
|
equals: unknown;
|
|
@@ -1554,7 +1818,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
1554
1818
|
};
|
|
1555
1819
|
} | undefined;
|
|
1556
1820
|
}>(this: TThis, length: number) => import("..").StringField<"Textarea", import("..").FieldStateOf<TThis>>;
|
|
1557
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Textarea">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
1821
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Textarea">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
1558
1822
|
field: string;
|
|
1559
1823
|
equals: boolean;
|
|
1560
1824
|
}>>;
|
|
@@ -1577,6 +1841,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1577
1841
|
getIsRequired: () => false;
|
|
1578
1842
|
getIsTranslatable: () => false;
|
|
1579
1843
|
getVisibility: () => "all";
|
|
1844
|
+
getIsDynamic: () => true;
|
|
1845
|
+
getDescription: () => undefined;
|
|
1580
1846
|
getCondition: () => undefined;
|
|
1581
1847
|
} & {
|
|
1582
1848
|
type: <TThis extends {
|
|
@@ -1598,6 +1864,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1598
1864
|
getIsRequired: () => boolean;
|
|
1599
1865
|
getIsTranslatable: () => boolean;
|
|
1600
1866
|
getVisibility: () => import("..").Visibility;
|
|
1867
|
+
getIsDynamic: () => boolean;
|
|
1868
|
+
getDescription: () => string | undefined;
|
|
1601
1869
|
getCondition: () => {
|
|
1602
1870
|
field: string;
|
|
1603
1871
|
equals: unknown;
|
|
@@ -1655,6 +1923,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1655
1923
|
getIsRequired: () => boolean;
|
|
1656
1924
|
getIsTranslatable: () => boolean;
|
|
1657
1925
|
getVisibility: () => import("..").Visibility;
|
|
1926
|
+
getIsDynamic: () => boolean;
|
|
1927
|
+
getDescription: () => string | undefined;
|
|
1658
1928
|
getCondition: () => {
|
|
1659
1929
|
field: string;
|
|
1660
1930
|
equals: unknown;
|
|
@@ -1712,6 +1982,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1712
1982
|
getIsRequired: () => boolean;
|
|
1713
1983
|
getIsTranslatable: () => boolean;
|
|
1714
1984
|
getVisibility: () => import("..").Visibility;
|
|
1985
|
+
getIsDynamic: () => boolean;
|
|
1986
|
+
getDescription: () => string | undefined;
|
|
1715
1987
|
getCondition: () => {
|
|
1716
1988
|
field: string;
|
|
1717
1989
|
equals: unknown;
|
|
@@ -1750,7 +2022,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
1750
2022
|
};
|
|
1751
2023
|
} | undefined;
|
|
1752
2024
|
}>(this: TThis, length: number) => import("..").StringField<"Url", import("..").FieldStateOf<TThis>>;
|
|
1753
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Url">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
2025
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Url">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
1754
2026
|
field: string;
|
|
1755
2027
|
equals: boolean;
|
|
1756
2028
|
}>>;
|
|
@@ -1773,6 +2045,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1773
2045
|
getIsRequired: () => false;
|
|
1774
2046
|
getIsTranslatable: () => false;
|
|
1775
2047
|
getVisibility: () => "all";
|
|
2048
|
+
getIsDynamic: () => true;
|
|
2049
|
+
getDescription: () => undefined;
|
|
1776
2050
|
getCondition: () => undefined;
|
|
1777
2051
|
} & {
|
|
1778
2052
|
type: <TThis extends {
|
|
@@ -1794,6 +2068,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1794
2068
|
getIsRequired: () => boolean;
|
|
1795
2069
|
getIsTranslatable: () => boolean;
|
|
1796
2070
|
getVisibility: () => import("..").Visibility;
|
|
2071
|
+
getIsDynamic: () => boolean;
|
|
2072
|
+
getDescription: () => string | undefined;
|
|
1797
2073
|
getCondition: () => {
|
|
1798
2074
|
field: string;
|
|
1799
2075
|
equals: unknown;
|
|
@@ -1851,6 +2127,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1851
2127
|
getIsRequired: () => boolean;
|
|
1852
2128
|
getIsTranslatable: () => boolean;
|
|
1853
2129
|
getVisibility: () => import("..").Visibility;
|
|
2130
|
+
getIsDynamic: () => boolean;
|
|
2131
|
+
getDescription: () => string | undefined;
|
|
1854
2132
|
getCondition: () => {
|
|
1855
2133
|
field: string;
|
|
1856
2134
|
equals: unknown;
|
|
@@ -1908,6 +2186,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1908
2186
|
getIsRequired: () => boolean;
|
|
1909
2187
|
getIsTranslatable: () => boolean;
|
|
1910
2188
|
getVisibility: () => import("..").Visibility;
|
|
2189
|
+
getIsDynamic: () => boolean;
|
|
2190
|
+
getDescription: () => string | undefined;
|
|
1911
2191
|
getCondition: () => {
|
|
1912
2192
|
field: string;
|
|
1913
2193
|
equals: unknown;
|
|
@@ -1946,7 +2226,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
1946
2226
|
};
|
|
1947
2227
|
} | undefined;
|
|
1948
2228
|
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
1949
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
2229
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
1950
2230
|
field: string;
|
|
1951
2231
|
equals: boolean;
|
|
1952
2232
|
}>>;
|
|
@@ -1969,6 +2249,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1969
2249
|
getIsRequired: () => false;
|
|
1970
2250
|
getIsTranslatable: () => false;
|
|
1971
2251
|
getVisibility: () => "all";
|
|
2252
|
+
getIsDynamic: () => true;
|
|
2253
|
+
getDescription: () => undefined;
|
|
1972
2254
|
getCondition: () => undefined;
|
|
1973
2255
|
} & {
|
|
1974
2256
|
multiple: <TThis extends {
|
|
@@ -1990,6 +2272,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
1990
2272
|
getIsRequired: () => boolean;
|
|
1991
2273
|
getIsTranslatable: () => boolean;
|
|
1992
2274
|
getVisibility: () => import("..").Visibility;
|
|
2275
|
+
getIsDynamic: () => boolean;
|
|
2276
|
+
getDescription: () => string | undefined;
|
|
1993
2277
|
getCondition: () => {
|
|
1994
2278
|
field: string;
|
|
1995
2279
|
equals: unknown;
|
|
@@ -2152,6 +2436,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2152
2436
|
getIsRequired: () => false;
|
|
2153
2437
|
getIsTranslatable: () => false;
|
|
2154
2438
|
getVisibility: () => "all";
|
|
2439
|
+
getIsDynamic: () => true;
|
|
2440
|
+
getDescription: () => undefined;
|
|
2155
2441
|
getCondition: () => undefined;
|
|
2156
2442
|
} & import("..").PopulatableFieldLike<{
|
|
2157
2443
|
url: string;
|
|
@@ -2297,6 +2583,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2297
2583
|
getIsRequired: () => boolean;
|
|
2298
2584
|
getIsTranslatable: () => boolean;
|
|
2299
2585
|
getVisibility: () => import("..").Visibility;
|
|
2586
|
+
getIsDynamic: () => boolean;
|
|
2587
|
+
getDescription: () => string | undefined;
|
|
2300
2588
|
getCondition: () => {
|
|
2301
2589
|
field: string;
|
|
2302
2590
|
equals: unknown;
|
|
@@ -2455,6 +2743,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2455
2743
|
getIsRequired: () => boolean;
|
|
2456
2744
|
getIsTranslatable: () => boolean;
|
|
2457
2745
|
getVisibility: () => import("..").Visibility;
|
|
2746
|
+
getIsDynamic: () => boolean;
|
|
2747
|
+
getDescription: () => string | undefined;
|
|
2458
2748
|
getCondition: () => {
|
|
2459
2749
|
field: string;
|
|
2460
2750
|
equals: unknown;
|
|
@@ -2613,6 +2903,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2613
2903
|
getIsRequired: () => boolean;
|
|
2614
2904
|
getIsTranslatable: () => boolean;
|
|
2615
2905
|
getVisibility: () => import("..").Visibility;
|
|
2906
|
+
getIsDynamic: () => boolean;
|
|
2907
|
+
getDescription: () => string | undefined;
|
|
2616
2908
|
getCondition: () => {
|
|
2617
2909
|
field: string;
|
|
2618
2910
|
equals: unknown;
|
|
@@ -2674,6 +2966,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2674
2966
|
getIsRequired: () => false;
|
|
2675
2967
|
getIsTranslatable: () => false;
|
|
2676
2968
|
getVisibility: () => "all";
|
|
2969
|
+
getIsDynamic: () => true;
|
|
2970
|
+
getDescription: () => undefined;
|
|
2677
2971
|
getCondition: () => undefined;
|
|
2678
2972
|
} & {
|
|
2679
2973
|
type: <TThis extends {
|
|
@@ -2695,6 +2989,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2695
2989
|
getIsRequired: () => boolean;
|
|
2696
2990
|
getIsTranslatable: () => boolean;
|
|
2697
2991
|
getVisibility: () => import("..").Visibility;
|
|
2992
|
+
getIsDynamic: () => boolean;
|
|
2993
|
+
getDescription: () => string | undefined;
|
|
2698
2994
|
getCondition: () => {
|
|
2699
2995
|
field: string;
|
|
2700
2996
|
equals: unknown;
|
|
@@ -2752,6 +3048,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2752
3048
|
getIsRequired: () => boolean;
|
|
2753
3049
|
getIsTranslatable: () => boolean;
|
|
2754
3050
|
getVisibility: () => import("..").Visibility;
|
|
3051
|
+
getIsDynamic: () => boolean;
|
|
3052
|
+
getDescription: () => string | undefined;
|
|
2755
3053
|
getCondition: () => {
|
|
2756
3054
|
field: string;
|
|
2757
3055
|
equals: unknown;
|
|
@@ -2809,6 +3107,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2809
3107
|
getIsRequired: () => boolean;
|
|
2810
3108
|
getIsTranslatable: () => boolean;
|
|
2811
3109
|
getVisibility: () => import("..").Visibility;
|
|
3110
|
+
getIsDynamic: () => boolean;
|
|
3111
|
+
getDescription: () => string | undefined;
|
|
2812
3112
|
getCondition: () => {
|
|
2813
3113
|
field: string;
|
|
2814
3114
|
equals: unknown;
|
|
@@ -2847,7 +3147,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
2847
3147
|
};
|
|
2848
3148
|
} | undefined;
|
|
2849
3149
|
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
2850
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
3150
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
2851
3151
|
field: string;
|
|
2852
3152
|
equals: boolean;
|
|
2853
3153
|
}>>;
|
|
@@ -2871,6 +3171,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2871
3171
|
getIsRequired: () => false;
|
|
2872
3172
|
getIsTranslatable: () => false;
|
|
2873
3173
|
getVisibility: () => "all";
|
|
3174
|
+
getIsDynamic: () => true;
|
|
3175
|
+
getDescription: () => undefined;
|
|
2874
3176
|
getCondition: () => undefined;
|
|
2875
3177
|
} & {
|
|
2876
3178
|
multiple: <TThis extends {
|
|
@@ -2892,6 +3194,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2892
3194
|
getIsRequired: () => boolean;
|
|
2893
3195
|
getIsTranslatable: () => boolean;
|
|
2894
3196
|
getVisibility: () => import("..").Visibility;
|
|
3197
|
+
getIsDynamic: () => boolean;
|
|
3198
|
+
getDescription: () => string | undefined;
|
|
2895
3199
|
getCondition: () => {
|
|
2896
3200
|
field: string;
|
|
2897
3201
|
equals: unknown;
|
|
@@ -2953,6 +3257,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2953
3257
|
getIsRequired: () => false;
|
|
2954
3258
|
getIsTranslatable: () => false;
|
|
2955
3259
|
getVisibility: () => "all";
|
|
3260
|
+
getIsDynamic: () => true;
|
|
3261
|
+
getDescription: () => undefined;
|
|
2956
3262
|
getCondition: () => undefined;
|
|
2957
3263
|
} & {
|
|
2958
3264
|
type: <TThis extends {
|
|
@@ -2974,6 +3280,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
2974
3280
|
getIsRequired: () => boolean;
|
|
2975
3281
|
getIsTranslatable: () => boolean;
|
|
2976
3282
|
getVisibility: () => import("..").Visibility;
|
|
3283
|
+
getIsDynamic: () => boolean;
|
|
3284
|
+
getDescription: () => string | undefined;
|
|
2977
3285
|
getCondition: () => {
|
|
2978
3286
|
field: string;
|
|
2979
3287
|
equals: unknown;
|
|
@@ -3031,6 +3339,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3031
3339
|
getIsRequired: () => boolean;
|
|
3032
3340
|
getIsTranslatable: () => boolean;
|
|
3033
3341
|
getVisibility: () => import("..").Visibility;
|
|
3342
|
+
getIsDynamic: () => boolean;
|
|
3343
|
+
getDescription: () => string | undefined;
|
|
3034
3344
|
getCondition: () => {
|
|
3035
3345
|
field: string;
|
|
3036
3346
|
equals: unknown;
|
|
@@ -3088,6 +3398,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3088
3398
|
getIsRequired: () => boolean;
|
|
3089
3399
|
getIsTranslatable: () => boolean;
|
|
3090
3400
|
getVisibility: () => import("..").Visibility;
|
|
3401
|
+
getIsDynamic: () => boolean;
|
|
3402
|
+
getDescription: () => string | undefined;
|
|
3091
3403
|
getCondition: () => {
|
|
3092
3404
|
field: string;
|
|
3093
3405
|
equals: unknown;
|
|
@@ -3126,7 +3438,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
3126
3438
|
};
|
|
3127
3439
|
} | undefined;
|
|
3128
3440
|
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
3129
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
3441
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
3130
3442
|
field: string;
|
|
3131
3443
|
equals: boolean;
|
|
3132
3444
|
}>>;
|
|
@@ -3149,6 +3461,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3149
3461
|
getIsRequired: () => false;
|
|
3150
3462
|
getIsTranslatable: () => false;
|
|
3151
3463
|
getVisibility: () => "all";
|
|
3464
|
+
getIsDynamic: () => true;
|
|
3465
|
+
getDescription: () => undefined;
|
|
3152
3466
|
getCondition: () => undefined;
|
|
3153
3467
|
} & {
|
|
3154
3468
|
type: <TThis extends {
|
|
@@ -3170,6 +3484,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3170
3484
|
getIsRequired: () => boolean;
|
|
3171
3485
|
getIsTranslatable: () => boolean;
|
|
3172
3486
|
getVisibility: () => import("..").Visibility;
|
|
3487
|
+
getIsDynamic: () => boolean;
|
|
3488
|
+
getDescription: () => string | undefined;
|
|
3173
3489
|
getCondition: () => {
|
|
3174
3490
|
field: string;
|
|
3175
3491
|
equals: unknown;
|
|
@@ -3227,6 +3543,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3227
3543
|
getIsRequired: () => boolean;
|
|
3228
3544
|
getIsTranslatable: () => boolean;
|
|
3229
3545
|
getVisibility: () => import("..").Visibility;
|
|
3546
|
+
getIsDynamic: () => boolean;
|
|
3547
|
+
getDescription: () => string | undefined;
|
|
3230
3548
|
getCondition: () => {
|
|
3231
3549
|
field: string;
|
|
3232
3550
|
equals: unknown;
|
|
@@ -3284,6 +3602,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3284
3602
|
getIsRequired: () => boolean;
|
|
3285
3603
|
getIsTranslatable: () => boolean;
|
|
3286
3604
|
getVisibility: () => import("..").Visibility;
|
|
3605
|
+
getIsDynamic: () => boolean;
|
|
3606
|
+
getDescription: () => string | undefined;
|
|
3287
3607
|
getCondition: () => {
|
|
3288
3608
|
field: string;
|
|
3289
3609
|
equals: unknown;
|
|
@@ -3322,7 +3642,7 @@ export declare const SeoSettings: ContentType<{
|
|
|
3322
3642
|
};
|
|
3323
3643
|
} | undefined;
|
|
3324
3644
|
}>(this: TThis, length: number) => import("..").StringField<"Textarea", import("..").FieldStateOf<TThis>>;
|
|
3325
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Textarea">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
3645
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Textarea">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
3326
3646
|
field: string;
|
|
3327
3647
|
equals: boolean;
|
|
3328
3648
|
}>>;
|
|
@@ -3446,6 +3766,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3446
3766
|
getIsRequired: () => false;
|
|
3447
3767
|
getIsTranslatable: () => false;
|
|
3448
3768
|
getVisibility: () => "all";
|
|
3769
|
+
getIsDynamic: () => true;
|
|
3770
|
+
getDescription: () => undefined;
|
|
3449
3771
|
getCondition: () => undefined;
|
|
3450
3772
|
} & import("..").PopulatableFieldLike<{
|
|
3451
3773
|
url: string;
|
|
@@ -3591,6 +3913,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3591
3913
|
getIsRequired: () => boolean;
|
|
3592
3914
|
getIsTranslatable: () => boolean;
|
|
3593
3915
|
getVisibility: () => import("..").Visibility;
|
|
3916
|
+
getIsDynamic: () => boolean;
|
|
3917
|
+
getDescription: () => string | undefined;
|
|
3594
3918
|
getCondition: () => {
|
|
3595
3919
|
field: string;
|
|
3596
3920
|
equals: unknown;
|
|
@@ -3749,6 +4073,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3749
4073
|
getIsRequired: () => boolean;
|
|
3750
4074
|
getIsTranslatable: () => boolean;
|
|
3751
4075
|
getVisibility: () => import("..").Visibility;
|
|
4076
|
+
getIsDynamic: () => boolean;
|
|
4077
|
+
getDescription: () => string | undefined;
|
|
3752
4078
|
getCondition: () => {
|
|
3753
4079
|
field: string;
|
|
3754
4080
|
equals: unknown;
|
|
@@ -3907,6 +4233,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3907
4233
|
getIsRequired: () => boolean;
|
|
3908
4234
|
getIsTranslatable: () => boolean;
|
|
3909
4235
|
getVisibility: () => import("..").Visibility;
|
|
4236
|
+
getIsDynamic: () => boolean;
|
|
4237
|
+
getDescription: () => string | undefined;
|
|
3910
4238
|
getCondition: () => {
|
|
3911
4239
|
field: string;
|
|
3912
4240
|
equals: unknown;
|
|
@@ -3968,6 +4296,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3968
4296
|
getIsRequired: () => false;
|
|
3969
4297
|
getIsTranslatable: () => false;
|
|
3970
4298
|
getVisibility: () => "all";
|
|
4299
|
+
getIsDynamic: () => true;
|
|
4300
|
+
getDescription: () => undefined;
|
|
3971
4301
|
getCondition: () => undefined;
|
|
3972
4302
|
} & {
|
|
3973
4303
|
type: <TThis extends {
|
|
@@ -3989,6 +4319,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
3989
4319
|
getIsRequired: () => boolean;
|
|
3990
4320
|
getIsTranslatable: () => boolean;
|
|
3991
4321
|
getVisibility: () => import("..").Visibility;
|
|
4322
|
+
getIsDynamic: () => boolean;
|
|
4323
|
+
getDescription: () => string | undefined;
|
|
3992
4324
|
getCondition: () => {
|
|
3993
4325
|
field: string;
|
|
3994
4326
|
equals: unknown;
|
|
@@ -4046,6 +4378,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
4046
4378
|
getIsRequired: () => boolean;
|
|
4047
4379
|
getIsTranslatable: () => boolean;
|
|
4048
4380
|
getVisibility: () => import("..").Visibility;
|
|
4381
|
+
getIsDynamic: () => boolean;
|
|
4382
|
+
getDescription: () => string | undefined;
|
|
4049
4383
|
getCondition: () => {
|
|
4050
4384
|
field: string;
|
|
4051
4385
|
equals: unknown;
|
|
@@ -4103,6 +4437,8 @@ export declare const SeoSettings: ContentType<{
|
|
|
4103
4437
|
getIsRequired: () => boolean;
|
|
4104
4438
|
getIsTranslatable: () => boolean;
|
|
4105
4439
|
getVisibility: () => import("..").Visibility;
|
|
4440
|
+
getIsDynamic: () => boolean;
|
|
4441
|
+
getDescription: () => string | undefined;
|
|
4106
4442
|
getCondition: () => {
|
|
4107
4443
|
field: string;
|
|
4108
4444
|
equals: unknown;
|
|
@@ -4141,12 +4477,12 @@ export declare const SeoSettings: ContentType<{
|
|
|
4141
4477
|
};
|
|
4142
4478
|
} | undefined;
|
|
4143
4479
|
}>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
|
|
4144
|
-
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "apiOnly" | "managerOnly" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
4480
|
+
}, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Text">, import("..").SetTranslatable<import("..").DefaultFieldState>>, import("..").SetCondition<import("..").SetTranslatable<import("..").DefaultFieldState>, {
|
|
4145
4481
|
field: string;
|
|
4146
4482
|
equals: boolean;
|
|
4147
4483
|
}>>;
|
|
4148
|
-
}, "Seo">, "new", import("..").DefaultFieldState>;
|
|
4149
|
-
}, "SeoSettings">;
|
|
4484
|
+
}, "Seo", undefined>, "new", import("..").DefaultFieldState>;
|
|
4485
|
+
}, "SeoSettings", undefined>;
|
|
4150
4486
|
export type SeoSettings = typeof SeoSettings;
|
|
4151
4487
|
export type SeoSettingsSchema = DataFront<SeoSettings>;
|
|
4152
4488
|
export type SeoSettingsManager = DBOutput<SeoSettings>;
|