@rakun-kit/core 1.3.11 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +130 -4
- package/dist/cjs/api/hooks/context.js +16 -0
- package/dist/cjs/api/hooks/context.js.map +1 -0
- package/dist/cjs/api/hooks/runContentHooks.js +173 -0
- package/dist/cjs/api/hooks/runContentHooks.js.map +1 -0
- package/dist/cjs/api/operations/manager-contract.js +87 -0
- package/dist/cjs/api/operations/manager-contract.js.map +1 -1
- package/dist/cjs/api/operations/manager-manifest.js +291 -0
- package/dist/cjs/api/operations/manager-manifest.js.map +1 -0
- package/dist/cjs/api/operations/manager.js +47 -3
- package/dist/cjs/api/operations/manager.js.map +1 -1
- package/dist/cjs/api/routes/manager/apiOperations.js +1 -1
- package/dist/cjs/api/routes/manager/apiOperations.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/login.js +19 -3
- package/dist/cjs/api/routes/manager/auth/login.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/markTourSeen.js +3 -1
- package/dist/cjs/api/routes/manager/auth/markTourSeen.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/totp/verifyTotp.js +11 -1
- package/dist/cjs/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/updateAccount.js +6 -1
- package/dist/cjs/api/routes/manager/auth/updateAccount.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/updatePassword.js +13 -3
- package/dist/cjs/api/routes/manager/auth/updatePassword.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/updateTutorialPreferences.js +3 -1
- package/dist/cjs/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
- package/dist/cjs/api/routes/manager/auth/webauthn/webauthnAuthVerify.js +11 -1
- package/dist/cjs/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/cjs/api/routes/manager/backups/create.js +1 -1
- package/dist/cjs/api/routes/manager/backups/create.js.map +1 -1
- package/dist/cjs/api/routes/manager/backups/list.js +1 -1
- package/dist/cjs/api/routes/manager/backups/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/backups/restore.js +3 -1
- package/dist/cjs/api/routes/manager/backups/restore.js.map +1 -1
- package/dist/cjs/api/routes/manager/comments.js +209 -0
- package/dist/cjs/api/routes/manager/comments.js.map +1 -0
- package/dist/cjs/api/routes/manager/contentType.js +19 -0
- package/dist/cjs/api/routes/manager/contentType.js.map +1 -0
- package/dist/cjs/api/routes/manager/create.js +10 -11
- package/dist/cjs/api/routes/manager/create.js.map +1 -1
- package/dist/cjs/api/routes/manager/delete.js +10 -3
- package/dist/cjs/api/routes/manager/delete.js.map +1 -1
- package/dist/cjs/api/routes/manager/favorites.js +137 -0
- package/dist/cjs/api/routes/manager/favorites.js.map +1 -0
- package/dist/cjs/api/routes/manager/get.js +3 -2
- package/dist/cjs/api/routes/manager/get.js.map +1 -1
- package/dist/cjs/api/routes/manager/list.js +23 -8
- package/dist/cjs/api/routes/manager/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/literals/list.js +1 -1
- package/dist/cjs/api/routes/manager/literals/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/literals/upsert.js +1 -1
- package/dist/cjs/api/routes/manager/literals/upsert.js.map +1 -1
- package/dist/cjs/api/routes/manager/localeVariants.js +300 -0
- package/dist/cjs/api/routes/manager/localeVariants.js.map +1 -0
- package/dist/cjs/api/routes/manager/media/finalizeUpload.js +24 -1
- package/dist/cjs/api/routes/manager/media/finalizeUpload.js.map +1 -1
- package/dist/cjs/api/routes/manager/media/getMediaUrl.js +33 -1
- package/dist/cjs/api/routes/manager/media/getMediaUrl.js.map +1 -1
- package/dist/cjs/api/routes/manager/media/prepareUpload.js +12 -1
- package/dist/cjs/api/routes/manager/media/prepareUpload.js.map +1 -1
- package/dist/cjs/api/routes/manager/media/uploadBinary.js +70 -4
- package/dist/cjs/api/routes/manager/media/uploadBinary.js.map +1 -1
- package/dist/cjs/api/routes/manager/migrations/list.js +1 -1
- package/dist/cjs/api/routes/manager/migrations/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/permissions.js +1 -1
- package/dist/cjs/api/routes/manager/permissions.js.map +1 -1
- package/dist/cjs/api/routes/manager/preview/create.js +5 -1
- package/dist/cjs/api/routes/manager/preview/create.js.map +1 -1
- package/dist/cjs/api/routes/manager/regenerateRoutes.js +1 -1
- package/dist/cjs/api/routes/manager/regenerateRoutes.js.map +1 -1
- package/dist/cjs/api/routes/manager/setDefaultLanguage.js +7 -2
- package/dist/cjs/api/routes/manager/setDefaultLanguage.js.map +1 -1
- package/dist/cjs/api/routes/manager/translateDocument.js +1 -9
- package/dist/cjs/api/routes/manager/translateDocument.js.map +1 -1
- package/dist/cjs/api/routes/manager/trash.js +7 -2
- package/dist/cjs/api/routes/manager/trash.js.map +1 -1
- package/dist/cjs/api/routes/manager/update.js +5 -10
- package/dist/cjs/api/routes/manager/update.js.map +1 -1
- package/dist/cjs/api/routes/manager/users.js +38 -0
- package/dist/cjs/api/routes/manager/users.js.map +1 -0
- package/dist/cjs/api/routes/manager/versions/get.js +1 -1
- package/dist/cjs/api/routes/manager/versions/get.js.map +1 -1
- package/dist/cjs/api/routes/manager/versions/list.js +1 -1
- package/dist/cjs/api/routes/manager/versions/list.js.map +1 -1
- package/dist/cjs/api/routes/manager/versions/restore.js +1 -1
- package/dist/cjs/api/routes/manager/versions/restore.js.map +1 -1
- package/dist/cjs/api/routes/web/page.js +170 -121
- package/dist/cjs/api/routes/web/page.js.map +1 -1
- package/dist/cjs/api/routes/web/robots.js +10 -8
- package/dist/cjs/api/routes/web/robots.js.map +1 -1
- package/dist/cjs/api/sessionCookie.js +13 -3
- package/dist/cjs/api/sessionCookie.js.map +1 -1
- package/dist/cjs/api/utils/authRateLimit.js +43 -0
- package/dist/cjs/api/utils/authRateLimit.js.map +1 -0
- package/dist/cjs/api/utils/checkOwnership.js +10 -7
- package/dist/cjs/api/utils/checkOwnership.js.map +1 -1
- package/dist/cjs/api/utils/dynamicData.js +319 -0
- package/dist/cjs/api/utils/dynamicData.js.map +1 -0
- package/dist/cjs/api/utils/getLanguages.js +8 -1
- package/dist/cjs/api/utils/getLanguages.js.map +1 -1
- package/dist/cjs/api/utils/getLink.js +24 -6
- package/dist/cjs/api/utils/getLink.js.map +1 -1
- package/dist/cjs/api/utils/getUser.js +7 -1
- package/dist/cjs/api/utils/getUser.js.map +1 -1
- package/dist/cjs/api/utils/index.js +7 -1
- package/dist/cjs/api/utils/index.js.map +1 -1
- package/dist/cjs/api/utils/localeVariants.js +45 -0
- package/dist/cjs/api/utils/localeVariants.js.map +1 -0
- package/dist/cjs/api/utils/mediaUploadToken.js +49 -0
- package/dist/cjs/api/utils/mediaUploadToken.js.map +1 -0
- package/dist/cjs/api/utils/passwords.js +25 -1
- package/dist/cjs/api/utils/passwords.js.map +1 -1
- package/dist/cjs/api/utils/populates/populateLinks.js +12 -3
- package/dist/cjs/api/utils/populates/populateLinks.js.map +1 -1
- package/dist/cjs/api/utils/populates/populateRelations.js +23 -4
- package/dist/cjs/api/utils/populates/populateRelations.js.map +1 -1
- package/dist/cjs/api/utils/routes/routeDefinitions.js.map +1 -1
- package/dist/cjs/api/utils/routes/routeMapHelpers.js +133 -24
- package/dist/cjs/api/utils/routes/routeMapHelpers.js.map +1 -1
- package/dist/cjs/api/utils/routes/syncConfiguredRoutes.js +0 -1
- package/dist/cjs/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
- package/dist/cjs/api/utils/routes/updateRoutesMap.js +66 -25
- package/dist/cjs/api/utils/routes/updateRoutesMap.js.map +1 -1
- package/dist/cjs/api/utils/safeManagerQuery.js +229 -0
- package/dist/cjs/api/utils/safeManagerQuery.js.map +1 -0
- package/dist/cjs/api/utils/sanitizeManagerOutput.js +39 -0
- package/dist/cjs/api/utils/sanitizeManagerOutput.js.map +1 -0
- package/dist/cjs/bootstrapState.js.map +1 -1
- package/dist/cjs/client.js +19 -1
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/contracts.js +5 -0
- package/dist/cjs/contracts.js.map +1 -1
- package/dist/cjs/index.js +64 -15
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/internal-content-types/ApiOperation.js +23 -0
- package/dist/cjs/internal-content-types/ApiOperation.js.map +1 -0
- package/dist/cjs/internal-content-types/Backup.js +1 -0
- package/dist/cjs/internal-content-types/Backup.js.map +1 -1
- package/dist/cjs/internal-content-types/BackupDocument.js +1 -0
- package/dist/cjs/internal-content-types/BackupDocument.js.map +1 -1
- package/dist/cjs/internal-content-types/ContentComment.js +22 -0
- package/dist/cjs/internal-content-types/ContentComment.js.map +1 -0
- package/dist/cjs/internal-content-types/ContentVersion.js +1 -0
- package/dist/cjs/internal-content-types/ContentVersion.js.map +1 -1
- package/dist/cjs/internal-content-types/Language.js +1 -0
- package/dist/cjs/internal-content-types/Language.js.map +1 -1
- package/dist/cjs/internal-content-types/LiteralTranslation.js +1 -0
- package/dist/cjs/internal-content-types/LiteralTranslation.js.map +1 -1
- package/dist/cjs/internal-content-types/ManagerFavorite.js +20 -0
- package/dist/cjs/internal-content-types/ManagerFavorite.js.map +1 -0
- package/dist/cjs/internal-content-types/ManagerRole.js +2 -4
- package/dist/cjs/internal-content-types/ManagerRole.js.map +1 -1
- package/dist/cjs/internal-content-types/ManagerRoleHooks.js +47 -0
- package/dist/cjs/internal-content-types/ManagerRoleHooks.js.map +1 -0
- package/dist/cjs/internal-content-types/ManagerUser.js +2 -0
- package/dist/cjs/internal-content-types/ManagerUser.js.map +1 -1
- package/dist/cjs/internal-content-types/ManagerUserHooks.js +42 -0
- package/dist/cjs/internal-content-types/ManagerUserHooks.js.map +1 -0
- package/dist/cjs/internal-content-types/Media.js +1 -0
- package/dist/cjs/internal-content-types/Media.js.map +1 -1
- package/dist/cjs/internal-content-types/MediaFolder.js +1 -0
- package/dist/cjs/internal-content-types/MediaFolder.js.map +1 -1
- package/dist/cjs/internal-content-types/Migration.js +4 -0
- package/dist/cjs/internal-content-types/Migration.js.map +1 -1
- package/dist/cjs/internal-content-types/MigrationLock.js +1 -0
- package/dist/cjs/internal-content-types/MigrationLock.js.map +1 -1
- package/dist/cjs/internal-content-types/Page.js +7 -8
- package/dist/cjs/internal-content-types/Page.js.map +1 -1
- package/dist/cjs/internal-content-types/Redirect.js +1 -0
- package/dist/cjs/internal-content-types/Redirect.js.map +1 -1
- package/dist/cjs/internal-content-types/RobotsRule.js +1 -0
- package/dist/cjs/internal-content-types/RobotsRule.js.map +1 -1
- package/dist/cjs/internal-content-types/Route.js +1 -1
- package/dist/cjs/internal-content-types/Route.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteLayoutModule.js +1 -0
- package/dist/cjs/internal-content-types/RouteLayoutModule.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteLayoutModuleOverride.js +1 -0
- package/dist/cjs/internal-content-types/RouteLayoutModuleOverride.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteLocaleVariant.js +23 -0
- package/dist/cjs/internal-content-types/RouteLocaleVariant.js.map +1 -0
- package/dist/cjs/internal-content-types/RouteMap.js +5 -0
- package/dist/cjs/internal-content-types/RouteMap.js.map +1 -1
- package/dist/cjs/internal-content-types/RouteSettings.js +1 -0
- package/dist/cjs/internal-content-types/RouteSettings.js.map +1 -1
- package/dist/cjs/internal-content-types/SchemaState.js +4 -0
- package/dist/cjs/internal-content-types/SchemaState.js.map +1 -1
- package/dist/cjs/internal-content-types/Seo.js +4 -2
- package/dist/cjs/internal-content-types/Seo.js.map +1 -1
- package/dist/cjs/internal-content-types/SeoSettings.js +2 -2
- package/dist/cjs/internal-content-types/SeoSettings.js.map +1 -1
- package/dist/cjs/internal-content-types/index.js +4 -0
- package/dist/cjs/internal-content-types/index.js.map +1 -1
- package/dist/cjs/internal-content-types/syncAdminRole.js +16 -0
- package/dist/cjs/internal-content-types/syncAdminRole.js.map +1 -0
- package/dist/cjs/lib/ContentType.js +185 -8
- package/dist/cjs/lib/ContentType.js.map +1 -1
- package/dist/cjs/lib/ManagerRolePolicy.js +7 -0
- package/dist/cjs/lib/ManagerRolePolicy.js.map +1 -0
- package/dist/cjs/lib/Permissions.js +73 -77
- package/dist/cjs/lib/Permissions.js.map +1 -1
- package/dist/cjs/lib/Registry.js +9 -0
- package/dist/cjs/lib/Registry.js.map +1 -1
- package/dist/cjs/lib/dynamicData.js +53 -0
- package/dist/cjs/lib/dynamicData.js.map +1 -0
- package/dist/cjs/lib/errors/throwAppError.js +27 -3
- package/dist/cjs/lib/errors/throwAppError.js.map +1 -1
- package/dist/cjs/lib/fields/Field.js +26 -0
- package/dist/cjs/lib/fields/Field.js.map +1 -1
- package/dist/cjs/lib/fields/List.js +25 -4
- package/dist/cjs/lib/fields/List.js.map +1 -1
- package/dist/cjs/lib/fields/Relation.js +3 -0
- package/dist/cjs/lib/fields/Relation.js.map +1 -1
- package/dist/cjs/lib/hooks.js +3 -0
- package/dist/cjs/lib/hooks.js.map +1 -0
- package/dist/cjs/lib/localeVariants.js +20 -0
- package/dist/cjs/lib/localeVariants.js.map +1 -0
- package/dist/cjs/lib/routeableContent.js +18 -0
- package/dist/cjs/lib/routeableContent.js.map +1 -0
- package/dist/cjs/lib/systemFields.js +6 -0
- package/dist/cjs/lib/systemFields.js.map +1 -0
- package/dist/cjs/manager.js +4 -9
- package/dist/cjs/manager.js.map +1 -1
- package/dist/cjs/media/mediaService.js +2 -1
- package/dist/cjs/media/mediaService.js.map +1 -1
- package/dist/cjs/orm/createIndexes.js +23 -7
- package/dist/cjs/orm/createIndexes.js.map +1 -1
- package/dist/cjs/orm/index.js +8 -7
- package/dist/cjs/orm/index.js.map +1 -1
- package/dist/cjs/orm/operations/clear.js +3 -4
- package/dist/cjs/orm/operations/clear.js.map +1 -1
- package/dist/cjs/orm/operations/create.js +25 -8
- package/dist/cjs/orm/operations/create.js.map +1 -1
- package/dist/cjs/orm/operations/delete.js +22 -2
- package/dist/cjs/orm/operations/delete.js.map +1 -1
- package/dist/cjs/orm/operations/findDependencies.js +75 -53
- package/dist/cjs/orm/operations/findDependencies.js.map +1 -1
- package/dist/cjs/orm/operations/update.js +43 -17
- package/dist/cjs/orm/operations/update.js.map +1 -1
- package/dist/cjs/orm/operations/updateMany.js +24 -7
- package/dist/cjs/orm/operations/updateMany.js.map +1 -1
- package/dist/cjs/orm/operations/upsert.js +3 -3
- package/dist/cjs/orm/operations/upsert.js.map +1 -1
- package/dist/cjs/plugins.js +113 -0
- package/dist/cjs/plugins.js.map +1 -0
- package/dist/cjs/schemas/manager/auth/accountInfo.js +1 -0
- package/dist/cjs/schemas/manager/auth/accountInfo.js.map +1 -1
- package/dist/cjs/schemas/manager/auth/login.js +1 -0
- package/dist/cjs/schemas/manager/auth/login.js.map +1 -1
- package/dist/cjs/schemas/manager/auth/totp/verifyTotp.js +1 -0
- package/dist/cjs/schemas/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/cjs/schemas/manager/auth/webauthn/webauthnAuthVerify.js +1 -0
- package/dist/cjs/schemas/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/cjs/schemas/manager/comments.js +48 -0
- package/dist/cjs/schemas/manager/comments.js.map +1 -0
- package/dist/cjs/schemas/manager/contentType.js +11 -0
- package/dist/cjs/schemas/manager/contentType.js.map +1 -0
- package/dist/cjs/schemas/manager/favorites.js +37 -0
- package/dist/cjs/schemas/manager/favorites.js.map +1 -0
- package/dist/cjs/schemas/manager/localeVariants.js +62 -0
- package/dist/cjs/schemas/manager/localeVariants.js.map +1 -0
- package/dist/cjs/schemas/manager/media/finalizeUpload.js +1 -0
- package/dist/cjs/schemas/manager/media/finalizeUpload.js.map +1 -1
- package/dist/cjs/schemas/manager/media/getMediaUrl.js +1 -1
- package/dist/cjs/schemas/manager/media/getMediaUrl.js.map +1 -1
- package/dist/cjs/schemas/manager/media/prepareUpload.js +1 -0
- package/dist/cjs/schemas/manager/media/prepareUpload.js.map +1 -1
- package/dist/cjs/schemas/manager/users.js +21 -0
- package/dist/cjs/schemas/manager/users.js.map +1 -0
- package/dist/esm/api/context.d.ts +1 -1
- package/dist/esm/api/context.js +3 -3
- package/dist/esm/api/hooks/context.d.ts +4 -0
- package/dist/esm/api/hooks/context.d.ts.map +1 -0
- package/dist/esm/api/hooks/context.js +12 -0
- package/dist/esm/api/hooks/context.js.map +1 -0
- package/dist/esm/api/hooks/runContentHooks.d.ts +80 -0
- package/dist/esm/api/hooks/runContentHooks.d.ts.map +1 -0
- package/dist/esm/api/hooks/runContentHooks.js +159 -0
- package/dist/esm/api/hooks/runContentHooks.js.map +1 -0
- package/dist/esm/api/operations/catalog.d.ts +2 -2
- package/dist/esm/api/operations/catalog.js +1 -1
- package/dist/esm/api/operations/custom.d.ts +1 -1
- package/dist/esm/api/operations/custom.js +1 -1
- package/dist/esm/api/operations/index.d.ts +622 -96
- package/dist/esm/api/operations/index.d.ts.map +1 -1
- package/dist/esm/api/operations/index.js +8 -8
- package/dist/esm/api/operations/manager-contract.d.ts +586 -69
- package/dist/esm/api/operations/manager-contract.d.ts.map +1 -1
- package/dist/esm/api/operations/manager-contract.js +92 -5
- package/dist/esm/api/operations/manager-contract.js.map +1 -1
- package/dist/esm/api/operations/manager-manifest.d.ts +288 -0
- package/dist/esm/api/operations/manager-manifest.d.ts.map +1 -0
- package/dist/esm/api/operations/manager-manifest.js +288 -0
- package/dist/esm/api/operations/manager-manifest.js.map +1 -0
- package/dist/esm/api/operations/manager.d.ts +586 -70
- package/dist/esm/api/operations/manager.d.ts.map +1 -1
- package/dist/esm/api/operations/manager.js +98 -54
- package/dist/esm/api/operations/manager.js.map +1 -1
- package/dist/esm/api/operations/tracing.d.ts +1 -1
- package/dist/esm/api/operations/tracing.js +1 -1
- package/dist/esm/api/operations/types.d.ts +1 -1
- package/dist/esm/api/operations/web-contract.d.ts +30 -19
- package/dist/esm/api/operations/web-contract.d.ts.map +1 -1
- package/dist/esm/api/operations/web-contract.js +3 -3
- package/dist/esm/api/operations/web.d.ts +30 -20
- package/dist/esm/api/operations/web.d.ts.map +1 -1
- package/dist/esm/api/operations/web.js +9 -9
- package/dist/esm/api/routes/manager/apiOperations.d.ts +3 -3
- package/dist/esm/api/routes/manager/apiOperations.js +6 -6
- package/dist/esm/api/routes/manager/apiOperations.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/accountInfo.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/accountInfo.js +3 -3
- package/dist/esm/api/routes/manager/auth/deleteSession.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/deleteSession.js +3 -3
- package/dist/esm/api/routes/manager/auth/getSession.d.ts +11 -6
- package/dist/esm/api/routes/manager/auth/getSession.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/login.d.ts +4 -2
- package/dist/esm/api/routes/manager/auth/login.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/login.js +23 -7
- package/dist/esm/api/routes/manager/auth/login.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/logout.d.ts +1 -1
- package/dist/esm/api/routes/manager/auth/logout.js +3 -3
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts +12 -7
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/markTourSeen.js +6 -4
- package/dist/esm/api/routes/manager/auth/markTourSeen.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/totp/confirmTotp.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/totp/confirmTotp.js +2 -2
- package/dist/esm/api/routes/manager/auth/totp/enrollTotp.d.ts +1 -1
- package/dist/esm/api/routes/manager/auth/totp/enrollTotp.js +3 -3
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts +3 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js +14 -4
- package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts +12 -7
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateAccount.js +9 -4
- package/dist/esm/api/routes/manager/auth/updateAccount.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updatePassword.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/updatePassword.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updatePassword.js +16 -6
- package/dist/esm/api/routes/manager/auth/updatePassword.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts +12 -7
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js +6 -4
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthOptions.js +4 -4
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.d.ts +1 -0
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js +15 -5
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterOptions.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterOptions.js +3 -3
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterVerify.d.ts +1 -1
- package/dist/esm/api/routes/manager/auth/webauthn/webauthnRegisterVerify.js +4 -4
- package/dist/esm/api/routes/manager/backups/create.d.ts +2 -2
- package/dist/esm/api/routes/manager/backups/create.js +3 -3
- package/dist/esm/api/routes/manager/backups/create.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/backups/list.js +3 -3
- package/dist/esm/api/routes/manager/backups/list.js.map +1 -1
- package/dist/esm/api/routes/manager/backups/restore.d.ts +2 -2
- package/dist/esm/api/routes/manager/backups/restore.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/backups/restore.js +6 -4
- package/dist/esm/api/routes/manager/backups/restore.js.map +1 -1
- package/dist/esm/api/routes/manager/comments.d.ts +15 -0
- package/dist/esm/api/routes/manager/comments.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/comments.js +203 -0
- package/dist/esm/api/routes/manager/comments.js.map +1 -0
- package/dist/esm/api/routes/manager/contentType.d.ts +52 -0
- package/dist/esm/api/routes/manager/contentType.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/contentType.js +15 -0
- package/dist/esm/api/routes/manager/contentType.js.map +1 -0
- package/dist/esm/api/routes/manager/contentTypes.d.ts +23 -6
- package/dist/esm/api/routes/manager/contentTypes.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/contentTypes.js +1 -1
- package/dist/esm/api/routes/manager/create.d.ts +7 -4
- package/dist/esm/api/routes/manager/create.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/create.js +17 -18
- package/dist/esm/api/routes/manager/create.js.map +1 -1
- package/dist/esm/api/routes/manager/delete.d.ts +2 -2
- package/dist/esm/api/routes/manager/delete.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/delete.js +18 -11
- package/dist/esm/api/routes/manager/delete.js.map +1 -1
- package/dist/esm/api/routes/manager/duplicate.d.ts +6 -4
- package/dist/esm/api/routes/manager/duplicate.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/duplicate.js +5 -5
- package/dist/esm/api/routes/manager/favorites.d.ts +11 -0
- package/dist/esm/api/routes/manager/favorites.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/favorites.js +132 -0
- package/dist/esm/api/routes/manager/favorites.js.map +1 -0
- package/dist/esm/api/routes/manager/get.d.ts +2 -2
- package/dist/esm/api/routes/manager/get.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/get.js +11 -10
- package/dist/esm/api/routes/manager/get.js.map +1 -1
- package/dist/esm/api/routes/manager/languages.d.ts +5 -3
- package/dist/esm/api/routes/manager/languages.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/languages.js +1 -1
- package/dist/esm/api/routes/manager/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/list.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/list.js +32 -17
- package/dist/esm/api/routes/manager/list.js.map +1 -1
- package/dist/esm/api/routes/manager/literals/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/literals/list.js +6 -6
- package/dist/esm/api/routes/manager/literals/list.js.map +1 -1
- package/dist/esm/api/routes/manager/literals/upsert.d.ts +2 -2
- package/dist/esm/api/routes/manager/literals/upsert.js +7 -7
- package/dist/esm/api/routes/manager/literals/upsert.js.map +1 -1
- package/dist/esm/api/routes/manager/localeVariants.d.ts +133 -0
- package/dist/esm/api/routes/manager/localeVariants.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/localeVariants.js +293 -0
- package/dist/esm/api/routes/manager/localeVariants.js.map +1 -0
- package/dist/esm/api/routes/manager/media/createFolder.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/createFolder.js +7 -7
- package/dist/esm/api/routes/manager/media/deleteFolder.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/deleteFolder.js +7 -7
- package/dist/esm/api/routes/manager/media/deleteMediaStorage.js +2 -2
- package/dist/esm/api/routes/manager/media/finalizeUpload.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/finalizeUpload.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/finalizeUpload.js +34 -11
- package/dist/esm/api/routes/manager/media/finalizeUpload.js.map +1 -1
- package/dist/esm/api/routes/manager/media/getMediaUrl.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/getMediaUrl.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/getMediaUrl.js +36 -4
- package/dist/esm/api/routes/manager/media/getMediaUrl.js.map +1 -1
- package/dist/esm/api/routes/manager/media/listFolders.d.ts +2 -2
- package/dist/esm/api/routes/manager/media/listFolders.js +4 -4
- package/dist/esm/api/routes/manager/media/prepareUpload.d.ts +3 -2
- package/dist/esm/api/routes/manager/media/prepareUpload.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/prepareUpload.js +16 -5
- package/dist/esm/api/routes/manager/media/prepareUpload.js.map +1 -1
- package/dist/esm/api/routes/manager/media/resolveMediaRecordUrls.js +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.d.ts +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/media/uploadBinary.js +76 -10
- package/dist/esm/api/routes/manager/media/uploadBinary.js.map +1 -1
- package/dist/esm/api/routes/manager/migrations/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/migrations/list.js +3 -3
- package/dist/esm/api/routes/manager/migrations/list.js.map +1 -1
- package/dist/esm/api/routes/manager/permissions.d.ts +1 -1
- package/dist/esm/api/routes/manager/permissions.js +3 -3
- package/dist/esm/api/routes/manager/permissions.js.map +1 -1
- package/dist/esm/api/routes/manager/preview/create.d.ts +2 -2
- package/dist/esm/api/routes/manager/preview/create.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/preview/create.js +18 -14
- package/dist/esm/api/routes/manager/preview/create.js.map +1 -1
- package/dist/esm/api/routes/manager/regenerateRoutes.d.ts +1 -1
- package/dist/esm/api/routes/manager/regenerateRoutes.js +3 -3
- package/dist/esm/api/routes/manager/regenerateRoutes.js.map +1 -1
- package/dist/esm/api/routes/manager/setDefaultLanguage.d.ts +2 -2
- package/dist/esm/api/routes/manager/setDefaultLanguage.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/setDefaultLanguage.js +11 -6
- package/dist/esm/api/routes/manager/setDefaultLanguage.js.map +1 -1
- package/dist/esm/api/routes/manager/translateDocument.d.ts +2 -2
- package/dist/esm/api/routes/manager/translateDocument.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/translateDocument.js +10 -18
- package/dist/esm/api/routes/manager/translateDocument.js.map +1 -1
- package/dist/esm/api/routes/manager/trash.d.ts +2 -2
- package/dist/esm/api/routes/manager/trash.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/trash.js +13 -8
- package/dist/esm/api/routes/manager/trash.js.map +1 -1
- package/dist/esm/api/routes/manager/update.d.ts +7 -4
- package/dist/esm/api/routes/manager/update.d.ts.map +1 -1
- package/dist/esm/api/routes/manager/update.js +12 -17
- package/dist/esm/api/routes/manager/update.js.map +1 -1
- package/dist/esm/api/routes/manager/users.d.ts +16 -0
- package/dist/esm/api/routes/manager/users.d.ts.map +1 -0
- package/dist/esm/api/routes/manager/users.js +32 -0
- package/dist/esm/api/routes/manager/users.js.map +1 -0
- package/dist/esm/api/routes/manager/versions/get.d.ts +2 -2
- package/dist/esm/api/routes/manager/versions/get.js +3 -3
- package/dist/esm/api/routes/manager/versions/get.js.map +1 -1
- package/dist/esm/api/routes/manager/versions/list.d.ts +2 -2
- package/dist/esm/api/routes/manager/versions/list.js +3 -3
- package/dist/esm/api/routes/manager/versions/list.js.map +1 -1
- package/dist/esm/api/routes/manager/versions/restore.d.ts +2 -2
- package/dist/esm/api/routes/manager/versions/restore.js +5 -5
- package/dist/esm/api/routes/manager/versions/restore.js.map +1 -1
- package/dist/esm/api/routes/web/page.d.ts +6 -5
- package/dist/esm/api/routes/web/page.d.ts.map +1 -1
- package/dist/esm/api/routes/web/page.js +183 -134
- package/dist/esm/api/routes/web/page.js.map +1 -1
- package/dist/esm/api/routes/web/previewPage.d.ts +10 -6
- package/dist/esm/api/routes/web/previewPage.d.ts.map +1 -1
- package/dist/esm/api/routes/web/previewPage.js +8 -8
- package/dist/esm/api/routes/web/robots.d.ts +1 -1
- package/dist/esm/api/routes/web/robots.d.ts.map +1 -1
- package/dist/esm/api/routes/web/robots.js +12 -10
- package/dist/esm/api/routes/web/robots.js.map +1 -1
- package/dist/esm/api/routes/web/seo.d.ts +1 -1
- package/dist/esm/api/routes/web/sitemap.d.ts +1 -1
- package/dist/esm/api/routes/web/sitemap.js +3 -3
- package/dist/esm/api/sessionCookie.d.ts +2 -1
- package/dist/esm/api/sessionCookie.d.ts.map +1 -1
- package/dist/esm/api/sessionCookie.js +12 -2
- package/dist/esm/api/sessionCookie.js.map +1 -1
- package/dist/esm/api/utils/authRateLimit.d.ts +9 -0
- package/dist/esm/api/utils/authRateLimit.d.ts.map +1 -0
- package/dist/esm/api/utils/authRateLimit.js +37 -0
- package/dist/esm/api/utils/authRateLimit.js.map +1 -0
- package/dist/esm/api/utils/checkFailureCase.d.ts +1 -1
- package/dist/esm/api/utils/checkFailureCase.js +1 -1
- package/dist/esm/api/utils/checkOwnership.d.ts +2 -2
- package/dist/esm/api/utils/checkOwnership.d.ts.map +1 -1
- package/dist/esm/api/utils/checkOwnership.js +14 -11
- package/dist/esm/api/utils/checkOwnership.js.map +1 -1
- package/dist/esm/api/utils/checkPermissions.d.ts +2 -2
- package/dist/esm/api/utils/checkPermissions.js +3 -3
- package/dist/esm/api/utils/dynamicData.d.ts +23 -0
- package/dist/esm/api/utils/dynamicData.d.ts.map +1 -0
- package/dist/esm/api/utils/dynamicData.js +312 -0
- package/dist/esm/api/utils/dynamicData.js.map +1 -0
- package/dist/esm/api/utils/getLanguages.d.ts +3 -19
- package/dist/esm/api/utils/getLanguages.d.ts.map +1 -1
- package/dist/esm/api/utils/getLanguages.js +10 -3
- package/dist/esm/api/utils/getLanguages.js.map +1 -1
- package/dist/esm/api/utils/getLink.d.ts +2 -2
- package/dist/esm/api/utils/getLink.d.ts.map +1 -1
- package/dist/esm/api/utils/getLink.js +28 -10
- package/dist/esm/api/utils/getLink.js.map +1 -1
- package/dist/esm/api/utils/getUser.d.ts +11 -6
- package/dist/esm/api/utils/getUser.d.ts.map +1 -1
- package/dist/esm/api/utils/getUser.js +11 -5
- package/dist/esm/api/utils/getUser.js.map +1 -1
- package/dist/esm/api/utils/index.d.ts +24 -23
- package/dist/esm/api/utils/index.d.ts.map +1 -1
- package/dist/esm/api/utils/index.js +24 -23
- package/dist/esm/api/utils/index.js.map +1 -1
- package/dist/esm/api/utils/localeVariants.d.ts +8 -0
- package/dist/esm/api/utils/localeVariants.d.ts.map +1 -0
- package/dist/esm/api/utils/localeVariants.js +41 -0
- package/dist/esm/api/utils/localeVariants.js.map +1 -0
- package/dist/esm/api/utils/mediaUploadToken.d.ts +13 -0
- package/dist/esm/api/utils/mediaUploadToken.d.ts.map +1 -0
- package/dist/esm/api/utils/mediaUploadToken.js +44 -0
- package/dist/esm/api/utils/mediaUploadToken.js.map +1 -0
- package/dist/esm/api/utils/parseId.d.ts +1 -1
- package/dist/esm/api/utils/parseId.js +1 -1
- package/dist/esm/api/utils/passwords.d.ts +5 -0
- package/dist/esm/api/utils/passwords.d.ts.map +1 -1
- package/dist/esm/api/utils/passwords.js +23 -1
- package/dist/esm/api/utils/passwords.js.map +1 -1
- package/dist/esm/api/utils/populates/populateLinks.d.ts +2 -2
- package/dist/esm/api/utils/populates/populateLinks.d.ts.map +1 -1
- package/dist/esm/api/utils/populates/populateLinks.js +16 -7
- package/dist/esm/api/utils/populates/populateLinks.js.map +1 -1
- package/dist/esm/api/utils/populates/populateRelations.d.ts +8 -4
- package/dist/esm/api/utils/populates/populateRelations.d.ts.map +1 -1
- package/dist/esm/api/utils/populates/populateRelations.js +29 -10
- package/dist/esm/api/utils/populates/populateRelations.js.map +1 -1
- package/dist/esm/api/utils/redirects/resolveRedirect.js +2 -2
- package/dist/esm/api/utils/requireContentType.d.ts +1 -1
- package/dist/esm/api/utils/requireContentType.js +2 -2
- package/dist/esm/api/utils/routes/revalidatePath.js +5 -5
- package/dist/esm/api/utils/routes/routeDefinitions.d.ts +1 -2
- package/dist/esm/api/utils/routes/routeDefinitions.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/routeDefinitions.js.map +1 -1
- package/dist/esm/api/utils/routes/routeMapHelpers.d.ts +15 -8
- package/dist/esm/api/utils/routes/routeMapHelpers.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/routeMapHelpers.js +137 -30
- package/dist/esm/api/utils/routes/routeMapHelpers.js.map +1 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.d.ts +2 -2
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.js +5 -6
- package/dist/esm/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
- package/dist/esm/api/utils/routes/updateRoutesMap.d.ts +2 -2
- package/dist/esm/api/utils/routes/updateRoutesMap.d.ts.map +1 -1
- package/dist/esm/api/utils/routes/updateRoutesMap.js +70 -29
- package/dist/esm/api/utils/routes/updateRoutesMap.js.map +1 -1
- package/dist/esm/api/utils/safeManagerQuery.d.ts +4 -0
- package/dist/esm/api/utils/safeManagerQuery.d.ts.map +1 -0
- package/dist/esm/api/utils/safeManagerQuery.js +225 -0
- package/dist/esm/api/utils/safeManagerQuery.js.map +1 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.d.ts +3 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.d.ts.map +1 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.js +35 -0
- package/dist/esm/api/utils/sanitizeManagerOutput.js.map +1 -0
- package/dist/esm/api/utils/transformObjectIdsToStrings.js +1 -1
- package/dist/esm/api/utils/transformStringToObjectIds.js +1 -1
- package/dist/esm/api/utils/translate.d.ts +1 -1
- package/dist/esm/api/utils/translate.js +3 -3
- package/dist/esm/api/utils/validateModule.d.ts +1 -1
- package/dist/esm/api/utils/validateModule.js +2 -2
- package/dist/esm/bootstrapState.d.ts +16 -12
- package/dist/esm/bootstrapState.d.ts.map +1 -1
- package/dist/esm/bootstrapState.js.map +1 -1
- package/dist/esm/client.d.ts +50 -42
- package/dist/esm/client.d.ts.map +1 -1
- package/dist/esm/client.js +30 -26
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/contracts.d.ts +43 -38
- package/dist/esm/contracts.d.ts.map +1 -1
- package/dist/esm/contracts.js +43 -38
- package/dist/esm/contracts.js.map +1 -1
- package/dist/esm/index.d.ts +42 -38
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +75 -39
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/internal-content-types/ApiOperation.d.ts +811 -0
- package/dist/esm/internal-content-types/ApiOperation.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ApiOperation.js +17 -0
- package/dist/esm/internal-content-types/ApiOperation.js.map +1 -0
- package/dist/esm/internal-content-types/Backup.d.ts +72 -58
- package/dist/esm/internal-content-types/Backup.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Backup.js +3 -2
- package/dist/esm/internal-content-types/Backup.js.map +1 -1
- package/dist/esm/internal-content-types/BackupDocument.d.ts +147 -115
- package/dist/esm/internal-content-types/BackupDocument.d.ts.map +1 -1
- package/dist/esm/internal-content-types/BackupDocument.js +3 -2
- package/dist/esm/internal-content-types/BackupDocument.js.map +1 -1
- package/dist/esm/internal-content-types/ContentComment.d.ts +4708 -0
- package/dist/esm/internal-content-types/ContentComment.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ContentComment.js +16 -0
- package/dist/esm/internal-content-types/ContentComment.js.map +1 -0
- package/dist/esm/internal-content-types/ContentVersion.d.ts +178 -140
- package/dist/esm/internal-content-types/ContentVersion.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ContentVersion.js +3 -2
- package/dist/esm/internal-content-types/ContentVersion.js.map +1 -1
- package/dist/esm/internal-content-types/HelloWorld.d.ts +39 -31
- package/dist/esm/internal-content-types/HelloWorld.d.ts.map +1 -1
- package/dist/esm/internal-content-types/HelloWorld.js +2 -2
- package/dist/esm/internal-content-types/Language.d.ts +50 -40
- package/dist/esm/internal-content-types/Language.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Language.js +3 -2
- package/dist/esm/internal-content-types/Language.js.map +1 -1
- package/dist/esm/internal-content-types/LiteralTranslation.d.ts +76 -60
- package/dist/esm/internal-content-types/LiteralTranslation.d.ts.map +1 -1
- package/dist/esm/internal-content-types/LiteralTranslation.js +3 -2
- package/dist/esm/internal-content-types/LiteralTranslation.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerFavorite.d.ts +3266 -0
- package/dist/esm/internal-content-types/ManagerFavorite.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ManagerFavorite.js +14 -0
- package/dist/esm/internal-content-types/ManagerFavorite.js.map +1 -0
- package/dist/esm/internal-content-types/ManagerRole.d.ts +42 -32
- package/dist/esm/internal-content-types/ManagerRole.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ManagerRole.js +4 -6
- package/dist/esm/internal-content-types/ManagerRole.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerRoleHooks.d.ts +6 -0
- package/dist/esm/internal-content-types/ManagerRoleHooks.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ManagerRoleHooks.js +43 -0
- package/dist/esm/internal-content-types/ManagerRoleHooks.js.map +1 -0
- package/dist/esm/internal-content-types/ManagerUser.d.ts +274 -209
- package/dist/esm/internal-content-types/ManagerUser.d.ts.map +1 -1
- package/dist/esm/internal-content-types/ManagerUser.js +5 -3
- package/dist/esm/internal-content-types/ManagerUser.js.map +1 -1
- package/dist/esm/internal-content-types/ManagerUserHooks.d.ts +5 -0
- package/dist/esm/internal-content-types/ManagerUserHooks.d.ts.map +1 -0
- package/dist/esm/internal-content-types/ManagerUserHooks.js +38 -0
- package/dist/esm/internal-content-types/ManagerUserHooks.js.map +1 -0
- package/dist/esm/internal-content-types/Media.d.ts +330 -262
- package/dist/esm/internal-content-types/Media.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Media.js +4 -3
- package/dist/esm/internal-content-types/Media.js.map +1 -1
- package/dist/esm/internal-content-types/MediaFolder.d.ts +113 -89
- package/dist/esm/internal-content-types/MediaFolder.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MediaFolder.js +3 -2
- package/dist/esm/internal-content-types/MediaFolder.js.map +1 -1
- package/dist/esm/internal-content-types/MfaChallenge.d.ts +748 -557
- package/dist/esm/internal-content-types/MfaChallenge.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MfaChallenge.js +3 -3
- package/dist/esm/internal-content-types/Migration.d.ts +170 -134
- package/dist/esm/internal-content-types/Migration.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Migration.js +6 -2
- package/dist/esm/internal-content-types/Migration.js.map +1 -1
- package/dist/esm/internal-content-types/MigrationLock.d.ts +21 -17
- package/dist/esm/internal-content-types/MigrationLock.d.ts.map +1 -1
- package/dist/esm/internal-content-types/MigrationLock.js +3 -2
- package/dist/esm/internal-content-types/MigrationLock.js.map +1 -1
- package/dist/esm/internal-content-types/Page.d.ts +114 -9275
- package/dist/esm/internal-content-types/Page.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Page.js +10 -11
- package/dist/esm/internal-content-types/Page.js.map +1 -1
- package/dist/esm/internal-content-types/PreviewSnapshot.d.ts +274 -214
- package/dist/esm/internal-content-types/PreviewSnapshot.d.ts.map +1 -1
- package/dist/esm/internal-content-types/PreviewSnapshot.js +2 -2
- package/dist/esm/internal-content-types/Redirect.d.ts +187 -147
- package/dist/esm/internal-content-types/Redirect.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Redirect.js +3 -2
- package/dist/esm/internal-content-types/Redirect.js.map +1 -1
- package/dist/esm/internal-content-types/RobotsRule.d.ts +132 -104
- package/dist/esm/internal-content-types/RobotsRule.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RobotsRule.js +3 -2
- package/dist/esm/internal-content-types/RobotsRule.js.map +1 -1
- package/dist/esm/internal-content-types/Route.d.ts +158 -317
- package/dist/esm/internal-content-types/Route.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Route.js +3 -3
- package/dist/esm/internal-content-types/Route.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.d.ts +211 -165
- package/dist/esm/internal-content-types/RouteLayoutModule.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModule.js +3 -2
- package/dist/esm/internal-content-types/RouteLayoutModule.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts +184 -144
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js +3 -2
- package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js.map +1 -1
- package/dist/esm/internal-content-types/RouteLocaleVariant.d.ts +1215 -0
- package/dist/esm/internal-content-types/RouteLocaleVariant.d.ts.map +1 -0
- package/dist/esm/internal-content-types/RouteLocaleVariant.js +17 -0
- package/dist/esm/internal-content-types/RouteLocaleVariant.js.map +1 -0
- package/dist/esm/internal-content-types/RouteMap.d.ts +185 -144
- package/dist/esm/internal-content-types/RouteMap.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteMap.js +7 -2
- package/dist/esm/internal-content-types/RouteMap.js.map +1 -1
- package/dist/esm/internal-content-types/RouteSettings.d.ts +153 -9306
- package/dist/esm/internal-content-types/RouteSettings.d.ts.map +1 -1
- package/dist/esm/internal-content-types/RouteSettings.js +4 -3
- package/dist/esm/internal-content-types/RouteSettings.js.map +1 -1
- package/dist/esm/internal-content-types/SchemaState.d.ts +84 -66
- package/dist/esm/internal-content-types/SchemaState.d.ts.map +1 -1
- package/dist/esm/internal-content-types/SchemaState.js +6 -2
- package/dist/esm/internal-content-types/SchemaState.js.map +1 -1
- package/dist/esm/internal-content-types/Seo.d.ts +551 -431
- package/dist/esm/internal-content-types/Seo.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Seo.js +6 -4
- package/dist/esm/internal-content-types/Seo.js.map +1 -1
- package/dist/esm/internal-content-types/SeoSettings.d.ts +828 -492
- package/dist/esm/internal-content-types/SeoSettings.d.ts.map +1 -1
- package/dist/esm/internal-content-types/SeoSettings.js +5 -5
- package/dist/esm/internal-content-types/SeoSettings.js.map +1 -1
- package/dist/esm/internal-content-types/Session.d.ts +701 -520
- package/dist/esm/internal-content-types/Session.d.ts.map +1 -1
- package/dist/esm/internal-content-types/Session.js +3 -3
- package/dist/esm/internal-content-types/UserMfa.d.ts +660 -489
- package/dist/esm/internal-content-types/UserMfa.d.ts.map +1 -1
- package/dist/esm/internal-content-types/UserMfa.js +3 -3
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts +818 -611
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts.map +1 -1
- package/dist/esm/internal-content-types/WebAuthnCredential.js +3 -3
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts +738 -549
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts.map +1 -1
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.js +3 -3
- package/dist/esm/internal-content-types/index.d.ts +33 -29
- package/dist/esm/internal-content-types/index.d.ts.map +1 -1
- package/dist/esm/internal-content-types/index.js +33 -29
- package/dist/esm/internal-content-types/index.js.map +1 -1
- package/dist/esm/internal-content-types/syncAdminRole.d.ts +21 -0
- package/dist/esm/internal-content-types/syncAdminRole.d.ts.map +1 -0
- package/dist/esm/internal-content-types/syncAdminRole.js +12 -0
- package/dist/esm/internal-content-types/syncAdminRole.js.map +1 -0
- package/dist/esm/lib/ContentType.d.ts +134 -20
- package/dist/esm/lib/ContentType.d.ts.map +1 -1
- package/dist/esm/lib/ContentType.js +185 -8
- package/dist/esm/lib/ContentType.js.map +1 -1
- package/dist/esm/lib/ManagerRolePolicy.d.ts +5 -0
- package/dist/esm/lib/ManagerRolePolicy.d.ts.map +1 -0
- package/dist/esm/lib/ManagerRolePolicy.js +3 -0
- package/dist/esm/lib/ManagerRolePolicy.js.map +1 -0
- package/dist/esm/lib/Permissions.d.ts +7 -3
- package/dist/esm/lib/Permissions.d.ts.map +1 -1
- package/dist/esm/lib/Permissions.js +70 -76
- package/dist/esm/lib/Permissions.js.map +1 -1
- package/dist/esm/lib/Registry.d.ts +41 -8
- package/dist/esm/lib/Registry.d.ts.map +1 -1
- package/dist/esm/lib/Registry.js +10 -1
- package/dist/esm/lib/Registry.js.map +1 -1
- package/dist/esm/lib/dynamicData.d.ts +88 -0
- package/dist/esm/lib/dynamicData.d.ts.map +1 -0
- package/dist/esm/lib/dynamicData.js +45 -0
- package/dist/esm/lib/dynamicData.js.map +1 -0
- package/dist/esm/lib/errors/AppError.d.ts +1 -1
- package/dist/esm/lib/errors/AppError.js +1 -1
- package/dist/esm/lib/errors/index.d.ts +4 -4
- package/dist/esm/lib/errors/index.js +3 -3
- package/dist/esm/lib/errors/throwAppError.d.ts +1 -1
- package/dist/esm/lib/errors/throwAppError.d.ts.map +1 -1
- package/dist/esm/lib/errors/throwAppError.js +30 -6
- package/dist/esm/lib/errors/throwAppError.js.map +1 -1
- package/dist/esm/lib/fields/Boolean.d.ts +1 -1
- package/dist/esm/lib/fields/Boolean.js +1 -1
- package/dist/esm/lib/fields/ContentReference.d.ts +2 -2
- package/dist/esm/lib/fields/ContentReference.js +2 -2
- package/dist/esm/lib/fields/Date.d.ts +1 -1
- package/dist/esm/lib/fields/Date.js +1 -1
- package/dist/esm/lib/fields/Field.d.ts +42 -13
- package/dist/esm/lib/fields/Field.d.ts.map +1 -1
- package/dist/esm/lib/fields/Field.js +25 -0
- package/dist/esm/lib/fields/Field.js.map +1 -1
- package/dist/esm/lib/fields/Fields.d.ts +13 -13
- package/dist/esm/lib/fields/Fields.js +13 -13
- package/dist/esm/lib/fields/File.d.ts +1 -1
- package/dist/esm/lib/fields/File.js +2 -2
- package/dist/esm/lib/fields/Iterator.d.ts +2 -2
- package/dist/esm/lib/fields/Iterator.js +3 -3
- package/dist/esm/lib/fields/Link.d.ts +1 -1
- package/dist/esm/lib/fields/Link.js +2 -2
- package/dist/esm/lib/fields/List.d.ts +1 -1
- package/dist/esm/lib/fields/List.d.ts.map +1 -1
- package/dist/esm/lib/fields/List.js +26 -5
- package/dist/esm/lib/fields/List.js.map +1 -1
- package/dist/esm/lib/fields/Number.d.ts +1 -1
- package/dist/esm/lib/fields/Number.js +1 -1
- package/dist/esm/lib/fields/Relation.d.ts +3 -3
- package/dist/esm/lib/fields/Relation.js +6 -3
- package/dist/esm/lib/fields/Relation.js.map +1 -1
- package/dist/esm/lib/fields/Select.d.ts +1 -1
- package/dist/esm/lib/fields/Select.js +1 -1
- package/dist/esm/lib/fields/SelfRelation.d.ts +1 -1
- package/dist/esm/lib/fields/SelfRelation.js +2 -2
- package/dist/esm/lib/fields/SimpleList.d.ts +1 -1
- package/dist/esm/lib/fields/SimpleList.js +1 -1
- package/dist/esm/lib/fields/String.d.ts +1 -1
- package/dist/esm/lib/fields/String.js +3 -3
- package/dist/esm/lib/fields/index.d.ts +15 -15
- package/dist/esm/lib/fields/index.js +15 -15
- package/dist/esm/lib/hooks.d.ts +89 -0
- package/dist/esm/lib/hooks.d.ts.map +1 -0
- package/dist/esm/lib/hooks.js +2 -0
- package/dist/esm/lib/hooks.js.map +1 -0
- package/dist/esm/lib/localeVariants.d.ts +20 -0
- package/dist/esm/lib/localeVariants.d.ts.map +1 -0
- package/dist/esm/lib/localeVariants.js +11 -0
- package/dist/esm/lib/localeVariants.js.map +1 -0
- package/dist/esm/lib/routeableContent.d.ts +5 -0
- package/dist/esm/lib/routeableContent.d.ts.map +1 -0
- package/dist/esm/lib/routeableContent.js +11 -0
- package/dist/esm/lib/routeableContent.js.map +1 -0
- package/dist/esm/lib/systemFields.d.ts +3 -0
- package/dist/esm/lib/systemFields.d.ts.map +1 -0
- package/dist/esm/lib/systemFields.js +3 -0
- package/dist/esm/lib/systemFields.js.map +1 -0
- package/dist/esm/lib/types/index.d.ts +4 -2
- package/dist/esm/lib/types/index.d.ts.map +1 -1
- package/dist/esm/lib/utils/getListField.d.ts +1 -1
- package/dist/esm/lib/utils/getSchemas.d.ts +1 -1
- package/dist/esm/lib/utils/getTranslation.d.ts +2 -2
- package/dist/esm/lib/utils/getTranslation.js +1 -1
- package/dist/esm/lib/utils/isTranslatableObject.d.ts +1 -1
- package/dist/esm/lib/utils/translateObject.d.ts +2 -2
- package/dist/esm/lib/utils/translateObject.js +3 -3
- package/dist/esm/literals/definitions.d.ts +1 -1
- package/dist/esm/literals/definitions.js +1 -1
- package/dist/esm/literals/index.d.ts +3 -3
- package/dist/esm/literals/index.js +3 -3
- package/dist/esm/literals/manager.d.ts +1 -1
- package/dist/esm/literals/manager.js +1 -1
- package/dist/esm/manager.d.ts +284 -2880
- package/dist/esm/manager.d.ts.map +1 -1
- package/dist/esm/manager.js +2 -6
- package/dist/esm/manager.js.map +1 -1
- package/dist/esm/media/imageOptimization.d.ts +1 -1
- package/dist/esm/media/imageOptimization.js +2 -2
- package/dist/esm/media/index.d.ts +4 -4
- package/dist/esm/media/index.js +3 -3
- package/dist/esm/media/mediaService.d.ts +3 -1
- package/dist/esm/media/mediaService.d.ts.map +1 -1
- package/dist/esm/media/mediaService.js +2 -1
- package/dist/esm/media/mediaService.js.map +1 -1
- package/dist/esm/orm/backups.js +5 -5
- package/dist/esm/orm/createIndexes.d.ts.map +1 -1
- package/dist/esm/orm/createIndexes.js +25 -9
- package/dist/esm/orm/createIndexes.js.map +1 -1
- package/dist/esm/orm/database.js +3 -3
- package/dist/esm/orm/dbService.d.ts +6 -6
- package/dist/esm/orm/index.d.ts +2 -2
- package/dist/esm/orm/index.d.ts.map +1 -1
- package/dist/esm/orm/index.js +24 -23
- package/dist/esm/orm/index.js.map +1 -1
- package/dist/esm/orm/migrations.d.ts +1 -1
- package/dist/esm/orm/migrations.js +4 -4
- package/dist/esm/orm/mongodbPeer.js +1 -1
- package/dist/esm/orm/operations/clear.d.ts +3 -2
- package/dist/esm/orm/operations/clear.d.ts.map +1 -1
- package/dist/esm/orm/operations/clear.js +3 -4
- package/dist/esm/orm/operations/clear.js.map +1 -1
- package/dist/esm/orm/operations/create.d.ts +5 -4
- package/dist/esm/orm/operations/create.d.ts.map +1 -1
- package/dist/esm/orm/operations/create.js +30 -13
- package/dist/esm/orm/operations/create.js.map +1 -1
- package/dist/esm/orm/operations/delete.d.ts +4 -4
- package/dist/esm/orm/operations/delete.d.ts.map +1 -1
- package/dist/esm/orm/operations/delete.js +25 -5
- package/dist/esm/orm/operations/delete.js.map +1 -1
- package/dist/esm/orm/operations/find.d.ts +2 -2
- package/dist/esm/orm/operations/find.js +3 -3
- package/dist/esm/orm/operations/findDependencies.d.ts +3 -3
- package/dist/esm/orm/operations/findDependencies.d.ts.map +1 -1
- package/dist/esm/orm/operations/findDependencies.js +79 -57
- package/dist/esm/orm/operations/findDependencies.js.map +1 -1
- package/dist/esm/orm/operations/get.d.ts +3 -3
- package/dist/esm/orm/operations/get.js +3 -3
- package/dist/esm/orm/operations/getAll.d.ts +2 -2
- package/dist/esm/orm/operations/getAll.js +2 -2
- package/dist/esm/orm/operations/list.d.ts +2 -2
- package/dist/esm/orm/operations/list.js +3 -3
- package/dist/esm/orm/operations/update.d.ts +6 -5
- package/dist/esm/orm/operations/update.d.ts.map +1 -1
- package/dist/esm/orm/operations/update.js +49 -23
- package/dist/esm/orm/operations/update.js.map +1 -1
- package/dist/esm/orm/operations/updateMany.d.ts +5 -4
- package/dist/esm/orm/operations/updateMany.d.ts.map +1 -1
- package/dist/esm/orm/operations/updateMany.js +27 -10
- package/dist/esm/orm/operations/updateMany.js.map +1 -1
- package/dist/esm/orm/operations/upsert.d.ts +4 -4
- package/dist/esm/orm/operations/upsert.d.ts.map +1 -1
- package/dist/esm/orm/operations/upsert.js +7 -7
- package/dist/esm/orm/operations/upsert.js.map +1 -1
- package/dist/esm/orm/utils/deepDeleteNulls.js +1 -1
- package/dist/esm/orm/utils/parseId.d.ts +1 -1
- package/dist/esm/orm/utils/parseId.js +1 -1
- package/dist/esm/orm/utils/transformObjectIdsToStrings.js +1 -1
- package/dist/esm/orm/utils/transformStringToObjectIds.js +1 -1
- package/dist/esm/orm/versions.d.ts +1 -1
- package/dist/esm/orm/versions.js +7 -7
- package/dist/esm/plugins.d.ts +55 -0
- package/dist/esm/plugins.d.ts.map +1 -0
- package/dist/esm/plugins.js +106 -0
- package/dist/esm/plugins.js.map +1 -0
- package/dist/esm/schemas/manager/auth/accountInfo.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/accountInfo.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/accountInfo.js +1 -0
- package/dist/esm/schemas/manager/auth/accountInfo.js.map +1 -1
- package/dist/esm/schemas/manager/auth/login.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/login.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/login.js +1 -0
- package/dist/esm/schemas/manager/auth/login.js.map +1 -1
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.js +1 -0
- package/dist/esm/schemas/manager/auth/totp/verifyTotp.js.map +1 -1
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.d.ts +1 -0
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.d.ts.map +1 -1
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.js +1 -0
- package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
- package/dist/esm/schemas/manager/comments.d.ts +197 -0
- package/dist/esm/schemas/manager/comments.d.ts.map +1 -0
- package/dist/esm/schemas/manager/comments.js +42 -0
- package/dist/esm/schemas/manager/comments.js.map +1 -0
- package/dist/esm/schemas/manager/contentType.d.ts +6 -0
- package/dist/esm/schemas/manager/contentType.d.ts.map +1 -0
- package/dist/esm/schemas/manager/contentType.js +5 -0
- package/dist/esm/schemas/manager/contentType.js.map +1 -0
- package/dist/esm/schemas/manager/favorites.d.ts +62 -0
- package/dist/esm/schemas/manager/favorites.d.ts.map +1 -0
- package/dist/esm/schemas/manager/favorites.js +31 -0
- package/dist/esm/schemas/manager/favorites.js.map +1 -0
- package/dist/esm/schemas/manager/literals/upsert.js +1 -1
- package/dist/esm/schemas/manager/localeVariants.d.ts +517 -0
- package/dist/esm/schemas/manager/localeVariants.d.ts.map +1 -0
- package/dist/esm/schemas/manager/localeVariants.js +56 -0
- package/dist/esm/schemas/manager/localeVariants.js.map +1 -0
- package/dist/esm/schemas/manager/media/finalizeUpload.d.ts +1 -0
- package/dist/esm/schemas/manager/media/finalizeUpload.d.ts.map +1 -1
- package/dist/esm/schemas/manager/media/finalizeUpload.js +2 -1
- package/dist/esm/schemas/manager/media/finalizeUpload.js.map +1 -1
- package/dist/esm/schemas/manager/media/getMediaUrl.js +2 -2
- package/dist/esm/schemas/manager/media/getMediaUrl.js.map +1 -1
- package/dist/esm/schemas/manager/media/listFolders.js +1 -1
- package/dist/esm/schemas/manager/media/prepareUpload.d.ts +1 -0
- package/dist/esm/schemas/manager/media/prepareUpload.d.ts.map +1 -1
- package/dist/esm/schemas/manager/media/prepareUpload.js +1 -0
- package/dist/esm/schemas/manager/media/prepareUpload.js.map +1 -1
- package/dist/esm/schemas/manager/users.d.ts +26 -0
- package/dist/esm/schemas/manager/users.d.ts.map +1 -0
- package/dist/esm/schemas/manager/users.js +15 -0
- package/dist/esm/schemas/manager/users.js.map +1 -0
- package/dist/esm/schemas/web/page.d.ts +52 -28
- package/dist/esm/schemas/web/page.d.ts.map +1 -1
- package/dist/esm/schemas/web/page.js +1 -1
- package/dist/esm/schemas/web/previewPage.d.ts +36 -20
- package/dist/esm/schemas/web/previewPage.d.ts.map +1 -1
- package/dist/esm/schemas/web/previewPage.js +1 -1
- package/dist/esm/translation/document.d.ts +3 -3
- package/dist/esm/translation/index.d.ts +4 -4
- package/dist/esm/translation/index.js +3 -3
- package/dist/esm/translation/translationService.d.ts +1 -1
- package/dist/esm/web/client.d.ts +1 -1
- package/dist/esm/web/client.js +1 -1
- package/dist/esm/web/index.d.ts +2 -2
- package/dist/esm/web/index.js +2 -2
- package/dist/esm/web/page.d.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -1
- package/dist/cjs/api/proxies/context.js +0 -13
- package/dist/cjs/api/proxies/context.js.map +0 -1
- package/dist/cjs/api/proxies/index.js +0 -26
- package/dist/cjs/api/proxies/index.js.map +0 -1
- package/dist/cjs/internal-content-types/describeField.js +0 -9
- package/dist/cjs/internal-content-types/describeField.js.map +0 -1
- package/dist/esm/api/proxies/context.d.ts +0 -21
- package/dist/esm/api/proxies/context.d.ts.map +0 -1
- package/dist/esm/api/proxies/context.js +0 -9
- package/dist/esm/api/proxies/context.js.map +0 -1
- package/dist/esm/api/proxies/index.d.ts +0 -46
- package/dist/esm/api/proxies/index.d.ts.map +0 -1
- package/dist/esm/api/proxies/index.js +0 -19
- package/dist/esm/api/proxies/index.js.map +0 -1
- package/dist/esm/internal-content-types/describeField.d.ts +0 -4
- package/dist/esm/internal-content-types/describeField.d.ts.map +0 -1
- package/dist/esm/internal-content-types/describeField.js +0 -5
- package/dist/esm/internal-content-types/describeField.js.map +0 -1
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
import ContentType from "../lib/ContentType";
|
|
2
|
-
import type { DataFront, DBOutput } from "../lib/types";
|
|
1
|
+
import ContentType from "../lib/ContentType.js";
|
|
2
|
+
import type { DataFront, DBOutput } from "../lib/types/index.js";
|
|
3
3
|
export declare const Media: ContentType<{
|
|
4
|
-
name: import("
|
|
4
|
+
name: import("../index.js").WithFieldState<{
|
|
5
5
|
kind: "field";
|
|
6
6
|
readonly __fieldTypes?: {
|
|
7
7
|
input: string;
|
|
8
8
|
db: string;
|
|
9
9
|
output: string;
|
|
10
|
-
meta: import("
|
|
11
|
-
state: import("
|
|
10
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
11
|
+
state: import("../index.js").DefaultFieldState;
|
|
12
12
|
} | undefined;
|
|
13
|
-
meta: import("
|
|
14
|
-
state: import("
|
|
13
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
14
|
+
state: import("../index.js").DefaultFieldState;
|
|
15
15
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
16
16
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
17
17
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
18
18
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
19
|
-
getConfig: () => import("
|
|
19
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
20
20
|
getIsRequired: () => false;
|
|
21
21
|
getIsTranslatable: () => false;
|
|
22
22
|
getVisibility: () => "all";
|
|
23
|
+
getIsDynamic: () => true;
|
|
24
|
+
getDescription: () => undefined;
|
|
23
25
|
getCondition: () => undefined;
|
|
24
26
|
} & {
|
|
25
27
|
type: <TThis extends {
|
|
@@ -28,19 +30,21 @@ export declare const Media: ContentType<{
|
|
|
28
30
|
input: string;
|
|
29
31
|
db: string;
|
|
30
32
|
output: string;
|
|
31
|
-
meta: import("
|
|
32
|
-
state: import("
|
|
33
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
34
|
+
state: import("../index.js").FieldState;
|
|
33
35
|
} | undefined;
|
|
34
|
-
meta: import("
|
|
35
|
-
state: import("
|
|
36
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
37
|
+
state: import("../index.js").FieldState;
|
|
36
38
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
37
39
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
38
40
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
39
41
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
40
|
-
getConfig: () => import("
|
|
42
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
41
43
|
getIsRequired: () => boolean;
|
|
42
44
|
getIsTranslatable: () => boolean;
|
|
43
|
-
getVisibility: () => import("
|
|
45
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
46
|
+
getIsDynamic: () => boolean;
|
|
47
|
+
getDescription: () => string | undefined;
|
|
44
48
|
getCondition: () => {
|
|
45
49
|
field: string;
|
|
46
50
|
equals: unknown;
|
|
@@ -78,26 +82,28 @@ export declare const Media: ContentType<{
|
|
|
78
82
|
lte?: number | undefined;
|
|
79
83
|
};
|
|
80
84
|
} | undefined;
|
|
81
|
-
}, NextUi extends import("
|
|
85
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
82
86
|
min: <TThis extends {
|
|
83
87
|
kind: "field";
|
|
84
88
|
readonly __fieldTypes?: {
|
|
85
89
|
input: string;
|
|
86
90
|
db: string;
|
|
87
91
|
output: string;
|
|
88
|
-
meta: import("
|
|
89
|
-
state: import("
|
|
92
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
93
|
+
state: import("../index.js").FieldState;
|
|
90
94
|
} | undefined;
|
|
91
|
-
meta: import("
|
|
92
|
-
state: import("
|
|
95
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
96
|
+
state: import("../index.js").FieldState;
|
|
93
97
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
94
98
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
95
99
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
96
100
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
97
|
-
getConfig: () => import("
|
|
101
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
98
102
|
getIsRequired: () => boolean;
|
|
99
103
|
getIsTranslatable: () => boolean;
|
|
100
|
-
getVisibility: () => import("
|
|
104
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
105
|
+
getIsDynamic: () => boolean;
|
|
106
|
+
getDescription: () => string | undefined;
|
|
101
107
|
getCondition: () => {
|
|
102
108
|
field: string;
|
|
103
109
|
equals: unknown;
|
|
@@ -135,26 +141,28 @@ export declare const Media: ContentType<{
|
|
|
135
141
|
lte?: number | undefined;
|
|
136
142
|
};
|
|
137
143
|
} | undefined;
|
|
138
|
-
}>(this: TThis, length: number) => import("
|
|
144
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
139
145
|
max: <TThis extends {
|
|
140
146
|
kind: "field";
|
|
141
147
|
readonly __fieldTypes?: {
|
|
142
148
|
input: string;
|
|
143
149
|
db: string;
|
|
144
150
|
output: string;
|
|
145
|
-
meta: import("
|
|
146
|
-
state: import("
|
|
151
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
152
|
+
state: import("../index.js").FieldState;
|
|
147
153
|
} | undefined;
|
|
148
|
-
meta: import("
|
|
149
|
-
state: import("
|
|
154
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
155
|
+
state: import("../index.js").FieldState;
|
|
150
156
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
151
157
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
152
158
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
153
159
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
154
|
-
getConfig: () => import("
|
|
160
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
155
161
|
getIsRequired: () => boolean;
|
|
156
162
|
getIsTranslatable: () => boolean;
|
|
157
|
-
getVisibility: () => import("
|
|
163
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
164
|
+
getIsDynamic: () => boolean;
|
|
165
|
+
getDescription: () => string | undefined;
|
|
158
166
|
getCondition: () => {
|
|
159
167
|
field: string;
|
|
160
168
|
equals: unknown;
|
|
@@ -192,29 +200,31 @@ export declare const Media: ContentType<{
|
|
|
192
200
|
lte?: number | undefined;
|
|
193
201
|
};
|
|
194
202
|
} | undefined;
|
|
195
|
-
}>(this: TThis, length: number) => import("
|
|
196
|
-
}, import("
|
|
197
|
-
title: import("
|
|
198
|
-
alt: import("
|
|
199
|
-
originalName: import("
|
|
203
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
204
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
205
|
+
title: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
206
|
+
alt: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
207
|
+
originalName: import("../index.js").WithFieldState<{
|
|
200
208
|
kind: "field";
|
|
201
209
|
readonly __fieldTypes?: {
|
|
202
210
|
input: string;
|
|
203
211
|
db: string;
|
|
204
212
|
output: string;
|
|
205
|
-
meta: import("
|
|
206
|
-
state: import("
|
|
213
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
214
|
+
state: import("../index.js").DefaultFieldState;
|
|
207
215
|
} | undefined;
|
|
208
|
-
meta: import("
|
|
209
|
-
state: import("
|
|
216
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
217
|
+
state: import("../index.js").DefaultFieldState;
|
|
210
218
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
211
219
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
212
220
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
213
221
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
214
|
-
getConfig: () => import("
|
|
222
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
215
223
|
getIsRequired: () => false;
|
|
216
224
|
getIsTranslatable: () => false;
|
|
217
225
|
getVisibility: () => "all";
|
|
226
|
+
getIsDynamic: () => true;
|
|
227
|
+
getDescription: () => undefined;
|
|
218
228
|
getCondition: () => undefined;
|
|
219
229
|
} & {
|
|
220
230
|
type: <TThis extends {
|
|
@@ -223,19 +233,21 @@ export declare const Media: ContentType<{
|
|
|
223
233
|
input: string;
|
|
224
234
|
db: string;
|
|
225
235
|
output: string;
|
|
226
|
-
meta: import("
|
|
227
|
-
state: import("
|
|
236
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
237
|
+
state: import("../index.js").FieldState;
|
|
228
238
|
} | undefined;
|
|
229
|
-
meta: import("
|
|
230
|
-
state: import("
|
|
239
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
240
|
+
state: import("../index.js").FieldState;
|
|
231
241
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
232
242
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
233
243
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
234
244
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
235
|
-
getConfig: () => import("
|
|
245
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
236
246
|
getIsRequired: () => boolean;
|
|
237
247
|
getIsTranslatable: () => boolean;
|
|
238
|
-
getVisibility: () => import("
|
|
248
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
249
|
+
getIsDynamic: () => boolean;
|
|
250
|
+
getDescription: () => string | undefined;
|
|
239
251
|
getCondition: () => {
|
|
240
252
|
field: string;
|
|
241
253
|
equals: unknown;
|
|
@@ -273,26 +285,28 @@ export declare const Media: ContentType<{
|
|
|
273
285
|
lte?: number | undefined;
|
|
274
286
|
};
|
|
275
287
|
} | undefined;
|
|
276
|
-
}, NextUi extends import("
|
|
288
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
277
289
|
min: <TThis extends {
|
|
278
290
|
kind: "field";
|
|
279
291
|
readonly __fieldTypes?: {
|
|
280
292
|
input: string;
|
|
281
293
|
db: string;
|
|
282
294
|
output: string;
|
|
283
|
-
meta: import("
|
|
284
|
-
state: import("
|
|
295
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
296
|
+
state: import("../index.js").FieldState;
|
|
285
297
|
} | undefined;
|
|
286
|
-
meta: import("
|
|
287
|
-
state: import("
|
|
298
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
299
|
+
state: import("../index.js").FieldState;
|
|
288
300
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
289
301
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
290
302
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
291
303
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
292
|
-
getConfig: () => import("
|
|
304
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
293
305
|
getIsRequired: () => boolean;
|
|
294
306
|
getIsTranslatable: () => boolean;
|
|
295
|
-
getVisibility: () => import("
|
|
307
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
308
|
+
getIsDynamic: () => boolean;
|
|
309
|
+
getDescription: () => string | undefined;
|
|
296
310
|
getCondition: () => {
|
|
297
311
|
field: string;
|
|
298
312
|
equals: unknown;
|
|
@@ -330,26 +344,28 @@ export declare const Media: ContentType<{
|
|
|
330
344
|
lte?: number | undefined;
|
|
331
345
|
};
|
|
332
346
|
} | undefined;
|
|
333
|
-
}>(this: TThis, length: number) => import("
|
|
347
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
334
348
|
max: <TThis extends {
|
|
335
349
|
kind: "field";
|
|
336
350
|
readonly __fieldTypes?: {
|
|
337
351
|
input: string;
|
|
338
352
|
db: string;
|
|
339
353
|
output: string;
|
|
340
|
-
meta: import("
|
|
341
|
-
state: import("
|
|
354
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
355
|
+
state: import("../index.js").FieldState;
|
|
342
356
|
} | undefined;
|
|
343
|
-
meta: import("
|
|
344
|
-
state: import("
|
|
357
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
358
|
+
state: import("../index.js").FieldState;
|
|
345
359
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
346
360
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
347
361
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
348
362
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
349
|
-
getConfig: () => import("
|
|
363
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
350
364
|
getIsRequired: () => boolean;
|
|
351
365
|
getIsTranslatable: () => boolean;
|
|
352
|
-
getVisibility: () => import("
|
|
366
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
367
|
+
getIsDynamic: () => boolean;
|
|
368
|
+
getDescription: () => string | undefined;
|
|
353
369
|
getCondition: () => {
|
|
354
370
|
field: string;
|
|
355
371
|
equals: unknown;
|
|
@@ -387,27 +403,29 @@ export declare const Media: ContentType<{
|
|
|
387
403
|
lte?: number | undefined;
|
|
388
404
|
};
|
|
389
405
|
} | undefined;
|
|
390
|
-
}>(this: TThis, length: number) => import("
|
|
391
|
-
}, import("
|
|
392
|
-
key: import("
|
|
406
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
407
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
408
|
+
key: import("../index.js").WithFieldState<{
|
|
393
409
|
kind: "field";
|
|
394
410
|
readonly __fieldTypes?: {
|
|
395
411
|
input: string;
|
|
396
412
|
db: string;
|
|
397
413
|
output: string;
|
|
398
|
-
meta: import("
|
|
399
|
-
state: import("
|
|
414
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
415
|
+
state: import("../index.js").DefaultFieldState;
|
|
400
416
|
} | undefined;
|
|
401
|
-
meta: import("
|
|
402
|
-
state: import("
|
|
417
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
418
|
+
state: import("../index.js").DefaultFieldState;
|
|
403
419
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
404
420
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
405
421
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
406
422
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
407
|
-
getConfig: () => import("
|
|
423
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
408
424
|
getIsRequired: () => false;
|
|
409
425
|
getIsTranslatable: () => false;
|
|
410
426
|
getVisibility: () => "all";
|
|
427
|
+
getIsDynamic: () => true;
|
|
428
|
+
getDescription: () => undefined;
|
|
411
429
|
getCondition: () => undefined;
|
|
412
430
|
} & {
|
|
413
431
|
type: <TThis extends {
|
|
@@ -416,19 +434,21 @@ export declare const Media: ContentType<{
|
|
|
416
434
|
input: string;
|
|
417
435
|
db: string;
|
|
418
436
|
output: string;
|
|
419
|
-
meta: import("
|
|
420
|
-
state: import("
|
|
437
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
438
|
+
state: import("../index.js").FieldState;
|
|
421
439
|
} | undefined;
|
|
422
|
-
meta: import("
|
|
423
|
-
state: import("
|
|
440
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
441
|
+
state: import("../index.js").FieldState;
|
|
424
442
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
425
443
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
426
444
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
427
445
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
428
|
-
getConfig: () => import("
|
|
446
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
429
447
|
getIsRequired: () => boolean;
|
|
430
448
|
getIsTranslatable: () => boolean;
|
|
431
|
-
getVisibility: () => import("
|
|
449
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
450
|
+
getIsDynamic: () => boolean;
|
|
451
|
+
getDescription: () => string | undefined;
|
|
432
452
|
getCondition: () => {
|
|
433
453
|
field: string;
|
|
434
454
|
equals: unknown;
|
|
@@ -466,26 +486,28 @@ export declare const Media: ContentType<{
|
|
|
466
486
|
lte?: number | undefined;
|
|
467
487
|
};
|
|
468
488
|
} | undefined;
|
|
469
|
-
}, NextUi extends import("
|
|
489
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
470
490
|
min: <TThis extends {
|
|
471
491
|
kind: "field";
|
|
472
492
|
readonly __fieldTypes?: {
|
|
473
493
|
input: string;
|
|
474
494
|
db: string;
|
|
475
495
|
output: string;
|
|
476
|
-
meta: import("
|
|
477
|
-
state: import("
|
|
496
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
497
|
+
state: import("../index.js").FieldState;
|
|
478
498
|
} | undefined;
|
|
479
|
-
meta: import("
|
|
480
|
-
state: import("
|
|
499
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
500
|
+
state: import("../index.js").FieldState;
|
|
481
501
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
482
502
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
483
503
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
484
504
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
485
|
-
getConfig: () => import("
|
|
505
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
486
506
|
getIsRequired: () => boolean;
|
|
487
507
|
getIsTranslatable: () => boolean;
|
|
488
|
-
getVisibility: () => import("
|
|
508
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
509
|
+
getIsDynamic: () => boolean;
|
|
510
|
+
getDescription: () => string | undefined;
|
|
489
511
|
getCondition: () => {
|
|
490
512
|
field: string;
|
|
491
513
|
equals: unknown;
|
|
@@ -523,26 +545,28 @@ export declare const Media: ContentType<{
|
|
|
523
545
|
lte?: number | undefined;
|
|
524
546
|
};
|
|
525
547
|
} | undefined;
|
|
526
|
-
}>(this: TThis, length: number) => import("
|
|
548
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
527
549
|
max: <TThis extends {
|
|
528
550
|
kind: "field";
|
|
529
551
|
readonly __fieldTypes?: {
|
|
530
552
|
input: string;
|
|
531
553
|
db: string;
|
|
532
554
|
output: string;
|
|
533
|
-
meta: import("
|
|
534
|
-
state: import("
|
|
555
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
556
|
+
state: import("../index.js").FieldState;
|
|
535
557
|
} | undefined;
|
|
536
|
-
meta: import("
|
|
537
|
-
state: import("
|
|
558
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
559
|
+
state: import("../index.js").FieldState;
|
|
538
560
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
539
561
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
540
562
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
541
563
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
542
|
-
getConfig: () => import("
|
|
564
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
543
565
|
getIsRequired: () => boolean;
|
|
544
566
|
getIsTranslatable: () => boolean;
|
|
545
|
-
getVisibility: () => import("
|
|
567
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
568
|
+
getIsDynamic: () => boolean;
|
|
569
|
+
getDescription: () => string | undefined;
|
|
546
570
|
getCondition: () => {
|
|
547
571
|
field: string;
|
|
548
572
|
equals: unknown;
|
|
@@ -580,27 +604,29 @@ export declare const Media: ContentType<{
|
|
|
580
604
|
lte?: number | undefined;
|
|
581
605
|
};
|
|
582
606
|
} | undefined;
|
|
583
|
-
}>(this: TThis, length: number) => import("
|
|
584
|
-
}, import("
|
|
585
|
-
access: import("
|
|
607
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
608
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
609
|
+
access: import("../index.js").WithFieldState<{
|
|
586
610
|
kind: "field";
|
|
587
611
|
readonly __fieldTypes?: {
|
|
588
612
|
input: "public" | "private";
|
|
589
613
|
db: "public" | "private";
|
|
590
614
|
output: "public" | "private";
|
|
591
|
-
meta: import("
|
|
592
|
-
state: import("
|
|
615
|
+
meta: import("../index.js").SelectMeta<readonly ["public", "private"], false>;
|
|
616
|
+
state: import("../index.js").DefaultFieldState;
|
|
593
617
|
} | undefined;
|
|
594
|
-
meta: import("
|
|
595
|
-
state: import("
|
|
618
|
+
meta: import("../index.js").SelectMeta<readonly ["public", "private"], false>;
|
|
619
|
+
state: import("../index.js").DefaultFieldState;
|
|
596
620
|
toZod: () => import("zod").ZodType<"public" | "private", unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private", unknown>>;
|
|
597
621
|
getInputSchema: () => import("zod").ZodType<"public" | "private" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private" | null | undefined, unknown>>;
|
|
598
622
|
getSchema: () => import("zod").ZodType<"public" | "private" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private" | undefined, unknown>>;
|
|
599
623
|
getOutputSchema: () => import("zod").ZodType<"public" | "private" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private" | undefined, unknown>>;
|
|
600
|
-
getConfig: () => import("
|
|
624
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["public", "private"], false>;
|
|
601
625
|
getIsRequired: () => false;
|
|
602
626
|
getIsTranslatable: () => false;
|
|
603
627
|
getVisibility: () => "all";
|
|
628
|
+
getIsDynamic: () => true;
|
|
629
|
+
getDescription: () => undefined;
|
|
604
630
|
getCondition: () => undefined;
|
|
605
631
|
} & {
|
|
606
632
|
multiple: <TThis extends {
|
|
@@ -609,19 +635,21 @@ export declare const Media: ContentType<{
|
|
|
609
635
|
input: "public" | "private";
|
|
610
636
|
db: "public" | "private";
|
|
611
637
|
output: "public" | "private";
|
|
612
|
-
meta: import("
|
|
613
|
-
state: import("
|
|
638
|
+
meta: import("../index.js").SelectMeta<readonly ["public", "private"], false>;
|
|
639
|
+
state: import("../index.js").FieldState;
|
|
614
640
|
} | undefined;
|
|
615
|
-
meta: import("
|
|
616
|
-
state: import("
|
|
641
|
+
meta: import("../index.js").SelectMeta<readonly ["public", "private"], false>;
|
|
642
|
+
state: import("../index.js").FieldState;
|
|
617
643
|
toZod: () => import("zod").ZodType<"public" | "private", unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private", unknown>>;
|
|
618
644
|
getInputSchema: () => import("zod").ZodType<"public" | "private" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private" | null | undefined, unknown>>;
|
|
619
645
|
getSchema: () => import("zod").ZodType<"public" | "private" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private" | undefined, unknown>>;
|
|
620
646
|
getOutputSchema: () => import("zod").ZodType<"public" | "private" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"public" | "private" | undefined, unknown>>;
|
|
621
|
-
getConfig: () => import("
|
|
647
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["public", "private"], false>;
|
|
622
648
|
getIsRequired: () => boolean;
|
|
623
649
|
getIsTranslatable: () => boolean;
|
|
624
|
-
getVisibility: () => import("
|
|
650
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
651
|
+
getIsDynamic: () => boolean;
|
|
652
|
+
getDescription: () => string | undefined;
|
|
625
653
|
getCondition: () => {
|
|
626
654
|
field: string;
|
|
627
655
|
equals: unknown;
|
|
@@ -659,27 +687,29 @@ export declare const Media: ContentType<{
|
|
|
659
687
|
lte?: number | undefined;
|
|
660
688
|
};
|
|
661
689
|
} | undefined;
|
|
662
|
-
}>(this: TThis) => import("
|
|
663
|
-
}, import("
|
|
664
|
-
mime: import("
|
|
690
|
+
}>(this: TThis) => import("../index.js").SelectField<readonly ["public", "private"], true, import("../index.js").FieldStateOf<TThis>>;
|
|
691
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
692
|
+
mime: import("../index.js").WithFieldState<{
|
|
665
693
|
kind: "field";
|
|
666
694
|
readonly __fieldTypes?: {
|
|
667
695
|
input: string;
|
|
668
696
|
db: string;
|
|
669
697
|
output: string;
|
|
670
|
-
meta: import("
|
|
671
|
-
state: import("
|
|
698
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
699
|
+
state: import("../index.js").DefaultFieldState;
|
|
672
700
|
} | undefined;
|
|
673
|
-
meta: import("
|
|
674
|
-
state: import("
|
|
701
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
702
|
+
state: import("../index.js").DefaultFieldState;
|
|
675
703
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
676
704
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
677
705
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
678
706
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
679
|
-
getConfig: () => import("
|
|
707
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
680
708
|
getIsRequired: () => false;
|
|
681
709
|
getIsTranslatable: () => false;
|
|
682
710
|
getVisibility: () => "all";
|
|
711
|
+
getIsDynamic: () => true;
|
|
712
|
+
getDescription: () => undefined;
|
|
683
713
|
getCondition: () => undefined;
|
|
684
714
|
} & {
|
|
685
715
|
type: <TThis extends {
|
|
@@ -688,19 +718,21 @@ export declare const Media: ContentType<{
|
|
|
688
718
|
input: string;
|
|
689
719
|
db: string;
|
|
690
720
|
output: string;
|
|
691
|
-
meta: import("
|
|
692
|
-
state: import("
|
|
721
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
722
|
+
state: import("../index.js").FieldState;
|
|
693
723
|
} | undefined;
|
|
694
|
-
meta: import("
|
|
695
|
-
state: import("
|
|
724
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
725
|
+
state: import("../index.js").FieldState;
|
|
696
726
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
697
727
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
698
728
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
699
729
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
700
|
-
getConfig: () => import("
|
|
730
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
701
731
|
getIsRequired: () => boolean;
|
|
702
732
|
getIsTranslatable: () => boolean;
|
|
703
|
-
getVisibility: () => import("
|
|
733
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
734
|
+
getIsDynamic: () => boolean;
|
|
735
|
+
getDescription: () => string | undefined;
|
|
704
736
|
getCondition: () => {
|
|
705
737
|
field: string;
|
|
706
738
|
equals: unknown;
|
|
@@ -738,26 +770,28 @@ export declare const Media: ContentType<{
|
|
|
738
770
|
lte?: number | undefined;
|
|
739
771
|
};
|
|
740
772
|
} | undefined;
|
|
741
|
-
}, NextUi extends import("
|
|
773
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
742
774
|
min: <TThis extends {
|
|
743
775
|
kind: "field";
|
|
744
776
|
readonly __fieldTypes?: {
|
|
745
777
|
input: string;
|
|
746
778
|
db: string;
|
|
747
779
|
output: string;
|
|
748
|
-
meta: import("
|
|
749
|
-
state: import("
|
|
780
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
781
|
+
state: import("../index.js").FieldState;
|
|
750
782
|
} | undefined;
|
|
751
|
-
meta: import("
|
|
752
|
-
state: import("
|
|
783
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
784
|
+
state: import("../index.js").FieldState;
|
|
753
785
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
754
786
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
755
787
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
756
788
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
757
|
-
getConfig: () => import("
|
|
789
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
758
790
|
getIsRequired: () => boolean;
|
|
759
791
|
getIsTranslatable: () => boolean;
|
|
760
|
-
getVisibility: () => import("
|
|
792
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
793
|
+
getIsDynamic: () => boolean;
|
|
794
|
+
getDescription: () => string | undefined;
|
|
761
795
|
getCondition: () => {
|
|
762
796
|
field: string;
|
|
763
797
|
equals: unknown;
|
|
@@ -795,26 +829,28 @@ export declare const Media: ContentType<{
|
|
|
795
829
|
lte?: number | undefined;
|
|
796
830
|
};
|
|
797
831
|
} | undefined;
|
|
798
|
-
}>(this: TThis, length: number) => import("
|
|
832
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
799
833
|
max: <TThis extends {
|
|
800
834
|
kind: "field";
|
|
801
835
|
readonly __fieldTypes?: {
|
|
802
836
|
input: string;
|
|
803
837
|
db: string;
|
|
804
838
|
output: string;
|
|
805
|
-
meta: import("
|
|
806
|
-
state: import("
|
|
839
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
840
|
+
state: import("../index.js").FieldState;
|
|
807
841
|
} | undefined;
|
|
808
|
-
meta: import("
|
|
809
|
-
state: import("
|
|
842
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
843
|
+
state: import("../index.js").FieldState;
|
|
810
844
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
811
845
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
812
846
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
813
847
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
814
|
-
getConfig: () => import("
|
|
848
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
815
849
|
getIsRequired: () => boolean;
|
|
816
850
|
getIsTranslatable: () => boolean;
|
|
817
|
-
getVisibility: () => import("
|
|
851
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
852
|
+
getIsDynamic: () => boolean;
|
|
853
|
+
getDescription: () => string | undefined;
|
|
818
854
|
getCondition: () => {
|
|
819
855
|
field: string;
|
|
820
856
|
equals: unknown;
|
|
@@ -852,43 +888,45 @@ export declare const Media: ContentType<{
|
|
|
852
888
|
lte?: number | undefined;
|
|
853
889
|
};
|
|
854
890
|
} | undefined;
|
|
855
|
-
}>(this: TThis, length: number) => import("
|
|
856
|
-
}, import("
|
|
857
|
-
extension: import("
|
|
858
|
-
size: import("
|
|
859
|
-
etag: import("
|
|
860
|
-
url: import("
|
|
861
|
-
previewKey: import("
|
|
862
|
-
previewUrl: import("
|
|
863
|
-
previewMime: import("
|
|
864
|
-
sizes: import("
|
|
865
|
-
width: import("
|
|
866
|
-
height: import("
|
|
867
|
-
orientation: import("
|
|
868
|
-
optimized: import("
|
|
869
|
-
optimizedFormat: import("
|
|
870
|
-
optimizationQuality: import("
|
|
871
|
-
originalSize: import("
|
|
872
|
-
folder: import("
|
|
873
|
-
name: import("
|
|
891
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
892
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
893
|
+
extension: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
894
|
+
size: import("../index.js").NumberField<import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
895
|
+
etag: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
896
|
+
url: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
897
|
+
previewKey: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
898
|
+
previewUrl: import("../index.js").StringField<"Url", import("../index.js").DefaultFieldState>;
|
|
899
|
+
previewMime: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
900
|
+
sizes: import("../index.js").SimpleListField<import("../index.js").StringField<"RichText", import("../index.js").DefaultFieldState>, import("../index.js").DefaultFieldState>;
|
|
901
|
+
width: import("../index.js").NumberField<import("../index.js").DefaultFieldState>;
|
|
902
|
+
height: import("../index.js").NumberField<import("../index.js").DefaultFieldState>;
|
|
903
|
+
orientation: import("../index.js").SelectField<readonly ["portrait", "landscape"], false, import("../index.js").DefaultFieldState>;
|
|
904
|
+
optimized: import("../index.js").BooleanField<import("../index.js").DefaultFieldState>;
|
|
905
|
+
optimizedFormat: import("../index.js").StringField<"Text", import("../index.js").DefaultFieldState>;
|
|
906
|
+
optimizationQuality: import("../index.js").NumberField<import("../index.js").DefaultFieldState>;
|
|
907
|
+
originalSize: import("../index.js").NumberField<import("../index.js").DefaultFieldState>;
|
|
908
|
+
folder: import("../index.js").RelationField<ContentType<{
|
|
909
|
+
name: import("../index.js").WithFieldState<{
|
|
874
910
|
kind: "field";
|
|
875
911
|
readonly __fieldTypes?: {
|
|
876
912
|
input: string;
|
|
877
913
|
db: string;
|
|
878
914
|
output: string;
|
|
879
|
-
meta: import("
|
|
880
|
-
state: import("
|
|
915
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
916
|
+
state: import("../index.js").DefaultFieldState;
|
|
881
917
|
} | undefined;
|
|
882
|
-
meta: import("
|
|
883
|
-
state: import("
|
|
918
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
919
|
+
state: import("../index.js").DefaultFieldState;
|
|
884
920
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
885
921
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
886
922
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
887
923
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
888
|
-
getConfig: () => import("
|
|
924
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
889
925
|
getIsRequired: () => false;
|
|
890
926
|
getIsTranslatable: () => false;
|
|
891
927
|
getVisibility: () => "all";
|
|
928
|
+
getIsDynamic: () => true;
|
|
929
|
+
getDescription: () => undefined;
|
|
892
930
|
getCondition: () => undefined;
|
|
893
931
|
} & {
|
|
894
932
|
type: <TThis extends {
|
|
@@ -897,19 +935,21 @@ export declare const Media: ContentType<{
|
|
|
897
935
|
input: string;
|
|
898
936
|
db: string;
|
|
899
937
|
output: string;
|
|
900
|
-
meta: import("
|
|
901
|
-
state: import("
|
|
938
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
939
|
+
state: import("../index.js").FieldState;
|
|
902
940
|
} | undefined;
|
|
903
|
-
meta: import("
|
|
904
|
-
state: import("
|
|
941
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
942
|
+
state: import("../index.js").FieldState;
|
|
905
943
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
906
944
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
907
945
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
908
946
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
909
|
-
getConfig: () => import("
|
|
947
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
910
948
|
getIsRequired: () => boolean;
|
|
911
949
|
getIsTranslatable: () => boolean;
|
|
912
|
-
getVisibility: () => import("
|
|
950
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
951
|
+
getIsDynamic: () => boolean;
|
|
952
|
+
getDescription: () => string | undefined;
|
|
913
953
|
getCondition: () => {
|
|
914
954
|
field: string;
|
|
915
955
|
equals: unknown;
|
|
@@ -947,26 +987,28 @@ export declare const Media: ContentType<{
|
|
|
947
987
|
lte?: number | undefined;
|
|
948
988
|
};
|
|
949
989
|
} | undefined;
|
|
950
|
-
}, NextUi extends import("
|
|
990
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
951
991
|
min: <TThis extends {
|
|
952
992
|
kind: "field";
|
|
953
993
|
readonly __fieldTypes?: {
|
|
954
994
|
input: string;
|
|
955
995
|
db: string;
|
|
956
996
|
output: string;
|
|
957
|
-
meta: import("
|
|
958
|
-
state: import("
|
|
997
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
998
|
+
state: import("../index.js").FieldState;
|
|
959
999
|
} | undefined;
|
|
960
|
-
meta: import("
|
|
961
|
-
state: import("
|
|
1000
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1001
|
+
state: import("../index.js").FieldState;
|
|
962
1002
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
963
1003
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
964
1004
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
965
1005
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
966
|
-
getConfig: () => import("
|
|
1006
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
967
1007
|
getIsRequired: () => boolean;
|
|
968
1008
|
getIsTranslatable: () => boolean;
|
|
969
|
-
getVisibility: () => import("
|
|
1009
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1010
|
+
getIsDynamic: () => boolean;
|
|
1011
|
+
getDescription: () => string | undefined;
|
|
970
1012
|
getCondition: () => {
|
|
971
1013
|
field: string;
|
|
972
1014
|
equals: unknown;
|
|
@@ -1004,26 +1046,28 @@ export declare const Media: ContentType<{
|
|
|
1004
1046
|
lte?: number | undefined;
|
|
1005
1047
|
};
|
|
1006
1048
|
} | undefined;
|
|
1007
|
-
}>(this: TThis, length: number) => import("
|
|
1049
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1008
1050
|
max: <TThis extends {
|
|
1009
1051
|
kind: "field";
|
|
1010
1052
|
readonly __fieldTypes?: {
|
|
1011
1053
|
input: string;
|
|
1012
1054
|
db: string;
|
|
1013
1055
|
output: string;
|
|
1014
|
-
meta: import("
|
|
1015
|
-
state: import("
|
|
1056
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1057
|
+
state: import("../index.js").FieldState;
|
|
1016
1058
|
} | undefined;
|
|
1017
|
-
meta: import("
|
|
1018
|
-
state: import("
|
|
1059
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1060
|
+
state: import("../index.js").FieldState;
|
|
1019
1061
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1020
1062
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1021
1063
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1022
1064
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1023
|
-
getConfig: () => import("
|
|
1065
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1024
1066
|
getIsRequired: () => boolean;
|
|
1025
1067
|
getIsTranslatable: () => boolean;
|
|
1026
|
-
getVisibility: () => import("
|
|
1068
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1069
|
+
getIsDynamic: () => boolean;
|
|
1070
|
+
getDescription: () => string | undefined;
|
|
1027
1071
|
getCondition: () => {
|
|
1028
1072
|
field: string;
|
|
1029
1073
|
equals: unknown;
|
|
@@ -1061,27 +1105,29 @@ export declare const Media: ContentType<{
|
|
|
1061
1105
|
lte?: number | undefined;
|
|
1062
1106
|
};
|
|
1063
1107
|
} | undefined;
|
|
1064
|
-
}>(this: TThis, length: number) => import("
|
|
1065
|
-
}, import("
|
|
1066
|
-
slug: import("
|
|
1108
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1109
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1110
|
+
slug: import("../index.js").WithFieldState<{
|
|
1067
1111
|
kind: "field";
|
|
1068
1112
|
readonly __fieldTypes?: {
|
|
1069
1113
|
input: string;
|
|
1070
1114
|
db: string;
|
|
1071
1115
|
output: string;
|
|
1072
|
-
meta: import("
|
|
1073
|
-
state: import("
|
|
1116
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1117
|
+
state: import("../index.js").DefaultFieldState;
|
|
1074
1118
|
} | undefined;
|
|
1075
|
-
meta: import("
|
|
1076
|
-
state: import("
|
|
1119
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1120
|
+
state: import("../index.js").DefaultFieldState;
|
|
1077
1121
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1078
1122
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1079
1123
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1080
1124
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1081
|
-
getConfig: () => import("
|
|
1125
|
+
getConfig: () => import("../index.js").StringMeta<"Slug">;
|
|
1082
1126
|
getIsRequired: () => false;
|
|
1083
1127
|
getIsTranslatable: () => false;
|
|
1084
1128
|
getVisibility: () => "all";
|
|
1129
|
+
getIsDynamic: () => true;
|
|
1130
|
+
getDescription: () => undefined;
|
|
1085
1131
|
getCondition: () => undefined;
|
|
1086
1132
|
} & {
|
|
1087
1133
|
type: <TThis extends {
|
|
@@ -1090,19 +1136,21 @@ export declare const Media: ContentType<{
|
|
|
1090
1136
|
input: string;
|
|
1091
1137
|
db: string;
|
|
1092
1138
|
output: string;
|
|
1093
|
-
meta: import("
|
|
1094
|
-
state: import("
|
|
1139
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1140
|
+
state: import("../index.js").FieldState;
|
|
1095
1141
|
} | undefined;
|
|
1096
|
-
meta: import("
|
|
1097
|
-
state: import("
|
|
1142
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1143
|
+
state: import("../index.js").FieldState;
|
|
1098
1144
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1099
1145
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1100
1146
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1101
1147
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1102
|
-
getConfig: () => import("
|
|
1148
|
+
getConfig: () => import("../index.js").StringMeta<"Slug">;
|
|
1103
1149
|
getIsRequired: () => boolean;
|
|
1104
1150
|
getIsTranslatable: () => boolean;
|
|
1105
|
-
getVisibility: () => import("
|
|
1151
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1152
|
+
getIsDynamic: () => boolean;
|
|
1153
|
+
getDescription: () => string | undefined;
|
|
1106
1154
|
getCondition: () => {
|
|
1107
1155
|
field: string;
|
|
1108
1156
|
equals: unknown;
|
|
@@ -1140,26 +1188,28 @@ export declare const Media: ContentType<{
|
|
|
1140
1188
|
lte?: number | undefined;
|
|
1141
1189
|
};
|
|
1142
1190
|
} | undefined;
|
|
1143
|
-
}, NextUi extends import("
|
|
1191
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1144
1192
|
min: <TThis extends {
|
|
1145
1193
|
kind: "field";
|
|
1146
1194
|
readonly __fieldTypes?: {
|
|
1147
1195
|
input: string;
|
|
1148
1196
|
db: string;
|
|
1149
1197
|
output: string;
|
|
1150
|
-
meta: import("
|
|
1151
|
-
state: import("
|
|
1198
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1199
|
+
state: import("../index.js").FieldState;
|
|
1152
1200
|
} | undefined;
|
|
1153
|
-
meta: import("
|
|
1154
|
-
state: import("
|
|
1201
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1202
|
+
state: import("../index.js").FieldState;
|
|
1155
1203
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1156
1204
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1157
1205
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1158
1206
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1159
|
-
getConfig: () => import("
|
|
1207
|
+
getConfig: () => import("../index.js").StringMeta<"Slug">;
|
|
1160
1208
|
getIsRequired: () => boolean;
|
|
1161
1209
|
getIsTranslatable: () => boolean;
|
|
1162
|
-
getVisibility: () => import("
|
|
1210
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1211
|
+
getIsDynamic: () => boolean;
|
|
1212
|
+
getDescription: () => string | undefined;
|
|
1163
1213
|
getCondition: () => {
|
|
1164
1214
|
field: string;
|
|
1165
1215
|
equals: unknown;
|
|
@@ -1197,26 +1247,28 @@ export declare const Media: ContentType<{
|
|
|
1197
1247
|
lte?: number | undefined;
|
|
1198
1248
|
};
|
|
1199
1249
|
} | undefined;
|
|
1200
|
-
}>(this: TThis, length: number) => import("
|
|
1250
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Slug", import("../index.js").FieldStateOf<TThis>>;
|
|
1201
1251
|
max: <TThis extends {
|
|
1202
1252
|
kind: "field";
|
|
1203
1253
|
readonly __fieldTypes?: {
|
|
1204
1254
|
input: string;
|
|
1205
1255
|
db: string;
|
|
1206
1256
|
output: string;
|
|
1207
|
-
meta: import("
|
|
1208
|
-
state: import("
|
|
1257
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1258
|
+
state: import("../index.js").FieldState;
|
|
1209
1259
|
} | undefined;
|
|
1210
|
-
meta: import("
|
|
1211
|
-
state: import("
|
|
1260
|
+
meta: import("../index.js").StringMeta<"Slug">;
|
|
1261
|
+
state: import("../index.js").FieldState;
|
|
1212
1262
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1213
1263
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1214
1264
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1215
1265
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1216
|
-
getConfig: () => import("
|
|
1266
|
+
getConfig: () => import("../index.js").StringMeta<"Slug">;
|
|
1217
1267
|
getIsRequired: () => boolean;
|
|
1218
1268
|
getIsTranslatable: () => boolean;
|
|
1219
|
-
getVisibility: () => import("
|
|
1269
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1270
|
+
getIsDynamic: () => boolean;
|
|
1271
|
+
getDescription: () => string | undefined;
|
|
1220
1272
|
getCondition: () => {
|
|
1221
1273
|
field: string;
|
|
1222
1274
|
equals: unknown;
|
|
@@ -1254,27 +1306,29 @@ export declare const Media: ContentType<{
|
|
|
1254
1306
|
lte?: number | undefined;
|
|
1255
1307
|
};
|
|
1256
1308
|
} | undefined;
|
|
1257
|
-
}>(this: TThis, length: number) => import("
|
|
1258
|
-
}, import("
|
|
1259
|
-
path: import("
|
|
1309
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Slug", import("../index.js").FieldStateOf<TThis>>;
|
|
1310
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1311
|
+
path: import("../index.js").WithFieldState<{
|
|
1260
1312
|
kind: "field";
|
|
1261
1313
|
readonly __fieldTypes?: {
|
|
1262
1314
|
input: string;
|
|
1263
1315
|
db: string;
|
|
1264
1316
|
output: string;
|
|
1265
|
-
meta: import("
|
|
1266
|
-
state: import("
|
|
1317
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1318
|
+
state: import("../index.js").DefaultFieldState;
|
|
1267
1319
|
} | undefined;
|
|
1268
|
-
meta: import("
|
|
1269
|
-
state: import("
|
|
1320
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1321
|
+
state: import("../index.js").DefaultFieldState;
|
|
1270
1322
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1271
1323
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1272
1324
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1273
1325
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1274
|
-
getConfig: () => import("
|
|
1326
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1275
1327
|
getIsRequired: () => false;
|
|
1276
1328
|
getIsTranslatable: () => false;
|
|
1277
1329
|
getVisibility: () => "all";
|
|
1330
|
+
getIsDynamic: () => true;
|
|
1331
|
+
getDescription: () => undefined;
|
|
1278
1332
|
getCondition: () => undefined;
|
|
1279
1333
|
} & {
|
|
1280
1334
|
type: <TThis extends {
|
|
@@ -1283,19 +1337,21 @@ export declare const Media: ContentType<{
|
|
|
1283
1337
|
input: string;
|
|
1284
1338
|
db: string;
|
|
1285
1339
|
output: string;
|
|
1286
|
-
meta: import("
|
|
1287
|
-
state: import("
|
|
1340
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1341
|
+
state: import("../index.js").FieldState;
|
|
1288
1342
|
} | undefined;
|
|
1289
|
-
meta: import("
|
|
1290
|
-
state: import("
|
|
1343
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1344
|
+
state: import("../index.js").FieldState;
|
|
1291
1345
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1292
1346
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1293
1347
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1294
1348
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1295
|
-
getConfig: () => import("
|
|
1349
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1296
1350
|
getIsRequired: () => boolean;
|
|
1297
1351
|
getIsTranslatable: () => boolean;
|
|
1298
|
-
getVisibility: () => import("
|
|
1352
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1353
|
+
getIsDynamic: () => boolean;
|
|
1354
|
+
getDescription: () => string | undefined;
|
|
1299
1355
|
getCondition: () => {
|
|
1300
1356
|
field: string;
|
|
1301
1357
|
equals: unknown;
|
|
@@ -1333,26 +1389,28 @@ export declare const Media: ContentType<{
|
|
|
1333
1389
|
lte?: number | undefined;
|
|
1334
1390
|
};
|
|
1335
1391
|
} | undefined;
|
|
1336
|
-
}, NextUi extends import("
|
|
1392
|
+
}, NextUi extends import("../index.js").StringUI>(this: TThis, ui: NextUi) => import("../index.js").StringField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1337
1393
|
min: <TThis extends {
|
|
1338
1394
|
kind: "field";
|
|
1339
1395
|
readonly __fieldTypes?: {
|
|
1340
1396
|
input: string;
|
|
1341
1397
|
db: string;
|
|
1342
1398
|
output: string;
|
|
1343
|
-
meta: import("
|
|
1344
|
-
state: import("
|
|
1399
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1400
|
+
state: import("../index.js").FieldState;
|
|
1345
1401
|
} | undefined;
|
|
1346
|
-
meta: import("
|
|
1347
|
-
state: import("
|
|
1402
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1403
|
+
state: import("../index.js").FieldState;
|
|
1348
1404
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1349
1405
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1350
1406
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1351
1407
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1352
|
-
getConfig: () => import("
|
|
1408
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1353
1409
|
getIsRequired: () => boolean;
|
|
1354
1410
|
getIsTranslatable: () => boolean;
|
|
1355
|
-
getVisibility: () => import("
|
|
1411
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1412
|
+
getIsDynamic: () => boolean;
|
|
1413
|
+
getDescription: () => string | undefined;
|
|
1356
1414
|
getCondition: () => {
|
|
1357
1415
|
field: string;
|
|
1358
1416
|
equals: unknown;
|
|
@@ -1390,26 +1448,28 @@ export declare const Media: ContentType<{
|
|
|
1390
1448
|
lte?: number | undefined;
|
|
1391
1449
|
};
|
|
1392
1450
|
} | undefined;
|
|
1393
|
-
}>(this: TThis, length: number) => import("
|
|
1451
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1394
1452
|
max: <TThis extends {
|
|
1395
1453
|
kind: "field";
|
|
1396
1454
|
readonly __fieldTypes?: {
|
|
1397
1455
|
input: string;
|
|
1398
1456
|
db: string;
|
|
1399
1457
|
output: string;
|
|
1400
|
-
meta: import("
|
|
1401
|
-
state: import("
|
|
1458
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1459
|
+
state: import("../index.js").FieldState;
|
|
1402
1460
|
} | undefined;
|
|
1403
|
-
meta: import("
|
|
1404
|
-
state: import("
|
|
1461
|
+
meta: import("../index.js").StringMeta<"Text">;
|
|
1462
|
+
state: import("../index.js").FieldState;
|
|
1405
1463
|
toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
|
|
1406
1464
|
getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
|
|
1407
1465
|
getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1408
1466
|
getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
|
|
1409
|
-
getConfig: () => import("
|
|
1467
|
+
getConfig: () => import("../index.js").StringMeta<"Text">;
|
|
1410
1468
|
getIsRequired: () => boolean;
|
|
1411
1469
|
getIsTranslatable: () => boolean;
|
|
1412
|
-
getVisibility: () => import("
|
|
1470
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1471
|
+
getIsDynamic: () => boolean;
|
|
1472
|
+
getDescription: () => string | undefined;
|
|
1413
1473
|
getCondition: () => {
|
|
1414
1474
|
field: string;
|
|
1415
1475
|
equals: unknown;
|
|
@@ -1447,30 +1507,32 @@ export declare const Media: ContentType<{
|
|
|
1447
1507
|
lte?: number | undefined;
|
|
1448
1508
|
};
|
|
1449
1509
|
} | undefined;
|
|
1450
|
-
}>(this: TThis, length: number) => import("
|
|
1451
|
-
}, import("
|
|
1452
|
-
parent: import("
|
|
1453
|
-
description: import("
|
|
1454
|
-
}, "MediaFolder">, "existing", import("
|
|
1455
|
-
uploadedAt: import("
|
|
1510
|
+
}>(this: TThis, length: number) => import("../index.js").StringField<"Text", import("../index.js").FieldStateOf<TThis>>;
|
|
1511
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1512
|
+
parent: import("../index.js").SelfRelationField<string, import("../index.js").DefaultFieldState>;
|
|
1513
|
+
description: import("../index.js").StringField<"Textarea", import("../index.js").DefaultFieldState>;
|
|
1514
|
+
}, "MediaFolder", undefined>, "existing", import("../index.js").DefaultFieldState>;
|
|
1515
|
+
uploadedAt: import("../index.js").WithFieldState<{
|
|
1456
1516
|
kind: "field";
|
|
1457
1517
|
readonly __fieldTypes?: {
|
|
1458
1518
|
input: Date;
|
|
1459
1519
|
db: Date;
|
|
1460
1520
|
output: Date;
|
|
1461
|
-
meta: import("
|
|
1462
|
-
state: import("
|
|
1521
|
+
meta: import("../index.js").DateMeta<"DateTime">;
|
|
1522
|
+
state: import("../index.js").DefaultFieldState;
|
|
1463
1523
|
} | undefined;
|
|
1464
|
-
meta: import("
|
|
1465
|
-
state: import("
|
|
1524
|
+
meta: import("../index.js").DateMeta<"DateTime">;
|
|
1525
|
+
state: import("../index.js").DefaultFieldState;
|
|
1466
1526
|
toZod: () => import("zod").ZodType<Date, unknown, import("zod/v4/core").$ZodTypeInternals<Date, unknown>>;
|
|
1467
1527
|
getInputSchema: () => import("zod").ZodType<Date | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<Date | null | undefined, unknown>>;
|
|
1468
1528
|
getSchema: () => import("zod").ZodType<Date | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<Date | undefined, unknown>>;
|
|
1469
1529
|
getOutputSchema: () => import("zod").ZodType<Date | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<Date | undefined, unknown>>;
|
|
1470
|
-
getConfig: () => import("
|
|
1530
|
+
getConfig: () => import("../index.js").DateMeta<"DateTime">;
|
|
1471
1531
|
getIsRequired: () => false;
|
|
1472
1532
|
getIsTranslatable: () => false;
|
|
1473
1533
|
getVisibility: () => "all";
|
|
1534
|
+
getIsDynamic: () => true;
|
|
1535
|
+
getDescription: () => undefined;
|
|
1474
1536
|
getCondition: () => undefined;
|
|
1475
1537
|
} & {
|
|
1476
1538
|
type: <TThis extends {
|
|
@@ -1479,19 +1541,21 @@ export declare const Media: ContentType<{
|
|
|
1479
1541
|
input: Date;
|
|
1480
1542
|
db: Date;
|
|
1481
1543
|
output: Date;
|
|
1482
|
-
meta: import("
|
|
1483
|
-
state: import("
|
|
1544
|
+
meta: import("../index.js").DateMeta<"DateTime">;
|
|
1545
|
+
state: import("../index.js").FieldState;
|
|
1484
1546
|
} | undefined;
|
|
1485
|
-
meta: import("
|
|
1486
|
-
state: import("
|
|
1547
|
+
meta: import("../index.js").DateMeta<"DateTime">;
|
|
1548
|
+
state: import("../index.js").FieldState;
|
|
1487
1549
|
toZod: () => import("zod").ZodType<Date, unknown, import("zod/v4/core").$ZodTypeInternals<Date, unknown>>;
|
|
1488
1550
|
getInputSchema: () => import("zod").ZodType<Date | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<Date | null | undefined, unknown>>;
|
|
1489
1551
|
getSchema: () => import("zod").ZodType<Date | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<Date | undefined, unknown>>;
|
|
1490
1552
|
getOutputSchema: () => import("zod").ZodType<Date | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<Date | undefined, unknown>>;
|
|
1491
|
-
getConfig: () => import("
|
|
1553
|
+
getConfig: () => import("../index.js").DateMeta<"DateTime">;
|
|
1492
1554
|
getIsRequired: () => boolean;
|
|
1493
1555
|
getIsTranslatable: () => boolean;
|
|
1494
|
-
getVisibility: () => import("
|
|
1556
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1557
|
+
getIsDynamic: () => boolean;
|
|
1558
|
+
getDescription: () => string | undefined;
|
|
1495
1559
|
getCondition: () => {
|
|
1496
1560
|
field: string;
|
|
1497
1561
|
equals: unknown;
|
|
@@ -1529,27 +1593,29 @@ export declare const Media: ContentType<{
|
|
|
1529
1593
|
lte?: number | undefined;
|
|
1530
1594
|
};
|
|
1531
1595
|
} | undefined;
|
|
1532
|
-
}, NextUi extends import("
|
|
1533
|
-
}, import("
|
|
1534
|
-
status: import("
|
|
1596
|
+
}, NextUi extends import("../index.js").DateUI>(this: TThis, ui: NextUi) => import("../index.js").DateField<NextUi, import("../index.js").FieldStateOf<TThis>>;
|
|
1597
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1598
|
+
status: import("../index.js").WithFieldState<{
|
|
1535
1599
|
kind: "field";
|
|
1536
1600
|
readonly __fieldTypes?: {
|
|
1537
1601
|
input: "uploaded" | "archived" | "deleted";
|
|
1538
1602
|
db: "uploaded" | "archived" | "deleted";
|
|
1539
1603
|
output: "uploaded" | "archived" | "deleted";
|
|
1540
|
-
meta: import("
|
|
1541
|
-
state: import("
|
|
1604
|
+
meta: import("../index.js").SelectMeta<readonly ["uploaded", "archived", "deleted"], false>;
|
|
1605
|
+
state: import("../index.js").DefaultFieldState;
|
|
1542
1606
|
} | undefined;
|
|
1543
|
-
meta: import("
|
|
1544
|
-
state: import("
|
|
1607
|
+
meta: import("../index.js").SelectMeta<readonly ["uploaded", "archived", "deleted"], false>;
|
|
1608
|
+
state: import("../index.js").DefaultFieldState;
|
|
1545
1609
|
toZod: () => import("zod").ZodType<"uploaded" | "archived" | "deleted", unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted", unknown>>;
|
|
1546
1610
|
getInputSchema: () => import("zod").ZodType<"uploaded" | "archived" | "deleted" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted" | null | undefined, unknown>>;
|
|
1547
1611
|
getSchema: () => import("zod").ZodType<"uploaded" | "archived" | "deleted" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted" | undefined, unknown>>;
|
|
1548
1612
|
getOutputSchema: () => import("zod").ZodType<"uploaded" | "archived" | "deleted" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted" | undefined, unknown>>;
|
|
1549
|
-
getConfig: () => import("
|
|
1613
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["uploaded", "archived", "deleted"], false>;
|
|
1550
1614
|
getIsRequired: () => false;
|
|
1551
1615
|
getIsTranslatable: () => false;
|
|
1552
1616
|
getVisibility: () => "all";
|
|
1617
|
+
getIsDynamic: () => true;
|
|
1618
|
+
getDescription: () => undefined;
|
|
1553
1619
|
getCondition: () => undefined;
|
|
1554
1620
|
} & {
|
|
1555
1621
|
multiple: <TThis extends {
|
|
@@ -1558,19 +1624,21 @@ export declare const Media: ContentType<{
|
|
|
1558
1624
|
input: "uploaded" | "archived" | "deleted";
|
|
1559
1625
|
db: "uploaded" | "archived" | "deleted";
|
|
1560
1626
|
output: "uploaded" | "archived" | "deleted";
|
|
1561
|
-
meta: import("
|
|
1562
|
-
state: import("
|
|
1627
|
+
meta: import("../index.js").SelectMeta<readonly ["uploaded", "archived", "deleted"], false>;
|
|
1628
|
+
state: import("../index.js").FieldState;
|
|
1563
1629
|
} | undefined;
|
|
1564
|
-
meta: import("
|
|
1565
|
-
state: import("
|
|
1630
|
+
meta: import("../index.js").SelectMeta<readonly ["uploaded", "archived", "deleted"], false>;
|
|
1631
|
+
state: import("../index.js").FieldState;
|
|
1566
1632
|
toZod: () => import("zod").ZodType<"uploaded" | "archived" | "deleted", unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted", unknown>>;
|
|
1567
1633
|
getInputSchema: () => import("zod").ZodType<"uploaded" | "archived" | "deleted" | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted" | null | undefined, unknown>>;
|
|
1568
1634
|
getSchema: () => import("zod").ZodType<"uploaded" | "archived" | "deleted" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted" | undefined, unknown>>;
|
|
1569
1635
|
getOutputSchema: () => import("zod").ZodType<"uploaded" | "archived" | "deleted" | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<"uploaded" | "archived" | "deleted" | undefined, unknown>>;
|
|
1570
|
-
getConfig: () => import("
|
|
1636
|
+
getConfig: () => import("../index.js").SelectMeta<readonly ["uploaded", "archived", "deleted"], false>;
|
|
1571
1637
|
getIsRequired: () => boolean;
|
|
1572
1638
|
getIsTranslatable: () => boolean;
|
|
1573
|
-
getVisibility: () => import("
|
|
1639
|
+
getVisibility: () => import("../index.js").Visibility;
|
|
1640
|
+
getIsDynamic: () => boolean;
|
|
1641
|
+
getDescription: () => string | undefined;
|
|
1574
1642
|
getCondition: () => {
|
|
1575
1643
|
field: string;
|
|
1576
1644
|
equals: unknown;
|
|
@@ -1608,9 +1676,9 @@ export declare const Media: ContentType<{
|
|
|
1608
1676
|
lte?: number | undefined;
|
|
1609
1677
|
};
|
|
1610
1678
|
} | undefined;
|
|
1611
|
-
}>(this: TThis) => import("
|
|
1612
|
-
}, import("
|
|
1613
|
-
}, "Media">;
|
|
1679
|
+
}>(this: TThis) => import("../index.js").SelectField<readonly ["uploaded", "archived", "deleted"], true, import("../index.js").FieldStateOf<TThis>>;
|
|
1680
|
+
}, import("../index.js").SetRequired<import("../index.js").DefaultFieldState>>;
|
|
1681
|
+
}, "Media", undefined>;
|
|
1614
1682
|
export type Media = typeof Media;
|
|
1615
1683
|
export type MediaSchema = DataFront<Media>;
|
|
1616
1684
|
export type MediaManager = DBOutput<Media>;
|