@rakun-kit/core 1.3.11 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (786) hide show
  1. package/README.md +130 -4
  2. package/dist/cjs/api/hooks/context.js +16 -0
  3. package/dist/cjs/api/hooks/context.js.map +1 -0
  4. package/dist/cjs/api/hooks/runContentHooks.js +173 -0
  5. package/dist/cjs/api/hooks/runContentHooks.js.map +1 -0
  6. package/dist/cjs/api/operations/manager-contract.js +87 -0
  7. package/dist/cjs/api/operations/manager-contract.js.map +1 -1
  8. package/dist/cjs/api/operations/manager-manifest.js +291 -0
  9. package/dist/cjs/api/operations/manager-manifest.js.map +1 -0
  10. package/dist/cjs/api/operations/manager.js +47 -3
  11. package/dist/cjs/api/operations/manager.js.map +1 -1
  12. package/dist/cjs/api/routes/manager/apiOperations.js +1 -1
  13. package/dist/cjs/api/routes/manager/apiOperations.js.map +1 -1
  14. package/dist/cjs/api/routes/manager/auth/login.js +19 -3
  15. package/dist/cjs/api/routes/manager/auth/login.js.map +1 -1
  16. package/dist/cjs/api/routes/manager/auth/markTourSeen.js +3 -1
  17. package/dist/cjs/api/routes/manager/auth/markTourSeen.js.map +1 -1
  18. package/dist/cjs/api/routes/manager/auth/totp/verifyTotp.js +11 -1
  19. package/dist/cjs/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
  20. package/dist/cjs/api/routes/manager/auth/updateAccount.js +6 -1
  21. package/dist/cjs/api/routes/manager/auth/updateAccount.js.map +1 -1
  22. package/dist/cjs/api/routes/manager/auth/updatePassword.js +13 -3
  23. package/dist/cjs/api/routes/manager/auth/updatePassword.js.map +1 -1
  24. package/dist/cjs/api/routes/manager/auth/updateTutorialPreferences.js +3 -1
  25. package/dist/cjs/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
  26. package/dist/cjs/api/routes/manager/auth/webauthn/webauthnAuthVerify.js +11 -1
  27. package/dist/cjs/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
  28. package/dist/cjs/api/routes/manager/backups/create.js +1 -1
  29. package/dist/cjs/api/routes/manager/backups/create.js.map +1 -1
  30. package/dist/cjs/api/routes/manager/backups/list.js +1 -1
  31. package/dist/cjs/api/routes/manager/backups/list.js.map +1 -1
  32. package/dist/cjs/api/routes/manager/backups/restore.js +1 -1
  33. package/dist/cjs/api/routes/manager/backups/restore.js.map +1 -1
  34. package/dist/cjs/api/routes/manager/comments.js +209 -0
  35. package/dist/cjs/api/routes/manager/comments.js.map +1 -0
  36. package/dist/cjs/api/routes/manager/contentType.js +19 -0
  37. package/dist/cjs/api/routes/manager/contentType.js.map +1 -0
  38. package/dist/cjs/api/routes/manager/create.js +10 -11
  39. package/dist/cjs/api/routes/manager/create.js.map +1 -1
  40. package/dist/cjs/api/routes/manager/delete.js +10 -3
  41. package/dist/cjs/api/routes/manager/delete.js.map +1 -1
  42. package/dist/cjs/api/routes/manager/favorites.js +137 -0
  43. package/dist/cjs/api/routes/manager/favorites.js.map +1 -0
  44. package/dist/cjs/api/routes/manager/get.js +3 -2
  45. package/dist/cjs/api/routes/manager/get.js.map +1 -1
  46. package/dist/cjs/api/routes/manager/list.js +23 -8
  47. package/dist/cjs/api/routes/manager/list.js.map +1 -1
  48. package/dist/cjs/api/routes/manager/literals/list.js +1 -1
  49. package/dist/cjs/api/routes/manager/literals/list.js.map +1 -1
  50. package/dist/cjs/api/routes/manager/literals/upsert.js +1 -1
  51. package/dist/cjs/api/routes/manager/literals/upsert.js.map +1 -1
  52. package/dist/cjs/api/routes/manager/localeVariants.js +300 -0
  53. package/dist/cjs/api/routes/manager/localeVariants.js.map +1 -0
  54. package/dist/cjs/api/routes/manager/media/finalizeUpload.js +24 -1
  55. package/dist/cjs/api/routes/manager/media/finalizeUpload.js.map +1 -1
  56. package/dist/cjs/api/routes/manager/media/getMediaUrl.js +33 -1
  57. package/dist/cjs/api/routes/manager/media/getMediaUrl.js.map +1 -1
  58. package/dist/cjs/api/routes/manager/media/prepareUpload.js +12 -1
  59. package/dist/cjs/api/routes/manager/media/prepareUpload.js.map +1 -1
  60. package/dist/cjs/api/routes/manager/media/uploadBinary.js +70 -4
  61. package/dist/cjs/api/routes/manager/media/uploadBinary.js.map +1 -1
  62. package/dist/cjs/api/routes/manager/migrations/list.js +1 -1
  63. package/dist/cjs/api/routes/manager/migrations/list.js.map +1 -1
  64. package/dist/cjs/api/routes/manager/permissions.js +1 -1
  65. package/dist/cjs/api/routes/manager/permissions.js.map +1 -1
  66. package/dist/cjs/api/routes/manager/preview/create.js +5 -1
  67. package/dist/cjs/api/routes/manager/preview/create.js.map +1 -1
  68. package/dist/cjs/api/routes/manager/regenerateRoutes.js +1 -1
  69. package/dist/cjs/api/routes/manager/regenerateRoutes.js.map +1 -1
  70. package/dist/cjs/api/routes/manager/setDefaultLanguage.js +7 -2
  71. package/dist/cjs/api/routes/manager/setDefaultLanguage.js.map +1 -1
  72. package/dist/cjs/api/routes/manager/translateDocument.js +1 -9
  73. package/dist/cjs/api/routes/manager/translateDocument.js.map +1 -1
  74. package/dist/cjs/api/routes/manager/trash.js +7 -2
  75. package/dist/cjs/api/routes/manager/trash.js.map +1 -1
  76. package/dist/cjs/api/routes/manager/update.js +5 -10
  77. package/dist/cjs/api/routes/manager/update.js.map +1 -1
  78. package/dist/cjs/api/routes/manager/users.js +38 -0
  79. package/dist/cjs/api/routes/manager/users.js.map +1 -0
  80. package/dist/cjs/api/routes/manager/versions/get.js +1 -1
  81. package/dist/cjs/api/routes/manager/versions/get.js.map +1 -1
  82. package/dist/cjs/api/routes/manager/versions/list.js +1 -1
  83. package/dist/cjs/api/routes/manager/versions/list.js.map +1 -1
  84. package/dist/cjs/api/routes/manager/versions/restore.js +1 -1
  85. package/dist/cjs/api/routes/manager/versions/restore.js.map +1 -1
  86. package/dist/cjs/api/routes/web/page.js +170 -121
  87. package/dist/cjs/api/routes/web/page.js.map +1 -1
  88. package/dist/cjs/api/routes/web/robots.js +10 -8
  89. package/dist/cjs/api/routes/web/robots.js.map +1 -1
  90. package/dist/cjs/api/sessionCookie.js +13 -3
  91. package/dist/cjs/api/sessionCookie.js.map +1 -1
  92. package/dist/cjs/api/utils/authRateLimit.js +43 -0
  93. package/dist/cjs/api/utils/authRateLimit.js.map +1 -0
  94. package/dist/cjs/api/utils/checkOwnership.js +10 -7
  95. package/dist/cjs/api/utils/checkOwnership.js.map +1 -1
  96. package/dist/cjs/api/utils/dynamicData.js +319 -0
  97. package/dist/cjs/api/utils/dynamicData.js.map +1 -0
  98. package/dist/cjs/api/utils/getLanguages.js +8 -1
  99. package/dist/cjs/api/utils/getLanguages.js.map +1 -1
  100. package/dist/cjs/api/utils/getLink.js +24 -6
  101. package/dist/cjs/api/utils/getLink.js.map +1 -1
  102. package/dist/cjs/api/utils/getUser.js +7 -1
  103. package/dist/cjs/api/utils/getUser.js.map +1 -1
  104. package/dist/cjs/api/utils/index.js +7 -1
  105. package/dist/cjs/api/utils/index.js.map +1 -1
  106. package/dist/cjs/api/utils/localeVariants.js +45 -0
  107. package/dist/cjs/api/utils/localeVariants.js.map +1 -0
  108. package/dist/cjs/api/utils/mediaUploadToken.js +49 -0
  109. package/dist/cjs/api/utils/mediaUploadToken.js.map +1 -0
  110. package/dist/cjs/api/utils/passwords.js +25 -1
  111. package/dist/cjs/api/utils/passwords.js.map +1 -1
  112. package/dist/cjs/api/utils/populates/populateLinks.js +12 -3
  113. package/dist/cjs/api/utils/populates/populateLinks.js.map +1 -1
  114. package/dist/cjs/api/utils/populates/populateRelations.js +23 -4
  115. package/dist/cjs/api/utils/populates/populateRelations.js.map +1 -1
  116. package/dist/cjs/api/utils/routes/routeDefinitions.js.map +1 -1
  117. package/dist/cjs/api/utils/routes/routeMapHelpers.js +133 -24
  118. package/dist/cjs/api/utils/routes/routeMapHelpers.js.map +1 -1
  119. package/dist/cjs/api/utils/routes/syncConfiguredRoutes.js +0 -1
  120. package/dist/cjs/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
  121. package/dist/cjs/api/utils/routes/updateRoutesMap.js +66 -25
  122. package/dist/cjs/api/utils/routes/updateRoutesMap.js.map +1 -1
  123. package/dist/cjs/api/utils/safeManagerQuery.js +229 -0
  124. package/dist/cjs/api/utils/safeManagerQuery.js.map +1 -0
  125. package/dist/cjs/api/utils/sanitizeManagerOutput.js +39 -0
  126. package/dist/cjs/api/utils/sanitizeManagerOutput.js.map +1 -0
  127. package/dist/cjs/bootstrapState.js.map +1 -1
  128. package/dist/cjs/client.js +16 -1
  129. package/dist/cjs/client.js.map +1 -1
  130. package/dist/cjs/contracts.js +5 -0
  131. package/dist/cjs/contracts.js.map +1 -1
  132. package/dist/cjs/index.js +60 -15
  133. package/dist/cjs/index.js.map +1 -1
  134. package/dist/cjs/internal-content-types/ApiOperation.js +23 -0
  135. package/dist/cjs/internal-content-types/ApiOperation.js.map +1 -0
  136. package/dist/cjs/internal-content-types/Backup.js +1 -0
  137. package/dist/cjs/internal-content-types/Backup.js.map +1 -1
  138. package/dist/cjs/internal-content-types/BackupDocument.js +1 -0
  139. package/dist/cjs/internal-content-types/BackupDocument.js.map +1 -1
  140. package/dist/cjs/internal-content-types/ContentComment.js +22 -0
  141. package/dist/cjs/internal-content-types/ContentComment.js.map +1 -0
  142. package/dist/cjs/internal-content-types/ContentVersion.js +1 -0
  143. package/dist/cjs/internal-content-types/ContentVersion.js.map +1 -1
  144. package/dist/cjs/internal-content-types/Language.js +1 -0
  145. package/dist/cjs/internal-content-types/Language.js.map +1 -1
  146. package/dist/cjs/internal-content-types/LiteralTranslation.js +1 -0
  147. package/dist/cjs/internal-content-types/LiteralTranslation.js.map +1 -1
  148. package/dist/cjs/internal-content-types/ManagerFavorite.js +20 -0
  149. package/dist/cjs/internal-content-types/ManagerFavorite.js.map +1 -0
  150. package/dist/cjs/internal-content-types/ManagerRole.js +2 -4
  151. package/dist/cjs/internal-content-types/ManagerRole.js.map +1 -1
  152. package/dist/cjs/internal-content-types/ManagerUser.js +2 -0
  153. package/dist/cjs/internal-content-types/ManagerUser.js.map +1 -1
  154. package/dist/cjs/internal-content-types/ManagerUserHooks.js +42 -0
  155. package/dist/cjs/internal-content-types/ManagerUserHooks.js.map +1 -0
  156. package/dist/cjs/internal-content-types/Media.js +1 -0
  157. package/dist/cjs/internal-content-types/Media.js.map +1 -1
  158. package/dist/cjs/internal-content-types/MediaFolder.js +1 -0
  159. package/dist/cjs/internal-content-types/MediaFolder.js.map +1 -1
  160. package/dist/cjs/internal-content-types/Migration.js +4 -0
  161. package/dist/cjs/internal-content-types/Migration.js.map +1 -1
  162. package/dist/cjs/internal-content-types/MigrationLock.js +1 -0
  163. package/dist/cjs/internal-content-types/MigrationLock.js.map +1 -1
  164. package/dist/cjs/internal-content-types/Page.js +7 -8
  165. package/dist/cjs/internal-content-types/Page.js.map +1 -1
  166. package/dist/cjs/internal-content-types/Redirect.js +1 -0
  167. package/dist/cjs/internal-content-types/Redirect.js.map +1 -1
  168. package/dist/cjs/internal-content-types/RobotsRule.js +1 -0
  169. package/dist/cjs/internal-content-types/RobotsRule.js.map +1 -1
  170. package/dist/cjs/internal-content-types/Route.js +1 -1
  171. package/dist/cjs/internal-content-types/Route.js.map +1 -1
  172. package/dist/cjs/internal-content-types/RouteLayoutModule.js +1 -0
  173. package/dist/cjs/internal-content-types/RouteLayoutModule.js.map +1 -1
  174. package/dist/cjs/internal-content-types/RouteLayoutModuleOverride.js +1 -0
  175. package/dist/cjs/internal-content-types/RouteLayoutModuleOverride.js.map +1 -1
  176. package/dist/cjs/internal-content-types/RouteLocaleVariant.js +23 -0
  177. package/dist/cjs/internal-content-types/RouteLocaleVariant.js.map +1 -0
  178. package/dist/cjs/internal-content-types/RouteMap.js +5 -0
  179. package/dist/cjs/internal-content-types/RouteMap.js.map +1 -1
  180. package/dist/cjs/internal-content-types/RouteSettings.js +1 -0
  181. package/dist/cjs/internal-content-types/RouteSettings.js.map +1 -1
  182. package/dist/cjs/internal-content-types/SchemaState.js +4 -0
  183. package/dist/cjs/internal-content-types/SchemaState.js.map +1 -1
  184. package/dist/cjs/internal-content-types/Seo.js +4 -2
  185. package/dist/cjs/internal-content-types/Seo.js.map +1 -1
  186. package/dist/cjs/internal-content-types/SeoSettings.js +2 -2
  187. package/dist/cjs/internal-content-types/SeoSettings.js.map +1 -1
  188. package/dist/cjs/internal-content-types/index.js +4 -0
  189. package/dist/cjs/internal-content-types/index.js.map +1 -1
  190. package/dist/cjs/lib/ContentType.js +185 -8
  191. package/dist/cjs/lib/ContentType.js.map +1 -1
  192. package/dist/cjs/lib/Permissions.js +69 -77
  193. package/dist/cjs/lib/Permissions.js.map +1 -1
  194. package/dist/cjs/lib/Registry.js +9 -0
  195. package/dist/cjs/lib/Registry.js.map +1 -1
  196. package/dist/cjs/lib/dynamicData.js +53 -0
  197. package/dist/cjs/lib/dynamicData.js.map +1 -0
  198. package/dist/cjs/lib/errors/throwAppError.js +27 -3
  199. package/dist/cjs/lib/errors/throwAppError.js.map +1 -1
  200. package/dist/cjs/lib/fields/Field.js +26 -0
  201. package/dist/cjs/lib/fields/Field.js.map +1 -1
  202. package/dist/cjs/lib/fields/List.js +25 -4
  203. package/dist/cjs/lib/fields/List.js.map +1 -1
  204. package/dist/cjs/lib/fields/Relation.js +3 -0
  205. package/dist/cjs/lib/fields/Relation.js.map +1 -1
  206. package/dist/cjs/lib/hooks.js +3 -0
  207. package/dist/cjs/lib/hooks.js.map +1 -0
  208. package/dist/cjs/lib/localeVariants.js +20 -0
  209. package/dist/cjs/lib/localeVariants.js.map +1 -0
  210. package/dist/cjs/lib/routeableContent.js +18 -0
  211. package/dist/cjs/lib/routeableContent.js.map +1 -0
  212. package/dist/cjs/lib/systemFields.js +6 -0
  213. package/dist/cjs/lib/systemFields.js.map +1 -0
  214. package/dist/cjs/manager.js +4 -9
  215. package/dist/cjs/manager.js.map +1 -1
  216. package/dist/cjs/media/mediaService.js +2 -1
  217. package/dist/cjs/media/mediaService.js.map +1 -1
  218. package/dist/cjs/orm/createIndexes.js +23 -7
  219. package/dist/cjs/orm/createIndexes.js.map +1 -1
  220. package/dist/cjs/orm/index.js +7 -6
  221. package/dist/cjs/orm/index.js.map +1 -1
  222. package/dist/cjs/orm/operations/create.js +25 -8
  223. package/dist/cjs/orm/operations/create.js.map +1 -1
  224. package/dist/cjs/orm/operations/delete.js +22 -2
  225. package/dist/cjs/orm/operations/delete.js.map +1 -1
  226. package/dist/cjs/orm/operations/findDependencies.js +75 -53
  227. package/dist/cjs/orm/operations/findDependencies.js.map +1 -1
  228. package/dist/cjs/orm/operations/update.js +43 -17
  229. package/dist/cjs/orm/operations/update.js.map +1 -1
  230. package/dist/cjs/orm/operations/updateMany.js +24 -7
  231. package/dist/cjs/orm/operations/updateMany.js.map +1 -1
  232. package/dist/cjs/orm/operations/upsert.js +3 -3
  233. package/dist/cjs/orm/operations/upsert.js.map +1 -1
  234. package/dist/cjs/plugins.js +113 -0
  235. package/dist/cjs/plugins.js.map +1 -0
  236. package/dist/cjs/schemas/manager/auth/accountInfo.js +1 -0
  237. package/dist/cjs/schemas/manager/auth/accountInfo.js.map +1 -1
  238. package/dist/cjs/schemas/manager/auth/login.js +1 -0
  239. package/dist/cjs/schemas/manager/auth/login.js.map +1 -1
  240. package/dist/cjs/schemas/manager/auth/totp/verifyTotp.js +1 -0
  241. package/dist/cjs/schemas/manager/auth/totp/verifyTotp.js.map +1 -1
  242. package/dist/cjs/schemas/manager/auth/webauthn/webauthnAuthVerify.js +1 -0
  243. package/dist/cjs/schemas/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
  244. package/dist/cjs/schemas/manager/comments.js +48 -0
  245. package/dist/cjs/schemas/manager/comments.js.map +1 -0
  246. package/dist/cjs/schemas/manager/contentType.js +11 -0
  247. package/dist/cjs/schemas/manager/contentType.js.map +1 -0
  248. package/dist/cjs/schemas/manager/favorites.js +37 -0
  249. package/dist/cjs/schemas/manager/favorites.js.map +1 -0
  250. package/dist/cjs/schemas/manager/localeVariants.js +62 -0
  251. package/dist/cjs/schemas/manager/localeVariants.js.map +1 -0
  252. package/dist/cjs/schemas/manager/media/finalizeUpload.js +1 -0
  253. package/dist/cjs/schemas/manager/media/finalizeUpload.js.map +1 -1
  254. package/dist/cjs/schemas/manager/media/getMediaUrl.js +1 -1
  255. package/dist/cjs/schemas/manager/media/getMediaUrl.js.map +1 -1
  256. package/dist/cjs/schemas/manager/media/prepareUpload.js +1 -0
  257. package/dist/cjs/schemas/manager/media/prepareUpload.js.map +1 -1
  258. package/dist/cjs/schemas/manager/users.js +21 -0
  259. package/dist/cjs/schemas/manager/users.js.map +1 -0
  260. package/dist/esm/api/hooks/context.d.ts +4 -0
  261. package/dist/esm/api/hooks/context.d.ts.map +1 -0
  262. package/dist/esm/api/hooks/context.js +12 -0
  263. package/dist/esm/api/hooks/context.js.map +1 -0
  264. package/dist/esm/api/hooks/runContentHooks.d.ts +80 -0
  265. package/dist/esm/api/hooks/runContentHooks.d.ts.map +1 -0
  266. package/dist/esm/api/hooks/runContentHooks.js +159 -0
  267. package/dist/esm/api/hooks/runContentHooks.js.map +1 -0
  268. package/dist/esm/api/operations/index.d.ts +530 -4
  269. package/dist/esm/api/operations/index.d.ts.map +1 -1
  270. package/dist/esm/api/operations/manager-contract.d.ts +521 -4
  271. package/dist/esm/api/operations/manager-contract.d.ts.map +1 -1
  272. package/dist/esm/api/operations/manager-contract.js +88 -1
  273. package/dist/esm/api/operations/manager-contract.js.map +1 -1
  274. package/dist/esm/api/operations/manager-manifest.d.ts +288 -0
  275. package/dist/esm/api/operations/manager-manifest.d.ts.map +1 -0
  276. package/dist/esm/api/operations/manager-manifest.js +288 -0
  277. package/dist/esm/api/operations/manager-manifest.js.map +1 -0
  278. package/dist/esm/api/operations/manager.d.ts +520 -4
  279. package/dist/esm/api/operations/manager.d.ts.map +1 -1
  280. package/dist/esm/api/operations/manager.js +47 -3
  281. package/dist/esm/api/operations/manager.js.map +1 -1
  282. package/dist/esm/api/operations/web-contract.d.ts +11 -0
  283. package/dist/esm/api/operations/web-contract.d.ts.map +1 -1
  284. package/dist/esm/api/operations/web.d.ts +10 -0
  285. package/dist/esm/api/operations/web.d.ts.map +1 -1
  286. package/dist/esm/api/routes/manager/apiOperations.js +1 -1
  287. package/dist/esm/api/routes/manager/apiOperations.js.map +1 -1
  288. package/dist/esm/api/routes/manager/auth/getSession.d.ts +6 -1
  289. package/dist/esm/api/routes/manager/auth/getSession.d.ts.map +1 -1
  290. package/dist/esm/api/routes/manager/auth/login.d.ts +3 -1
  291. package/dist/esm/api/routes/manager/auth/login.d.ts.map +1 -1
  292. package/dist/esm/api/routes/manager/auth/login.js +20 -4
  293. package/dist/esm/api/routes/manager/auth/login.js.map +1 -1
  294. package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts +6 -1
  295. package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts.map +1 -1
  296. package/dist/esm/api/routes/manager/auth/markTourSeen.js +3 -1
  297. package/dist/esm/api/routes/manager/auth/markTourSeen.js.map +1 -1
  298. package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts +2 -0
  299. package/dist/esm/api/routes/manager/auth/totp/verifyTotp.d.ts.map +1 -1
  300. package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js +11 -1
  301. package/dist/esm/api/routes/manager/auth/totp/verifyTotp.js.map +1 -1
  302. package/dist/esm/api/routes/manager/auth/updateAccount.d.ts +6 -1
  303. package/dist/esm/api/routes/manager/auth/updateAccount.d.ts.map +1 -1
  304. package/dist/esm/api/routes/manager/auth/updateAccount.js +6 -1
  305. package/dist/esm/api/routes/manager/auth/updateAccount.js.map +1 -1
  306. package/dist/esm/api/routes/manager/auth/updatePassword.d.ts.map +1 -1
  307. package/dist/esm/api/routes/manager/auth/updatePassword.js +15 -5
  308. package/dist/esm/api/routes/manager/auth/updatePassword.js.map +1 -1
  309. package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts +6 -1
  310. package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts.map +1 -1
  311. package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js +3 -1
  312. package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.js.map +1 -1
  313. package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.d.ts +1 -0
  314. package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.d.ts.map +1 -1
  315. package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js +11 -1
  316. package/dist/esm/api/routes/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
  317. package/dist/esm/api/routes/manager/backups/create.js +1 -1
  318. package/dist/esm/api/routes/manager/backups/create.js.map +1 -1
  319. package/dist/esm/api/routes/manager/backups/list.js +1 -1
  320. package/dist/esm/api/routes/manager/backups/list.js.map +1 -1
  321. package/dist/esm/api/routes/manager/backups/restore.js +1 -1
  322. package/dist/esm/api/routes/manager/backups/restore.js.map +1 -1
  323. package/dist/esm/api/routes/manager/comments.d.ts +15 -0
  324. package/dist/esm/api/routes/manager/comments.d.ts.map +1 -0
  325. package/dist/esm/api/routes/manager/comments.js +203 -0
  326. package/dist/esm/api/routes/manager/comments.js.map +1 -0
  327. package/dist/esm/api/routes/manager/contentType.d.ts +52 -0
  328. package/dist/esm/api/routes/manager/contentType.d.ts.map +1 -0
  329. package/dist/esm/api/routes/manager/contentType.js +15 -0
  330. package/dist/esm/api/routes/manager/contentType.js.map +1 -0
  331. package/dist/esm/api/routes/manager/contentTypes.d.ts +17 -0
  332. package/dist/esm/api/routes/manager/contentTypes.d.ts.map +1 -1
  333. package/dist/esm/api/routes/manager/create.d.ts +3 -0
  334. package/dist/esm/api/routes/manager/create.d.ts.map +1 -1
  335. package/dist/esm/api/routes/manager/create.js +10 -11
  336. package/dist/esm/api/routes/manager/create.js.map +1 -1
  337. package/dist/esm/api/routes/manager/delete.d.ts.map +1 -1
  338. package/dist/esm/api/routes/manager/delete.js +11 -4
  339. package/dist/esm/api/routes/manager/delete.js.map +1 -1
  340. package/dist/esm/api/routes/manager/duplicate.d.ts +2 -0
  341. package/dist/esm/api/routes/manager/duplicate.d.ts.map +1 -1
  342. package/dist/esm/api/routes/manager/favorites.d.ts +11 -0
  343. package/dist/esm/api/routes/manager/favorites.d.ts.map +1 -0
  344. package/dist/esm/api/routes/manager/favorites.js +132 -0
  345. package/dist/esm/api/routes/manager/favorites.js.map +1 -0
  346. package/dist/esm/api/routes/manager/get.d.ts.map +1 -1
  347. package/dist/esm/api/routes/manager/get.js +3 -2
  348. package/dist/esm/api/routes/manager/get.js.map +1 -1
  349. package/dist/esm/api/routes/manager/languages.d.ts +2 -0
  350. package/dist/esm/api/routes/manager/languages.d.ts.map +1 -1
  351. package/dist/esm/api/routes/manager/list.d.ts.map +1 -1
  352. package/dist/esm/api/routes/manager/list.js +24 -9
  353. package/dist/esm/api/routes/manager/list.js.map +1 -1
  354. package/dist/esm/api/routes/manager/literals/list.js +1 -1
  355. package/dist/esm/api/routes/manager/literals/list.js.map +1 -1
  356. package/dist/esm/api/routes/manager/literals/upsert.js +1 -1
  357. package/dist/esm/api/routes/manager/literals/upsert.js.map +1 -1
  358. package/dist/esm/api/routes/manager/localeVariants.d.ts +133 -0
  359. package/dist/esm/api/routes/manager/localeVariants.d.ts.map +1 -0
  360. package/dist/esm/api/routes/manager/localeVariants.js +293 -0
  361. package/dist/esm/api/routes/manager/localeVariants.js.map +1 -0
  362. package/dist/esm/api/routes/manager/media/finalizeUpload.d.ts.map +1 -1
  363. package/dist/esm/api/routes/manager/media/finalizeUpload.js +24 -1
  364. package/dist/esm/api/routes/manager/media/finalizeUpload.js.map +1 -1
  365. package/dist/esm/api/routes/manager/media/getMediaUrl.d.ts.map +1 -1
  366. package/dist/esm/api/routes/manager/media/getMediaUrl.js +34 -2
  367. package/dist/esm/api/routes/manager/media/getMediaUrl.js.map +1 -1
  368. package/dist/esm/api/routes/manager/media/prepareUpload.d.ts +2 -1
  369. package/dist/esm/api/routes/manager/media/prepareUpload.d.ts.map +1 -1
  370. package/dist/esm/api/routes/manager/media/prepareUpload.js +12 -1
  371. package/dist/esm/api/routes/manager/media/prepareUpload.js.map +1 -1
  372. package/dist/esm/api/routes/manager/media/uploadBinary.d.ts.map +1 -1
  373. package/dist/esm/api/routes/manager/media/uploadBinary.js +71 -5
  374. package/dist/esm/api/routes/manager/media/uploadBinary.js.map +1 -1
  375. package/dist/esm/api/routes/manager/migrations/list.js +1 -1
  376. package/dist/esm/api/routes/manager/migrations/list.js.map +1 -1
  377. package/dist/esm/api/routes/manager/permissions.js +1 -1
  378. package/dist/esm/api/routes/manager/permissions.js.map +1 -1
  379. package/dist/esm/api/routes/manager/preview/create.d.ts.map +1 -1
  380. package/dist/esm/api/routes/manager/preview/create.js +5 -1
  381. package/dist/esm/api/routes/manager/preview/create.js.map +1 -1
  382. package/dist/esm/api/routes/manager/regenerateRoutes.js +1 -1
  383. package/dist/esm/api/routes/manager/regenerateRoutes.js.map +1 -1
  384. package/dist/esm/api/routes/manager/setDefaultLanguage.d.ts +2 -2
  385. package/dist/esm/api/routes/manager/setDefaultLanguage.d.ts.map +1 -1
  386. package/dist/esm/api/routes/manager/setDefaultLanguage.js +7 -2
  387. package/dist/esm/api/routes/manager/setDefaultLanguage.js.map +1 -1
  388. package/dist/esm/api/routes/manager/translateDocument.d.ts.map +1 -1
  389. package/dist/esm/api/routes/manager/translateDocument.js +1 -9
  390. package/dist/esm/api/routes/manager/translateDocument.js.map +1 -1
  391. package/dist/esm/api/routes/manager/trash.d.ts.map +1 -1
  392. package/dist/esm/api/routes/manager/trash.js +7 -2
  393. package/dist/esm/api/routes/manager/trash.js.map +1 -1
  394. package/dist/esm/api/routes/manager/update.d.ts +3 -0
  395. package/dist/esm/api/routes/manager/update.d.ts.map +1 -1
  396. package/dist/esm/api/routes/manager/update.js +5 -10
  397. package/dist/esm/api/routes/manager/update.js.map +1 -1
  398. package/dist/esm/api/routes/manager/users.d.ts +16 -0
  399. package/dist/esm/api/routes/manager/users.d.ts.map +1 -0
  400. package/dist/esm/api/routes/manager/users.js +32 -0
  401. package/dist/esm/api/routes/manager/users.js.map +1 -0
  402. package/dist/esm/api/routes/manager/versions/get.js +1 -1
  403. package/dist/esm/api/routes/manager/versions/get.js.map +1 -1
  404. package/dist/esm/api/routes/manager/versions/list.js +1 -1
  405. package/dist/esm/api/routes/manager/versions/list.js.map +1 -1
  406. package/dist/esm/api/routes/manager/versions/restore.js +1 -1
  407. package/dist/esm/api/routes/manager/versions/restore.js.map +1 -1
  408. package/dist/esm/api/routes/web/page.d.ts +2 -1
  409. package/dist/esm/api/routes/web/page.d.ts.map +1 -1
  410. package/dist/esm/api/routes/web/page.js +170 -121
  411. package/dist/esm/api/routes/web/page.js.map +1 -1
  412. package/dist/esm/api/routes/web/previewPage.d.ts +4 -0
  413. package/dist/esm/api/routes/web/previewPage.d.ts.map +1 -1
  414. package/dist/esm/api/routes/web/robots.d.ts.map +1 -1
  415. package/dist/esm/api/routes/web/robots.js +10 -8
  416. package/dist/esm/api/routes/web/robots.js.map +1 -1
  417. package/dist/esm/api/sessionCookie.d.ts +1 -0
  418. package/dist/esm/api/sessionCookie.d.ts.map +1 -1
  419. package/dist/esm/api/sessionCookie.js +12 -2
  420. package/dist/esm/api/sessionCookie.js.map +1 -1
  421. package/dist/esm/api/utils/authRateLimit.d.ts +9 -0
  422. package/dist/esm/api/utils/authRateLimit.d.ts.map +1 -0
  423. package/dist/esm/api/utils/authRateLimit.js +37 -0
  424. package/dist/esm/api/utils/authRateLimit.js.map +1 -0
  425. package/dist/esm/api/utils/checkOwnership.d.ts.map +1 -1
  426. package/dist/esm/api/utils/checkOwnership.js +10 -7
  427. package/dist/esm/api/utils/checkOwnership.js.map +1 -1
  428. package/dist/esm/api/utils/dynamicData.d.ts +23 -0
  429. package/dist/esm/api/utils/dynamicData.d.ts.map +1 -0
  430. package/dist/esm/api/utils/dynamicData.js +312 -0
  431. package/dist/esm/api/utils/dynamicData.js.map +1 -0
  432. package/dist/esm/api/utils/getLanguages.d.ts +3 -19
  433. package/dist/esm/api/utils/getLanguages.d.ts.map +1 -1
  434. package/dist/esm/api/utils/getLanguages.js +8 -1
  435. package/dist/esm/api/utils/getLanguages.js.map +1 -1
  436. package/dist/esm/api/utils/getLink.d.ts +2 -2
  437. package/dist/esm/api/utils/getLink.d.ts.map +1 -1
  438. package/dist/esm/api/utils/getLink.js +24 -6
  439. package/dist/esm/api/utils/getLink.js.map +1 -1
  440. package/dist/esm/api/utils/getUser.d.ts +6 -1
  441. package/dist/esm/api/utils/getUser.d.ts.map +1 -1
  442. package/dist/esm/api/utils/getUser.js +7 -1
  443. package/dist/esm/api/utils/getUser.js.map +1 -1
  444. package/dist/esm/api/utils/index.d.ts +2 -1
  445. package/dist/esm/api/utils/index.d.ts.map +1 -1
  446. package/dist/esm/api/utils/index.js +2 -1
  447. package/dist/esm/api/utils/index.js.map +1 -1
  448. package/dist/esm/api/utils/localeVariants.d.ts +8 -0
  449. package/dist/esm/api/utils/localeVariants.d.ts.map +1 -0
  450. package/dist/esm/api/utils/localeVariants.js +41 -0
  451. package/dist/esm/api/utils/localeVariants.js.map +1 -0
  452. package/dist/esm/api/utils/mediaUploadToken.d.ts +13 -0
  453. package/dist/esm/api/utils/mediaUploadToken.d.ts.map +1 -0
  454. package/dist/esm/api/utils/mediaUploadToken.js +44 -0
  455. package/dist/esm/api/utils/mediaUploadToken.js.map +1 -0
  456. package/dist/esm/api/utils/passwords.d.ts +5 -0
  457. package/dist/esm/api/utils/passwords.d.ts.map +1 -1
  458. package/dist/esm/api/utils/passwords.js +22 -0
  459. package/dist/esm/api/utils/passwords.js.map +1 -1
  460. package/dist/esm/api/utils/populates/populateLinks.d.ts.map +1 -1
  461. package/dist/esm/api/utils/populates/populateLinks.js +12 -3
  462. package/dist/esm/api/utils/populates/populateLinks.js.map +1 -1
  463. package/dist/esm/api/utils/populates/populateRelations.d.ts +6 -2
  464. package/dist/esm/api/utils/populates/populateRelations.d.ts.map +1 -1
  465. package/dist/esm/api/utils/populates/populateRelations.js +23 -4
  466. package/dist/esm/api/utils/populates/populateRelations.js.map +1 -1
  467. package/dist/esm/api/utils/routes/routeDefinitions.d.ts +0 -1
  468. package/dist/esm/api/utils/routes/routeDefinitions.d.ts.map +1 -1
  469. package/dist/esm/api/utils/routes/routeDefinitions.js.map +1 -1
  470. package/dist/esm/api/utils/routes/routeMapHelpers.d.ts +11 -4
  471. package/dist/esm/api/utils/routes/routeMapHelpers.d.ts.map +1 -1
  472. package/dist/esm/api/utils/routes/routeMapHelpers.js +130 -23
  473. package/dist/esm/api/utils/routes/routeMapHelpers.js.map +1 -1
  474. package/dist/esm/api/utils/routes/syncConfiguredRoutes.d.ts.map +1 -1
  475. package/dist/esm/api/utils/routes/syncConfiguredRoutes.js +0 -1
  476. package/dist/esm/api/utils/routes/syncConfiguredRoutes.js.map +1 -1
  477. package/dist/esm/api/utils/routes/updateRoutesMap.d.ts.map +1 -1
  478. package/dist/esm/api/utils/routes/updateRoutesMap.js +68 -27
  479. package/dist/esm/api/utils/routes/updateRoutesMap.js.map +1 -1
  480. package/dist/esm/api/utils/safeManagerQuery.d.ts +4 -0
  481. package/dist/esm/api/utils/safeManagerQuery.d.ts.map +1 -0
  482. package/dist/esm/api/utils/safeManagerQuery.js +225 -0
  483. package/dist/esm/api/utils/safeManagerQuery.js.map +1 -0
  484. package/dist/esm/api/utils/sanitizeManagerOutput.d.ts +3 -0
  485. package/dist/esm/api/utils/sanitizeManagerOutput.d.ts.map +1 -0
  486. package/dist/esm/api/utils/sanitizeManagerOutput.js +35 -0
  487. package/dist/esm/api/utils/sanitizeManagerOutput.js.map +1 -0
  488. package/dist/esm/bootstrapState.d.ts +8 -4
  489. package/dist/esm/bootstrapState.d.ts.map +1 -1
  490. package/dist/esm/bootstrapState.js.map +1 -1
  491. package/dist/esm/client.d.ts +8 -1
  492. package/dist/esm/client.d.ts.map +1 -1
  493. package/dist/esm/client.js +4 -1
  494. package/dist/esm/client.js.map +1 -1
  495. package/dist/esm/contracts.d.ts +5 -0
  496. package/dist/esm/contracts.d.ts.map +1 -1
  497. package/dist/esm/contracts.js +5 -0
  498. package/dist/esm/contracts.js.map +1 -1
  499. package/dist/esm/index.d.ts +11 -7
  500. package/dist/esm/index.d.ts.map +1 -1
  501. package/dist/esm/index.js +43 -11
  502. package/dist/esm/index.js.map +1 -1
  503. package/dist/esm/internal-content-types/ApiOperation.d.ts +811 -0
  504. package/dist/esm/internal-content-types/ApiOperation.d.ts.map +1 -0
  505. package/dist/esm/internal-content-types/ApiOperation.js +17 -0
  506. package/dist/esm/internal-content-types/ApiOperation.js.map +1 -0
  507. package/dist/esm/internal-content-types/Backup.d.ts +15 -1
  508. package/dist/esm/internal-content-types/Backup.d.ts.map +1 -1
  509. package/dist/esm/internal-content-types/Backup.js +1 -0
  510. package/dist/esm/internal-content-types/Backup.js.map +1 -1
  511. package/dist/esm/internal-content-types/BackupDocument.d.ts +33 -1
  512. package/dist/esm/internal-content-types/BackupDocument.d.ts.map +1 -1
  513. package/dist/esm/internal-content-types/BackupDocument.js +1 -0
  514. package/dist/esm/internal-content-types/BackupDocument.js.map +1 -1
  515. package/dist/esm/internal-content-types/ContentComment.d.ts +4708 -0
  516. package/dist/esm/internal-content-types/ContentComment.d.ts.map +1 -0
  517. package/dist/esm/internal-content-types/ContentComment.js +16 -0
  518. package/dist/esm/internal-content-types/ContentComment.js.map +1 -0
  519. package/dist/esm/internal-content-types/ContentVersion.d.ts +39 -1
  520. package/dist/esm/internal-content-types/ContentVersion.d.ts.map +1 -1
  521. package/dist/esm/internal-content-types/ContentVersion.js +1 -0
  522. package/dist/esm/internal-content-types/ContentVersion.js.map +1 -1
  523. package/dist/esm/internal-content-types/HelloWorld.d.ts +10 -2
  524. package/dist/esm/internal-content-types/HelloWorld.d.ts.map +1 -1
  525. package/dist/esm/internal-content-types/Language.d.ts +11 -1
  526. package/dist/esm/internal-content-types/Language.d.ts.map +1 -1
  527. package/dist/esm/internal-content-types/Language.js +1 -0
  528. package/dist/esm/internal-content-types/Language.js.map +1 -1
  529. package/dist/esm/internal-content-types/LiteralTranslation.d.ts +17 -1
  530. package/dist/esm/internal-content-types/LiteralTranslation.d.ts.map +1 -1
  531. package/dist/esm/internal-content-types/LiteralTranslation.js +1 -0
  532. package/dist/esm/internal-content-types/LiteralTranslation.js.map +1 -1
  533. package/dist/esm/internal-content-types/ManagerFavorite.d.ts +3266 -0
  534. package/dist/esm/internal-content-types/ManagerFavorite.d.ts.map +1 -0
  535. package/dist/esm/internal-content-types/ManagerFavorite.js +14 -0
  536. package/dist/esm/internal-content-types/ManagerFavorite.js.map +1 -0
  537. package/dist/esm/internal-content-types/ManagerRole.d.ts +12 -2
  538. package/dist/esm/internal-content-types/ManagerRole.d.ts.map +1 -1
  539. package/dist/esm/internal-content-types/ManagerRole.js +2 -4
  540. package/dist/esm/internal-content-types/ManagerRole.js.map +1 -1
  541. package/dist/esm/internal-content-types/ManagerUser.d.ts +78 -13
  542. package/dist/esm/internal-content-types/ManagerUser.d.ts.map +1 -1
  543. package/dist/esm/internal-content-types/ManagerUser.js +2 -0
  544. package/dist/esm/internal-content-types/ManagerUser.js.map +1 -1
  545. package/dist/esm/internal-content-types/ManagerUserHooks.d.ts +5 -0
  546. package/dist/esm/internal-content-types/ManagerUserHooks.d.ts.map +1 -0
  547. package/dist/esm/internal-content-types/ManagerUserHooks.js +38 -0
  548. package/dist/esm/internal-content-types/ManagerUserHooks.js.map +1 -0
  549. package/dist/esm/internal-content-types/Media.d.ts +70 -2
  550. package/dist/esm/internal-content-types/Media.d.ts.map +1 -1
  551. package/dist/esm/internal-content-types/Media.js +1 -0
  552. package/dist/esm/internal-content-types/Media.js.map +1 -1
  553. package/dist/esm/internal-content-types/MediaFolder.d.ts +25 -1
  554. package/dist/esm/internal-content-types/MediaFolder.d.ts.map +1 -1
  555. package/dist/esm/internal-content-types/MediaFolder.js +1 -0
  556. package/dist/esm/internal-content-types/MediaFolder.js.map +1 -1
  557. package/dist/esm/internal-content-types/MfaChallenge.d.ts +225 -34
  558. package/dist/esm/internal-content-types/MfaChallenge.d.ts.map +1 -1
  559. package/dist/esm/internal-content-types/Migration.d.ts +37 -1
  560. package/dist/esm/internal-content-types/Migration.d.ts.map +1 -1
  561. package/dist/esm/internal-content-types/Migration.js +4 -0
  562. package/dist/esm/internal-content-types/Migration.js.map +1 -1
  563. package/dist/esm/internal-content-types/MigrationLock.d.ts +5 -1
  564. package/dist/esm/internal-content-types/MigrationLock.d.ts.map +1 -1
  565. package/dist/esm/internal-content-types/MigrationLock.js +1 -0
  566. package/dist/esm/internal-content-types/MigrationLock.js.map +1 -1
  567. package/dist/esm/internal-content-types/Page.d.ts +32 -9193
  568. package/dist/esm/internal-content-types/Page.d.ts.map +1 -1
  569. package/dist/esm/internal-content-types/Page.js +7 -8
  570. package/dist/esm/internal-content-types/Page.js.map +1 -1
  571. package/dist/esm/internal-content-types/PreviewSnapshot.d.ts +61 -1
  572. package/dist/esm/internal-content-types/PreviewSnapshot.d.ts.map +1 -1
  573. package/dist/esm/internal-content-types/Redirect.d.ts +41 -1
  574. package/dist/esm/internal-content-types/Redirect.d.ts.map +1 -1
  575. package/dist/esm/internal-content-types/Redirect.js +1 -0
  576. package/dist/esm/internal-content-types/Redirect.js.map +1 -1
  577. package/dist/esm/internal-content-types/RobotsRule.d.ts +29 -1
  578. package/dist/esm/internal-content-types/RobotsRule.d.ts.map +1 -1
  579. package/dist/esm/internal-content-types/RobotsRule.js +1 -0
  580. package/dist/esm/internal-content-types/RobotsRule.js.map +1 -1
  581. package/dist/esm/internal-content-types/Route.d.ts +36 -195
  582. package/dist/esm/internal-content-types/Route.d.ts.map +1 -1
  583. package/dist/esm/internal-content-types/Route.js +1 -1
  584. package/dist/esm/internal-content-types/Route.js.map +1 -1
  585. package/dist/esm/internal-content-types/RouteLayoutModule.d.ts +47 -1
  586. package/dist/esm/internal-content-types/RouteLayoutModule.d.ts.map +1 -1
  587. package/dist/esm/internal-content-types/RouteLayoutModule.js +1 -0
  588. package/dist/esm/internal-content-types/RouteLayoutModule.js.map +1 -1
  589. package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts +41 -1
  590. package/dist/esm/internal-content-types/RouteLayoutModuleOverride.d.ts.map +1 -1
  591. package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js +1 -0
  592. package/dist/esm/internal-content-types/RouteLayoutModuleOverride.js.map +1 -1
  593. package/dist/esm/internal-content-types/RouteLocaleVariant.d.ts +1215 -0
  594. package/dist/esm/internal-content-types/RouteLocaleVariant.d.ts.map +1 -0
  595. package/dist/esm/internal-content-types/RouteLocaleVariant.js +17 -0
  596. package/dist/esm/internal-content-types/RouteLocaleVariant.js.map +1 -0
  597. package/dist/esm/internal-content-types/RouteMap.d.ts +42 -1
  598. package/dist/esm/internal-content-types/RouteMap.d.ts.map +1 -1
  599. package/dist/esm/internal-content-types/RouteMap.js +5 -0
  600. package/dist/esm/internal-content-types/RouteMap.js.map +1 -1
  601. package/dist/esm/internal-content-types/RouteSettings.d.ts +41 -9194
  602. package/dist/esm/internal-content-types/RouteSettings.d.ts.map +1 -1
  603. package/dist/esm/internal-content-types/RouteSettings.js +1 -0
  604. package/dist/esm/internal-content-types/RouteSettings.js.map +1 -1
  605. package/dist/esm/internal-content-types/SchemaState.d.ts +19 -1
  606. package/dist/esm/internal-content-types/SchemaState.d.ts.map +1 -1
  607. package/dist/esm/internal-content-types/SchemaState.js +4 -0
  608. package/dist/esm/internal-content-types/SchemaState.js.map +1 -1
  609. package/dist/esm/internal-content-types/Seo.d.ts +131 -11
  610. package/dist/esm/internal-content-types/Seo.d.ts.map +1 -1
  611. package/dist/esm/internal-content-types/Seo.js +4 -2
  612. package/dist/esm/internal-content-types/Seo.js.map +1 -1
  613. package/dist/esm/internal-content-types/SeoSettings.d.ts +349 -13
  614. package/dist/esm/internal-content-types/SeoSettings.d.ts.map +1 -1
  615. package/dist/esm/internal-content-types/SeoSettings.js +2 -2
  616. package/dist/esm/internal-content-types/SeoSettings.js.map +1 -1
  617. package/dist/esm/internal-content-types/Session.d.ts +215 -34
  618. package/dist/esm/internal-content-types/Session.d.ts.map +1 -1
  619. package/dist/esm/internal-content-types/UserMfa.d.ts +205 -34
  620. package/dist/esm/internal-content-types/UserMfa.d.ts.map +1 -1
  621. package/dist/esm/internal-content-types/WebAuthnCredential.d.ts +241 -34
  622. package/dist/esm/internal-content-types/WebAuthnCredential.d.ts.map +1 -1
  623. package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts +223 -34
  624. package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts.map +1 -1
  625. package/dist/esm/internal-content-types/index.d.ts +4 -0
  626. package/dist/esm/internal-content-types/index.d.ts.map +1 -1
  627. package/dist/esm/internal-content-types/index.js +4 -0
  628. package/dist/esm/internal-content-types/index.js.map +1 -1
  629. package/dist/esm/lib/ContentType.d.ts +132 -18
  630. package/dist/esm/lib/ContentType.d.ts.map +1 -1
  631. package/dist/esm/lib/ContentType.js +184 -7
  632. package/dist/esm/lib/ContentType.js.map +1 -1
  633. package/dist/esm/lib/Permissions.d.ts +7 -3
  634. package/dist/esm/lib/Permissions.d.ts.map +1 -1
  635. package/dist/esm/lib/Permissions.js +66 -76
  636. package/dist/esm/lib/Permissions.js.map +1 -1
  637. package/dist/esm/lib/Registry.d.ts +37 -4
  638. package/dist/esm/lib/Registry.d.ts.map +1 -1
  639. package/dist/esm/lib/Registry.js +9 -0
  640. package/dist/esm/lib/Registry.js.map +1 -1
  641. package/dist/esm/lib/dynamicData.d.ts +88 -0
  642. package/dist/esm/lib/dynamicData.d.ts.map +1 -0
  643. package/dist/esm/lib/dynamicData.js +45 -0
  644. package/dist/esm/lib/dynamicData.js.map +1 -0
  645. package/dist/esm/lib/errors/throwAppError.d.ts.map +1 -1
  646. package/dist/esm/lib/errors/throwAppError.js +27 -3
  647. package/dist/esm/lib/errors/throwAppError.js.map +1 -1
  648. package/dist/esm/lib/fields/Field.d.ts +30 -1
  649. package/dist/esm/lib/fields/Field.d.ts.map +1 -1
  650. package/dist/esm/lib/fields/Field.js +25 -0
  651. package/dist/esm/lib/fields/Field.js.map +1 -1
  652. package/dist/esm/lib/fields/List.d.ts.map +1 -1
  653. package/dist/esm/lib/fields/List.js +25 -4
  654. package/dist/esm/lib/fields/List.js.map +1 -1
  655. package/dist/esm/lib/fields/Relation.js +3 -0
  656. package/dist/esm/lib/fields/Relation.js.map +1 -1
  657. package/dist/esm/lib/hooks.d.ts +89 -0
  658. package/dist/esm/lib/hooks.d.ts.map +1 -0
  659. package/dist/esm/lib/hooks.js +2 -0
  660. package/dist/esm/lib/hooks.js.map +1 -0
  661. package/dist/esm/lib/localeVariants.d.ts +20 -0
  662. package/dist/esm/lib/localeVariants.d.ts.map +1 -0
  663. package/dist/esm/lib/localeVariants.js +11 -0
  664. package/dist/esm/lib/localeVariants.js.map +1 -0
  665. package/dist/esm/lib/routeableContent.d.ts +5 -0
  666. package/dist/esm/lib/routeableContent.d.ts.map +1 -0
  667. package/dist/esm/lib/routeableContent.js +11 -0
  668. package/dist/esm/lib/routeableContent.js.map +1 -0
  669. package/dist/esm/lib/systemFields.d.ts +3 -0
  670. package/dist/esm/lib/systemFields.d.ts.map +1 -0
  671. package/dist/esm/lib/systemFields.js +3 -0
  672. package/dist/esm/lib/systemFields.js.map +1 -0
  673. package/dist/esm/lib/types/index.d.ts +2 -0
  674. package/dist/esm/lib/types/index.d.ts.map +1 -1
  675. package/dist/esm/manager.d.ts +283 -2879
  676. package/dist/esm/manager.d.ts.map +1 -1
  677. package/dist/esm/manager.js +2 -6
  678. package/dist/esm/manager.js.map +1 -1
  679. package/dist/esm/media/mediaService.d.ts +2 -0
  680. package/dist/esm/media/mediaService.d.ts.map +1 -1
  681. package/dist/esm/media/mediaService.js +2 -1
  682. package/dist/esm/media/mediaService.js.map +1 -1
  683. package/dist/esm/orm/createIndexes.d.ts.map +1 -1
  684. package/dist/esm/orm/createIndexes.js +24 -8
  685. package/dist/esm/orm/createIndexes.js.map +1 -1
  686. package/dist/esm/orm/index.d.ts.map +1 -1
  687. package/dist/esm/orm/index.js +7 -6
  688. package/dist/esm/orm/index.js.map +1 -1
  689. package/dist/esm/orm/operations/create.d.ts +2 -1
  690. package/dist/esm/orm/operations/create.d.ts.map +1 -1
  691. package/dist/esm/orm/operations/create.js +25 -8
  692. package/dist/esm/orm/operations/create.js.map +1 -1
  693. package/dist/esm/orm/operations/delete.d.ts +2 -2
  694. package/dist/esm/orm/operations/delete.d.ts.map +1 -1
  695. package/dist/esm/orm/operations/delete.js +23 -3
  696. package/dist/esm/orm/operations/delete.js.map +1 -1
  697. package/dist/esm/orm/operations/findDependencies.d.ts +1 -1
  698. package/dist/esm/orm/operations/findDependencies.d.ts.map +1 -1
  699. package/dist/esm/orm/operations/findDependencies.js +75 -53
  700. package/dist/esm/orm/operations/findDependencies.js.map +1 -1
  701. package/dist/esm/orm/operations/update.d.ts +2 -1
  702. package/dist/esm/orm/operations/update.d.ts.map +1 -1
  703. package/dist/esm/orm/operations/update.js +43 -17
  704. package/dist/esm/orm/operations/update.js.map +1 -1
  705. package/dist/esm/orm/operations/updateMany.d.ts +2 -1
  706. package/dist/esm/orm/operations/updateMany.d.ts.map +1 -1
  707. package/dist/esm/orm/operations/updateMany.js +24 -7
  708. package/dist/esm/orm/operations/updateMany.js.map +1 -1
  709. package/dist/esm/orm/operations/upsert.d.ts +2 -2
  710. package/dist/esm/orm/operations/upsert.d.ts.map +1 -1
  711. package/dist/esm/orm/operations/upsert.js +4 -4
  712. package/dist/esm/orm/operations/upsert.js.map +1 -1
  713. package/dist/esm/plugins.d.ts +55 -0
  714. package/dist/esm/plugins.d.ts.map +1 -0
  715. package/dist/esm/plugins.js +106 -0
  716. package/dist/esm/plugins.js.map +1 -0
  717. package/dist/esm/schemas/manager/auth/accountInfo.d.ts +1 -0
  718. package/dist/esm/schemas/manager/auth/accountInfo.d.ts.map +1 -1
  719. package/dist/esm/schemas/manager/auth/accountInfo.js +1 -0
  720. package/dist/esm/schemas/manager/auth/accountInfo.js.map +1 -1
  721. package/dist/esm/schemas/manager/auth/login.d.ts +1 -0
  722. package/dist/esm/schemas/manager/auth/login.d.ts.map +1 -1
  723. package/dist/esm/schemas/manager/auth/login.js +1 -0
  724. package/dist/esm/schemas/manager/auth/login.js.map +1 -1
  725. package/dist/esm/schemas/manager/auth/totp/verifyTotp.d.ts +1 -0
  726. package/dist/esm/schemas/manager/auth/totp/verifyTotp.d.ts.map +1 -1
  727. package/dist/esm/schemas/manager/auth/totp/verifyTotp.js +1 -0
  728. package/dist/esm/schemas/manager/auth/totp/verifyTotp.js.map +1 -1
  729. package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.d.ts +1 -0
  730. package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.d.ts.map +1 -1
  731. package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.js +1 -0
  732. package/dist/esm/schemas/manager/auth/webauthn/webauthnAuthVerify.js.map +1 -1
  733. package/dist/esm/schemas/manager/comments.d.ts +197 -0
  734. package/dist/esm/schemas/manager/comments.d.ts.map +1 -0
  735. package/dist/esm/schemas/manager/comments.js +42 -0
  736. package/dist/esm/schemas/manager/comments.js.map +1 -0
  737. package/dist/esm/schemas/manager/contentType.d.ts +6 -0
  738. package/dist/esm/schemas/manager/contentType.d.ts.map +1 -0
  739. package/dist/esm/schemas/manager/contentType.js +5 -0
  740. package/dist/esm/schemas/manager/contentType.js.map +1 -0
  741. package/dist/esm/schemas/manager/favorites.d.ts +62 -0
  742. package/dist/esm/schemas/manager/favorites.d.ts.map +1 -0
  743. package/dist/esm/schemas/manager/favorites.js +31 -0
  744. package/dist/esm/schemas/manager/favorites.js.map +1 -0
  745. package/dist/esm/schemas/manager/localeVariants.d.ts +517 -0
  746. package/dist/esm/schemas/manager/localeVariants.d.ts.map +1 -0
  747. package/dist/esm/schemas/manager/localeVariants.js +56 -0
  748. package/dist/esm/schemas/manager/localeVariants.js.map +1 -0
  749. package/dist/esm/schemas/manager/media/finalizeUpload.d.ts +1 -0
  750. package/dist/esm/schemas/manager/media/finalizeUpload.d.ts.map +1 -1
  751. package/dist/esm/schemas/manager/media/finalizeUpload.js +1 -0
  752. package/dist/esm/schemas/manager/media/finalizeUpload.js.map +1 -1
  753. package/dist/esm/schemas/manager/media/getMediaUrl.js +1 -1
  754. package/dist/esm/schemas/manager/media/getMediaUrl.js.map +1 -1
  755. package/dist/esm/schemas/manager/media/prepareUpload.d.ts +1 -0
  756. package/dist/esm/schemas/manager/media/prepareUpload.d.ts.map +1 -1
  757. package/dist/esm/schemas/manager/media/prepareUpload.js +1 -0
  758. package/dist/esm/schemas/manager/media/prepareUpload.js.map +1 -1
  759. package/dist/esm/schemas/manager/users.d.ts +26 -0
  760. package/dist/esm/schemas/manager/users.d.ts.map +1 -0
  761. package/dist/esm/schemas/manager/users.js +15 -0
  762. package/dist/esm/schemas/manager/users.js.map +1 -0
  763. package/dist/esm/schemas/web/page.d.ts +24 -0
  764. package/dist/esm/schemas/web/page.d.ts.map +1 -1
  765. package/dist/esm/schemas/web/previewPage.d.ts +16 -0
  766. package/dist/esm/schemas/web/previewPage.d.ts.map +1 -1
  767. package/dist/tsconfig.build.tsbuildinfo +1 -1
  768. package/package.json +7 -1
  769. package/dist/cjs/api/proxies/context.js +0 -13
  770. package/dist/cjs/api/proxies/context.js.map +0 -1
  771. package/dist/cjs/api/proxies/index.js +0 -26
  772. package/dist/cjs/api/proxies/index.js.map +0 -1
  773. package/dist/cjs/internal-content-types/describeField.js +0 -9
  774. package/dist/cjs/internal-content-types/describeField.js.map +0 -1
  775. package/dist/esm/api/proxies/context.d.ts +0 -21
  776. package/dist/esm/api/proxies/context.d.ts.map +0 -1
  777. package/dist/esm/api/proxies/context.js +0 -9
  778. package/dist/esm/api/proxies/context.js.map +0 -1
  779. package/dist/esm/api/proxies/index.d.ts +0 -46
  780. package/dist/esm/api/proxies/index.d.ts.map +0 -1
  781. package/dist/esm/api/proxies/index.js +0 -19
  782. package/dist/esm/api/proxies/index.js.map +0 -1
  783. package/dist/esm/internal-content-types/describeField.d.ts +0 -4
  784. package/dist/esm/internal-content-types/describeField.d.ts.map +0 -1
  785. package/dist/esm/internal-content-types/describeField.js +0 -5
  786. package/dist/esm/internal-content-types/describeField.js.map +0 -1
@@ -0,0 +1,4708 @@
1
+ import ContentType from "../lib/ContentType";
2
+ import type { DBOutput } from "../lib/types";
3
+ export declare const ContentComment: ContentType<{
4
+ contentType: import("..").WithFieldState<{
5
+ kind: "field";
6
+ readonly __fieldTypes?: {
7
+ input: string;
8
+ db: string;
9
+ output: string;
10
+ meta: import("..").StringMeta<"Text">;
11
+ state: import("..").DefaultFieldState;
12
+ } | undefined;
13
+ meta: import("..").StringMeta<"Text">;
14
+ state: import("..").DefaultFieldState;
15
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
16
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
17
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
18
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
19
+ getConfig: () => import("..").StringMeta<"Text">;
20
+ getIsRequired: () => false;
21
+ getIsTranslatable: () => false;
22
+ getVisibility: () => "all";
23
+ getIsDynamic: () => true;
24
+ getDescription: () => undefined;
25
+ getCondition: () => undefined;
26
+ } & {
27
+ type: <TThis extends {
28
+ kind: "field";
29
+ readonly __fieldTypes?: {
30
+ input: string;
31
+ db: string;
32
+ output: string;
33
+ meta: import("..").StringMeta<"Text">;
34
+ state: import("..").FieldState;
35
+ } | undefined;
36
+ meta: import("..").StringMeta<"Text">;
37
+ state: import("..").FieldState;
38
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
39
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
40
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
41
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
42
+ getConfig: () => import("..").StringMeta<"Text">;
43
+ getIsRequired: () => boolean;
44
+ getIsTranslatable: () => boolean;
45
+ getVisibility: () => import("..").Visibility;
46
+ getIsDynamic: () => boolean;
47
+ getDescription: () => string | undefined;
48
+ getCondition: () => {
49
+ field: string;
50
+ equals: unknown;
51
+ } | {
52
+ field: string;
53
+ notEquals: unknown;
54
+ } | {
55
+ field: string;
56
+ exists: boolean;
57
+ } | {
58
+ field: string;
59
+ gt: number;
60
+ } | {
61
+ field: string;
62
+ gte: number;
63
+ } | {
64
+ field: string;
65
+ lt: number;
66
+ } | {
67
+ field: string;
68
+ lte: number;
69
+ } | {
70
+ field: string;
71
+ includes: unknown;
72
+ } | {
73
+ field: string;
74
+ notIncludes: unknown;
75
+ } | {
76
+ field: string;
77
+ length: {
78
+ equals?: number | undefined;
79
+ gt?: number | undefined;
80
+ gte?: number | undefined;
81
+ lt?: number | undefined;
82
+ lte?: number | undefined;
83
+ };
84
+ } | undefined;
85
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
86
+ min: <TThis extends {
87
+ kind: "field";
88
+ readonly __fieldTypes?: {
89
+ input: string;
90
+ db: string;
91
+ output: string;
92
+ meta: import("..").StringMeta<"Text">;
93
+ state: import("..").FieldState;
94
+ } | undefined;
95
+ meta: import("..").StringMeta<"Text">;
96
+ state: import("..").FieldState;
97
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
98
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
99
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
100
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
101
+ getConfig: () => import("..").StringMeta<"Text">;
102
+ getIsRequired: () => boolean;
103
+ getIsTranslatable: () => boolean;
104
+ getVisibility: () => import("..").Visibility;
105
+ getIsDynamic: () => boolean;
106
+ getDescription: () => string | undefined;
107
+ getCondition: () => {
108
+ field: string;
109
+ equals: unknown;
110
+ } | {
111
+ field: string;
112
+ notEquals: unknown;
113
+ } | {
114
+ field: string;
115
+ exists: boolean;
116
+ } | {
117
+ field: string;
118
+ gt: number;
119
+ } | {
120
+ field: string;
121
+ gte: number;
122
+ } | {
123
+ field: string;
124
+ lt: number;
125
+ } | {
126
+ field: string;
127
+ lte: number;
128
+ } | {
129
+ field: string;
130
+ includes: unknown;
131
+ } | {
132
+ field: string;
133
+ notIncludes: unknown;
134
+ } | {
135
+ field: string;
136
+ length: {
137
+ equals?: number | undefined;
138
+ gt?: number | undefined;
139
+ gte?: number | undefined;
140
+ lt?: number | undefined;
141
+ lte?: number | undefined;
142
+ };
143
+ } | undefined;
144
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
145
+ max: <TThis extends {
146
+ kind: "field";
147
+ readonly __fieldTypes?: {
148
+ input: string;
149
+ db: string;
150
+ output: string;
151
+ meta: import("..").StringMeta<"Text">;
152
+ state: import("..").FieldState;
153
+ } | undefined;
154
+ meta: import("..").StringMeta<"Text">;
155
+ state: import("..").FieldState;
156
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
157
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
158
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
159
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
160
+ getConfig: () => import("..").StringMeta<"Text">;
161
+ getIsRequired: () => boolean;
162
+ getIsTranslatable: () => boolean;
163
+ getVisibility: () => import("..").Visibility;
164
+ getIsDynamic: () => boolean;
165
+ getDescription: () => string | undefined;
166
+ getCondition: () => {
167
+ field: string;
168
+ equals: unknown;
169
+ } | {
170
+ field: string;
171
+ notEquals: unknown;
172
+ } | {
173
+ field: string;
174
+ exists: boolean;
175
+ } | {
176
+ field: string;
177
+ gt: number;
178
+ } | {
179
+ field: string;
180
+ gte: number;
181
+ } | {
182
+ field: string;
183
+ lt: number;
184
+ } | {
185
+ field: string;
186
+ lte: number;
187
+ } | {
188
+ field: string;
189
+ includes: unknown;
190
+ } | {
191
+ field: string;
192
+ notIncludes: unknown;
193
+ } | {
194
+ field: string;
195
+ length: {
196
+ equals?: number | undefined;
197
+ gt?: number | undefined;
198
+ gte?: number | undefined;
199
+ lt?: number | undefined;
200
+ lte?: number | undefined;
201
+ };
202
+ } | undefined;
203
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
204
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
205
+ documentId: import("..").WithFieldState<{
206
+ kind: "field";
207
+ readonly __fieldTypes?: {
208
+ input: string;
209
+ db: string;
210
+ output: string;
211
+ meta: import("..").StringMeta<"Id">;
212
+ state: import("..").DefaultFieldState;
213
+ } | undefined;
214
+ meta: import("..").StringMeta<"Id">;
215
+ state: import("..").DefaultFieldState;
216
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
217
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
218
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
219
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
220
+ getConfig: () => import("..").StringMeta<"Id">;
221
+ getIsRequired: () => false;
222
+ getIsTranslatable: () => false;
223
+ getVisibility: () => "all";
224
+ getIsDynamic: () => true;
225
+ getDescription: () => undefined;
226
+ getCondition: () => undefined;
227
+ } & {
228
+ type: <TThis extends {
229
+ kind: "field";
230
+ readonly __fieldTypes?: {
231
+ input: string;
232
+ db: string;
233
+ output: string;
234
+ meta: import("..").StringMeta<"Id">;
235
+ state: import("..").FieldState;
236
+ } | undefined;
237
+ meta: import("..").StringMeta<"Id">;
238
+ state: import("..").FieldState;
239
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
240
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
241
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
242
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
243
+ getConfig: () => import("..").StringMeta<"Id">;
244
+ getIsRequired: () => boolean;
245
+ getIsTranslatable: () => boolean;
246
+ getVisibility: () => import("..").Visibility;
247
+ getIsDynamic: () => boolean;
248
+ getDescription: () => string | undefined;
249
+ getCondition: () => {
250
+ field: string;
251
+ equals: unknown;
252
+ } | {
253
+ field: string;
254
+ notEquals: unknown;
255
+ } | {
256
+ field: string;
257
+ exists: boolean;
258
+ } | {
259
+ field: string;
260
+ gt: number;
261
+ } | {
262
+ field: string;
263
+ gte: number;
264
+ } | {
265
+ field: string;
266
+ lt: number;
267
+ } | {
268
+ field: string;
269
+ lte: number;
270
+ } | {
271
+ field: string;
272
+ includes: unknown;
273
+ } | {
274
+ field: string;
275
+ notIncludes: unknown;
276
+ } | {
277
+ field: string;
278
+ length: {
279
+ equals?: number | undefined;
280
+ gt?: number | undefined;
281
+ gte?: number | undefined;
282
+ lt?: number | undefined;
283
+ lte?: number | undefined;
284
+ };
285
+ } | undefined;
286
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
287
+ min: <TThis extends {
288
+ kind: "field";
289
+ readonly __fieldTypes?: {
290
+ input: string;
291
+ db: string;
292
+ output: string;
293
+ meta: import("..").StringMeta<"Id">;
294
+ state: import("..").FieldState;
295
+ } | undefined;
296
+ meta: import("..").StringMeta<"Id">;
297
+ state: import("..").FieldState;
298
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
299
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
300
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
301
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
302
+ getConfig: () => import("..").StringMeta<"Id">;
303
+ getIsRequired: () => boolean;
304
+ getIsTranslatable: () => boolean;
305
+ getVisibility: () => import("..").Visibility;
306
+ getIsDynamic: () => boolean;
307
+ getDescription: () => string | undefined;
308
+ getCondition: () => {
309
+ field: string;
310
+ equals: unknown;
311
+ } | {
312
+ field: string;
313
+ notEquals: unknown;
314
+ } | {
315
+ field: string;
316
+ exists: boolean;
317
+ } | {
318
+ field: string;
319
+ gt: number;
320
+ } | {
321
+ field: string;
322
+ gte: number;
323
+ } | {
324
+ field: string;
325
+ lt: number;
326
+ } | {
327
+ field: string;
328
+ lte: number;
329
+ } | {
330
+ field: string;
331
+ includes: unknown;
332
+ } | {
333
+ field: string;
334
+ notIncludes: unknown;
335
+ } | {
336
+ field: string;
337
+ length: {
338
+ equals?: number | undefined;
339
+ gt?: number | undefined;
340
+ gte?: number | undefined;
341
+ lt?: number | undefined;
342
+ lte?: number | undefined;
343
+ };
344
+ } | undefined;
345
+ }>(this: TThis, length: number) => import("..").StringField<"Id", import("..").FieldStateOf<TThis>>;
346
+ max: <TThis extends {
347
+ kind: "field";
348
+ readonly __fieldTypes?: {
349
+ input: string;
350
+ db: string;
351
+ output: string;
352
+ meta: import("..").StringMeta<"Id">;
353
+ state: import("..").FieldState;
354
+ } | undefined;
355
+ meta: import("..").StringMeta<"Id">;
356
+ state: import("..").FieldState;
357
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
358
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
359
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
360
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
361
+ getConfig: () => import("..").StringMeta<"Id">;
362
+ getIsRequired: () => boolean;
363
+ getIsTranslatable: () => boolean;
364
+ getVisibility: () => import("..").Visibility;
365
+ getIsDynamic: () => boolean;
366
+ getDescription: () => string | undefined;
367
+ getCondition: () => {
368
+ field: string;
369
+ equals: unknown;
370
+ } | {
371
+ field: string;
372
+ notEquals: unknown;
373
+ } | {
374
+ field: string;
375
+ exists: boolean;
376
+ } | {
377
+ field: string;
378
+ gt: number;
379
+ } | {
380
+ field: string;
381
+ gte: number;
382
+ } | {
383
+ field: string;
384
+ lt: number;
385
+ } | {
386
+ field: string;
387
+ lte: number;
388
+ } | {
389
+ field: string;
390
+ includes: unknown;
391
+ } | {
392
+ field: string;
393
+ notIncludes: unknown;
394
+ } | {
395
+ field: string;
396
+ length: {
397
+ equals?: number | undefined;
398
+ gt?: number | undefined;
399
+ gte?: number | undefined;
400
+ lt?: number | undefined;
401
+ lte?: number | undefined;
402
+ };
403
+ } | undefined;
404
+ }>(this: TThis, length: number) => import("..").StringField<"Id", import("..").FieldStateOf<TThis>>;
405
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
406
+ author: import("..").WithFieldState<{
407
+ kind: "field";
408
+ readonly __fieldTypes?: {
409
+ input: import("..").RelationExisting<"ManagerUser">;
410
+ db: import("..").RelationExisting<"ManagerUser">;
411
+ output: {
412
+ user: string;
413
+ email: string;
414
+ role: {
415
+ name: string;
416
+ permissions: (string | undefined)[];
417
+ _type: "ManagerRole";
418
+ _id: string;
419
+ _schemaVersion?: number | undefined;
420
+ _visibility?: import("..").DocumentVisibility | undefined;
421
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
422
+ _trashed?: boolean | undefined;
423
+ _revision?: number | undefined;
424
+ _localeVariantGroupId?: string | undefined;
425
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
426
+ trashedAt?: Date | undefined;
427
+ createdAt?: Date | undefined;
428
+ updatedAt?: Date | undefined;
429
+ };
430
+ twoFactorEnabled: boolean;
431
+ _type: "ManagerUser";
432
+ _id: string;
433
+ name?: string | undefined;
434
+ avatarId?: string | undefined;
435
+ avatarKey?: string | undefined;
436
+ avatarAccess?: "public" | "private" | undefined;
437
+ avatarUrl?: string | undefined;
438
+ avatarPreviewUrl?: string | undefined;
439
+ tutorialsEnabled?: boolean | undefined;
440
+ tutorialsPromptedAt?: Date | undefined;
441
+ seenTours?: (string | undefined)[] | undefined;
442
+ _schemaVersion?: number | undefined;
443
+ _visibility?: import("..").DocumentVisibility | undefined;
444
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
445
+ _trashed?: boolean | undefined;
446
+ _revision?: number | undefined;
447
+ _localeVariantGroupId?: string | undefined;
448
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
449
+ trashedAt?: Date | undefined;
450
+ createdAt?: Date | undefined;
451
+ updatedAt?: Date | undefined;
452
+ };
453
+ meta: import("..").RelationMeta<"ManagerUser", "existing">;
454
+ state: import("..").DefaultFieldState;
455
+ } | undefined;
456
+ meta: import("..").RelationMeta<"ManagerUser", "existing">;
457
+ state: import("..").DefaultFieldState;
458
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerUser">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerUser">, unknown>>;
459
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerUser"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerUser"> | null | undefined, unknown>>;
460
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerUser"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerUser"> | undefined, unknown>>;
461
+ getOutputSchema: () => import("zod").ZodType<{
462
+ user: string;
463
+ email: string;
464
+ role: {
465
+ name: string;
466
+ permissions: (string | undefined)[];
467
+ _type: "ManagerRole";
468
+ _id: string;
469
+ _schemaVersion?: number | undefined;
470
+ _visibility?: import("..").DocumentVisibility | undefined;
471
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
472
+ _trashed?: boolean | undefined;
473
+ _revision?: number | undefined;
474
+ _localeVariantGroupId?: string | undefined;
475
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
476
+ trashedAt?: Date | undefined;
477
+ createdAt?: Date | undefined;
478
+ updatedAt?: Date | undefined;
479
+ };
480
+ twoFactorEnabled: boolean;
481
+ _type: "ManagerUser";
482
+ _id: string;
483
+ name?: string | undefined;
484
+ avatarId?: string | undefined;
485
+ avatarKey?: string | undefined;
486
+ avatarAccess?: "public" | "private" | undefined;
487
+ avatarUrl?: string | undefined;
488
+ avatarPreviewUrl?: string | undefined;
489
+ tutorialsEnabled?: boolean | undefined;
490
+ tutorialsPromptedAt?: Date | undefined;
491
+ seenTours?: (string | undefined)[] | undefined;
492
+ _schemaVersion?: number | undefined;
493
+ _visibility?: import("..").DocumentVisibility | undefined;
494
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
495
+ _trashed?: boolean | undefined;
496
+ _revision?: number | undefined;
497
+ _localeVariantGroupId?: string | undefined;
498
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
499
+ trashedAt?: Date | undefined;
500
+ createdAt?: Date | undefined;
501
+ updatedAt?: Date | undefined;
502
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
503
+ user: string;
504
+ email: string;
505
+ role: {
506
+ name: string;
507
+ permissions: (string | undefined)[];
508
+ _type: "ManagerRole";
509
+ _id: string;
510
+ _schemaVersion?: number | undefined;
511
+ _visibility?: import("..").DocumentVisibility | undefined;
512
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
513
+ _trashed?: boolean | undefined;
514
+ _revision?: number | undefined;
515
+ _localeVariantGroupId?: string | undefined;
516
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
517
+ trashedAt?: Date | undefined;
518
+ createdAt?: Date | undefined;
519
+ updatedAt?: Date | undefined;
520
+ };
521
+ twoFactorEnabled: boolean;
522
+ _type: "ManagerUser";
523
+ _id: string;
524
+ name?: string | undefined;
525
+ avatarId?: string | undefined;
526
+ avatarKey?: string | undefined;
527
+ avatarAccess?: "public" | "private" | undefined;
528
+ avatarUrl?: string | undefined;
529
+ avatarPreviewUrl?: string | undefined;
530
+ tutorialsEnabled?: boolean | undefined;
531
+ tutorialsPromptedAt?: Date | undefined;
532
+ seenTours?: (string | undefined)[] | undefined;
533
+ _schemaVersion?: number | undefined;
534
+ _visibility?: import("..").DocumentVisibility | undefined;
535
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
536
+ _trashed?: boolean | undefined;
537
+ _revision?: number | undefined;
538
+ _localeVariantGroupId?: string | undefined;
539
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
540
+ trashedAt?: Date | undefined;
541
+ createdAt?: Date | undefined;
542
+ updatedAt?: Date | undefined;
543
+ } | undefined, unknown>>;
544
+ getConfig: () => import("..").RelationMeta<"ManagerUser", "existing">;
545
+ getIsRequired: () => false;
546
+ getIsTranslatable: () => false;
547
+ getVisibility: () => "all";
548
+ getIsDynamic: () => true;
549
+ getDescription: () => undefined;
550
+ getCondition: () => undefined;
551
+ } & import("..").PopulatableFieldLike<{
552
+ user: string;
553
+ email: string;
554
+ password: string;
555
+ role: {
556
+ name: string;
557
+ permissions: (string | undefined)[];
558
+ _type: "ManagerRole";
559
+ _id: string;
560
+ _schemaVersion?: number | undefined;
561
+ _visibility?: import("..").DocumentVisibility | undefined;
562
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
563
+ _trashed?: boolean | undefined;
564
+ _revision?: number | undefined;
565
+ _localeVariantGroupId?: string | undefined;
566
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
567
+ trashedAt?: Date | undefined;
568
+ trashedBy?: string | undefined;
569
+ createdAt?: Date | undefined;
570
+ updatedAt?: Date | undefined;
571
+ createdBy?: string | undefined;
572
+ updatedBy?: string | undefined;
573
+ };
574
+ twoFactorEnabled: boolean;
575
+ _type: "ManagerUser";
576
+ _id: string;
577
+ name?: string | undefined;
578
+ avatarId?: string | undefined;
579
+ avatarKey?: string | undefined;
580
+ avatarAccess?: "public" | "private" | undefined;
581
+ avatarUrl?: string | undefined;
582
+ avatarPreviewUrl?: string | undefined;
583
+ tutorialsEnabled?: boolean | undefined;
584
+ tutorialsPromptedAt?: Date | undefined;
585
+ seenTours?: (string | undefined)[] | undefined;
586
+ _schemaVersion?: number | undefined;
587
+ _visibility?: import("..").DocumentVisibility | undefined;
588
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
589
+ _trashed?: boolean | undefined;
590
+ _revision?: number | undefined;
591
+ _localeVariantGroupId?: string | undefined;
592
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
593
+ trashedAt?: Date | undefined;
594
+ trashedBy?: string | undefined;
595
+ createdAt?: Date | undefined;
596
+ updatedAt?: Date | undefined;
597
+ createdBy?: string | undefined;
598
+ updatedBy?: string | undefined;
599
+ }, import("..").DefaultFieldState> & {
600
+ contentType: ContentType<{
601
+ name: import("..").StringField<"Text", import("..").DefaultFieldState>;
602
+ user: import("..").WithFieldState<{
603
+ kind: "field";
604
+ readonly __fieldTypes?: {
605
+ input: string;
606
+ db: string;
607
+ output: string;
608
+ meta: import("..").StringMeta<"Text">;
609
+ state: import("..").DefaultFieldState;
610
+ } | undefined;
611
+ meta: import("..").StringMeta<"Text">;
612
+ state: import("..").DefaultFieldState;
613
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
614
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
615
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
616
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
617
+ getConfig: () => import("..").StringMeta<"Text">;
618
+ getIsRequired: () => false;
619
+ getIsTranslatable: () => false;
620
+ getVisibility: () => "all";
621
+ getIsDynamic: () => true;
622
+ getDescription: () => undefined;
623
+ getCondition: () => undefined;
624
+ } & {
625
+ type: <TThis extends {
626
+ kind: "field";
627
+ readonly __fieldTypes?: {
628
+ input: string;
629
+ db: string;
630
+ output: string;
631
+ meta: import("..").StringMeta<"Text">;
632
+ state: import("..").FieldState;
633
+ } | undefined;
634
+ meta: import("..").StringMeta<"Text">;
635
+ state: import("..").FieldState;
636
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
637
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
638
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
639
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
640
+ getConfig: () => import("..").StringMeta<"Text">;
641
+ getIsRequired: () => boolean;
642
+ getIsTranslatable: () => boolean;
643
+ getVisibility: () => import("..").Visibility;
644
+ getIsDynamic: () => boolean;
645
+ getDescription: () => string | undefined;
646
+ getCondition: () => {
647
+ field: string;
648
+ equals: unknown;
649
+ } | {
650
+ field: string;
651
+ notEquals: unknown;
652
+ } | {
653
+ field: string;
654
+ exists: boolean;
655
+ } | {
656
+ field: string;
657
+ gt: number;
658
+ } | {
659
+ field: string;
660
+ gte: number;
661
+ } | {
662
+ field: string;
663
+ lt: number;
664
+ } | {
665
+ field: string;
666
+ lte: number;
667
+ } | {
668
+ field: string;
669
+ includes: unknown;
670
+ } | {
671
+ field: string;
672
+ notIncludes: unknown;
673
+ } | {
674
+ field: string;
675
+ length: {
676
+ equals?: number | undefined;
677
+ gt?: number | undefined;
678
+ gte?: number | undefined;
679
+ lt?: number | undefined;
680
+ lte?: number | undefined;
681
+ };
682
+ } | undefined;
683
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
684
+ min: <TThis extends {
685
+ kind: "field";
686
+ readonly __fieldTypes?: {
687
+ input: string;
688
+ db: string;
689
+ output: string;
690
+ meta: import("..").StringMeta<"Text">;
691
+ state: import("..").FieldState;
692
+ } | undefined;
693
+ meta: import("..").StringMeta<"Text">;
694
+ state: import("..").FieldState;
695
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
696
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
697
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
698
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
699
+ getConfig: () => import("..").StringMeta<"Text">;
700
+ getIsRequired: () => boolean;
701
+ getIsTranslatable: () => boolean;
702
+ getVisibility: () => import("..").Visibility;
703
+ getIsDynamic: () => boolean;
704
+ getDescription: () => string | undefined;
705
+ getCondition: () => {
706
+ field: string;
707
+ equals: unknown;
708
+ } | {
709
+ field: string;
710
+ notEquals: unknown;
711
+ } | {
712
+ field: string;
713
+ exists: boolean;
714
+ } | {
715
+ field: string;
716
+ gt: number;
717
+ } | {
718
+ field: string;
719
+ gte: number;
720
+ } | {
721
+ field: string;
722
+ lt: number;
723
+ } | {
724
+ field: string;
725
+ lte: number;
726
+ } | {
727
+ field: string;
728
+ includes: unknown;
729
+ } | {
730
+ field: string;
731
+ notIncludes: unknown;
732
+ } | {
733
+ field: string;
734
+ length: {
735
+ equals?: number | undefined;
736
+ gt?: number | undefined;
737
+ gte?: number | undefined;
738
+ lt?: number | undefined;
739
+ lte?: number | undefined;
740
+ };
741
+ } | undefined;
742
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
743
+ max: <TThis extends {
744
+ kind: "field";
745
+ readonly __fieldTypes?: {
746
+ input: string;
747
+ db: string;
748
+ output: string;
749
+ meta: import("..").StringMeta<"Text">;
750
+ state: import("..").FieldState;
751
+ } | undefined;
752
+ meta: import("..").StringMeta<"Text">;
753
+ state: import("..").FieldState;
754
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
755
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
756
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
757
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
758
+ getConfig: () => import("..").StringMeta<"Text">;
759
+ getIsRequired: () => boolean;
760
+ getIsTranslatable: () => boolean;
761
+ getVisibility: () => import("..").Visibility;
762
+ getIsDynamic: () => boolean;
763
+ getDescription: () => string | undefined;
764
+ getCondition: () => {
765
+ field: string;
766
+ equals: unknown;
767
+ } | {
768
+ field: string;
769
+ notEquals: unknown;
770
+ } | {
771
+ field: string;
772
+ exists: boolean;
773
+ } | {
774
+ field: string;
775
+ gt: number;
776
+ } | {
777
+ field: string;
778
+ gte: number;
779
+ } | {
780
+ field: string;
781
+ lt: number;
782
+ } | {
783
+ field: string;
784
+ lte: number;
785
+ } | {
786
+ field: string;
787
+ includes: unknown;
788
+ } | {
789
+ field: string;
790
+ notIncludes: unknown;
791
+ } | {
792
+ field: string;
793
+ length: {
794
+ equals?: number | undefined;
795
+ gt?: number | undefined;
796
+ gte?: number | undefined;
797
+ lt?: number | undefined;
798
+ lte?: number | undefined;
799
+ };
800
+ } | undefined;
801
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
802
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
803
+ email: import("..").WithFieldState<{
804
+ kind: "field";
805
+ readonly __fieldTypes?: {
806
+ input: string;
807
+ db: string;
808
+ output: string;
809
+ meta: import("..").StringMeta<"Email">;
810
+ state: import("..").DefaultFieldState;
811
+ } | undefined;
812
+ meta: import("..").StringMeta<"Email">;
813
+ state: import("..").DefaultFieldState;
814
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
815
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
816
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
817
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
818
+ getConfig: () => import("..").StringMeta<"Email">;
819
+ getIsRequired: () => false;
820
+ getIsTranslatable: () => false;
821
+ getVisibility: () => "all";
822
+ getIsDynamic: () => true;
823
+ getDescription: () => undefined;
824
+ getCondition: () => undefined;
825
+ } & {
826
+ type: <TThis extends {
827
+ kind: "field";
828
+ readonly __fieldTypes?: {
829
+ input: string;
830
+ db: string;
831
+ output: string;
832
+ meta: import("..").StringMeta<"Email">;
833
+ state: import("..").FieldState;
834
+ } | undefined;
835
+ meta: import("..").StringMeta<"Email">;
836
+ state: import("..").FieldState;
837
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
838
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
839
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
840
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
841
+ getConfig: () => import("..").StringMeta<"Email">;
842
+ getIsRequired: () => boolean;
843
+ getIsTranslatable: () => boolean;
844
+ getVisibility: () => import("..").Visibility;
845
+ getIsDynamic: () => boolean;
846
+ getDescription: () => string | undefined;
847
+ getCondition: () => {
848
+ field: string;
849
+ equals: unknown;
850
+ } | {
851
+ field: string;
852
+ notEquals: unknown;
853
+ } | {
854
+ field: string;
855
+ exists: boolean;
856
+ } | {
857
+ field: string;
858
+ gt: number;
859
+ } | {
860
+ field: string;
861
+ gte: number;
862
+ } | {
863
+ field: string;
864
+ lt: number;
865
+ } | {
866
+ field: string;
867
+ lte: number;
868
+ } | {
869
+ field: string;
870
+ includes: unknown;
871
+ } | {
872
+ field: string;
873
+ notIncludes: unknown;
874
+ } | {
875
+ field: string;
876
+ length: {
877
+ equals?: number | undefined;
878
+ gt?: number | undefined;
879
+ gte?: number | undefined;
880
+ lt?: number | undefined;
881
+ lte?: number | undefined;
882
+ };
883
+ } | undefined;
884
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
885
+ min: <TThis extends {
886
+ kind: "field";
887
+ readonly __fieldTypes?: {
888
+ input: string;
889
+ db: string;
890
+ output: string;
891
+ meta: import("..").StringMeta<"Email">;
892
+ state: import("..").FieldState;
893
+ } | undefined;
894
+ meta: import("..").StringMeta<"Email">;
895
+ state: import("..").FieldState;
896
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
897
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
898
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
899
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
900
+ getConfig: () => import("..").StringMeta<"Email">;
901
+ getIsRequired: () => boolean;
902
+ getIsTranslatable: () => boolean;
903
+ getVisibility: () => import("..").Visibility;
904
+ getIsDynamic: () => boolean;
905
+ getDescription: () => string | undefined;
906
+ getCondition: () => {
907
+ field: string;
908
+ equals: unknown;
909
+ } | {
910
+ field: string;
911
+ notEquals: unknown;
912
+ } | {
913
+ field: string;
914
+ exists: boolean;
915
+ } | {
916
+ field: string;
917
+ gt: number;
918
+ } | {
919
+ field: string;
920
+ gte: number;
921
+ } | {
922
+ field: string;
923
+ lt: number;
924
+ } | {
925
+ field: string;
926
+ lte: number;
927
+ } | {
928
+ field: string;
929
+ includes: unknown;
930
+ } | {
931
+ field: string;
932
+ notIncludes: unknown;
933
+ } | {
934
+ field: string;
935
+ length: {
936
+ equals?: number | undefined;
937
+ gt?: number | undefined;
938
+ gte?: number | undefined;
939
+ lt?: number | undefined;
940
+ lte?: number | undefined;
941
+ };
942
+ } | undefined;
943
+ }>(this: TThis, length: number) => import("..").StringField<"Email", import("..").FieldStateOf<TThis>>;
944
+ max: <TThis extends {
945
+ kind: "field";
946
+ readonly __fieldTypes?: {
947
+ input: string;
948
+ db: string;
949
+ output: string;
950
+ meta: import("..").StringMeta<"Email">;
951
+ state: import("..").FieldState;
952
+ } | undefined;
953
+ meta: import("..").StringMeta<"Email">;
954
+ state: import("..").FieldState;
955
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
956
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
957
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
958
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
959
+ getConfig: () => import("..").StringMeta<"Email">;
960
+ getIsRequired: () => boolean;
961
+ getIsTranslatable: () => boolean;
962
+ getVisibility: () => import("..").Visibility;
963
+ getIsDynamic: () => boolean;
964
+ getDescription: () => string | undefined;
965
+ getCondition: () => {
966
+ field: string;
967
+ equals: unknown;
968
+ } | {
969
+ field: string;
970
+ notEquals: unknown;
971
+ } | {
972
+ field: string;
973
+ exists: boolean;
974
+ } | {
975
+ field: string;
976
+ gt: number;
977
+ } | {
978
+ field: string;
979
+ gte: number;
980
+ } | {
981
+ field: string;
982
+ lt: number;
983
+ } | {
984
+ field: string;
985
+ lte: number;
986
+ } | {
987
+ field: string;
988
+ includes: unknown;
989
+ } | {
990
+ field: string;
991
+ notIncludes: unknown;
992
+ } | {
993
+ field: string;
994
+ length: {
995
+ equals?: number | undefined;
996
+ gt?: number | undefined;
997
+ gte?: number | undefined;
998
+ lt?: number | undefined;
999
+ lte?: number | undefined;
1000
+ };
1001
+ } | undefined;
1002
+ }>(this: TThis, length: number) => import("..").StringField<"Email", import("..").FieldStateOf<TThis>>;
1003
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1004
+ password: import("..").WithFieldState<Omit<{
1005
+ kind: "field";
1006
+ readonly __fieldTypes?: {
1007
+ input: string;
1008
+ db: string;
1009
+ output: string;
1010
+ meta: import("..").StringMeta<"Password">;
1011
+ state: import("..").DefaultFieldState;
1012
+ } | undefined;
1013
+ meta: import("..").StringMeta<"Password">;
1014
+ state: import("..").DefaultFieldState;
1015
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1016
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1017
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1018
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1019
+ getConfig: () => import("..").StringMeta<"Password">;
1020
+ getIsRequired: () => false;
1021
+ getIsTranslatable: () => false;
1022
+ getVisibility: () => "all";
1023
+ getIsDynamic: () => true;
1024
+ getDescription: () => undefined;
1025
+ getCondition: () => undefined;
1026
+ } & {
1027
+ type: <TThis extends {
1028
+ kind: "field";
1029
+ readonly __fieldTypes?: {
1030
+ input: string;
1031
+ db: string;
1032
+ output: string;
1033
+ meta: import("..").StringMeta<"Password">;
1034
+ state: import("..").FieldState;
1035
+ } | undefined;
1036
+ meta: import("..").StringMeta<"Password">;
1037
+ state: import("..").FieldState;
1038
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1039
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1040
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1041
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1042
+ getConfig: () => import("..").StringMeta<"Password">;
1043
+ getIsRequired: () => boolean;
1044
+ getIsTranslatable: () => boolean;
1045
+ getVisibility: () => import("..").Visibility;
1046
+ getIsDynamic: () => boolean;
1047
+ getDescription: () => string | undefined;
1048
+ getCondition: () => {
1049
+ field: string;
1050
+ equals: unknown;
1051
+ } | {
1052
+ field: string;
1053
+ notEquals: unknown;
1054
+ } | {
1055
+ field: string;
1056
+ exists: boolean;
1057
+ } | {
1058
+ field: string;
1059
+ gt: number;
1060
+ } | {
1061
+ field: string;
1062
+ gte: number;
1063
+ } | {
1064
+ field: string;
1065
+ lt: number;
1066
+ } | {
1067
+ field: string;
1068
+ lte: number;
1069
+ } | {
1070
+ field: string;
1071
+ includes: unknown;
1072
+ } | {
1073
+ field: string;
1074
+ notIncludes: unknown;
1075
+ } | {
1076
+ field: string;
1077
+ length: {
1078
+ equals?: number | undefined;
1079
+ gt?: number | undefined;
1080
+ gte?: number | undefined;
1081
+ lt?: number | undefined;
1082
+ lte?: number | undefined;
1083
+ };
1084
+ } | undefined;
1085
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
1086
+ min: <TThis extends {
1087
+ kind: "field";
1088
+ readonly __fieldTypes?: {
1089
+ input: string;
1090
+ db: string;
1091
+ output: string;
1092
+ meta: import("..").StringMeta<"Password">;
1093
+ state: import("..").FieldState;
1094
+ } | undefined;
1095
+ meta: import("..").StringMeta<"Password">;
1096
+ state: import("..").FieldState;
1097
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1098
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1099
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1100
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1101
+ getConfig: () => import("..").StringMeta<"Password">;
1102
+ getIsRequired: () => boolean;
1103
+ getIsTranslatable: () => boolean;
1104
+ getVisibility: () => import("..").Visibility;
1105
+ getIsDynamic: () => boolean;
1106
+ getDescription: () => string | undefined;
1107
+ getCondition: () => {
1108
+ field: string;
1109
+ equals: unknown;
1110
+ } | {
1111
+ field: string;
1112
+ notEquals: unknown;
1113
+ } | {
1114
+ field: string;
1115
+ exists: boolean;
1116
+ } | {
1117
+ field: string;
1118
+ gt: number;
1119
+ } | {
1120
+ field: string;
1121
+ gte: number;
1122
+ } | {
1123
+ field: string;
1124
+ lt: number;
1125
+ } | {
1126
+ field: string;
1127
+ lte: number;
1128
+ } | {
1129
+ field: string;
1130
+ includes: unknown;
1131
+ } | {
1132
+ field: string;
1133
+ notIncludes: unknown;
1134
+ } | {
1135
+ field: string;
1136
+ length: {
1137
+ equals?: number | undefined;
1138
+ gt?: number | undefined;
1139
+ gte?: number | undefined;
1140
+ lt?: number | undefined;
1141
+ lte?: number | undefined;
1142
+ };
1143
+ } | undefined;
1144
+ }>(this: TThis, length: number) => import("..").StringField<"Password", import("..").FieldStateOf<TThis>>;
1145
+ max: <TThis extends {
1146
+ kind: "field";
1147
+ readonly __fieldTypes?: {
1148
+ input: string;
1149
+ db: string;
1150
+ output: string;
1151
+ meta: import("..").StringMeta<"Password">;
1152
+ state: import("..").FieldState;
1153
+ } | undefined;
1154
+ meta: import("..").StringMeta<"Password">;
1155
+ state: import("..").FieldState;
1156
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1157
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1158
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1159
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1160
+ getConfig: () => import("..").StringMeta<"Password">;
1161
+ getIsRequired: () => boolean;
1162
+ getIsTranslatable: () => boolean;
1163
+ getVisibility: () => import("..").Visibility;
1164
+ getIsDynamic: () => boolean;
1165
+ getDescription: () => string | undefined;
1166
+ getCondition: () => {
1167
+ field: string;
1168
+ equals: unknown;
1169
+ } | {
1170
+ field: string;
1171
+ notEquals: unknown;
1172
+ } | {
1173
+ field: string;
1174
+ exists: boolean;
1175
+ } | {
1176
+ field: string;
1177
+ gt: number;
1178
+ } | {
1179
+ field: string;
1180
+ gte: number;
1181
+ } | {
1182
+ field: string;
1183
+ lt: number;
1184
+ } | {
1185
+ field: string;
1186
+ lte: number;
1187
+ } | {
1188
+ field: string;
1189
+ includes: unknown;
1190
+ } | {
1191
+ field: string;
1192
+ notIncludes: unknown;
1193
+ } | {
1194
+ field: string;
1195
+ length: {
1196
+ equals?: number | undefined;
1197
+ gt?: number | undefined;
1198
+ gte?: number | undefined;
1199
+ lt?: number | undefined;
1200
+ lte?: number | undefined;
1201
+ };
1202
+ } | undefined;
1203
+ }>(this: TThis, length: number) => import("..").StringField<"Password", import("..").FieldStateOf<TThis>>;
1204
+ }, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Password">, import("..").SetRequired<import("..").DefaultFieldState>>, import("..").SetVisibility<import("..").SetRequired<import("..").DefaultFieldState>, "manager">>;
1205
+ role: import("..").WithFieldState<{
1206
+ kind: "field";
1207
+ readonly __fieldTypes?: {
1208
+ input: import("..").RelationExisting<"ManagerRole">;
1209
+ db: import("..").RelationExisting<"ManagerRole">;
1210
+ output: {
1211
+ name: string;
1212
+ permissions: (string | undefined)[];
1213
+ _type: "ManagerRole";
1214
+ _id: string;
1215
+ _schemaVersion?: number | undefined;
1216
+ _visibility?: import("..").DocumentVisibility | undefined;
1217
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1218
+ _trashed?: boolean | undefined;
1219
+ _revision?: number | undefined;
1220
+ _localeVariantGroupId?: string | undefined;
1221
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1222
+ trashedAt?: Date | undefined;
1223
+ createdAt?: Date | undefined;
1224
+ updatedAt?: Date | undefined;
1225
+ };
1226
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
1227
+ state: import("..").DefaultFieldState;
1228
+ } | undefined;
1229
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
1230
+ state: import("..").DefaultFieldState;
1231
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole">, unknown>>;
1232
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
1233
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | undefined, unknown>>;
1234
+ getOutputSchema: () => import("zod").ZodType<{
1235
+ name: string;
1236
+ permissions: (string | undefined)[];
1237
+ _type: "ManagerRole";
1238
+ _id: string;
1239
+ _schemaVersion?: number | undefined;
1240
+ _visibility?: import("..").DocumentVisibility | undefined;
1241
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1242
+ _trashed?: boolean | undefined;
1243
+ _revision?: number | undefined;
1244
+ _localeVariantGroupId?: string | undefined;
1245
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1246
+ trashedAt?: Date | undefined;
1247
+ createdAt?: Date | undefined;
1248
+ updatedAt?: Date | undefined;
1249
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
1250
+ name: string;
1251
+ permissions: (string | undefined)[];
1252
+ _type: "ManagerRole";
1253
+ _id: string;
1254
+ _schemaVersion?: number | undefined;
1255
+ _visibility?: import("..").DocumentVisibility | undefined;
1256
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1257
+ _trashed?: boolean | undefined;
1258
+ _revision?: number | undefined;
1259
+ _localeVariantGroupId?: string | undefined;
1260
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1261
+ trashedAt?: Date | undefined;
1262
+ createdAt?: Date | undefined;
1263
+ updatedAt?: Date | undefined;
1264
+ } | undefined, unknown>>;
1265
+ getConfig: () => import("..").RelationMeta<"ManagerRole", undefined>;
1266
+ getIsRequired: () => false;
1267
+ getIsTranslatable: () => false;
1268
+ getVisibility: () => "all";
1269
+ getIsDynamic: () => true;
1270
+ getDescription: () => undefined;
1271
+ getCondition: () => undefined;
1272
+ } & import("..").PopulatableFieldLike<{
1273
+ name: string;
1274
+ permissions: (string | undefined)[];
1275
+ _type: "ManagerRole";
1276
+ _id: string;
1277
+ _schemaVersion?: number | undefined;
1278
+ _visibility?: import("..").DocumentVisibility | undefined;
1279
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1280
+ _trashed?: boolean | undefined;
1281
+ _revision?: number | undefined;
1282
+ _localeVariantGroupId?: string | undefined;
1283
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1284
+ trashedAt?: Date | undefined;
1285
+ trashedBy?: string | undefined;
1286
+ createdAt?: Date | undefined;
1287
+ updatedAt?: Date | undefined;
1288
+ createdBy?: string | undefined;
1289
+ updatedBy?: string | undefined;
1290
+ }, import("..").DefaultFieldState> & {
1291
+ contentType: ContentType<{
1292
+ name: import("..").WithFieldState<{
1293
+ kind: "field";
1294
+ readonly __fieldTypes?: {
1295
+ input: string;
1296
+ db: string;
1297
+ output: string;
1298
+ meta: import("..").StringMeta<"Text">;
1299
+ state: import("..").DefaultFieldState;
1300
+ } | undefined;
1301
+ meta: import("..").StringMeta<"Text">;
1302
+ state: import("..").DefaultFieldState;
1303
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1304
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1305
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1306
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1307
+ getConfig: () => import("..").StringMeta<"Text">;
1308
+ getIsRequired: () => false;
1309
+ getIsTranslatable: () => false;
1310
+ getVisibility: () => "all";
1311
+ getIsDynamic: () => true;
1312
+ getDescription: () => undefined;
1313
+ getCondition: () => undefined;
1314
+ } & {
1315
+ type: <TThis extends {
1316
+ kind: "field";
1317
+ readonly __fieldTypes?: {
1318
+ input: string;
1319
+ db: string;
1320
+ output: string;
1321
+ meta: import("..").StringMeta<"Text">;
1322
+ state: import("..").FieldState;
1323
+ } | undefined;
1324
+ meta: import("..").StringMeta<"Text">;
1325
+ state: import("..").FieldState;
1326
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1327
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1328
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1329
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1330
+ getConfig: () => import("..").StringMeta<"Text">;
1331
+ getIsRequired: () => boolean;
1332
+ getIsTranslatable: () => boolean;
1333
+ getVisibility: () => import("..").Visibility;
1334
+ getIsDynamic: () => boolean;
1335
+ getDescription: () => string | undefined;
1336
+ getCondition: () => {
1337
+ field: string;
1338
+ equals: unknown;
1339
+ } | {
1340
+ field: string;
1341
+ notEquals: unknown;
1342
+ } | {
1343
+ field: string;
1344
+ exists: boolean;
1345
+ } | {
1346
+ field: string;
1347
+ gt: number;
1348
+ } | {
1349
+ field: string;
1350
+ gte: number;
1351
+ } | {
1352
+ field: string;
1353
+ lt: number;
1354
+ } | {
1355
+ field: string;
1356
+ lte: number;
1357
+ } | {
1358
+ field: string;
1359
+ includes: unknown;
1360
+ } | {
1361
+ field: string;
1362
+ notIncludes: unknown;
1363
+ } | {
1364
+ field: string;
1365
+ length: {
1366
+ equals?: number | undefined;
1367
+ gt?: number | undefined;
1368
+ gte?: number | undefined;
1369
+ lt?: number | undefined;
1370
+ lte?: number | undefined;
1371
+ };
1372
+ } | undefined;
1373
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
1374
+ min: <TThis extends {
1375
+ kind: "field";
1376
+ readonly __fieldTypes?: {
1377
+ input: string;
1378
+ db: string;
1379
+ output: string;
1380
+ meta: import("..").StringMeta<"Text">;
1381
+ state: import("..").FieldState;
1382
+ } | undefined;
1383
+ meta: import("..").StringMeta<"Text">;
1384
+ state: import("..").FieldState;
1385
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1386
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1387
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1388
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1389
+ getConfig: () => import("..").StringMeta<"Text">;
1390
+ getIsRequired: () => boolean;
1391
+ getIsTranslatable: () => boolean;
1392
+ getVisibility: () => import("..").Visibility;
1393
+ getIsDynamic: () => boolean;
1394
+ getDescription: () => string | undefined;
1395
+ getCondition: () => {
1396
+ field: string;
1397
+ equals: unknown;
1398
+ } | {
1399
+ field: string;
1400
+ notEquals: unknown;
1401
+ } | {
1402
+ field: string;
1403
+ exists: boolean;
1404
+ } | {
1405
+ field: string;
1406
+ gt: number;
1407
+ } | {
1408
+ field: string;
1409
+ gte: number;
1410
+ } | {
1411
+ field: string;
1412
+ lt: number;
1413
+ } | {
1414
+ field: string;
1415
+ lte: number;
1416
+ } | {
1417
+ field: string;
1418
+ includes: unknown;
1419
+ } | {
1420
+ field: string;
1421
+ notIncludes: unknown;
1422
+ } | {
1423
+ field: string;
1424
+ length: {
1425
+ equals?: number | undefined;
1426
+ gt?: number | undefined;
1427
+ gte?: number | undefined;
1428
+ lt?: number | undefined;
1429
+ lte?: number | undefined;
1430
+ };
1431
+ } | undefined;
1432
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
1433
+ max: <TThis extends {
1434
+ kind: "field";
1435
+ readonly __fieldTypes?: {
1436
+ input: string;
1437
+ db: string;
1438
+ output: string;
1439
+ meta: import("..").StringMeta<"Text">;
1440
+ state: import("..").FieldState;
1441
+ } | undefined;
1442
+ meta: import("..").StringMeta<"Text">;
1443
+ state: import("..").FieldState;
1444
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1445
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1446
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1447
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1448
+ getConfig: () => import("..").StringMeta<"Text">;
1449
+ getIsRequired: () => boolean;
1450
+ getIsTranslatable: () => boolean;
1451
+ getVisibility: () => import("..").Visibility;
1452
+ getIsDynamic: () => boolean;
1453
+ getDescription: () => string | undefined;
1454
+ getCondition: () => {
1455
+ field: string;
1456
+ equals: unknown;
1457
+ } | {
1458
+ field: string;
1459
+ notEquals: unknown;
1460
+ } | {
1461
+ field: string;
1462
+ exists: boolean;
1463
+ } | {
1464
+ field: string;
1465
+ gt: number;
1466
+ } | {
1467
+ field: string;
1468
+ gte: number;
1469
+ } | {
1470
+ field: string;
1471
+ lt: number;
1472
+ } | {
1473
+ field: string;
1474
+ lte: number;
1475
+ } | {
1476
+ field: string;
1477
+ includes: unknown;
1478
+ } | {
1479
+ field: string;
1480
+ notIncludes: unknown;
1481
+ } | {
1482
+ field: string;
1483
+ length: {
1484
+ equals?: number | undefined;
1485
+ gt?: number | undefined;
1486
+ gte?: number | undefined;
1487
+ lt?: number | undefined;
1488
+ lte?: number | undefined;
1489
+ };
1490
+ } | undefined;
1491
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
1492
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1493
+ permissions: import("..").WithFieldState<import("..").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("..").SimpleListMeta<import("..").StringField<"Text", import("..").DefaultFieldState>>, import("..").DefaultFieldState> & import("..").PopulatableFieldLike<(string | undefined)[], import("..").DefaultFieldState> & {
1494
+ field: import("..").StringField<"Text", import("..").DefaultFieldState>;
1495
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1496
+ }, "ManagerRole", undefined>;
1497
+ only?: undefined;
1498
+ multiple: <TThis extends {
1499
+ kind: "field";
1500
+ readonly __fieldTypes?: {
1501
+ input: import("..").RelationExisting<"ManagerRole">;
1502
+ db: import("..").RelationExisting<"ManagerRole">;
1503
+ output: {
1504
+ name: string;
1505
+ permissions: (string | undefined)[];
1506
+ _type: "ManagerRole";
1507
+ _id: string;
1508
+ _schemaVersion?: number | undefined;
1509
+ _visibility?: import("..").DocumentVisibility | undefined;
1510
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1511
+ _trashed?: boolean | undefined;
1512
+ _revision?: number | undefined;
1513
+ _localeVariantGroupId?: string | undefined;
1514
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1515
+ trashedAt?: Date | undefined;
1516
+ createdAt?: Date | undefined;
1517
+ updatedAt?: Date | undefined;
1518
+ };
1519
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
1520
+ state: import("..").FieldState;
1521
+ } | undefined;
1522
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
1523
+ state: import("..").FieldState;
1524
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole">, unknown>>;
1525
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
1526
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | undefined, unknown>>;
1527
+ getOutputSchema: () => import("zod").ZodType<{
1528
+ name: string;
1529
+ permissions: (string | undefined)[];
1530
+ _type: "ManagerRole";
1531
+ _id: string;
1532
+ _schemaVersion?: number | undefined;
1533
+ _visibility?: import("..").DocumentVisibility | undefined;
1534
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1535
+ _trashed?: boolean | undefined;
1536
+ _revision?: number | undefined;
1537
+ _localeVariantGroupId?: string | undefined;
1538
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1539
+ trashedAt?: Date | undefined;
1540
+ createdAt?: Date | undefined;
1541
+ updatedAt?: Date | undefined;
1542
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
1543
+ name: string;
1544
+ permissions: (string | undefined)[];
1545
+ _type: "ManagerRole";
1546
+ _id: string;
1547
+ _schemaVersion?: number | undefined;
1548
+ _visibility?: import("..").DocumentVisibility | undefined;
1549
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1550
+ _trashed?: boolean | undefined;
1551
+ _revision?: number | undefined;
1552
+ _localeVariantGroupId?: string | undefined;
1553
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1554
+ trashedAt?: Date | undefined;
1555
+ createdAt?: Date | undefined;
1556
+ updatedAt?: Date | undefined;
1557
+ } | undefined, unknown>>;
1558
+ getConfig: () => import("..").RelationMeta<"ManagerRole", undefined>;
1559
+ getIsRequired: () => boolean;
1560
+ getIsTranslatable: () => boolean;
1561
+ getVisibility: () => import("..").Visibility;
1562
+ getIsDynamic: () => boolean;
1563
+ getDescription: () => string | undefined;
1564
+ getCondition: () => {
1565
+ field: string;
1566
+ equals: unknown;
1567
+ } | {
1568
+ field: string;
1569
+ notEquals: unknown;
1570
+ } | {
1571
+ field: string;
1572
+ exists: boolean;
1573
+ } | {
1574
+ field: string;
1575
+ gt: number;
1576
+ } | {
1577
+ field: string;
1578
+ gte: number;
1579
+ } | {
1580
+ field: string;
1581
+ lt: number;
1582
+ } | {
1583
+ field: string;
1584
+ lte: number;
1585
+ } | {
1586
+ field: string;
1587
+ includes: unknown;
1588
+ } | {
1589
+ field: string;
1590
+ notIncludes: unknown;
1591
+ } | {
1592
+ field: string;
1593
+ length: {
1594
+ equals?: number | undefined;
1595
+ gt?: number | undefined;
1596
+ gte?: number | undefined;
1597
+ lt?: number | undefined;
1598
+ lte?: number | undefined;
1599
+ };
1600
+ } | undefined;
1601
+ }>(this: TThis) => import("..").SimpleListField<import("..").RelationField<ContentType<{
1602
+ name: import("..").WithFieldState<{
1603
+ kind: "field";
1604
+ readonly __fieldTypes?: {
1605
+ input: string;
1606
+ db: string;
1607
+ output: string;
1608
+ meta: import("..").StringMeta<"Text">;
1609
+ state: import("..").DefaultFieldState;
1610
+ } | undefined;
1611
+ meta: import("..").StringMeta<"Text">;
1612
+ state: import("..").DefaultFieldState;
1613
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1614
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1615
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1616
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1617
+ getConfig: () => import("..").StringMeta<"Text">;
1618
+ getIsRequired: () => false;
1619
+ getIsTranslatable: () => false;
1620
+ getVisibility: () => "all";
1621
+ getIsDynamic: () => true;
1622
+ getDescription: () => undefined;
1623
+ getCondition: () => undefined;
1624
+ } & {
1625
+ type: <TThis_1 extends {
1626
+ kind: "field";
1627
+ readonly __fieldTypes?: {
1628
+ input: string;
1629
+ db: string;
1630
+ output: string;
1631
+ meta: import("..").StringMeta<"Text">;
1632
+ state: import("..").FieldState;
1633
+ } | undefined;
1634
+ meta: import("..").StringMeta<"Text">;
1635
+ state: import("..").FieldState;
1636
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1637
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1638
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1639
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1640
+ getConfig: () => import("..").StringMeta<"Text">;
1641
+ getIsRequired: () => boolean;
1642
+ getIsTranslatable: () => boolean;
1643
+ getVisibility: () => import("..").Visibility;
1644
+ getIsDynamic: () => boolean;
1645
+ getDescription: () => string | undefined;
1646
+ getCondition: () => {
1647
+ field: string;
1648
+ equals: unknown;
1649
+ } | {
1650
+ field: string;
1651
+ notEquals: unknown;
1652
+ } | {
1653
+ field: string;
1654
+ exists: boolean;
1655
+ } | {
1656
+ field: string;
1657
+ gt: number;
1658
+ } | {
1659
+ field: string;
1660
+ gte: number;
1661
+ } | {
1662
+ field: string;
1663
+ lt: number;
1664
+ } | {
1665
+ field: string;
1666
+ lte: number;
1667
+ } | {
1668
+ field: string;
1669
+ includes: unknown;
1670
+ } | {
1671
+ field: string;
1672
+ notIncludes: unknown;
1673
+ } | {
1674
+ field: string;
1675
+ length: {
1676
+ equals?: number | undefined;
1677
+ gt?: number | undefined;
1678
+ gte?: number | undefined;
1679
+ lt?: number | undefined;
1680
+ lte?: number | undefined;
1681
+ };
1682
+ } | undefined;
1683
+ }, NextUi extends import("..").StringUI>(this: TThis_1, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_1>>;
1684
+ min: <TThis_1 extends {
1685
+ kind: "field";
1686
+ readonly __fieldTypes?: {
1687
+ input: string;
1688
+ db: string;
1689
+ output: string;
1690
+ meta: import("..").StringMeta<"Text">;
1691
+ state: import("..").FieldState;
1692
+ } | undefined;
1693
+ meta: import("..").StringMeta<"Text">;
1694
+ state: import("..").FieldState;
1695
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1696
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1697
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1698
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1699
+ getConfig: () => import("..").StringMeta<"Text">;
1700
+ getIsRequired: () => boolean;
1701
+ getIsTranslatable: () => boolean;
1702
+ getVisibility: () => import("..").Visibility;
1703
+ getIsDynamic: () => boolean;
1704
+ getDescription: () => string | undefined;
1705
+ getCondition: () => {
1706
+ field: string;
1707
+ equals: unknown;
1708
+ } | {
1709
+ field: string;
1710
+ notEquals: unknown;
1711
+ } | {
1712
+ field: string;
1713
+ exists: boolean;
1714
+ } | {
1715
+ field: string;
1716
+ gt: number;
1717
+ } | {
1718
+ field: string;
1719
+ gte: number;
1720
+ } | {
1721
+ field: string;
1722
+ lt: number;
1723
+ } | {
1724
+ field: string;
1725
+ lte: number;
1726
+ } | {
1727
+ field: string;
1728
+ includes: unknown;
1729
+ } | {
1730
+ field: string;
1731
+ notIncludes: unknown;
1732
+ } | {
1733
+ field: string;
1734
+ length: {
1735
+ equals?: number | undefined;
1736
+ gt?: number | undefined;
1737
+ gte?: number | undefined;
1738
+ lt?: number | undefined;
1739
+ lte?: number | undefined;
1740
+ };
1741
+ } | undefined;
1742
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
1743
+ max: <TThis_1 extends {
1744
+ kind: "field";
1745
+ readonly __fieldTypes?: {
1746
+ input: string;
1747
+ db: string;
1748
+ output: string;
1749
+ meta: import("..").StringMeta<"Text">;
1750
+ state: import("..").FieldState;
1751
+ } | undefined;
1752
+ meta: import("..").StringMeta<"Text">;
1753
+ state: import("..").FieldState;
1754
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
1755
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
1756
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1757
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
1758
+ getConfig: () => import("..").StringMeta<"Text">;
1759
+ getIsRequired: () => boolean;
1760
+ getIsTranslatable: () => boolean;
1761
+ getVisibility: () => import("..").Visibility;
1762
+ getIsDynamic: () => boolean;
1763
+ getDescription: () => string | undefined;
1764
+ getCondition: () => {
1765
+ field: string;
1766
+ equals: unknown;
1767
+ } | {
1768
+ field: string;
1769
+ notEquals: unknown;
1770
+ } | {
1771
+ field: string;
1772
+ exists: boolean;
1773
+ } | {
1774
+ field: string;
1775
+ gt: number;
1776
+ } | {
1777
+ field: string;
1778
+ gte: number;
1779
+ } | {
1780
+ field: string;
1781
+ lt: number;
1782
+ } | {
1783
+ field: string;
1784
+ lte: number;
1785
+ } | {
1786
+ field: string;
1787
+ includes: unknown;
1788
+ } | {
1789
+ field: string;
1790
+ notIncludes: unknown;
1791
+ } | {
1792
+ field: string;
1793
+ length: {
1794
+ equals?: number | undefined;
1795
+ gt?: number | undefined;
1796
+ gte?: number | undefined;
1797
+ lt?: number | undefined;
1798
+ lte?: number | undefined;
1799
+ };
1800
+ } | undefined;
1801
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
1802
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1803
+ permissions: import("..").WithFieldState<import("..").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("..").SimpleListMeta<import("..").StringField<"Text", import("..").DefaultFieldState>>, import("..").DefaultFieldState> & import("..").PopulatableFieldLike<(string | undefined)[], import("..").DefaultFieldState> & {
1804
+ field: import("..").StringField<"Text", import("..").DefaultFieldState>;
1805
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1806
+ }, "ManagerRole", undefined>, undefined, import("..").SetRequired<import("..").DefaultFieldState>>, import("..").FieldStateOf<TThis>>;
1807
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1808
+ avatarId: import("..").StringField<"Id", import("..").DefaultFieldState>;
1809
+ avatarKey: import("..").StringField<"Text", import("..").DefaultFieldState>;
1810
+ avatarAccess: import("..").SelectField<readonly ["public", "private"], false, import("..").DefaultFieldState>;
1811
+ avatarUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
1812
+ avatarPreviewUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
1813
+ tutorialsEnabled: import("..").BooleanField<import("..").DefaultFieldState>;
1814
+ tutorialsPromptedAt: import("..").DateField<"DateTime", import("..").DefaultFieldState>;
1815
+ seenTours: import("..").SimpleListField<import("..").StringField<"Text", import("..").DefaultFieldState>, import("..").DefaultFieldState>;
1816
+ twoFactorEnabled: import("..").WithFieldState<{
1817
+ kind: "field";
1818
+ readonly __fieldTypes?: {
1819
+ input: boolean;
1820
+ db: boolean;
1821
+ output: boolean;
1822
+ meta: import("..").BooleanMeta;
1823
+ state: import("..").DefaultFieldState;
1824
+ } | undefined;
1825
+ meta: import("..").BooleanMeta;
1826
+ state: import("..").DefaultFieldState;
1827
+ toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
1828
+ getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
1829
+ getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
1830
+ getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
1831
+ getConfig: () => import("..").BooleanMeta;
1832
+ getIsRequired: () => false;
1833
+ getIsTranslatable: () => false;
1834
+ getVisibility: () => "all";
1835
+ getIsDynamic: () => true;
1836
+ getDescription: () => undefined;
1837
+ getCondition: () => undefined;
1838
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
1839
+ }, "ManagerUser", undefined>;
1840
+ only?: "existing" | undefined;
1841
+ multiple: <TThis extends {
1842
+ kind: "field";
1843
+ readonly __fieldTypes?: {
1844
+ input: import("..").RelationExisting<"ManagerUser">;
1845
+ db: import("..").RelationExisting<"ManagerUser">;
1846
+ output: {
1847
+ user: string;
1848
+ email: string;
1849
+ role: {
1850
+ name: string;
1851
+ permissions: (string | undefined)[];
1852
+ _type: "ManagerRole";
1853
+ _id: string;
1854
+ _schemaVersion?: number | undefined;
1855
+ _visibility?: import("..").DocumentVisibility | undefined;
1856
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1857
+ _trashed?: boolean | undefined;
1858
+ _revision?: number | undefined;
1859
+ _localeVariantGroupId?: string | undefined;
1860
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1861
+ trashedAt?: Date | undefined;
1862
+ createdAt?: Date | undefined;
1863
+ updatedAt?: Date | undefined;
1864
+ };
1865
+ twoFactorEnabled: boolean;
1866
+ _type: "ManagerUser";
1867
+ _id: string;
1868
+ name?: string | undefined;
1869
+ avatarId?: string | undefined;
1870
+ avatarKey?: string | undefined;
1871
+ avatarAccess?: "public" | "private" | undefined;
1872
+ avatarUrl?: string | undefined;
1873
+ avatarPreviewUrl?: string | undefined;
1874
+ tutorialsEnabled?: boolean | undefined;
1875
+ tutorialsPromptedAt?: Date | undefined;
1876
+ seenTours?: (string | undefined)[] | undefined;
1877
+ _schemaVersion?: number | undefined;
1878
+ _visibility?: import("..").DocumentVisibility | undefined;
1879
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1880
+ _trashed?: boolean | undefined;
1881
+ _revision?: number | undefined;
1882
+ _localeVariantGroupId?: string | undefined;
1883
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1884
+ trashedAt?: Date | undefined;
1885
+ createdAt?: Date | undefined;
1886
+ updatedAt?: Date | undefined;
1887
+ };
1888
+ meta: import("..").RelationMeta<"ManagerUser", "existing">;
1889
+ state: import("..").FieldState;
1890
+ } | undefined;
1891
+ meta: import("..").RelationMeta<"ManagerUser", "existing">;
1892
+ state: import("..").FieldState;
1893
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerUser">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerUser">, unknown>>;
1894
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerUser"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerUser"> | null | undefined, unknown>>;
1895
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerUser"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerUser"> | undefined, unknown>>;
1896
+ getOutputSchema: () => import("zod").ZodType<{
1897
+ user: string;
1898
+ email: string;
1899
+ role: {
1900
+ name: string;
1901
+ permissions: (string | undefined)[];
1902
+ _type: "ManagerRole";
1903
+ _id: string;
1904
+ _schemaVersion?: number | undefined;
1905
+ _visibility?: import("..").DocumentVisibility | undefined;
1906
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1907
+ _trashed?: boolean | undefined;
1908
+ _revision?: number | undefined;
1909
+ _localeVariantGroupId?: string | undefined;
1910
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1911
+ trashedAt?: Date | undefined;
1912
+ createdAt?: Date | undefined;
1913
+ updatedAt?: Date | undefined;
1914
+ };
1915
+ twoFactorEnabled: boolean;
1916
+ _type: "ManagerUser";
1917
+ _id: string;
1918
+ name?: string | undefined;
1919
+ avatarId?: string | undefined;
1920
+ avatarKey?: string | undefined;
1921
+ avatarAccess?: "public" | "private" | undefined;
1922
+ avatarUrl?: string | undefined;
1923
+ avatarPreviewUrl?: string | undefined;
1924
+ tutorialsEnabled?: boolean | undefined;
1925
+ tutorialsPromptedAt?: Date | undefined;
1926
+ seenTours?: (string | undefined)[] | undefined;
1927
+ _schemaVersion?: number | undefined;
1928
+ _visibility?: import("..").DocumentVisibility | undefined;
1929
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1930
+ _trashed?: boolean | undefined;
1931
+ _revision?: number | undefined;
1932
+ _localeVariantGroupId?: string | undefined;
1933
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1934
+ trashedAt?: Date | undefined;
1935
+ createdAt?: Date | undefined;
1936
+ updatedAt?: Date | undefined;
1937
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
1938
+ user: string;
1939
+ email: string;
1940
+ role: {
1941
+ name: string;
1942
+ permissions: (string | undefined)[];
1943
+ _type: "ManagerRole";
1944
+ _id: string;
1945
+ _schemaVersion?: number | undefined;
1946
+ _visibility?: import("..").DocumentVisibility | undefined;
1947
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1948
+ _trashed?: boolean | undefined;
1949
+ _revision?: number | undefined;
1950
+ _localeVariantGroupId?: string | undefined;
1951
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1952
+ trashedAt?: Date | undefined;
1953
+ createdAt?: Date | undefined;
1954
+ updatedAt?: Date | undefined;
1955
+ };
1956
+ twoFactorEnabled: boolean;
1957
+ _type: "ManagerUser";
1958
+ _id: string;
1959
+ name?: string | undefined;
1960
+ avatarId?: string | undefined;
1961
+ avatarKey?: string | undefined;
1962
+ avatarAccess?: "public" | "private" | undefined;
1963
+ avatarUrl?: string | undefined;
1964
+ avatarPreviewUrl?: string | undefined;
1965
+ tutorialsEnabled?: boolean | undefined;
1966
+ tutorialsPromptedAt?: Date | undefined;
1967
+ seenTours?: (string | undefined)[] | undefined;
1968
+ _schemaVersion?: number | undefined;
1969
+ _visibility?: import("..").DocumentVisibility | undefined;
1970
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
1971
+ _trashed?: boolean | undefined;
1972
+ _revision?: number | undefined;
1973
+ _localeVariantGroupId?: string | undefined;
1974
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
1975
+ trashedAt?: Date | undefined;
1976
+ createdAt?: Date | undefined;
1977
+ updatedAt?: Date | undefined;
1978
+ } | undefined, unknown>>;
1979
+ getConfig: () => import("..").RelationMeta<"ManagerUser", "existing">;
1980
+ getIsRequired: () => boolean;
1981
+ getIsTranslatable: () => boolean;
1982
+ getVisibility: () => import("..").Visibility;
1983
+ getIsDynamic: () => boolean;
1984
+ getDescription: () => string | undefined;
1985
+ getCondition: () => {
1986
+ field: string;
1987
+ equals: unknown;
1988
+ } | {
1989
+ field: string;
1990
+ notEquals: unknown;
1991
+ } | {
1992
+ field: string;
1993
+ exists: boolean;
1994
+ } | {
1995
+ field: string;
1996
+ gt: number;
1997
+ } | {
1998
+ field: string;
1999
+ gte: number;
2000
+ } | {
2001
+ field: string;
2002
+ lt: number;
2003
+ } | {
2004
+ field: string;
2005
+ lte: number;
2006
+ } | {
2007
+ field: string;
2008
+ includes: unknown;
2009
+ } | {
2010
+ field: string;
2011
+ notIncludes: unknown;
2012
+ } | {
2013
+ field: string;
2014
+ length: {
2015
+ equals?: number | undefined;
2016
+ gt?: number | undefined;
2017
+ gte?: number | undefined;
2018
+ lt?: number | undefined;
2019
+ lte?: number | undefined;
2020
+ };
2021
+ } | undefined;
2022
+ }>(this: TThis) => import("..").SimpleListField<import("..").RelationField<ContentType<{
2023
+ name: import("..").StringField<"Text", import("..").DefaultFieldState>;
2024
+ user: import("..").WithFieldState<{
2025
+ kind: "field";
2026
+ readonly __fieldTypes?: {
2027
+ input: string;
2028
+ db: string;
2029
+ output: string;
2030
+ meta: import("..").StringMeta<"Text">;
2031
+ state: import("..").DefaultFieldState;
2032
+ } | undefined;
2033
+ meta: import("..").StringMeta<"Text">;
2034
+ state: import("..").DefaultFieldState;
2035
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2036
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2037
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2038
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2039
+ getConfig: () => import("..").StringMeta<"Text">;
2040
+ getIsRequired: () => false;
2041
+ getIsTranslatable: () => false;
2042
+ getVisibility: () => "all";
2043
+ getIsDynamic: () => true;
2044
+ getDescription: () => undefined;
2045
+ getCondition: () => undefined;
2046
+ } & {
2047
+ type: <TThis_1 extends {
2048
+ kind: "field";
2049
+ readonly __fieldTypes?: {
2050
+ input: string;
2051
+ db: string;
2052
+ output: string;
2053
+ meta: import("..").StringMeta<"Text">;
2054
+ state: import("..").FieldState;
2055
+ } | undefined;
2056
+ meta: import("..").StringMeta<"Text">;
2057
+ state: import("..").FieldState;
2058
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2059
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2060
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2061
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2062
+ getConfig: () => import("..").StringMeta<"Text">;
2063
+ getIsRequired: () => boolean;
2064
+ getIsTranslatable: () => boolean;
2065
+ getVisibility: () => import("..").Visibility;
2066
+ getIsDynamic: () => boolean;
2067
+ getDescription: () => string | undefined;
2068
+ getCondition: () => {
2069
+ field: string;
2070
+ equals: unknown;
2071
+ } | {
2072
+ field: string;
2073
+ notEquals: unknown;
2074
+ } | {
2075
+ field: string;
2076
+ exists: boolean;
2077
+ } | {
2078
+ field: string;
2079
+ gt: number;
2080
+ } | {
2081
+ field: string;
2082
+ gte: number;
2083
+ } | {
2084
+ field: string;
2085
+ lt: number;
2086
+ } | {
2087
+ field: string;
2088
+ lte: number;
2089
+ } | {
2090
+ field: string;
2091
+ includes: unknown;
2092
+ } | {
2093
+ field: string;
2094
+ notIncludes: unknown;
2095
+ } | {
2096
+ field: string;
2097
+ length: {
2098
+ equals?: number | undefined;
2099
+ gt?: number | undefined;
2100
+ gte?: number | undefined;
2101
+ lt?: number | undefined;
2102
+ lte?: number | undefined;
2103
+ };
2104
+ } | undefined;
2105
+ }, NextUi extends import("..").StringUI>(this: TThis_1, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_1>>;
2106
+ min: <TThis_1 extends {
2107
+ kind: "field";
2108
+ readonly __fieldTypes?: {
2109
+ input: string;
2110
+ db: string;
2111
+ output: string;
2112
+ meta: import("..").StringMeta<"Text">;
2113
+ state: import("..").FieldState;
2114
+ } | undefined;
2115
+ meta: import("..").StringMeta<"Text">;
2116
+ state: import("..").FieldState;
2117
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2118
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2119
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2120
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2121
+ getConfig: () => import("..").StringMeta<"Text">;
2122
+ getIsRequired: () => boolean;
2123
+ getIsTranslatable: () => boolean;
2124
+ getVisibility: () => import("..").Visibility;
2125
+ getIsDynamic: () => boolean;
2126
+ getDescription: () => string | undefined;
2127
+ getCondition: () => {
2128
+ field: string;
2129
+ equals: unknown;
2130
+ } | {
2131
+ field: string;
2132
+ notEquals: unknown;
2133
+ } | {
2134
+ field: string;
2135
+ exists: boolean;
2136
+ } | {
2137
+ field: string;
2138
+ gt: number;
2139
+ } | {
2140
+ field: string;
2141
+ gte: number;
2142
+ } | {
2143
+ field: string;
2144
+ lt: number;
2145
+ } | {
2146
+ field: string;
2147
+ lte: number;
2148
+ } | {
2149
+ field: string;
2150
+ includes: unknown;
2151
+ } | {
2152
+ field: string;
2153
+ notIncludes: unknown;
2154
+ } | {
2155
+ field: string;
2156
+ length: {
2157
+ equals?: number | undefined;
2158
+ gt?: number | undefined;
2159
+ gte?: number | undefined;
2160
+ lt?: number | undefined;
2161
+ lte?: number | undefined;
2162
+ };
2163
+ } | undefined;
2164
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
2165
+ max: <TThis_1 extends {
2166
+ kind: "field";
2167
+ readonly __fieldTypes?: {
2168
+ input: string;
2169
+ db: string;
2170
+ output: string;
2171
+ meta: import("..").StringMeta<"Text">;
2172
+ state: import("..").FieldState;
2173
+ } | undefined;
2174
+ meta: import("..").StringMeta<"Text">;
2175
+ state: import("..").FieldState;
2176
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2177
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2178
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2179
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2180
+ getConfig: () => import("..").StringMeta<"Text">;
2181
+ getIsRequired: () => boolean;
2182
+ getIsTranslatable: () => boolean;
2183
+ getVisibility: () => import("..").Visibility;
2184
+ getIsDynamic: () => boolean;
2185
+ getDescription: () => string | undefined;
2186
+ getCondition: () => {
2187
+ field: string;
2188
+ equals: unknown;
2189
+ } | {
2190
+ field: string;
2191
+ notEquals: unknown;
2192
+ } | {
2193
+ field: string;
2194
+ exists: boolean;
2195
+ } | {
2196
+ field: string;
2197
+ gt: number;
2198
+ } | {
2199
+ field: string;
2200
+ gte: number;
2201
+ } | {
2202
+ field: string;
2203
+ lt: number;
2204
+ } | {
2205
+ field: string;
2206
+ lte: number;
2207
+ } | {
2208
+ field: string;
2209
+ includes: unknown;
2210
+ } | {
2211
+ field: string;
2212
+ notIncludes: unknown;
2213
+ } | {
2214
+ field: string;
2215
+ length: {
2216
+ equals?: number | undefined;
2217
+ gt?: number | undefined;
2218
+ gte?: number | undefined;
2219
+ lt?: number | undefined;
2220
+ lte?: number | undefined;
2221
+ };
2222
+ } | undefined;
2223
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
2224
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
2225
+ email: import("..").WithFieldState<{
2226
+ kind: "field";
2227
+ readonly __fieldTypes?: {
2228
+ input: string;
2229
+ db: string;
2230
+ output: string;
2231
+ meta: import("..").StringMeta<"Email">;
2232
+ state: import("..").DefaultFieldState;
2233
+ } | undefined;
2234
+ meta: import("..").StringMeta<"Email">;
2235
+ state: import("..").DefaultFieldState;
2236
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2237
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2238
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2239
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2240
+ getConfig: () => import("..").StringMeta<"Email">;
2241
+ getIsRequired: () => false;
2242
+ getIsTranslatable: () => false;
2243
+ getVisibility: () => "all";
2244
+ getIsDynamic: () => true;
2245
+ getDescription: () => undefined;
2246
+ getCondition: () => undefined;
2247
+ } & {
2248
+ type: <TThis_1 extends {
2249
+ kind: "field";
2250
+ readonly __fieldTypes?: {
2251
+ input: string;
2252
+ db: string;
2253
+ output: string;
2254
+ meta: import("..").StringMeta<"Email">;
2255
+ state: import("..").FieldState;
2256
+ } | undefined;
2257
+ meta: import("..").StringMeta<"Email">;
2258
+ state: import("..").FieldState;
2259
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2260
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2261
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2262
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2263
+ getConfig: () => import("..").StringMeta<"Email">;
2264
+ getIsRequired: () => boolean;
2265
+ getIsTranslatable: () => boolean;
2266
+ getVisibility: () => import("..").Visibility;
2267
+ getIsDynamic: () => boolean;
2268
+ getDescription: () => string | undefined;
2269
+ getCondition: () => {
2270
+ field: string;
2271
+ equals: unknown;
2272
+ } | {
2273
+ field: string;
2274
+ notEquals: unknown;
2275
+ } | {
2276
+ field: string;
2277
+ exists: boolean;
2278
+ } | {
2279
+ field: string;
2280
+ gt: number;
2281
+ } | {
2282
+ field: string;
2283
+ gte: number;
2284
+ } | {
2285
+ field: string;
2286
+ lt: number;
2287
+ } | {
2288
+ field: string;
2289
+ lte: number;
2290
+ } | {
2291
+ field: string;
2292
+ includes: unknown;
2293
+ } | {
2294
+ field: string;
2295
+ notIncludes: unknown;
2296
+ } | {
2297
+ field: string;
2298
+ length: {
2299
+ equals?: number | undefined;
2300
+ gt?: number | undefined;
2301
+ gte?: number | undefined;
2302
+ lt?: number | undefined;
2303
+ lte?: number | undefined;
2304
+ };
2305
+ } | undefined;
2306
+ }, NextUi extends import("..").StringUI>(this: TThis_1, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_1>>;
2307
+ min: <TThis_1 extends {
2308
+ kind: "field";
2309
+ readonly __fieldTypes?: {
2310
+ input: string;
2311
+ db: string;
2312
+ output: string;
2313
+ meta: import("..").StringMeta<"Email">;
2314
+ state: import("..").FieldState;
2315
+ } | undefined;
2316
+ meta: import("..").StringMeta<"Email">;
2317
+ state: import("..").FieldState;
2318
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2319
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2320
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2321
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2322
+ getConfig: () => import("..").StringMeta<"Email">;
2323
+ getIsRequired: () => boolean;
2324
+ getIsTranslatable: () => boolean;
2325
+ getVisibility: () => import("..").Visibility;
2326
+ getIsDynamic: () => boolean;
2327
+ getDescription: () => string | undefined;
2328
+ getCondition: () => {
2329
+ field: string;
2330
+ equals: unknown;
2331
+ } | {
2332
+ field: string;
2333
+ notEquals: unknown;
2334
+ } | {
2335
+ field: string;
2336
+ exists: boolean;
2337
+ } | {
2338
+ field: string;
2339
+ gt: number;
2340
+ } | {
2341
+ field: string;
2342
+ gte: number;
2343
+ } | {
2344
+ field: string;
2345
+ lt: number;
2346
+ } | {
2347
+ field: string;
2348
+ lte: number;
2349
+ } | {
2350
+ field: string;
2351
+ includes: unknown;
2352
+ } | {
2353
+ field: string;
2354
+ notIncludes: unknown;
2355
+ } | {
2356
+ field: string;
2357
+ length: {
2358
+ equals?: number | undefined;
2359
+ gt?: number | undefined;
2360
+ gte?: number | undefined;
2361
+ lt?: number | undefined;
2362
+ lte?: number | undefined;
2363
+ };
2364
+ } | undefined;
2365
+ }>(this: TThis_1, length: number) => import("..").StringField<"Email", import("..").FieldStateOf<TThis_1>>;
2366
+ max: <TThis_1 extends {
2367
+ kind: "field";
2368
+ readonly __fieldTypes?: {
2369
+ input: string;
2370
+ db: string;
2371
+ output: string;
2372
+ meta: import("..").StringMeta<"Email">;
2373
+ state: import("..").FieldState;
2374
+ } | undefined;
2375
+ meta: import("..").StringMeta<"Email">;
2376
+ state: import("..").FieldState;
2377
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2378
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2379
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2380
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2381
+ getConfig: () => import("..").StringMeta<"Email">;
2382
+ getIsRequired: () => boolean;
2383
+ getIsTranslatable: () => boolean;
2384
+ getVisibility: () => import("..").Visibility;
2385
+ getIsDynamic: () => boolean;
2386
+ getDescription: () => string | undefined;
2387
+ getCondition: () => {
2388
+ field: string;
2389
+ equals: unknown;
2390
+ } | {
2391
+ field: string;
2392
+ notEquals: unknown;
2393
+ } | {
2394
+ field: string;
2395
+ exists: boolean;
2396
+ } | {
2397
+ field: string;
2398
+ gt: number;
2399
+ } | {
2400
+ field: string;
2401
+ gte: number;
2402
+ } | {
2403
+ field: string;
2404
+ lt: number;
2405
+ } | {
2406
+ field: string;
2407
+ lte: number;
2408
+ } | {
2409
+ field: string;
2410
+ includes: unknown;
2411
+ } | {
2412
+ field: string;
2413
+ notIncludes: unknown;
2414
+ } | {
2415
+ field: string;
2416
+ length: {
2417
+ equals?: number | undefined;
2418
+ gt?: number | undefined;
2419
+ gte?: number | undefined;
2420
+ lt?: number | undefined;
2421
+ lte?: number | undefined;
2422
+ };
2423
+ } | undefined;
2424
+ }>(this: TThis_1, length: number) => import("..").StringField<"Email", import("..").FieldStateOf<TThis_1>>;
2425
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
2426
+ password: import("..").WithFieldState<Omit<{
2427
+ kind: "field";
2428
+ readonly __fieldTypes?: {
2429
+ input: string;
2430
+ db: string;
2431
+ output: string;
2432
+ meta: import("..").StringMeta<"Password">;
2433
+ state: import("..").DefaultFieldState;
2434
+ } | undefined;
2435
+ meta: import("..").StringMeta<"Password">;
2436
+ state: import("..").DefaultFieldState;
2437
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2438
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2439
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2440
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2441
+ getConfig: () => import("..").StringMeta<"Password">;
2442
+ getIsRequired: () => false;
2443
+ getIsTranslatable: () => false;
2444
+ getVisibility: () => "all";
2445
+ getIsDynamic: () => true;
2446
+ getDescription: () => undefined;
2447
+ getCondition: () => undefined;
2448
+ } & {
2449
+ type: <TThis_1 extends {
2450
+ kind: "field";
2451
+ readonly __fieldTypes?: {
2452
+ input: string;
2453
+ db: string;
2454
+ output: string;
2455
+ meta: import("..").StringMeta<"Password">;
2456
+ state: import("..").FieldState;
2457
+ } | undefined;
2458
+ meta: import("..").StringMeta<"Password">;
2459
+ state: import("..").FieldState;
2460
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2461
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2462
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2463
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2464
+ getConfig: () => import("..").StringMeta<"Password">;
2465
+ getIsRequired: () => boolean;
2466
+ getIsTranslatable: () => boolean;
2467
+ getVisibility: () => import("..").Visibility;
2468
+ getIsDynamic: () => boolean;
2469
+ getDescription: () => string | undefined;
2470
+ getCondition: () => {
2471
+ field: string;
2472
+ equals: unknown;
2473
+ } | {
2474
+ field: string;
2475
+ notEquals: unknown;
2476
+ } | {
2477
+ field: string;
2478
+ exists: boolean;
2479
+ } | {
2480
+ field: string;
2481
+ gt: number;
2482
+ } | {
2483
+ field: string;
2484
+ gte: number;
2485
+ } | {
2486
+ field: string;
2487
+ lt: number;
2488
+ } | {
2489
+ field: string;
2490
+ lte: number;
2491
+ } | {
2492
+ field: string;
2493
+ includes: unknown;
2494
+ } | {
2495
+ field: string;
2496
+ notIncludes: unknown;
2497
+ } | {
2498
+ field: string;
2499
+ length: {
2500
+ equals?: number | undefined;
2501
+ gt?: number | undefined;
2502
+ gte?: number | undefined;
2503
+ lt?: number | undefined;
2504
+ lte?: number | undefined;
2505
+ };
2506
+ } | undefined;
2507
+ }, NextUi extends import("..").StringUI>(this: TThis_1, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_1>>;
2508
+ min: <TThis_1 extends {
2509
+ kind: "field";
2510
+ readonly __fieldTypes?: {
2511
+ input: string;
2512
+ db: string;
2513
+ output: string;
2514
+ meta: import("..").StringMeta<"Password">;
2515
+ state: import("..").FieldState;
2516
+ } | undefined;
2517
+ meta: import("..").StringMeta<"Password">;
2518
+ state: import("..").FieldState;
2519
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2520
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2521
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2522
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2523
+ getConfig: () => import("..").StringMeta<"Password">;
2524
+ getIsRequired: () => boolean;
2525
+ getIsTranslatable: () => boolean;
2526
+ getVisibility: () => import("..").Visibility;
2527
+ getIsDynamic: () => boolean;
2528
+ getDescription: () => string | undefined;
2529
+ getCondition: () => {
2530
+ field: string;
2531
+ equals: unknown;
2532
+ } | {
2533
+ field: string;
2534
+ notEquals: unknown;
2535
+ } | {
2536
+ field: string;
2537
+ exists: boolean;
2538
+ } | {
2539
+ field: string;
2540
+ gt: number;
2541
+ } | {
2542
+ field: string;
2543
+ gte: number;
2544
+ } | {
2545
+ field: string;
2546
+ lt: number;
2547
+ } | {
2548
+ field: string;
2549
+ lte: number;
2550
+ } | {
2551
+ field: string;
2552
+ includes: unknown;
2553
+ } | {
2554
+ field: string;
2555
+ notIncludes: unknown;
2556
+ } | {
2557
+ field: string;
2558
+ length: {
2559
+ equals?: number | undefined;
2560
+ gt?: number | undefined;
2561
+ gte?: number | undefined;
2562
+ lt?: number | undefined;
2563
+ lte?: number | undefined;
2564
+ };
2565
+ } | undefined;
2566
+ }>(this: TThis_1, length: number) => import("..").StringField<"Password", import("..").FieldStateOf<TThis_1>>;
2567
+ max: <TThis_1 extends {
2568
+ kind: "field";
2569
+ readonly __fieldTypes?: {
2570
+ input: string;
2571
+ db: string;
2572
+ output: string;
2573
+ meta: import("..").StringMeta<"Password">;
2574
+ state: import("..").FieldState;
2575
+ } | undefined;
2576
+ meta: import("..").StringMeta<"Password">;
2577
+ state: import("..").FieldState;
2578
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2579
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2580
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2581
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2582
+ getConfig: () => import("..").StringMeta<"Password">;
2583
+ getIsRequired: () => boolean;
2584
+ getIsTranslatable: () => boolean;
2585
+ getVisibility: () => import("..").Visibility;
2586
+ getIsDynamic: () => boolean;
2587
+ getDescription: () => string | undefined;
2588
+ getCondition: () => {
2589
+ field: string;
2590
+ equals: unknown;
2591
+ } | {
2592
+ field: string;
2593
+ notEquals: unknown;
2594
+ } | {
2595
+ field: string;
2596
+ exists: boolean;
2597
+ } | {
2598
+ field: string;
2599
+ gt: number;
2600
+ } | {
2601
+ field: string;
2602
+ gte: number;
2603
+ } | {
2604
+ field: string;
2605
+ lt: number;
2606
+ } | {
2607
+ field: string;
2608
+ lte: number;
2609
+ } | {
2610
+ field: string;
2611
+ includes: unknown;
2612
+ } | {
2613
+ field: string;
2614
+ notIncludes: unknown;
2615
+ } | {
2616
+ field: string;
2617
+ length: {
2618
+ equals?: number | undefined;
2619
+ gt?: number | undefined;
2620
+ gte?: number | undefined;
2621
+ lt?: number | undefined;
2622
+ lte?: number | undefined;
2623
+ };
2624
+ } | undefined;
2625
+ }>(this: TThis_1, length: number) => import("..").StringField<"Password", import("..").FieldStateOf<TThis_1>>;
2626
+ }, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Password">, import("..").SetRequired<import("..").DefaultFieldState>>, import("..").SetVisibility<import("..").SetRequired<import("..").DefaultFieldState>, "manager">>;
2627
+ role: import("..").WithFieldState<{
2628
+ kind: "field";
2629
+ readonly __fieldTypes?: {
2630
+ input: import("..").RelationExisting<"ManagerRole">;
2631
+ db: import("..").RelationExisting<"ManagerRole">;
2632
+ output: {
2633
+ name: string;
2634
+ permissions: (string | undefined)[];
2635
+ _type: "ManagerRole";
2636
+ _id: string;
2637
+ _schemaVersion?: number | undefined;
2638
+ _visibility?: import("..").DocumentVisibility | undefined;
2639
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2640
+ _trashed?: boolean | undefined;
2641
+ _revision?: number | undefined;
2642
+ _localeVariantGroupId?: string | undefined;
2643
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2644
+ trashedAt?: Date | undefined;
2645
+ createdAt?: Date | undefined;
2646
+ updatedAt?: Date | undefined;
2647
+ };
2648
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
2649
+ state: import("..").DefaultFieldState;
2650
+ } | undefined;
2651
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
2652
+ state: import("..").DefaultFieldState;
2653
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole">, unknown>>;
2654
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
2655
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | undefined, unknown>>;
2656
+ getOutputSchema: () => import("zod").ZodType<{
2657
+ name: string;
2658
+ permissions: (string | undefined)[];
2659
+ _type: "ManagerRole";
2660
+ _id: string;
2661
+ _schemaVersion?: number | undefined;
2662
+ _visibility?: import("..").DocumentVisibility | undefined;
2663
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2664
+ _trashed?: boolean | undefined;
2665
+ _revision?: number | undefined;
2666
+ _localeVariantGroupId?: string | undefined;
2667
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2668
+ trashedAt?: Date | undefined;
2669
+ createdAt?: Date | undefined;
2670
+ updatedAt?: Date | undefined;
2671
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
2672
+ name: string;
2673
+ permissions: (string | undefined)[];
2674
+ _type: "ManagerRole";
2675
+ _id: string;
2676
+ _schemaVersion?: number | undefined;
2677
+ _visibility?: import("..").DocumentVisibility | undefined;
2678
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2679
+ _trashed?: boolean | undefined;
2680
+ _revision?: number | undefined;
2681
+ _localeVariantGroupId?: string | undefined;
2682
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2683
+ trashedAt?: Date | undefined;
2684
+ createdAt?: Date | undefined;
2685
+ updatedAt?: Date | undefined;
2686
+ } | undefined, unknown>>;
2687
+ getConfig: () => import("..").RelationMeta<"ManagerRole", undefined>;
2688
+ getIsRequired: () => false;
2689
+ getIsTranslatable: () => false;
2690
+ getVisibility: () => "all";
2691
+ getIsDynamic: () => true;
2692
+ getDescription: () => undefined;
2693
+ getCondition: () => undefined;
2694
+ } & import("..").PopulatableFieldLike<{
2695
+ name: string;
2696
+ permissions: (string | undefined)[];
2697
+ _type: "ManagerRole";
2698
+ _id: string;
2699
+ _schemaVersion?: number | undefined;
2700
+ _visibility?: import("..").DocumentVisibility | undefined;
2701
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2702
+ _trashed?: boolean | undefined;
2703
+ _revision?: number | undefined;
2704
+ _localeVariantGroupId?: string | undefined;
2705
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2706
+ trashedAt?: Date | undefined;
2707
+ trashedBy?: string | undefined;
2708
+ createdAt?: Date | undefined;
2709
+ updatedAt?: Date | undefined;
2710
+ createdBy?: string | undefined;
2711
+ updatedBy?: string | undefined;
2712
+ }, import("..").DefaultFieldState> & {
2713
+ contentType: ContentType<{
2714
+ name: import("..").WithFieldState<{
2715
+ kind: "field";
2716
+ readonly __fieldTypes?: {
2717
+ input: string;
2718
+ db: string;
2719
+ output: string;
2720
+ meta: import("..").StringMeta<"Text">;
2721
+ state: import("..").DefaultFieldState;
2722
+ } | undefined;
2723
+ meta: import("..").StringMeta<"Text">;
2724
+ state: import("..").DefaultFieldState;
2725
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2726
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2727
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2728
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2729
+ getConfig: () => import("..").StringMeta<"Text">;
2730
+ getIsRequired: () => false;
2731
+ getIsTranslatable: () => false;
2732
+ getVisibility: () => "all";
2733
+ getIsDynamic: () => true;
2734
+ getDescription: () => undefined;
2735
+ getCondition: () => undefined;
2736
+ } & {
2737
+ type: <TThis_1 extends {
2738
+ kind: "field";
2739
+ readonly __fieldTypes?: {
2740
+ input: string;
2741
+ db: string;
2742
+ output: string;
2743
+ meta: import("..").StringMeta<"Text">;
2744
+ state: import("..").FieldState;
2745
+ } | undefined;
2746
+ meta: import("..").StringMeta<"Text">;
2747
+ state: import("..").FieldState;
2748
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2749
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2750
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2751
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2752
+ getConfig: () => import("..").StringMeta<"Text">;
2753
+ getIsRequired: () => boolean;
2754
+ getIsTranslatable: () => boolean;
2755
+ getVisibility: () => import("..").Visibility;
2756
+ getIsDynamic: () => boolean;
2757
+ getDescription: () => string | undefined;
2758
+ getCondition: () => {
2759
+ field: string;
2760
+ equals: unknown;
2761
+ } | {
2762
+ field: string;
2763
+ notEquals: unknown;
2764
+ } | {
2765
+ field: string;
2766
+ exists: boolean;
2767
+ } | {
2768
+ field: string;
2769
+ gt: number;
2770
+ } | {
2771
+ field: string;
2772
+ gte: number;
2773
+ } | {
2774
+ field: string;
2775
+ lt: number;
2776
+ } | {
2777
+ field: string;
2778
+ lte: number;
2779
+ } | {
2780
+ field: string;
2781
+ includes: unknown;
2782
+ } | {
2783
+ field: string;
2784
+ notIncludes: unknown;
2785
+ } | {
2786
+ field: string;
2787
+ length: {
2788
+ equals?: number | undefined;
2789
+ gt?: number | undefined;
2790
+ gte?: number | undefined;
2791
+ lt?: number | undefined;
2792
+ lte?: number | undefined;
2793
+ };
2794
+ } | undefined;
2795
+ }, NextUi extends import("..").StringUI>(this: TThis_1, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_1>>;
2796
+ min: <TThis_1 extends {
2797
+ kind: "field";
2798
+ readonly __fieldTypes?: {
2799
+ input: string;
2800
+ db: string;
2801
+ output: string;
2802
+ meta: import("..").StringMeta<"Text">;
2803
+ state: import("..").FieldState;
2804
+ } | undefined;
2805
+ meta: import("..").StringMeta<"Text">;
2806
+ state: import("..").FieldState;
2807
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2808
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2809
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2810
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2811
+ getConfig: () => import("..").StringMeta<"Text">;
2812
+ getIsRequired: () => boolean;
2813
+ getIsTranslatable: () => boolean;
2814
+ getVisibility: () => import("..").Visibility;
2815
+ getIsDynamic: () => boolean;
2816
+ getDescription: () => string | undefined;
2817
+ getCondition: () => {
2818
+ field: string;
2819
+ equals: unknown;
2820
+ } | {
2821
+ field: string;
2822
+ notEquals: unknown;
2823
+ } | {
2824
+ field: string;
2825
+ exists: boolean;
2826
+ } | {
2827
+ field: string;
2828
+ gt: number;
2829
+ } | {
2830
+ field: string;
2831
+ gte: number;
2832
+ } | {
2833
+ field: string;
2834
+ lt: number;
2835
+ } | {
2836
+ field: string;
2837
+ lte: number;
2838
+ } | {
2839
+ field: string;
2840
+ includes: unknown;
2841
+ } | {
2842
+ field: string;
2843
+ notIncludes: unknown;
2844
+ } | {
2845
+ field: string;
2846
+ length: {
2847
+ equals?: number | undefined;
2848
+ gt?: number | undefined;
2849
+ gte?: number | undefined;
2850
+ lt?: number | undefined;
2851
+ lte?: number | undefined;
2852
+ };
2853
+ } | undefined;
2854
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
2855
+ max: <TThis_1 extends {
2856
+ kind: "field";
2857
+ readonly __fieldTypes?: {
2858
+ input: string;
2859
+ db: string;
2860
+ output: string;
2861
+ meta: import("..").StringMeta<"Text">;
2862
+ state: import("..").FieldState;
2863
+ } | undefined;
2864
+ meta: import("..").StringMeta<"Text">;
2865
+ state: import("..").FieldState;
2866
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
2867
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
2868
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2869
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
2870
+ getConfig: () => import("..").StringMeta<"Text">;
2871
+ getIsRequired: () => boolean;
2872
+ getIsTranslatable: () => boolean;
2873
+ getVisibility: () => import("..").Visibility;
2874
+ getIsDynamic: () => boolean;
2875
+ getDescription: () => string | undefined;
2876
+ getCondition: () => {
2877
+ field: string;
2878
+ equals: unknown;
2879
+ } | {
2880
+ field: string;
2881
+ notEquals: unknown;
2882
+ } | {
2883
+ field: string;
2884
+ exists: boolean;
2885
+ } | {
2886
+ field: string;
2887
+ gt: number;
2888
+ } | {
2889
+ field: string;
2890
+ gte: number;
2891
+ } | {
2892
+ field: string;
2893
+ lt: number;
2894
+ } | {
2895
+ field: string;
2896
+ lte: number;
2897
+ } | {
2898
+ field: string;
2899
+ includes: unknown;
2900
+ } | {
2901
+ field: string;
2902
+ notIncludes: unknown;
2903
+ } | {
2904
+ field: string;
2905
+ length: {
2906
+ equals?: number | undefined;
2907
+ gt?: number | undefined;
2908
+ gte?: number | undefined;
2909
+ lt?: number | undefined;
2910
+ lte?: number | undefined;
2911
+ };
2912
+ } | undefined;
2913
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
2914
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
2915
+ permissions: import("..").WithFieldState<import("..").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("..").SimpleListMeta<import("..").StringField<"Text", import("..").DefaultFieldState>>, import("..").DefaultFieldState> & import("..").PopulatableFieldLike<(string | undefined)[], import("..").DefaultFieldState> & {
2916
+ field: import("..").StringField<"Text", import("..").DefaultFieldState>;
2917
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
2918
+ }, "ManagerRole", undefined>;
2919
+ only?: undefined;
2920
+ multiple: <TThis_1 extends {
2921
+ kind: "field";
2922
+ readonly __fieldTypes?: {
2923
+ input: import("..").RelationExisting<"ManagerRole">;
2924
+ db: import("..").RelationExisting<"ManagerRole">;
2925
+ output: {
2926
+ name: string;
2927
+ permissions: (string | undefined)[];
2928
+ _type: "ManagerRole";
2929
+ _id: string;
2930
+ _schemaVersion?: number | undefined;
2931
+ _visibility?: import("..").DocumentVisibility | undefined;
2932
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2933
+ _trashed?: boolean | undefined;
2934
+ _revision?: number | undefined;
2935
+ _localeVariantGroupId?: string | undefined;
2936
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2937
+ trashedAt?: Date | undefined;
2938
+ createdAt?: Date | undefined;
2939
+ updatedAt?: Date | undefined;
2940
+ };
2941
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
2942
+ state: import("..").FieldState;
2943
+ } | undefined;
2944
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
2945
+ state: import("..").FieldState;
2946
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole">, unknown>>;
2947
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
2948
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | undefined, unknown>>;
2949
+ getOutputSchema: () => import("zod").ZodType<{
2950
+ name: string;
2951
+ permissions: (string | undefined)[];
2952
+ _type: "ManagerRole";
2953
+ _id: string;
2954
+ _schemaVersion?: number | undefined;
2955
+ _visibility?: import("..").DocumentVisibility | undefined;
2956
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2957
+ _trashed?: boolean | undefined;
2958
+ _revision?: number | undefined;
2959
+ _localeVariantGroupId?: string | undefined;
2960
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2961
+ trashedAt?: Date | undefined;
2962
+ createdAt?: Date | undefined;
2963
+ updatedAt?: Date | undefined;
2964
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
2965
+ name: string;
2966
+ permissions: (string | undefined)[];
2967
+ _type: "ManagerRole";
2968
+ _id: string;
2969
+ _schemaVersion?: number | undefined;
2970
+ _visibility?: import("..").DocumentVisibility | undefined;
2971
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
2972
+ _trashed?: boolean | undefined;
2973
+ _revision?: number | undefined;
2974
+ _localeVariantGroupId?: string | undefined;
2975
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
2976
+ trashedAt?: Date | undefined;
2977
+ createdAt?: Date | undefined;
2978
+ updatedAt?: Date | undefined;
2979
+ } | undefined, unknown>>;
2980
+ getConfig: () => import("..").RelationMeta<"ManagerRole", undefined>;
2981
+ getIsRequired: () => boolean;
2982
+ getIsTranslatable: () => boolean;
2983
+ getVisibility: () => import("..").Visibility;
2984
+ getIsDynamic: () => boolean;
2985
+ getDescription: () => string | undefined;
2986
+ getCondition: () => {
2987
+ field: string;
2988
+ equals: unknown;
2989
+ } | {
2990
+ field: string;
2991
+ notEquals: unknown;
2992
+ } | {
2993
+ field: string;
2994
+ exists: boolean;
2995
+ } | {
2996
+ field: string;
2997
+ gt: number;
2998
+ } | {
2999
+ field: string;
3000
+ gte: number;
3001
+ } | {
3002
+ field: string;
3003
+ lt: number;
3004
+ } | {
3005
+ field: string;
3006
+ lte: number;
3007
+ } | {
3008
+ field: string;
3009
+ includes: unknown;
3010
+ } | {
3011
+ field: string;
3012
+ notIncludes: unknown;
3013
+ } | {
3014
+ field: string;
3015
+ length: {
3016
+ equals?: number | undefined;
3017
+ gt?: number | undefined;
3018
+ gte?: number | undefined;
3019
+ lt?: number | undefined;
3020
+ lte?: number | undefined;
3021
+ };
3022
+ } | undefined;
3023
+ }>(this: TThis_1) => import("..").SimpleListField<import("..").RelationField<ContentType<{
3024
+ name: import("..").WithFieldState<{
3025
+ kind: "field";
3026
+ readonly __fieldTypes?: {
3027
+ input: string;
3028
+ db: string;
3029
+ output: string;
3030
+ meta: import("..").StringMeta<"Text">;
3031
+ state: import("..").DefaultFieldState;
3032
+ } | undefined;
3033
+ meta: import("..").StringMeta<"Text">;
3034
+ state: import("..").DefaultFieldState;
3035
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3036
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3037
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3038
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3039
+ getConfig: () => import("..").StringMeta<"Text">;
3040
+ getIsRequired: () => false;
3041
+ getIsTranslatable: () => false;
3042
+ getVisibility: () => "all";
3043
+ getIsDynamic: () => true;
3044
+ getDescription: () => undefined;
3045
+ getCondition: () => undefined;
3046
+ } & {
3047
+ type: <TThis_2 extends {
3048
+ kind: "field";
3049
+ readonly __fieldTypes?: {
3050
+ input: string;
3051
+ db: string;
3052
+ output: string;
3053
+ meta: import("..").StringMeta<"Text">;
3054
+ state: import("..").FieldState;
3055
+ } | undefined;
3056
+ meta: import("..").StringMeta<"Text">;
3057
+ state: import("..").FieldState;
3058
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3059
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3060
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3061
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3062
+ getConfig: () => import("..").StringMeta<"Text">;
3063
+ getIsRequired: () => boolean;
3064
+ getIsTranslatable: () => boolean;
3065
+ getVisibility: () => import("..").Visibility;
3066
+ getIsDynamic: () => boolean;
3067
+ getDescription: () => string | undefined;
3068
+ getCondition: () => {
3069
+ field: string;
3070
+ equals: unknown;
3071
+ } | {
3072
+ field: string;
3073
+ notEquals: unknown;
3074
+ } | {
3075
+ field: string;
3076
+ exists: boolean;
3077
+ } | {
3078
+ field: string;
3079
+ gt: number;
3080
+ } | {
3081
+ field: string;
3082
+ gte: number;
3083
+ } | {
3084
+ field: string;
3085
+ lt: number;
3086
+ } | {
3087
+ field: string;
3088
+ lte: number;
3089
+ } | {
3090
+ field: string;
3091
+ includes: unknown;
3092
+ } | {
3093
+ field: string;
3094
+ notIncludes: unknown;
3095
+ } | {
3096
+ field: string;
3097
+ length: {
3098
+ equals?: number | undefined;
3099
+ gt?: number | undefined;
3100
+ gte?: number | undefined;
3101
+ lt?: number | undefined;
3102
+ lte?: number | undefined;
3103
+ };
3104
+ } | undefined;
3105
+ }, NextUi extends import("..").StringUI>(this: TThis_2, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_2>>;
3106
+ min: <TThis_2 extends {
3107
+ kind: "field";
3108
+ readonly __fieldTypes?: {
3109
+ input: string;
3110
+ db: string;
3111
+ output: string;
3112
+ meta: import("..").StringMeta<"Text">;
3113
+ state: import("..").FieldState;
3114
+ } | undefined;
3115
+ meta: import("..").StringMeta<"Text">;
3116
+ state: import("..").FieldState;
3117
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3118
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3119
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3120
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3121
+ getConfig: () => import("..").StringMeta<"Text">;
3122
+ getIsRequired: () => boolean;
3123
+ getIsTranslatable: () => boolean;
3124
+ getVisibility: () => import("..").Visibility;
3125
+ getIsDynamic: () => boolean;
3126
+ getDescription: () => string | undefined;
3127
+ getCondition: () => {
3128
+ field: string;
3129
+ equals: unknown;
3130
+ } | {
3131
+ field: string;
3132
+ notEquals: unknown;
3133
+ } | {
3134
+ field: string;
3135
+ exists: boolean;
3136
+ } | {
3137
+ field: string;
3138
+ gt: number;
3139
+ } | {
3140
+ field: string;
3141
+ gte: number;
3142
+ } | {
3143
+ field: string;
3144
+ lt: number;
3145
+ } | {
3146
+ field: string;
3147
+ lte: number;
3148
+ } | {
3149
+ field: string;
3150
+ includes: unknown;
3151
+ } | {
3152
+ field: string;
3153
+ notIncludes: unknown;
3154
+ } | {
3155
+ field: string;
3156
+ length: {
3157
+ equals?: number | undefined;
3158
+ gt?: number | undefined;
3159
+ gte?: number | undefined;
3160
+ lt?: number | undefined;
3161
+ lte?: number | undefined;
3162
+ };
3163
+ } | undefined;
3164
+ }>(this: TThis_2, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_2>>;
3165
+ max: <TThis_2 extends {
3166
+ kind: "field";
3167
+ readonly __fieldTypes?: {
3168
+ input: string;
3169
+ db: string;
3170
+ output: string;
3171
+ meta: import("..").StringMeta<"Text">;
3172
+ state: import("..").FieldState;
3173
+ } | undefined;
3174
+ meta: import("..").StringMeta<"Text">;
3175
+ state: import("..").FieldState;
3176
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3177
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3178
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3179
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3180
+ getConfig: () => import("..").StringMeta<"Text">;
3181
+ getIsRequired: () => boolean;
3182
+ getIsTranslatable: () => boolean;
3183
+ getVisibility: () => import("..").Visibility;
3184
+ getIsDynamic: () => boolean;
3185
+ getDescription: () => string | undefined;
3186
+ getCondition: () => {
3187
+ field: string;
3188
+ equals: unknown;
3189
+ } | {
3190
+ field: string;
3191
+ notEquals: unknown;
3192
+ } | {
3193
+ field: string;
3194
+ exists: boolean;
3195
+ } | {
3196
+ field: string;
3197
+ gt: number;
3198
+ } | {
3199
+ field: string;
3200
+ gte: number;
3201
+ } | {
3202
+ field: string;
3203
+ lt: number;
3204
+ } | {
3205
+ field: string;
3206
+ lte: number;
3207
+ } | {
3208
+ field: string;
3209
+ includes: unknown;
3210
+ } | {
3211
+ field: string;
3212
+ notIncludes: unknown;
3213
+ } | {
3214
+ field: string;
3215
+ length: {
3216
+ equals?: number | undefined;
3217
+ gt?: number | undefined;
3218
+ gte?: number | undefined;
3219
+ lt?: number | undefined;
3220
+ lte?: number | undefined;
3221
+ };
3222
+ } | undefined;
3223
+ }>(this: TThis_2, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_2>>;
3224
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3225
+ permissions: import("..").WithFieldState<import("..").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("..").SimpleListMeta<import("..").StringField<"Text", import("..").DefaultFieldState>>, import("..").DefaultFieldState> & import("..").PopulatableFieldLike<(string | undefined)[], import("..").DefaultFieldState> & {
3226
+ field: import("..").StringField<"Text", import("..").DefaultFieldState>;
3227
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3228
+ }, "ManagerRole", undefined>, undefined, import("..").SetRequired<import("..").DefaultFieldState>>, import("..").FieldStateOf<TThis_1>>;
3229
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3230
+ avatarId: import("..").StringField<"Id", import("..").DefaultFieldState>;
3231
+ avatarKey: import("..").StringField<"Text", import("..").DefaultFieldState>;
3232
+ avatarAccess: import("..").SelectField<readonly ["public", "private"], false, import("..").DefaultFieldState>;
3233
+ avatarUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
3234
+ avatarPreviewUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
3235
+ tutorialsEnabled: import("..").BooleanField<import("..").DefaultFieldState>;
3236
+ tutorialsPromptedAt: import("..").DateField<"DateTime", import("..").DefaultFieldState>;
3237
+ seenTours: import("..").SimpleListField<import("..").StringField<"Text", import("..").DefaultFieldState>, import("..").DefaultFieldState>;
3238
+ twoFactorEnabled: import("..").WithFieldState<{
3239
+ kind: "field";
3240
+ readonly __fieldTypes?: {
3241
+ input: boolean;
3242
+ db: boolean;
3243
+ output: boolean;
3244
+ meta: import("..").BooleanMeta;
3245
+ state: import("..").DefaultFieldState;
3246
+ } | undefined;
3247
+ meta: import("..").BooleanMeta;
3248
+ state: import("..").DefaultFieldState;
3249
+ toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
3250
+ getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
3251
+ getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
3252
+ getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
3253
+ getConfig: () => import("..").BooleanMeta;
3254
+ getIsRequired: () => false;
3255
+ getIsTranslatable: () => false;
3256
+ getVisibility: () => "all";
3257
+ getIsDynamic: () => true;
3258
+ getDescription: () => undefined;
3259
+ getCondition: () => undefined;
3260
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3261
+ }, "ManagerUser", undefined>, "existing", import("..").SetRequired<import("..").DefaultFieldState>>, import("..").FieldStateOf<TThis>>;
3262
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3263
+ text: import("..").WithFieldState<{
3264
+ kind: "field";
3265
+ readonly __fieldTypes?: {
3266
+ input: string;
3267
+ db: string;
3268
+ output: string;
3269
+ meta: import("..").StringMeta<"Textarea">;
3270
+ state: import("..").DefaultFieldState;
3271
+ } | undefined;
3272
+ meta: import("..").StringMeta<"Textarea">;
3273
+ state: import("..").DefaultFieldState;
3274
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3275
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3276
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3277
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3278
+ getConfig: () => import("..").StringMeta<"Textarea">;
3279
+ getIsRequired: () => false;
3280
+ getIsTranslatable: () => false;
3281
+ getVisibility: () => "all";
3282
+ getIsDynamic: () => true;
3283
+ getDescription: () => undefined;
3284
+ getCondition: () => undefined;
3285
+ } & {
3286
+ type: <TThis extends {
3287
+ kind: "field";
3288
+ readonly __fieldTypes?: {
3289
+ input: string;
3290
+ db: string;
3291
+ output: string;
3292
+ meta: import("..").StringMeta<"Textarea">;
3293
+ state: import("..").FieldState;
3294
+ } | undefined;
3295
+ meta: import("..").StringMeta<"Textarea">;
3296
+ state: import("..").FieldState;
3297
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3298
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3299
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3300
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3301
+ getConfig: () => import("..").StringMeta<"Textarea">;
3302
+ getIsRequired: () => boolean;
3303
+ getIsTranslatable: () => boolean;
3304
+ getVisibility: () => import("..").Visibility;
3305
+ getIsDynamic: () => boolean;
3306
+ getDescription: () => string | undefined;
3307
+ getCondition: () => {
3308
+ field: string;
3309
+ equals: unknown;
3310
+ } | {
3311
+ field: string;
3312
+ notEquals: unknown;
3313
+ } | {
3314
+ field: string;
3315
+ exists: boolean;
3316
+ } | {
3317
+ field: string;
3318
+ gt: number;
3319
+ } | {
3320
+ field: string;
3321
+ gte: number;
3322
+ } | {
3323
+ field: string;
3324
+ lt: number;
3325
+ } | {
3326
+ field: string;
3327
+ lte: number;
3328
+ } | {
3329
+ field: string;
3330
+ includes: unknown;
3331
+ } | {
3332
+ field: string;
3333
+ notIncludes: unknown;
3334
+ } | {
3335
+ field: string;
3336
+ length: {
3337
+ equals?: number | undefined;
3338
+ gt?: number | undefined;
3339
+ gte?: number | undefined;
3340
+ lt?: number | undefined;
3341
+ lte?: number | undefined;
3342
+ };
3343
+ } | undefined;
3344
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
3345
+ min: <TThis extends {
3346
+ kind: "field";
3347
+ readonly __fieldTypes?: {
3348
+ input: string;
3349
+ db: string;
3350
+ output: string;
3351
+ meta: import("..").StringMeta<"Textarea">;
3352
+ state: import("..").FieldState;
3353
+ } | undefined;
3354
+ meta: import("..").StringMeta<"Textarea">;
3355
+ state: import("..").FieldState;
3356
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3357
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3358
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3359
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3360
+ getConfig: () => import("..").StringMeta<"Textarea">;
3361
+ getIsRequired: () => boolean;
3362
+ getIsTranslatable: () => boolean;
3363
+ getVisibility: () => import("..").Visibility;
3364
+ getIsDynamic: () => boolean;
3365
+ getDescription: () => string | undefined;
3366
+ getCondition: () => {
3367
+ field: string;
3368
+ equals: unknown;
3369
+ } | {
3370
+ field: string;
3371
+ notEquals: unknown;
3372
+ } | {
3373
+ field: string;
3374
+ exists: boolean;
3375
+ } | {
3376
+ field: string;
3377
+ gt: number;
3378
+ } | {
3379
+ field: string;
3380
+ gte: number;
3381
+ } | {
3382
+ field: string;
3383
+ lt: number;
3384
+ } | {
3385
+ field: string;
3386
+ lte: number;
3387
+ } | {
3388
+ field: string;
3389
+ includes: unknown;
3390
+ } | {
3391
+ field: string;
3392
+ notIncludes: unknown;
3393
+ } | {
3394
+ field: string;
3395
+ length: {
3396
+ equals?: number | undefined;
3397
+ gt?: number | undefined;
3398
+ gte?: number | undefined;
3399
+ lt?: number | undefined;
3400
+ lte?: number | undefined;
3401
+ };
3402
+ } | undefined;
3403
+ }>(this: TThis, length: number) => import("..").StringField<"Textarea", import("..").FieldStateOf<TThis>>;
3404
+ max: <TThis extends {
3405
+ kind: "field";
3406
+ readonly __fieldTypes?: {
3407
+ input: string;
3408
+ db: string;
3409
+ output: string;
3410
+ meta: import("..").StringMeta<"Textarea">;
3411
+ state: import("..").FieldState;
3412
+ } | undefined;
3413
+ meta: import("..").StringMeta<"Textarea">;
3414
+ state: import("..").FieldState;
3415
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3416
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3417
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3418
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3419
+ getConfig: () => import("..").StringMeta<"Textarea">;
3420
+ getIsRequired: () => boolean;
3421
+ getIsTranslatable: () => boolean;
3422
+ getVisibility: () => import("..").Visibility;
3423
+ getIsDynamic: () => boolean;
3424
+ getDescription: () => string | undefined;
3425
+ getCondition: () => {
3426
+ field: string;
3427
+ equals: unknown;
3428
+ } | {
3429
+ field: string;
3430
+ notEquals: unknown;
3431
+ } | {
3432
+ field: string;
3433
+ exists: boolean;
3434
+ } | {
3435
+ field: string;
3436
+ gt: number;
3437
+ } | {
3438
+ field: string;
3439
+ gte: number;
3440
+ } | {
3441
+ field: string;
3442
+ lt: number;
3443
+ } | {
3444
+ field: string;
3445
+ lte: number;
3446
+ } | {
3447
+ field: string;
3448
+ includes: unknown;
3449
+ } | {
3450
+ field: string;
3451
+ notIncludes: unknown;
3452
+ } | {
3453
+ field: string;
3454
+ length: {
3455
+ equals?: number | undefined;
3456
+ gt?: number | undefined;
3457
+ gte?: number | undefined;
3458
+ lt?: number | undefined;
3459
+ lte?: number | undefined;
3460
+ };
3461
+ } | undefined;
3462
+ }>(this: TThis, length: number) => import("..").StringField<"Textarea", import("..").FieldStateOf<TThis>>;
3463
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3464
+ mentions: import("..").SimpleListField<import("..").RelationField<ContentType<{
3465
+ name: import("..").StringField<"Text", import("..").DefaultFieldState>;
3466
+ user: import("..").WithFieldState<{
3467
+ kind: "field";
3468
+ readonly __fieldTypes?: {
3469
+ input: string;
3470
+ db: string;
3471
+ output: string;
3472
+ meta: import("..").StringMeta<"Text">;
3473
+ state: import("..").DefaultFieldState;
3474
+ } | undefined;
3475
+ meta: import("..").StringMeta<"Text">;
3476
+ state: import("..").DefaultFieldState;
3477
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3478
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3479
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3480
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3481
+ getConfig: () => import("..").StringMeta<"Text">;
3482
+ getIsRequired: () => false;
3483
+ getIsTranslatable: () => false;
3484
+ getVisibility: () => "all";
3485
+ getIsDynamic: () => true;
3486
+ getDescription: () => undefined;
3487
+ getCondition: () => undefined;
3488
+ } & {
3489
+ type: <TThis extends {
3490
+ kind: "field";
3491
+ readonly __fieldTypes?: {
3492
+ input: string;
3493
+ db: string;
3494
+ output: string;
3495
+ meta: import("..").StringMeta<"Text">;
3496
+ state: import("..").FieldState;
3497
+ } | undefined;
3498
+ meta: import("..").StringMeta<"Text">;
3499
+ state: import("..").FieldState;
3500
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3501
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3502
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3503
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3504
+ getConfig: () => import("..").StringMeta<"Text">;
3505
+ getIsRequired: () => boolean;
3506
+ getIsTranslatable: () => boolean;
3507
+ getVisibility: () => import("..").Visibility;
3508
+ getIsDynamic: () => boolean;
3509
+ getDescription: () => string | undefined;
3510
+ getCondition: () => {
3511
+ field: string;
3512
+ equals: unknown;
3513
+ } | {
3514
+ field: string;
3515
+ notEquals: unknown;
3516
+ } | {
3517
+ field: string;
3518
+ exists: boolean;
3519
+ } | {
3520
+ field: string;
3521
+ gt: number;
3522
+ } | {
3523
+ field: string;
3524
+ gte: number;
3525
+ } | {
3526
+ field: string;
3527
+ lt: number;
3528
+ } | {
3529
+ field: string;
3530
+ lte: number;
3531
+ } | {
3532
+ field: string;
3533
+ includes: unknown;
3534
+ } | {
3535
+ field: string;
3536
+ notIncludes: unknown;
3537
+ } | {
3538
+ field: string;
3539
+ length: {
3540
+ equals?: number | undefined;
3541
+ gt?: number | undefined;
3542
+ gte?: number | undefined;
3543
+ lt?: number | undefined;
3544
+ lte?: number | undefined;
3545
+ };
3546
+ } | undefined;
3547
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
3548
+ min: <TThis extends {
3549
+ kind: "field";
3550
+ readonly __fieldTypes?: {
3551
+ input: string;
3552
+ db: string;
3553
+ output: string;
3554
+ meta: import("..").StringMeta<"Text">;
3555
+ state: import("..").FieldState;
3556
+ } | undefined;
3557
+ meta: import("..").StringMeta<"Text">;
3558
+ state: import("..").FieldState;
3559
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3560
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3561
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3562
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3563
+ getConfig: () => import("..").StringMeta<"Text">;
3564
+ getIsRequired: () => boolean;
3565
+ getIsTranslatable: () => boolean;
3566
+ getVisibility: () => import("..").Visibility;
3567
+ getIsDynamic: () => boolean;
3568
+ getDescription: () => string | undefined;
3569
+ getCondition: () => {
3570
+ field: string;
3571
+ equals: unknown;
3572
+ } | {
3573
+ field: string;
3574
+ notEquals: unknown;
3575
+ } | {
3576
+ field: string;
3577
+ exists: boolean;
3578
+ } | {
3579
+ field: string;
3580
+ gt: number;
3581
+ } | {
3582
+ field: string;
3583
+ gte: number;
3584
+ } | {
3585
+ field: string;
3586
+ lt: number;
3587
+ } | {
3588
+ field: string;
3589
+ lte: number;
3590
+ } | {
3591
+ field: string;
3592
+ includes: unknown;
3593
+ } | {
3594
+ field: string;
3595
+ notIncludes: unknown;
3596
+ } | {
3597
+ field: string;
3598
+ length: {
3599
+ equals?: number | undefined;
3600
+ gt?: number | undefined;
3601
+ gte?: number | undefined;
3602
+ lt?: number | undefined;
3603
+ lte?: number | undefined;
3604
+ };
3605
+ } | undefined;
3606
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
3607
+ max: <TThis extends {
3608
+ kind: "field";
3609
+ readonly __fieldTypes?: {
3610
+ input: string;
3611
+ db: string;
3612
+ output: string;
3613
+ meta: import("..").StringMeta<"Text">;
3614
+ state: import("..").FieldState;
3615
+ } | undefined;
3616
+ meta: import("..").StringMeta<"Text">;
3617
+ state: import("..").FieldState;
3618
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3619
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3620
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3621
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3622
+ getConfig: () => import("..").StringMeta<"Text">;
3623
+ getIsRequired: () => boolean;
3624
+ getIsTranslatable: () => boolean;
3625
+ getVisibility: () => import("..").Visibility;
3626
+ getIsDynamic: () => boolean;
3627
+ getDescription: () => string | undefined;
3628
+ getCondition: () => {
3629
+ field: string;
3630
+ equals: unknown;
3631
+ } | {
3632
+ field: string;
3633
+ notEquals: unknown;
3634
+ } | {
3635
+ field: string;
3636
+ exists: boolean;
3637
+ } | {
3638
+ field: string;
3639
+ gt: number;
3640
+ } | {
3641
+ field: string;
3642
+ gte: number;
3643
+ } | {
3644
+ field: string;
3645
+ lt: number;
3646
+ } | {
3647
+ field: string;
3648
+ lte: number;
3649
+ } | {
3650
+ field: string;
3651
+ includes: unknown;
3652
+ } | {
3653
+ field: string;
3654
+ notIncludes: unknown;
3655
+ } | {
3656
+ field: string;
3657
+ length: {
3658
+ equals?: number | undefined;
3659
+ gt?: number | undefined;
3660
+ gte?: number | undefined;
3661
+ lt?: number | undefined;
3662
+ lte?: number | undefined;
3663
+ };
3664
+ } | undefined;
3665
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
3666
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3667
+ email: import("..").WithFieldState<{
3668
+ kind: "field";
3669
+ readonly __fieldTypes?: {
3670
+ input: string;
3671
+ db: string;
3672
+ output: string;
3673
+ meta: import("..").StringMeta<"Email">;
3674
+ state: import("..").DefaultFieldState;
3675
+ } | undefined;
3676
+ meta: import("..").StringMeta<"Email">;
3677
+ state: import("..").DefaultFieldState;
3678
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3679
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3680
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3681
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3682
+ getConfig: () => import("..").StringMeta<"Email">;
3683
+ getIsRequired: () => false;
3684
+ getIsTranslatable: () => false;
3685
+ getVisibility: () => "all";
3686
+ getIsDynamic: () => true;
3687
+ getDescription: () => undefined;
3688
+ getCondition: () => undefined;
3689
+ } & {
3690
+ type: <TThis extends {
3691
+ kind: "field";
3692
+ readonly __fieldTypes?: {
3693
+ input: string;
3694
+ db: string;
3695
+ output: string;
3696
+ meta: import("..").StringMeta<"Email">;
3697
+ state: import("..").FieldState;
3698
+ } | undefined;
3699
+ meta: import("..").StringMeta<"Email">;
3700
+ state: import("..").FieldState;
3701
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3702
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3703
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3704
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3705
+ getConfig: () => import("..").StringMeta<"Email">;
3706
+ getIsRequired: () => boolean;
3707
+ getIsTranslatable: () => boolean;
3708
+ getVisibility: () => import("..").Visibility;
3709
+ getIsDynamic: () => boolean;
3710
+ getDescription: () => string | undefined;
3711
+ getCondition: () => {
3712
+ field: string;
3713
+ equals: unknown;
3714
+ } | {
3715
+ field: string;
3716
+ notEquals: unknown;
3717
+ } | {
3718
+ field: string;
3719
+ exists: boolean;
3720
+ } | {
3721
+ field: string;
3722
+ gt: number;
3723
+ } | {
3724
+ field: string;
3725
+ gte: number;
3726
+ } | {
3727
+ field: string;
3728
+ lt: number;
3729
+ } | {
3730
+ field: string;
3731
+ lte: number;
3732
+ } | {
3733
+ field: string;
3734
+ includes: unknown;
3735
+ } | {
3736
+ field: string;
3737
+ notIncludes: unknown;
3738
+ } | {
3739
+ field: string;
3740
+ length: {
3741
+ equals?: number | undefined;
3742
+ gt?: number | undefined;
3743
+ gte?: number | undefined;
3744
+ lt?: number | undefined;
3745
+ lte?: number | undefined;
3746
+ };
3747
+ } | undefined;
3748
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
3749
+ min: <TThis extends {
3750
+ kind: "field";
3751
+ readonly __fieldTypes?: {
3752
+ input: string;
3753
+ db: string;
3754
+ output: string;
3755
+ meta: import("..").StringMeta<"Email">;
3756
+ state: import("..").FieldState;
3757
+ } | undefined;
3758
+ meta: import("..").StringMeta<"Email">;
3759
+ state: import("..").FieldState;
3760
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3761
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3762
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3763
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3764
+ getConfig: () => import("..").StringMeta<"Email">;
3765
+ getIsRequired: () => boolean;
3766
+ getIsTranslatable: () => boolean;
3767
+ getVisibility: () => import("..").Visibility;
3768
+ getIsDynamic: () => boolean;
3769
+ getDescription: () => string | undefined;
3770
+ getCondition: () => {
3771
+ field: string;
3772
+ equals: unknown;
3773
+ } | {
3774
+ field: string;
3775
+ notEquals: unknown;
3776
+ } | {
3777
+ field: string;
3778
+ exists: boolean;
3779
+ } | {
3780
+ field: string;
3781
+ gt: number;
3782
+ } | {
3783
+ field: string;
3784
+ gte: number;
3785
+ } | {
3786
+ field: string;
3787
+ lt: number;
3788
+ } | {
3789
+ field: string;
3790
+ lte: number;
3791
+ } | {
3792
+ field: string;
3793
+ includes: unknown;
3794
+ } | {
3795
+ field: string;
3796
+ notIncludes: unknown;
3797
+ } | {
3798
+ field: string;
3799
+ length: {
3800
+ equals?: number | undefined;
3801
+ gt?: number | undefined;
3802
+ gte?: number | undefined;
3803
+ lt?: number | undefined;
3804
+ lte?: number | undefined;
3805
+ };
3806
+ } | undefined;
3807
+ }>(this: TThis, length: number) => import("..").StringField<"Email", import("..").FieldStateOf<TThis>>;
3808
+ max: <TThis extends {
3809
+ kind: "field";
3810
+ readonly __fieldTypes?: {
3811
+ input: string;
3812
+ db: string;
3813
+ output: string;
3814
+ meta: import("..").StringMeta<"Email">;
3815
+ state: import("..").FieldState;
3816
+ } | undefined;
3817
+ meta: import("..").StringMeta<"Email">;
3818
+ state: import("..").FieldState;
3819
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3820
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3821
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3822
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3823
+ getConfig: () => import("..").StringMeta<"Email">;
3824
+ getIsRequired: () => boolean;
3825
+ getIsTranslatable: () => boolean;
3826
+ getVisibility: () => import("..").Visibility;
3827
+ getIsDynamic: () => boolean;
3828
+ getDescription: () => string | undefined;
3829
+ getCondition: () => {
3830
+ field: string;
3831
+ equals: unknown;
3832
+ } | {
3833
+ field: string;
3834
+ notEquals: unknown;
3835
+ } | {
3836
+ field: string;
3837
+ exists: boolean;
3838
+ } | {
3839
+ field: string;
3840
+ gt: number;
3841
+ } | {
3842
+ field: string;
3843
+ gte: number;
3844
+ } | {
3845
+ field: string;
3846
+ lt: number;
3847
+ } | {
3848
+ field: string;
3849
+ lte: number;
3850
+ } | {
3851
+ field: string;
3852
+ includes: unknown;
3853
+ } | {
3854
+ field: string;
3855
+ notIncludes: unknown;
3856
+ } | {
3857
+ field: string;
3858
+ length: {
3859
+ equals?: number | undefined;
3860
+ gt?: number | undefined;
3861
+ gte?: number | undefined;
3862
+ lt?: number | undefined;
3863
+ lte?: number | undefined;
3864
+ };
3865
+ } | undefined;
3866
+ }>(this: TThis, length: number) => import("..").StringField<"Email", import("..").FieldStateOf<TThis>>;
3867
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
3868
+ password: import("..").WithFieldState<Omit<{
3869
+ kind: "field";
3870
+ readonly __fieldTypes?: {
3871
+ input: string;
3872
+ db: string;
3873
+ output: string;
3874
+ meta: import("..").StringMeta<"Password">;
3875
+ state: import("..").DefaultFieldState;
3876
+ } | undefined;
3877
+ meta: import("..").StringMeta<"Password">;
3878
+ state: import("..").DefaultFieldState;
3879
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3880
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3881
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3882
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3883
+ getConfig: () => import("..").StringMeta<"Password">;
3884
+ getIsRequired: () => false;
3885
+ getIsTranslatable: () => false;
3886
+ getVisibility: () => "all";
3887
+ getIsDynamic: () => true;
3888
+ getDescription: () => undefined;
3889
+ getCondition: () => undefined;
3890
+ } & {
3891
+ type: <TThis extends {
3892
+ kind: "field";
3893
+ readonly __fieldTypes?: {
3894
+ input: string;
3895
+ db: string;
3896
+ output: string;
3897
+ meta: import("..").StringMeta<"Password">;
3898
+ state: import("..").FieldState;
3899
+ } | undefined;
3900
+ meta: import("..").StringMeta<"Password">;
3901
+ state: import("..").FieldState;
3902
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3903
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3904
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3905
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3906
+ getConfig: () => import("..").StringMeta<"Password">;
3907
+ getIsRequired: () => boolean;
3908
+ getIsTranslatable: () => boolean;
3909
+ getVisibility: () => import("..").Visibility;
3910
+ getIsDynamic: () => boolean;
3911
+ getDescription: () => string | undefined;
3912
+ getCondition: () => {
3913
+ field: string;
3914
+ equals: unknown;
3915
+ } | {
3916
+ field: string;
3917
+ notEquals: unknown;
3918
+ } | {
3919
+ field: string;
3920
+ exists: boolean;
3921
+ } | {
3922
+ field: string;
3923
+ gt: number;
3924
+ } | {
3925
+ field: string;
3926
+ gte: number;
3927
+ } | {
3928
+ field: string;
3929
+ lt: number;
3930
+ } | {
3931
+ field: string;
3932
+ lte: number;
3933
+ } | {
3934
+ field: string;
3935
+ includes: unknown;
3936
+ } | {
3937
+ field: string;
3938
+ notIncludes: unknown;
3939
+ } | {
3940
+ field: string;
3941
+ length: {
3942
+ equals?: number | undefined;
3943
+ gt?: number | undefined;
3944
+ gte?: number | undefined;
3945
+ lt?: number | undefined;
3946
+ lte?: number | undefined;
3947
+ };
3948
+ } | undefined;
3949
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
3950
+ min: <TThis extends {
3951
+ kind: "field";
3952
+ readonly __fieldTypes?: {
3953
+ input: string;
3954
+ db: string;
3955
+ output: string;
3956
+ meta: import("..").StringMeta<"Password">;
3957
+ state: import("..").FieldState;
3958
+ } | undefined;
3959
+ meta: import("..").StringMeta<"Password">;
3960
+ state: import("..").FieldState;
3961
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
3962
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
3963
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3964
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
3965
+ getConfig: () => import("..").StringMeta<"Password">;
3966
+ getIsRequired: () => boolean;
3967
+ getIsTranslatable: () => boolean;
3968
+ getVisibility: () => import("..").Visibility;
3969
+ getIsDynamic: () => boolean;
3970
+ getDescription: () => string | undefined;
3971
+ getCondition: () => {
3972
+ field: string;
3973
+ equals: unknown;
3974
+ } | {
3975
+ field: string;
3976
+ notEquals: unknown;
3977
+ } | {
3978
+ field: string;
3979
+ exists: boolean;
3980
+ } | {
3981
+ field: string;
3982
+ gt: number;
3983
+ } | {
3984
+ field: string;
3985
+ gte: number;
3986
+ } | {
3987
+ field: string;
3988
+ lt: number;
3989
+ } | {
3990
+ field: string;
3991
+ lte: number;
3992
+ } | {
3993
+ field: string;
3994
+ includes: unknown;
3995
+ } | {
3996
+ field: string;
3997
+ notIncludes: unknown;
3998
+ } | {
3999
+ field: string;
4000
+ length: {
4001
+ equals?: number | undefined;
4002
+ gt?: number | undefined;
4003
+ gte?: number | undefined;
4004
+ lt?: number | undefined;
4005
+ lte?: number | undefined;
4006
+ };
4007
+ } | undefined;
4008
+ }>(this: TThis, length: number) => import("..").StringField<"Password", import("..").FieldStateOf<TThis>>;
4009
+ max: <TThis extends {
4010
+ kind: "field";
4011
+ readonly __fieldTypes?: {
4012
+ input: string;
4013
+ db: string;
4014
+ output: string;
4015
+ meta: import("..").StringMeta<"Password">;
4016
+ state: import("..").FieldState;
4017
+ } | undefined;
4018
+ meta: import("..").StringMeta<"Password">;
4019
+ state: import("..").FieldState;
4020
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4021
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4022
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4023
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4024
+ getConfig: () => import("..").StringMeta<"Password">;
4025
+ getIsRequired: () => boolean;
4026
+ getIsTranslatable: () => boolean;
4027
+ getVisibility: () => import("..").Visibility;
4028
+ getIsDynamic: () => boolean;
4029
+ getDescription: () => string | undefined;
4030
+ getCondition: () => {
4031
+ field: string;
4032
+ equals: unknown;
4033
+ } | {
4034
+ field: string;
4035
+ notEquals: unknown;
4036
+ } | {
4037
+ field: string;
4038
+ exists: boolean;
4039
+ } | {
4040
+ field: string;
4041
+ gt: number;
4042
+ } | {
4043
+ field: string;
4044
+ gte: number;
4045
+ } | {
4046
+ field: string;
4047
+ lt: number;
4048
+ } | {
4049
+ field: string;
4050
+ lte: number;
4051
+ } | {
4052
+ field: string;
4053
+ includes: unknown;
4054
+ } | {
4055
+ field: string;
4056
+ notIncludes: unknown;
4057
+ } | {
4058
+ field: string;
4059
+ length: {
4060
+ equals?: number | undefined;
4061
+ gt?: number | undefined;
4062
+ gte?: number | undefined;
4063
+ lt?: number | undefined;
4064
+ lte?: number | undefined;
4065
+ };
4066
+ } | undefined;
4067
+ }>(this: TThis, length: number) => import("..").StringField<"Password", import("..").FieldStateOf<TThis>>;
4068
+ }, keyof import("..").AnyFieldLike | ("condition" | "translatable" | "required" | "description" | "apiOnly" | "managerOnly" | "noDynamic" | "getPopulatedSchema")> & import("..").FieldLike<string, string, string, import("..").StringMeta<"Password">, import("..").SetRequired<import("..").DefaultFieldState>>, import("..").SetVisibility<import("..").SetRequired<import("..").DefaultFieldState>, "manager">>;
4069
+ role: import("..").WithFieldState<{
4070
+ kind: "field";
4071
+ readonly __fieldTypes?: {
4072
+ input: import("..").RelationExisting<"ManagerRole">;
4073
+ db: import("..").RelationExisting<"ManagerRole">;
4074
+ output: {
4075
+ name: string;
4076
+ permissions: (string | undefined)[];
4077
+ _type: "ManagerRole";
4078
+ _id: string;
4079
+ _schemaVersion?: number | undefined;
4080
+ _visibility?: import("..").DocumentVisibility | undefined;
4081
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4082
+ _trashed?: boolean | undefined;
4083
+ _revision?: number | undefined;
4084
+ _localeVariantGroupId?: string | undefined;
4085
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4086
+ trashedAt?: Date | undefined;
4087
+ createdAt?: Date | undefined;
4088
+ updatedAt?: Date | undefined;
4089
+ };
4090
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
4091
+ state: import("..").DefaultFieldState;
4092
+ } | undefined;
4093
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
4094
+ state: import("..").DefaultFieldState;
4095
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole">, unknown>>;
4096
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
4097
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | undefined, unknown>>;
4098
+ getOutputSchema: () => import("zod").ZodType<{
4099
+ name: string;
4100
+ permissions: (string | undefined)[];
4101
+ _type: "ManagerRole";
4102
+ _id: string;
4103
+ _schemaVersion?: number | undefined;
4104
+ _visibility?: import("..").DocumentVisibility | undefined;
4105
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4106
+ _trashed?: boolean | undefined;
4107
+ _revision?: number | undefined;
4108
+ _localeVariantGroupId?: string | undefined;
4109
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4110
+ trashedAt?: Date | undefined;
4111
+ createdAt?: Date | undefined;
4112
+ updatedAt?: Date | undefined;
4113
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
4114
+ name: string;
4115
+ permissions: (string | undefined)[];
4116
+ _type: "ManagerRole";
4117
+ _id: string;
4118
+ _schemaVersion?: number | undefined;
4119
+ _visibility?: import("..").DocumentVisibility | undefined;
4120
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4121
+ _trashed?: boolean | undefined;
4122
+ _revision?: number | undefined;
4123
+ _localeVariantGroupId?: string | undefined;
4124
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4125
+ trashedAt?: Date | undefined;
4126
+ createdAt?: Date | undefined;
4127
+ updatedAt?: Date | undefined;
4128
+ } | undefined, unknown>>;
4129
+ getConfig: () => import("..").RelationMeta<"ManagerRole", undefined>;
4130
+ getIsRequired: () => false;
4131
+ getIsTranslatable: () => false;
4132
+ getVisibility: () => "all";
4133
+ getIsDynamic: () => true;
4134
+ getDescription: () => undefined;
4135
+ getCondition: () => undefined;
4136
+ } & import("..").PopulatableFieldLike<{
4137
+ name: string;
4138
+ permissions: (string | undefined)[];
4139
+ _type: "ManagerRole";
4140
+ _id: string;
4141
+ _schemaVersion?: number | undefined;
4142
+ _visibility?: import("..").DocumentVisibility | undefined;
4143
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4144
+ _trashed?: boolean | undefined;
4145
+ _revision?: number | undefined;
4146
+ _localeVariantGroupId?: string | undefined;
4147
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4148
+ trashedAt?: Date | undefined;
4149
+ trashedBy?: string | undefined;
4150
+ createdAt?: Date | undefined;
4151
+ updatedAt?: Date | undefined;
4152
+ createdBy?: string | undefined;
4153
+ updatedBy?: string | undefined;
4154
+ }, import("..").DefaultFieldState> & {
4155
+ contentType: ContentType<{
4156
+ name: import("..").WithFieldState<{
4157
+ kind: "field";
4158
+ readonly __fieldTypes?: {
4159
+ input: string;
4160
+ db: string;
4161
+ output: string;
4162
+ meta: import("..").StringMeta<"Text">;
4163
+ state: import("..").DefaultFieldState;
4164
+ } | undefined;
4165
+ meta: import("..").StringMeta<"Text">;
4166
+ state: import("..").DefaultFieldState;
4167
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4168
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4169
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4170
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4171
+ getConfig: () => import("..").StringMeta<"Text">;
4172
+ getIsRequired: () => false;
4173
+ getIsTranslatable: () => false;
4174
+ getVisibility: () => "all";
4175
+ getIsDynamic: () => true;
4176
+ getDescription: () => undefined;
4177
+ getCondition: () => undefined;
4178
+ } & {
4179
+ type: <TThis extends {
4180
+ kind: "field";
4181
+ readonly __fieldTypes?: {
4182
+ input: string;
4183
+ db: string;
4184
+ output: string;
4185
+ meta: import("..").StringMeta<"Text">;
4186
+ state: import("..").FieldState;
4187
+ } | undefined;
4188
+ meta: import("..").StringMeta<"Text">;
4189
+ state: import("..").FieldState;
4190
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4191
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4192
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4193
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4194
+ getConfig: () => import("..").StringMeta<"Text">;
4195
+ getIsRequired: () => boolean;
4196
+ getIsTranslatable: () => boolean;
4197
+ getVisibility: () => import("..").Visibility;
4198
+ getIsDynamic: () => boolean;
4199
+ getDescription: () => string | undefined;
4200
+ getCondition: () => {
4201
+ field: string;
4202
+ equals: unknown;
4203
+ } | {
4204
+ field: string;
4205
+ notEquals: unknown;
4206
+ } | {
4207
+ field: string;
4208
+ exists: boolean;
4209
+ } | {
4210
+ field: string;
4211
+ gt: number;
4212
+ } | {
4213
+ field: string;
4214
+ gte: number;
4215
+ } | {
4216
+ field: string;
4217
+ lt: number;
4218
+ } | {
4219
+ field: string;
4220
+ lte: number;
4221
+ } | {
4222
+ field: string;
4223
+ includes: unknown;
4224
+ } | {
4225
+ field: string;
4226
+ notIncludes: unknown;
4227
+ } | {
4228
+ field: string;
4229
+ length: {
4230
+ equals?: number | undefined;
4231
+ gt?: number | undefined;
4232
+ gte?: number | undefined;
4233
+ lt?: number | undefined;
4234
+ lte?: number | undefined;
4235
+ };
4236
+ } | undefined;
4237
+ }, NextUi extends import("..").StringUI>(this: TThis, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis>>;
4238
+ min: <TThis extends {
4239
+ kind: "field";
4240
+ readonly __fieldTypes?: {
4241
+ input: string;
4242
+ db: string;
4243
+ output: string;
4244
+ meta: import("..").StringMeta<"Text">;
4245
+ state: import("..").FieldState;
4246
+ } | undefined;
4247
+ meta: import("..").StringMeta<"Text">;
4248
+ state: import("..").FieldState;
4249
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4250
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4251
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4252
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4253
+ getConfig: () => import("..").StringMeta<"Text">;
4254
+ getIsRequired: () => boolean;
4255
+ getIsTranslatable: () => boolean;
4256
+ getVisibility: () => import("..").Visibility;
4257
+ getIsDynamic: () => boolean;
4258
+ getDescription: () => string | undefined;
4259
+ getCondition: () => {
4260
+ field: string;
4261
+ equals: unknown;
4262
+ } | {
4263
+ field: string;
4264
+ notEquals: unknown;
4265
+ } | {
4266
+ field: string;
4267
+ exists: boolean;
4268
+ } | {
4269
+ field: string;
4270
+ gt: number;
4271
+ } | {
4272
+ field: string;
4273
+ gte: number;
4274
+ } | {
4275
+ field: string;
4276
+ lt: number;
4277
+ } | {
4278
+ field: string;
4279
+ lte: number;
4280
+ } | {
4281
+ field: string;
4282
+ includes: unknown;
4283
+ } | {
4284
+ field: string;
4285
+ notIncludes: unknown;
4286
+ } | {
4287
+ field: string;
4288
+ length: {
4289
+ equals?: number | undefined;
4290
+ gt?: number | undefined;
4291
+ gte?: number | undefined;
4292
+ lt?: number | undefined;
4293
+ lte?: number | undefined;
4294
+ };
4295
+ } | undefined;
4296
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
4297
+ max: <TThis extends {
4298
+ kind: "field";
4299
+ readonly __fieldTypes?: {
4300
+ input: string;
4301
+ db: string;
4302
+ output: string;
4303
+ meta: import("..").StringMeta<"Text">;
4304
+ state: import("..").FieldState;
4305
+ } | undefined;
4306
+ meta: import("..").StringMeta<"Text">;
4307
+ state: import("..").FieldState;
4308
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4309
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4310
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4311
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4312
+ getConfig: () => import("..").StringMeta<"Text">;
4313
+ getIsRequired: () => boolean;
4314
+ getIsTranslatable: () => boolean;
4315
+ getVisibility: () => import("..").Visibility;
4316
+ getIsDynamic: () => boolean;
4317
+ getDescription: () => string | undefined;
4318
+ getCondition: () => {
4319
+ field: string;
4320
+ equals: unknown;
4321
+ } | {
4322
+ field: string;
4323
+ notEquals: unknown;
4324
+ } | {
4325
+ field: string;
4326
+ exists: boolean;
4327
+ } | {
4328
+ field: string;
4329
+ gt: number;
4330
+ } | {
4331
+ field: string;
4332
+ gte: number;
4333
+ } | {
4334
+ field: string;
4335
+ lt: number;
4336
+ } | {
4337
+ field: string;
4338
+ lte: number;
4339
+ } | {
4340
+ field: string;
4341
+ includes: unknown;
4342
+ } | {
4343
+ field: string;
4344
+ notIncludes: unknown;
4345
+ } | {
4346
+ field: string;
4347
+ length: {
4348
+ equals?: number | undefined;
4349
+ gt?: number | undefined;
4350
+ gte?: number | undefined;
4351
+ lt?: number | undefined;
4352
+ lte?: number | undefined;
4353
+ };
4354
+ } | undefined;
4355
+ }>(this: TThis, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis>>;
4356
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
4357
+ permissions: import("..").WithFieldState<import("..").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("..").SimpleListMeta<import("..").StringField<"Text", import("..").DefaultFieldState>>, import("..").DefaultFieldState> & import("..").PopulatableFieldLike<(string | undefined)[], import("..").DefaultFieldState> & {
4358
+ field: import("..").StringField<"Text", import("..").DefaultFieldState>;
4359
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
4360
+ }, "ManagerRole", undefined>;
4361
+ only?: undefined;
4362
+ multiple: <TThis extends {
4363
+ kind: "field";
4364
+ readonly __fieldTypes?: {
4365
+ input: import("..").RelationExisting<"ManagerRole">;
4366
+ db: import("..").RelationExisting<"ManagerRole">;
4367
+ output: {
4368
+ name: string;
4369
+ permissions: (string | undefined)[];
4370
+ _type: "ManagerRole";
4371
+ _id: string;
4372
+ _schemaVersion?: number | undefined;
4373
+ _visibility?: import("..").DocumentVisibility | undefined;
4374
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4375
+ _trashed?: boolean | undefined;
4376
+ _revision?: number | undefined;
4377
+ _localeVariantGroupId?: string | undefined;
4378
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4379
+ trashedAt?: Date | undefined;
4380
+ createdAt?: Date | undefined;
4381
+ updatedAt?: Date | undefined;
4382
+ };
4383
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
4384
+ state: import("..").FieldState;
4385
+ } | undefined;
4386
+ meta: import("..").RelationMeta<"ManagerRole", undefined>;
4387
+ state: import("..").FieldState;
4388
+ toZod: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole">, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole">, unknown>>;
4389
+ getInputSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | null | undefined, unknown>>;
4390
+ getSchema: () => import("zod").ZodType<import("..").RelationExisting<"ManagerRole"> | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<import("..").RelationExisting<"ManagerRole"> | undefined, unknown>>;
4391
+ getOutputSchema: () => import("zod").ZodType<{
4392
+ name: string;
4393
+ permissions: (string | undefined)[];
4394
+ _type: "ManagerRole";
4395
+ _id: string;
4396
+ _schemaVersion?: number | undefined;
4397
+ _visibility?: import("..").DocumentVisibility | undefined;
4398
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4399
+ _trashed?: boolean | undefined;
4400
+ _revision?: number | undefined;
4401
+ _localeVariantGroupId?: string | undefined;
4402
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4403
+ trashedAt?: Date | undefined;
4404
+ createdAt?: Date | undefined;
4405
+ updatedAt?: Date | undefined;
4406
+ } | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
4407
+ name: string;
4408
+ permissions: (string | undefined)[];
4409
+ _type: "ManagerRole";
4410
+ _id: string;
4411
+ _schemaVersion?: number | undefined;
4412
+ _visibility?: import("..").DocumentVisibility | undefined;
4413
+ _visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
4414
+ _trashed?: boolean | undefined;
4415
+ _revision?: number | undefined;
4416
+ _localeVariantGroupId?: string | undefined;
4417
+ _localeVariantRole?: import("zod").infer<typeof import("..").LocaleVariantRole> | undefined;
4418
+ trashedAt?: Date | undefined;
4419
+ createdAt?: Date | undefined;
4420
+ updatedAt?: Date | undefined;
4421
+ } | undefined, unknown>>;
4422
+ getConfig: () => import("..").RelationMeta<"ManagerRole", undefined>;
4423
+ getIsRequired: () => boolean;
4424
+ getIsTranslatable: () => boolean;
4425
+ getVisibility: () => import("..").Visibility;
4426
+ getIsDynamic: () => boolean;
4427
+ getDescription: () => string | undefined;
4428
+ getCondition: () => {
4429
+ field: string;
4430
+ equals: unknown;
4431
+ } | {
4432
+ field: string;
4433
+ notEquals: unknown;
4434
+ } | {
4435
+ field: string;
4436
+ exists: boolean;
4437
+ } | {
4438
+ field: string;
4439
+ gt: number;
4440
+ } | {
4441
+ field: string;
4442
+ gte: number;
4443
+ } | {
4444
+ field: string;
4445
+ lt: number;
4446
+ } | {
4447
+ field: string;
4448
+ lte: number;
4449
+ } | {
4450
+ field: string;
4451
+ includes: unknown;
4452
+ } | {
4453
+ field: string;
4454
+ notIncludes: unknown;
4455
+ } | {
4456
+ field: string;
4457
+ length: {
4458
+ equals?: number | undefined;
4459
+ gt?: number | undefined;
4460
+ gte?: number | undefined;
4461
+ lt?: number | undefined;
4462
+ lte?: number | undefined;
4463
+ };
4464
+ } | undefined;
4465
+ }>(this: TThis) => import("..").SimpleListField<import("..").RelationField<ContentType<{
4466
+ name: import("..").WithFieldState<{
4467
+ kind: "field";
4468
+ readonly __fieldTypes?: {
4469
+ input: string;
4470
+ db: string;
4471
+ output: string;
4472
+ meta: import("..").StringMeta<"Text">;
4473
+ state: import("..").DefaultFieldState;
4474
+ } | undefined;
4475
+ meta: import("..").StringMeta<"Text">;
4476
+ state: import("..").DefaultFieldState;
4477
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4478
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4479
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4480
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4481
+ getConfig: () => import("..").StringMeta<"Text">;
4482
+ getIsRequired: () => false;
4483
+ getIsTranslatable: () => false;
4484
+ getVisibility: () => "all";
4485
+ getIsDynamic: () => true;
4486
+ getDescription: () => undefined;
4487
+ getCondition: () => undefined;
4488
+ } & {
4489
+ type: <TThis_1 extends {
4490
+ kind: "field";
4491
+ readonly __fieldTypes?: {
4492
+ input: string;
4493
+ db: string;
4494
+ output: string;
4495
+ meta: import("..").StringMeta<"Text">;
4496
+ state: import("..").FieldState;
4497
+ } | undefined;
4498
+ meta: import("..").StringMeta<"Text">;
4499
+ state: import("..").FieldState;
4500
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4501
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4502
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4503
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4504
+ getConfig: () => import("..").StringMeta<"Text">;
4505
+ getIsRequired: () => boolean;
4506
+ getIsTranslatable: () => boolean;
4507
+ getVisibility: () => import("..").Visibility;
4508
+ getIsDynamic: () => boolean;
4509
+ getDescription: () => string | undefined;
4510
+ getCondition: () => {
4511
+ field: string;
4512
+ equals: unknown;
4513
+ } | {
4514
+ field: string;
4515
+ notEquals: unknown;
4516
+ } | {
4517
+ field: string;
4518
+ exists: boolean;
4519
+ } | {
4520
+ field: string;
4521
+ gt: number;
4522
+ } | {
4523
+ field: string;
4524
+ gte: number;
4525
+ } | {
4526
+ field: string;
4527
+ lt: number;
4528
+ } | {
4529
+ field: string;
4530
+ lte: number;
4531
+ } | {
4532
+ field: string;
4533
+ includes: unknown;
4534
+ } | {
4535
+ field: string;
4536
+ notIncludes: unknown;
4537
+ } | {
4538
+ field: string;
4539
+ length: {
4540
+ equals?: number | undefined;
4541
+ gt?: number | undefined;
4542
+ gte?: number | undefined;
4543
+ lt?: number | undefined;
4544
+ lte?: number | undefined;
4545
+ };
4546
+ } | undefined;
4547
+ }, NextUi extends import("..").StringUI>(this: TThis_1, ui: NextUi) => import("..").StringField<NextUi, import("..").FieldStateOf<TThis_1>>;
4548
+ min: <TThis_1 extends {
4549
+ kind: "field";
4550
+ readonly __fieldTypes?: {
4551
+ input: string;
4552
+ db: string;
4553
+ output: string;
4554
+ meta: import("..").StringMeta<"Text">;
4555
+ state: import("..").FieldState;
4556
+ } | undefined;
4557
+ meta: import("..").StringMeta<"Text">;
4558
+ state: import("..").FieldState;
4559
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4560
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4561
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4562
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4563
+ getConfig: () => import("..").StringMeta<"Text">;
4564
+ getIsRequired: () => boolean;
4565
+ getIsTranslatable: () => boolean;
4566
+ getVisibility: () => import("..").Visibility;
4567
+ getIsDynamic: () => boolean;
4568
+ getDescription: () => string | undefined;
4569
+ getCondition: () => {
4570
+ field: string;
4571
+ equals: unknown;
4572
+ } | {
4573
+ field: string;
4574
+ notEquals: unknown;
4575
+ } | {
4576
+ field: string;
4577
+ exists: boolean;
4578
+ } | {
4579
+ field: string;
4580
+ gt: number;
4581
+ } | {
4582
+ field: string;
4583
+ gte: number;
4584
+ } | {
4585
+ field: string;
4586
+ lt: number;
4587
+ } | {
4588
+ field: string;
4589
+ lte: number;
4590
+ } | {
4591
+ field: string;
4592
+ includes: unknown;
4593
+ } | {
4594
+ field: string;
4595
+ notIncludes: unknown;
4596
+ } | {
4597
+ field: string;
4598
+ length: {
4599
+ equals?: number | undefined;
4600
+ gt?: number | undefined;
4601
+ gte?: number | undefined;
4602
+ lt?: number | undefined;
4603
+ lte?: number | undefined;
4604
+ };
4605
+ } | undefined;
4606
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
4607
+ max: <TThis_1 extends {
4608
+ kind: "field";
4609
+ readonly __fieldTypes?: {
4610
+ input: string;
4611
+ db: string;
4612
+ output: string;
4613
+ meta: import("..").StringMeta<"Text">;
4614
+ state: import("..").FieldState;
4615
+ } | undefined;
4616
+ meta: import("..").StringMeta<"Text">;
4617
+ state: import("..").FieldState;
4618
+ toZod: () => import("zod").ZodType<string, unknown, import("zod/v4/core").$ZodTypeInternals<string, unknown>>;
4619
+ getInputSchema: () => import("zod").ZodType<string | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | null | undefined, unknown>>;
4620
+ getSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4621
+ getOutputSchema: () => import("zod").ZodType<string | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<string | undefined, unknown>>;
4622
+ getConfig: () => import("..").StringMeta<"Text">;
4623
+ getIsRequired: () => boolean;
4624
+ getIsTranslatable: () => boolean;
4625
+ getVisibility: () => import("..").Visibility;
4626
+ getIsDynamic: () => boolean;
4627
+ getDescription: () => string | undefined;
4628
+ getCondition: () => {
4629
+ field: string;
4630
+ equals: unknown;
4631
+ } | {
4632
+ field: string;
4633
+ notEquals: unknown;
4634
+ } | {
4635
+ field: string;
4636
+ exists: boolean;
4637
+ } | {
4638
+ field: string;
4639
+ gt: number;
4640
+ } | {
4641
+ field: string;
4642
+ gte: number;
4643
+ } | {
4644
+ field: string;
4645
+ lt: number;
4646
+ } | {
4647
+ field: string;
4648
+ lte: number;
4649
+ } | {
4650
+ field: string;
4651
+ includes: unknown;
4652
+ } | {
4653
+ field: string;
4654
+ notIncludes: unknown;
4655
+ } | {
4656
+ field: string;
4657
+ length: {
4658
+ equals?: number | undefined;
4659
+ gt?: number | undefined;
4660
+ gte?: number | undefined;
4661
+ lt?: number | undefined;
4662
+ lte?: number | undefined;
4663
+ };
4664
+ } | undefined;
4665
+ }>(this: TThis_1, length: number) => import("..").StringField<"Text", import("..").FieldStateOf<TThis_1>>;
4666
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
4667
+ permissions: import("..").WithFieldState<import("..").FieldLike<(string | null | undefined)[], (string | undefined)[], (string | undefined)[], import("..").SimpleListMeta<import("..").StringField<"Text", import("..").DefaultFieldState>>, import("..").DefaultFieldState> & import("..").PopulatableFieldLike<(string | undefined)[], import("..").DefaultFieldState> & {
4668
+ field: import("..").StringField<"Text", import("..").DefaultFieldState>;
4669
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
4670
+ }, "ManagerRole", undefined>, undefined, import("..").SetRequired<import("..").DefaultFieldState>>, import("..").FieldStateOf<TThis>>;
4671
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
4672
+ avatarId: import("..").StringField<"Id", import("..").DefaultFieldState>;
4673
+ avatarKey: import("..").StringField<"Text", import("..").DefaultFieldState>;
4674
+ avatarAccess: import("..").SelectField<readonly ["public", "private"], false, import("..").DefaultFieldState>;
4675
+ avatarUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
4676
+ avatarPreviewUrl: import("..").StringField<"Url", import("..").DefaultFieldState>;
4677
+ tutorialsEnabled: import("..").BooleanField<import("..").DefaultFieldState>;
4678
+ tutorialsPromptedAt: import("..").DateField<"DateTime", import("..").DefaultFieldState>;
4679
+ seenTours: import("..").SimpleListField<import("..").StringField<"Text", import("..").DefaultFieldState>, import("..").DefaultFieldState>;
4680
+ twoFactorEnabled: import("..").WithFieldState<{
4681
+ kind: "field";
4682
+ readonly __fieldTypes?: {
4683
+ input: boolean;
4684
+ db: boolean;
4685
+ output: boolean;
4686
+ meta: import("..").BooleanMeta;
4687
+ state: import("..").DefaultFieldState;
4688
+ } | undefined;
4689
+ meta: import("..").BooleanMeta;
4690
+ state: import("..").DefaultFieldState;
4691
+ toZod: () => import("zod").ZodType<boolean, unknown, import("zod/v4/core").$ZodTypeInternals<boolean, unknown>>;
4692
+ getInputSchema: () => import("zod").ZodType<boolean | null | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | null | undefined, unknown>>;
4693
+ getSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
4694
+ getOutputSchema: () => import("zod").ZodType<boolean | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<boolean | undefined, unknown>>;
4695
+ getConfig: () => import("..").BooleanMeta;
4696
+ getIsRequired: () => false;
4697
+ getIsTranslatable: () => false;
4698
+ getVisibility: () => "all";
4699
+ getIsDynamic: () => true;
4700
+ getDescription: () => undefined;
4701
+ getCondition: () => undefined;
4702
+ }, import("..").SetRequired<import("..").DefaultFieldState>>;
4703
+ }, "ManagerUser", undefined>, "existing", import("..").SetRequired<import("..").DefaultFieldState>>, import("..").DefaultFieldState>;
4704
+ reactions: import("..").SimpleListField<import("..").StringField<"Text", import("..").DefaultFieldState>, import("..").DefaultFieldState>;
4705
+ }, "ContentComment", undefined>;
4706
+ export type ContentComment = typeof ContentComment;
4707
+ export type ContentCommentManager = DBOutput<ContentComment>;
4708
+ //# sourceMappingURL=ContentComment.d.ts.map