convex-cms 0.0.5-alpha.0 → 0.0.5-alpha.2

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 (323) hide show
  1. package/README.md +95 -144
  2. package/admin/README.md +99 -0
  3. package/admin/src/components/AdminLayout.tsx +22 -0
  4. package/admin/src/components/BreakingChangesWarningDialog.tsx +81 -0
  5. package/admin/src/components/BulkActionBar.tsx +190 -0
  6. package/admin/src/components/BulkOperationModal.tsx +177 -0
  7. package/admin/src/components/ContentEntryEditor.tsx +1104 -0
  8. package/admin/src/components/ContentTypeFormModal.tsx +1012 -0
  9. package/admin/src/components/ErrorBoundary.tsx +83 -0
  10. package/admin/src/components/ErrorState.tsx +147 -0
  11. package/admin/src/components/Header.tsx +294 -0
  12. package/admin/src/components/RouteGuard.tsx +264 -0
  13. package/admin/src/components/Sidebar.tsx +90 -0
  14. package/admin/src/components/TaxonomyEditor.tsx +348 -0
  15. package/admin/src/components/TermTree.tsx +533 -0
  16. package/admin/src/components/UploadDropzone.tsx +383 -0
  17. package/admin/src/components/VersionCompare.tsx +250 -0
  18. package/admin/src/components/VersionHistory.tsx +279 -0
  19. package/admin/src/components/VersionRollbackModal.tsx +79 -0
  20. package/admin/src/components/cmsds/CmsButton.tsx +101 -0
  21. package/admin/src/components/cmsds/CmsDialog.tsx +139 -0
  22. package/admin/src/components/cmsds/CmsDropdown.tsx +62 -0
  23. package/admin/src/components/cmsds/CmsEmptyState.tsx +54 -0
  24. package/admin/src/components/cmsds/CmsField.tsx +47 -0
  25. package/admin/src/components/cmsds/CmsPageHeader.tsx +35 -0
  26. package/admin/src/components/cmsds/CmsStatusBadge.tsx +153 -0
  27. package/admin/src/components/cmsds/CmsSurface.tsx +52 -0
  28. package/admin/src/components/cmsds/CmsTable.tsx +164 -0
  29. package/admin/src/components/cmsds/CmsToolbar.tsx +58 -0
  30. package/admin/src/components/cmsds/index.ts +10 -0
  31. package/admin/src/components/fields/BooleanField.tsx +74 -0
  32. package/admin/src/components/fields/CategoryField.tsx +394 -0
  33. package/admin/src/components/fields/DateField.tsx +173 -0
  34. package/admin/src/components/fields/DefaultFieldRenderer.tsx +74 -0
  35. package/admin/src/components/fields/FieldRenderer.tsx +180 -0
  36. package/admin/src/components/fields/FieldWrapper.tsx +57 -0
  37. package/admin/src/components/fields/JsonField.tsx +172 -0
  38. package/admin/src/components/fields/MediaField.tsx +367 -0
  39. package/admin/src/components/fields/MultiSelectField.tsx +118 -0
  40. package/admin/src/components/fields/NumberField.tsx +77 -0
  41. package/admin/src/components/fields/ReferenceField.tsx +386 -0
  42. package/admin/src/components/fields/RichTextField.tsx +171 -0
  43. package/admin/src/components/fields/SelectField.tsx +62 -0
  44. package/admin/src/components/fields/TagField.tsx +325 -0
  45. package/admin/src/components/fields/TextAreaField.tsx +68 -0
  46. package/admin/src/components/fields/TextField.tsx +56 -0
  47. package/admin/src/components/fields/index.ts +54 -0
  48. package/admin/src/components/fields/registry.ts +64 -0
  49. package/admin/src/components/fields/types.ts +217 -0
  50. package/admin/src/components/filters/TaxonomyFilter.tsx +254 -0
  51. package/admin/src/components/filters/index.ts +1 -0
  52. package/admin/src/components/index.ts +8 -0
  53. package/admin/src/components/media/MediaAssetActions.tsx +115 -0
  54. package/admin/src/components/media/MediaAssetEditDialog.tsx +217 -0
  55. package/admin/src/components/media/MediaBulkActionBar.tsx +51 -0
  56. package/admin/src/components/media/MediaFolderActions.tsx +69 -0
  57. package/admin/src/components/media/MediaFolderEditDialog.tsx +126 -0
  58. package/admin/src/components/media/MediaMoveModal.tsx +179 -0
  59. package/admin/src/components/media/MediaPreviewModal.tsx +370 -0
  60. package/admin/src/components/media/MediaTaxonomyPicker.tsx +304 -0
  61. package/admin/src/components/media/MediaTrashBulkActionBar.tsx +59 -0
  62. package/admin/src/components/ui/accordion.tsx +64 -0
  63. package/admin/src/components/ui/alert-dialog.tsx +155 -0
  64. package/admin/src/components/ui/alert.tsx +66 -0
  65. package/admin/src/components/ui/avatar.tsx +53 -0
  66. package/admin/src/components/ui/badge.tsx +46 -0
  67. package/admin/src/components/ui/breadcrumb.tsx +109 -0
  68. package/admin/src/components/ui/button.tsx +62 -0
  69. package/admin/src/components/ui/calendar.tsx +220 -0
  70. package/admin/src/components/ui/card.tsx +92 -0
  71. package/admin/src/components/ui/checkbox.tsx +30 -0
  72. package/admin/src/components/ui/command.tsx +182 -0
  73. package/admin/src/components/ui/dialog.tsx +143 -0
  74. package/admin/src/components/ui/dropdown-menu.tsx +257 -0
  75. package/admin/src/components/ui/form.tsx +167 -0
  76. package/admin/src/components/ui/input.tsx +21 -0
  77. package/admin/src/components/ui/label.tsx +24 -0
  78. package/admin/src/components/ui/popover.tsx +46 -0
  79. package/admin/src/components/ui/scroll-area.tsx +56 -0
  80. package/admin/src/components/ui/select.tsx +190 -0
  81. package/admin/src/components/ui/separator.tsx +26 -0
  82. package/admin/src/components/ui/sheet.tsx +137 -0
  83. package/admin/src/components/ui/sidebar.tsx +724 -0
  84. package/admin/src/components/ui/skeleton.tsx +13 -0
  85. package/admin/src/components/ui/sonner.tsx +38 -0
  86. package/admin/src/components/ui/switch.tsx +31 -0
  87. package/admin/src/components/ui/table.tsx +114 -0
  88. package/admin/src/components/ui/tabs.tsx +66 -0
  89. package/admin/src/components/ui/textarea.tsx +18 -0
  90. package/admin/src/components/ui/tooltip.tsx +61 -0
  91. package/admin/src/contexts/AdminConfigContext.tsx +30 -0
  92. package/admin/src/contexts/AuthContext.tsx +330 -0
  93. package/admin/src/contexts/BreadcrumbContext.tsx +49 -0
  94. package/admin/src/contexts/SettingsConfigContext.tsx +57 -0
  95. package/admin/src/contexts/ThemeContext.tsx +91 -0
  96. package/admin/src/contexts/index.ts +20 -0
  97. package/admin/src/embed/components/EmbedHeader.tsx +103 -0
  98. package/admin/src/embed/components/EmbedLayout.tsx +29 -0
  99. package/admin/src/embed/components/EmbedSidebar.tsx +119 -0
  100. package/admin/src/embed/components/index.ts +3 -0
  101. package/admin/src/embed/contexts/ApiContext.tsx +32 -0
  102. package/admin/src/embed/index.tsx +184 -0
  103. package/admin/src/embed/navigation.tsx +202 -0
  104. package/admin/src/embed/pages/Content.tsx +19 -0
  105. package/admin/src/embed/pages/ContentTypes.tsx +19 -0
  106. package/admin/src/embed/pages/Dashboard.tsx +19 -0
  107. package/admin/src/embed/pages/Media.tsx +19 -0
  108. package/admin/src/embed/pages/Settings.tsx +22 -0
  109. package/admin/src/embed/pages/Taxonomies.tsx +22 -0
  110. package/admin/src/embed/pages/Trash.tsx +22 -0
  111. package/admin/src/embed/pages/index.ts +7 -0
  112. package/admin/src/embed/types.ts +24 -0
  113. package/admin/src/hooks/index.ts +2 -0
  114. package/admin/src/hooks/use-mobile.ts +19 -0
  115. package/admin/src/hooks/useBreadcrumbLabel.ts +15 -0
  116. package/admin/src/hooks/usePermissions.ts +211 -0
  117. package/admin/src/lib/admin-config.ts +111 -0
  118. package/admin/src/lib/cn.ts +6 -0
  119. package/admin/src/lib/config.server.ts +56 -0
  120. package/admin/src/lib/convex.ts +26 -0
  121. package/admin/src/lib/embed-adapter.ts +80 -0
  122. package/admin/src/lib/icons.tsx +96 -0
  123. package/admin/src/lib/loadAdminConfig.ts +92 -0
  124. package/admin/src/lib/motion.ts +29 -0
  125. package/admin/src/lib/navigation.ts +43 -0
  126. package/admin/src/lib/tanstack-adapter.ts +82 -0
  127. package/admin/src/pages/ContentPage.tsx +337 -0
  128. package/admin/src/pages/ContentTypesPage.tsx +457 -0
  129. package/admin/src/pages/DashboardPage.tsx +163 -0
  130. package/admin/src/pages/MediaPage.tsx +34 -0
  131. package/admin/src/pages/SettingsPage.tsx +486 -0
  132. package/admin/src/pages/TaxonomiesPage.tsx +289 -0
  133. package/admin/src/pages/TrashPage.tsx +421 -0
  134. package/admin/src/pages/index.ts +14 -0
  135. package/admin/src/routeTree.gen.ts +262 -0
  136. package/admin/src/router.tsx +22 -0
  137. package/admin/src/routes/__root.tsx +250 -0
  138. package/admin/src/routes/content-types.tsx +20 -0
  139. package/admin/src/routes/content.tsx +20 -0
  140. package/admin/src/routes/entries/$entryId.tsx +107 -0
  141. package/admin/src/routes/entries/new.$contentTypeId.tsx +69 -0
  142. package/admin/src/routes/entries/type/$contentTypeId.tsx +503 -0
  143. package/admin/src/routes/index.tsx +20 -0
  144. package/admin/src/routes/media.tsx +1095 -0
  145. package/admin/src/routes/settings.tsx +20 -0
  146. package/admin/src/routes/taxonomies.tsx +20 -0
  147. package/admin/src/routes/trash.tsx +20 -0
  148. package/admin/src/styles/globals.css +69 -0
  149. package/admin/src/styles/tailwind-config.css +74 -0
  150. package/admin/src/styles/theme.css +73 -0
  151. package/admin/src/types/index.ts +221 -0
  152. package/admin/src/utils/errorParsing.ts +163 -0
  153. package/admin/src/utils/index.ts +5 -0
  154. package/admin/src/vite-env.d.ts +14 -0
  155. package/admin/tailwind.preset.cjs +102 -0
  156. package/admin-dist/nitro.json +1 -1
  157. package/admin-dist/public/assets/{CmsEmptyState-CiMQwSQV.js → CmsEmptyState-CkqBIab3.js} +1 -1
  158. package/admin-dist/public/assets/{CmsPageHeader-ohOq0luT.js → CmsPageHeader-CUtl5MMG.js} +1 -1
  159. package/admin-dist/public/assets/{CmsStatusBadge-BdNf0V9v.js → CmsStatusBadge-CUYFgEe-.js} +1 -1
  160. package/admin-dist/public/assets/{CmsSurface-CWup6Jh7.js → CmsSurface-CsJfAVa3.js} +1 -1
  161. package/admin-dist/public/assets/{CmsToolbar-cEBlCHa3.js → CmsToolbar-CnfbcxeP.js} +1 -1
  162. package/admin-dist/public/assets/{ContentEntryEditor-BY5ypfUs.js → ContentEntryEditor-BU220CCy.js} +1 -1
  163. package/admin-dist/public/assets/TaxonomyFilter-CWCxC5HZ.js +1 -0
  164. package/admin-dist/public/assets/_contentTypeId-DK8cskRt.js +1 -0
  165. package/admin-dist/public/assets/{_entryId-BpSmrfAm.js → _entryId-CuVMExbb.js} +1 -1
  166. package/admin-dist/public/assets/{alert-Bf2l8kxw.js → alert-CF1BSzGR.js} +1 -1
  167. package/admin-dist/public/assets/{badge-qPrc4AUM.js → badge-CmuOIVKp.js} +1 -1
  168. package/admin-dist/public/assets/{circle-check-big-Dgozy3vV.js → circle-check-big-BKDVG6DU.js} +1 -1
  169. package/admin-dist/public/assets/{command-QOmNhlb0.js → command-XJxnF2Sd.js} +1 -1
  170. package/admin-dist/public/assets/content-QBUxdxbS.js +1 -0
  171. package/admin-dist/public/assets/content-types-CrNEm8Hf.js +2 -0
  172. package/admin-dist/public/assets/globals-B7Wsfh_v.css +1 -0
  173. package/admin-dist/public/assets/index-C7xOwudI.js +1 -0
  174. package/admin-dist/public/assets/{label-DCsUdvFh.js → label-CHCnXeBk.js} +1 -1
  175. package/admin-dist/public/assets/{link-2-Czw1N61H.js → link-2-Bb34judH.js} +1 -1
  176. package/admin-dist/public/assets/{list-DtCsXj8-.js → list-9Pzt48ld.js} +1 -1
  177. package/admin-dist/public/assets/{main-CXgkZMhe.js → main-CjQ2VI9L.js} +3 -3
  178. package/admin-dist/public/assets/media-Dc5PWt2Q.js +1 -0
  179. package/admin-dist/public/assets/{new._contentTypeId-CoTDxKzf.js → new._contentTypeId-C_I4YxIa.js} +1 -1
  180. package/admin-dist/public/assets/{plus-xCFJK0RC.js → plus-Ceef7DHk.js} +1 -1
  181. package/admin-dist/public/assets/{rotate-ccw-DIqK63wY.js → rotate-ccw-7k7-4VUq.js} +1 -1
  182. package/admin-dist/public/assets/{scroll-area-B-yrE66a.js → scroll-area-CC6wujnp.js} +1 -1
  183. package/admin-dist/public/assets/{search-CbCbboeU.js → search-DwoUV2pv.js} +1 -1
  184. package/admin-dist/public/assets/{select-Co3TZFJb.js → select-hOZTp8aC.js} +1 -1
  185. package/admin-dist/public/assets/{settings-BspTTv_o.js → settings-t2PbCZh4.js} +1 -1
  186. package/admin-dist/public/assets/{switch-CfavASmR.js → switch-jX2pDaNU.js} +1 -1
  187. package/admin-dist/public/assets/{tabs-CN5s5u2W.js → tabs-q4EbZk7c.js} +1 -1
  188. package/admin-dist/public/assets/{tanstack-adapter-npeE3RdY.js → tanstack-adapter-B-Glm4kH.js} +1 -1
  189. package/admin-dist/public/assets/taxonomies-kyk5P4ZW.js +1 -0
  190. package/admin-dist/public/assets/{textarea-BJ0XFZpT.js → textarea-B6SfBmr0.js} +1 -1
  191. package/admin-dist/public/assets/trash-BOCnIznD.js +1 -0
  192. package/admin-dist/public/assets/{triangle-alert-BZRcqsUg.js → triangle-alert-CXFIO_Gu.js} +1 -1
  193. package/admin-dist/public/assets/{useBreadcrumbLabel-DwZlwvFF.js → useBreadcrumbLabel-_6qBagc3.js} +1 -1
  194. package/admin-dist/public/assets/{usePermissions-C1JQhfqb.js → usePermissions-M1ijZ7a6.js} +1 -1
  195. package/admin-dist/server/_ssr/{CmsButton-B45JAKR1.mjs → CmsButton-DOiTVKQq.mjs} +1 -1
  196. package/admin-dist/server/_ssr/{CmsEmptyState-D_BQFAVR.mjs → CmsEmptyState-fbnGt3LD.mjs} +2 -2
  197. package/admin-dist/server/_ssr/{CmsPageHeader-CrUZA59A.mjs → CmsPageHeader-DHRrdOZa.mjs} +1 -1
  198. package/admin-dist/server/_ssr/{CmsStatusBadge-B-sj6yaj.mjs → CmsStatusBadge-s7obWbKZ.mjs} +2 -2
  199. package/admin-dist/server/_ssr/{CmsSurface-DKJZhpjk.mjs → CmsSurface-rFoYjb62.mjs} +1 -1
  200. package/admin-dist/server/_ssr/{CmsToolbar-ByaW5iXf.mjs → CmsToolbar-zTE45z2q.mjs} +2 -2
  201. package/admin-dist/server/_ssr/{ContentEntryEditor-D3_Jb1dq.mjs → ContentEntryEditor-BLoEjT_m.mjs} +12 -12
  202. package/admin-dist/server/_ssr/{TaxonomyFilter-BRJkuCtA.mjs → TaxonomyFilter-XAtaJC2z.mjs} +5 -5
  203. package/admin-dist/server/_ssr/{_contentTypeId-B9kA6CaM.mjs → _contentTypeId-Csl4822C.mjs} +13 -13
  204. package/admin-dist/server/_ssr/{_entryId-BddcMkZN.mjs → _entryId-D8alLFBx.mjs} +15 -15
  205. package/admin-dist/server/_ssr/_tanstack-start-manifest_v-BffZedId.mjs +4 -0
  206. package/admin-dist/server/_ssr/{command-CGtVr8Gb.mjs → command-C0Di14--.mjs} +1 -1
  207. package/admin-dist/server/_ssr/{content-D1tbeOd0.mjs → content-CT-FPsmV.mjs} +12 -55
  208. package/admin-dist/server/_ssr/{content-types-BZqY_BER.mjs → content-types-C8cBFdzE.mjs} +15 -46
  209. package/admin-dist/server/_ssr/{index-BIdq4xaC.mjs → index-BJtcrEc-.mjs} +5 -5
  210. package/admin-dist/server/_ssr/index.mjs +2 -2
  211. package/admin-dist/server/_ssr/{label-T-QNKAr6.mjs → label-qn2Afwl4.mjs} +1 -1
  212. package/admin-dist/server/_ssr/{media-C-xqjBrl.mjs → media-qv5IAsMZ.mjs} +14 -14
  213. package/admin-dist/server/_ssr/{new._contentTypeId-DWic9cRq.mjs → new._contentTypeId-DdGyrhqs.mjs} +13 -13
  214. package/admin-dist/server/_ssr/{router-D1BMAMJT.mjs → router-nSVkxb6Y.mjs} +11 -11
  215. package/admin-dist/server/_ssr/{scroll-area-C0pic_WA.mjs → scroll-area-BCinP455.mjs} +1 -1
  216. package/admin-dist/server/_ssr/{select-CqmuN2F6.mjs → select-BKQlQScw.mjs} +1 -1
  217. package/admin-dist/server/_ssr/{settings-CAkncGGV.mjs → settings-BCr2KQlk.mjs} +55 -40
  218. package/admin-dist/server/_ssr/{switch-CgmuJkT9.mjs → switch-BaOi42fE.mjs} +1 -1
  219. package/admin-dist/server/_ssr/{tabs-CnMj0aRy.mjs → tabs-DYXEi9kq.mjs} +2 -2
  220. package/admin-dist/server/_ssr/{tanstack-adapter-BXZrMauE.mjs → tanstack-adapter-Bsz8kha-.mjs} +1 -1
  221. package/admin-dist/server/_ssr/{taxonomies-thl3BfVm.mjs → taxonomies-CueMHTbE.mjs} +30 -19
  222. package/admin-dist/server/_ssr/{textarea-4K5OJgeh.mjs → textarea-CI0Jqx2x.mjs} +1 -1
  223. package/admin-dist/server/_ssr/{trash-B40Gx5zP.mjs → trash-DE6W8GoX.mjs} +20 -17
  224. package/admin-dist/server/_ssr/{useBreadcrumbLabel-rn-fL4zV.mjs → useBreadcrumbLabel-B5Yi72lM.mjs} +1 -1
  225. package/admin-dist/server/_ssr/{usePermissions-CKeM6_Vw.mjs → usePermissions-C3nZ-Izm.mjs} +1 -1
  226. package/admin-dist/server/index.mjs +183 -190
  227. package/dist/client/admin/bulk.d.ts +79 -0
  228. package/dist/client/admin/bulk.d.ts.map +1 -0
  229. package/dist/client/admin/bulk.js +72 -0
  230. package/dist/client/admin/bulk.js.map +1 -0
  231. package/dist/client/admin/contentLock.d.ts +118 -0
  232. package/dist/client/admin/contentLock.d.ts.map +1 -0
  233. package/dist/client/admin/contentLock.js +81 -0
  234. package/dist/client/admin/contentLock.js.map +1 -0
  235. package/dist/client/{adminApi.d.ts → admin/contentTypes.d.ts} +39 -1134
  236. package/dist/client/admin/contentTypes.d.ts.map +1 -0
  237. package/dist/client/admin/contentTypes.js +122 -0
  238. package/dist/client/admin/contentTypes.js.map +1 -0
  239. package/dist/client/admin/dashboard.d.ts +16 -0
  240. package/dist/client/admin/dashboard.d.ts.map +1 -0
  241. package/dist/client/admin/dashboard.js +33 -0
  242. package/dist/client/admin/dashboard.js.map +1 -0
  243. package/dist/client/admin/entries.d.ts +358 -0
  244. package/dist/client/admin/entries.d.ts.map +1 -0
  245. package/dist/client/admin/entries.js +220 -0
  246. package/dist/client/admin/entries.js.map +1 -0
  247. package/dist/client/admin/index.d.ts +6568 -0
  248. package/dist/client/admin/index.d.ts.map +1 -0
  249. package/dist/client/admin/index.js +305 -0
  250. package/dist/client/admin/index.js.map +1 -0
  251. package/dist/client/admin/media.d.ts +1038 -0
  252. package/dist/client/admin/media.d.ts.map +1 -0
  253. package/dist/client/admin/media.js +489 -0
  254. package/dist/client/admin/media.js.map +1 -0
  255. package/dist/client/admin/taxonomies.d.ts +339 -0
  256. package/dist/client/admin/taxonomies.d.ts.map +1 -0
  257. package/dist/client/admin/taxonomies.js +364 -0
  258. package/dist/client/admin/taxonomies.js.map +1 -0
  259. package/dist/client/admin/trash.d.ts +91 -0
  260. package/dist/client/admin/trash.d.ts.map +1 -0
  261. package/dist/client/admin/trash.js +71 -0
  262. package/dist/client/admin/trash.js.map +1 -0
  263. package/dist/client/admin/types.d.ts +320 -0
  264. package/dist/client/admin/types.d.ts.map +1 -0
  265. package/dist/client/admin/types.js +7 -0
  266. package/dist/client/admin/types.js.map +1 -0
  267. package/dist/client/admin/validators.d.ts +3886 -0
  268. package/dist/client/admin/validators.d.ts.map +1 -0
  269. package/dist/client/admin/validators.js +322 -0
  270. package/dist/client/admin/validators.js.map +1 -0
  271. package/dist/client/admin/versions.d.ts +106 -0
  272. package/dist/client/admin/versions.d.ts.map +1 -0
  273. package/dist/client/admin/versions.js +57 -0
  274. package/dist/client/admin/versions.js.map +1 -0
  275. package/dist/client/adminApiTypes.d.ts +27 -0
  276. package/dist/client/adminApiTypes.d.ts.map +1 -0
  277. package/dist/client/adminApiTypes.js +12 -0
  278. package/dist/client/adminApiTypes.js.map +1 -0
  279. package/dist/client/{admin-config.d.ts → adminConfig.d.ts} +2 -2
  280. package/dist/client/adminConfig.d.ts.map +1 -0
  281. package/dist/client/{admin-config.js → adminConfig.js} +1 -1
  282. package/dist/client/adminConfig.js.map +1 -0
  283. package/dist/client/agentTools.d.ts +4 -4
  284. package/dist/client/index.d.ts +2 -2
  285. package/dist/client/index.d.ts.map +1 -1
  286. package/dist/client/index.js +15 -2
  287. package/dist/client/index.js.map +1 -1
  288. package/dist/component/contentEntries.d.ts +4 -4
  289. package/dist/component/contentEntryMutations.d.ts +46 -0
  290. package/dist/component/contentEntryMutations.d.ts.map +1 -1
  291. package/dist/component/contentEntryMutations.js +1 -1
  292. package/dist/component/contentEntryMutations.js.map +1 -1
  293. package/dist/component/contentTypeMigration.d.ts +1 -1
  294. package/dist/component/contentTypeMutations.d.ts +22 -0
  295. package/dist/component/contentTypeMutations.d.ts.map +1 -1
  296. package/dist/component/contentTypeMutations.js +1 -1
  297. package/dist/component/contentTypeMutations.js.map +1 -1
  298. package/dist/component/mediaAssetMutations.d.ts +47 -0
  299. package/dist/component/mediaAssetMutations.d.ts.map +1 -1
  300. package/dist/component/mediaAssetMutations.js +1 -1
  301. package/dist/component/mediaAssetMutations.js.map +1 -1
  302. package/dist/component/schema.d.ts +9 -0
  303. package/dist/component/schema.d.ts.map +1 -1
  304. package/dist/component/schema.js +1 -1
  305. package/dist/component/schema.js.map +1 -1
  306. package/package.json +85 -3
  307. package/admin-dist/public/assets/ErrorState-C4nJ-ml4.js +0 -1
  308. package/admin-dist/public/assets/TaxonomyFilter-BgE_SR_O.js +0 -1
  309. package/admin-dist/public/assets/_contentTypeId-DtZectcC.js +0 -1
  310. package/admin-dist/public/assets/content-OEBGlxg1.js +0 -1
  311. package/admin-dist/public/assets/content-types-CjQliqVV.js +0 -2
  312. package/admin-dist/public/assets/globals-hAmgC66w.css +0 -1
  313. package/admin-dist/public/assets/index-BH_ECMhv.js +0 -1
  314. package/admin-dist/public/assets/media-DTJ3-ViE.js +0 -1
  315. package/admin-dist/public/assets/taxonomies-CgG46fIF.js +0 -1
  316. package/admin-dist/public/assets/trash-B3daldm5.js +0 -1
  317. package/admin-dist/server/_ssr/ErrorState-cI-bKLez.mjs +0 -89
  318. package/admin-dist/server/_ssr/_tanstack-start-manifest_v-Dd7AmelK.mjs +0 -4
  319. package/dist/client/admin-config.d.ts.map +0 -1
  320. package/dist/client/admin-config.js.map +0 -1
  321. package/dist/client/adminApi.d.ts.map +0 -1
  322. package/dist/client/adminApi.js +0 -736
  323. package/dist/client/adminApi.js.map +0 -1
@@ -0,0 +1,3886 @@
1
+ /**
2
+ * Admin API Validators
3
+ *
4
+ * Derives admin validators from component validators.
5
+ * Admin validators use v.string() for IDs instead of v.id() since IDs become
6
+ * plain strings when crossing the component boundary.
7
+ */
8
+ import { Infer, v } from "convex/values";
9
+ import { contentStatusValidator, mediaTypeValidator, variantTypeValidator, variantStatusValidator } from "../../component/schema.js";
10
+ export { contentStatusValidator, mediaTypeValidator, variantTypeValidator, variantStatusValidator, };
11
+ export declare const paginationOptsValidator: import("convex/values").VObject<{
12
+ numItems: number;
13
+ cursor: string | null;
14
+ }, {
15
+ numItems: import("convex/values").VFloat64<number, "required">;
16
+ cursor: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
17
+ }, "required", "numItems" | "cursor">;
18
+ export declare const adminPaginationResult: <T extends Parameters<typeof v.array>[0]>(itemValidator: T) => import("convex/values").VObject<{
19
+ page: T["type"][];
20
+ continueCursor: string | null;
21
+ isDone: boolean;
22
+ }, {
23
+ page: import("convex/values").VArray<T["type"][], T, "required">;
24
+ continueCursor: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
25
+ isDone: import("convex/values").VBoolean<boolean, "required">;
26
+ }, "required", "page" | "continueCursor" | "isDone">;
27
+ export declare const adminTagsFieldDefinitionValidator: import("convex/values").VObject<{
28
+ options?: {
29
+ taxonomyId?: string | undefined;
30
+ allowCreate?: boolean | undefined;
31
+ maxTags?: number | undefined;
32
+ minTags?: number | undefined;
33
+ } | undefined;
34
+ searchable?: boolean | undefined;
35
+ localized?: boolean | undefined;
36
+ description?: string | undefined;
37
+ defaultValue?: any;
38
+ required: boolean;
39
+ type: "tags";
40
+ name: string;
41
+ label: string;
42
+ }, {
43
+ type: import("convex/values").VLiteral<"tags", "required">;
44
+ options: import("convex/values").VObject<{
45
+ taxonomyId?: string | undefined;
46
+ allowCreate?: boolean | undefined;
47
+ maxTags?: number | undefined;
48
+ minTags?: number | undefined;
49
+ } | undefined, {
50
+ taxonomyId: import("convex/values").VString<string | undefined, "optional">;
51
+ allowCreate: import("convex/values").VBoolean<boolean | undefined, "optional">;
52
+ maxTags: import("convex/values").VFloat64<number | undefined, "optional">;
53
+ minTags: import("convex/values").VFloat64<number | undefined, "optional">;
54
+ }, "optional", "taxonomyId" | "allowCreate" | "maxTags" | "minTags">;
55
+ name: import("convex/values").VString<string, "required">;
56
+ label: import("convex/values").VString<string, "required">;
57
+ required: import("convex/values").VBoolean<boolean, "required">;
58
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
59
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
60
+ description: import("convex/values").VString<string | undefined, "optional">;
61
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
62
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags">;
63
+ export declare const adminFieldDefinitionValidator: import("convex/values").VUnion<{
64
+ options?: {
65
+ minLength?: number | undefined;
66
+ maxLength?: number | undefined;
67
+ pattern?: string | undefined;
68
+ } | undefined;
69
+ searchable?: boolean | undefined;
70
+ localized?: boolean | undefined;
71
+ description?: string | undefined;
72
+ defaultValue?: any;
73
+ required: boolean;
74
+ type: "text";
75
+ name: string;
76
+ label: string;
77
+ } | {
78
+ options?: {
79
+ min?: number | undefined;
80
+ max?: number | undefined;
81
+ step?: number | undefined;
82
+ precision?: number | undefined;
83
+ } | undefined;
84
+ searchable?: boolean | undefined;
85
+ localized?: boolean | undefined;
86
+ description?: string | undefined;
87
+ defaultValue?: any;
88
+ required: boolean;
89
+ type: "number";
90
+ name: string;
91
+ label: string;
92
+ } | {
93
+ options?: {
94
+ trueLabel?: string | undefined;
95
+ falseLabel?: string | undefined;
96
+ } | undefined;
97
+ searchable?: boolean | undefined;
98
+ localized?: boolean | undefined;
99
+ description?: string | undefined;
100
+ defaultValue?: any;
101
+ required: boolean;
102
+ type: "boolean";
103
+ name: string;
104
+ label: string;
105
+ } | {
106
+ options?: {
107
+ allowedBlocks?: string[] | undefined;
108
+ allowedMarks?: string[] | undefined;
109
+ } | undefined;
110
+ searchable?: boolean | undefined;
111
+ localized?: boolean | undefined;
112
+ description?: string | undefined;
113
+ defaultValue?: any;
114
+ required: boolean;
115
+ type: "richText";
116
+ name: string;
117
+ label: string;
118
+ } | {
119
+ options?: {
120
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
121
+ allowedMimeTypes?: string[] | undefined;
122
+ maxFileSize?: number | undefined;
123
+ multiple?: boolean | undefined;
124
+ } | undefined;
125
+ searchable?: boolean | undefined;
126
+ localized?: boolean | undefined;
127
+ description?: string | undefined;
128
+ defaultValue?: any;
129
+ required: boolean;
130
+ type: "media";
131
+ name: string;
132
+ label: string;
133
+ } | {
134
+ options?: {
135
+ options?: {
136
+ label: string;
137
+ value: string;
138
+ }[] | undefined;
139
+ } | undefined;
140
+ searchable?: boolean | undefined;
141
+ localized?: boolean | undefined;
142
+ description?: string | undefined;
143
+ defaultValue?: any;
144
+ required: boolean;
145
+ type: "select";
146
+ name: string;
147
+ label: string;
148
+ } | {
149
+ options?: {
150
+ allowMultiple?: boolean | undefined;
151
+ } | undefined;
152
+ searchable?: boolean | undefined;
153
+ localized?: boolean | undefined;
154
+ description?: string | undefined;
155
+ defaultValue?: any;
156
+ required: boolean;
157
+ type: "category";
158
+ name: string;
159
+ label: string;
160
+ } | {
161
+ options?: {
162
+ schema?: any;
163
+ } | undefined;
164
+ searchable?: boolean | undefined;
165
+ localized?: boolean | undefined;
166
+ description?: string | undefined;
167
+ defaultValue?: any;
168
+ required: boolean;
169
+ type: "json";
170
+ name: string;
171
+ label: string;
172
+ } | {
173
+ options?: {
174
+ multiple?: boolean | undefined;
175
+ allowedContentTypes?: string[] | undefined;
176
+ minItems?: number | undefined;
177
+ } | undefined;
178
+ searchable?: boolean | undefined;
179
+ localized?: boolean | undefined;
180
+ description?: string | undefined;
181
+ defaultValue?: any;
182
+ required: boolean;
183
+ type: "reference";
184
+ name: string;
185
+ label: string;
186
+ } | {
187
+ options?: {
188
+ options?: {
189
+ label: string;
190
+ value: string;
191
+ }[] | undefined;
192
+ } | undefined;
193
+ searchable?: boolean | undefined;
194
+ localized?: boolean | undefined;
195
+ description?: string | undefined;
196
+ defaultValue?: any;
197
+ required: boolean;
198
+ type: "multiSelect";
199
+ name: string;
200
+ label: string;
201
+ } | {
202
+ options?: {
203
+ min?: number | undefined;
204
+ max?: number | undefined;
205
+ } | undefined;
206
+ searchable?: boolean | undefined;
207
+ localized?: boolean | undefined;
208
+ description?: string | undefined;
209
+ defaultValue?: any;
210
+ required: boolean;
211
+ type: "date";
212
+ name: string;
213
+ label: string;
214
+ } | {
215
+ options?: {
216
+ min?: number | undefined;
217
+ max?: number | undefined;
218
+ } | undefined;
219
+ searchable?: boolean | undefined;
220
+ localized?: boolean | undefined;
221
+ description?: string | undefined;
222
+ defaultValue?: any;
223
+ required: boolean;
224
+ type: "datetime";
225
+ name: string;
226
+ label: string;
227
+ } | {
228
+ options?: {
229
+ taxonomyId?: string | undefined;
230
+ allowCreate?: boolean | undefined;
231
+ maxTags?: number | undefined;
232
+ minTags?: number | undefined;
233
+ } | undefined;
234
+ searchable?: boolean | undefined;
235
+ localized?: boolean | undefined;
236
+ description?: string | undefined;
237
+ defaultValue?: any;
238
+ required: boolean;
239
+ type: "tags";
240
+ name: string;
241
+ label: string;
242
+ }, [import("convex/values").VObject<{
243
+ options?: {
244
+ minLength?: number | undefined;
245
+ maxLength?: number | undefined;
246
+ pattern?: string | undefined;
247
+ } | undefined;
248
+ searchable?: boolean | undefined;
249
+ localized?: boolean | undefined;
250
+ description?: string | undefined;
251
+ defaultValue?: any;
252
+ required: boolean;
253
+ type: "text";
254
+ name: string;
255
+ label: string;
256
+ }, {
257
+ type: import("convex/values").VLiteral<"text", "required">;
258
+ options: import("convex/values").VObject<{
259
+ minLength?: number | undefined;
260
+ maxLength?: number | undefined;
261
+ pattern?: string | undefined;
262
+ } | undefined, {
263
+ minLength: import("convex/values").VFloat64<number | undefined, "optional">;
264
+ maxLength: import("convex/values").VFloat64<number | undefined, "optional">;
265
+ pattern: import("convex/values").VString<string | undefined, "optional">;
266
+ }, "optional", "minLength" | "maxLength" | "pattern">;
267
+ name: import("convex/values").VString<string, "required">;
268
+ label: import("convex/values").VString<string, "required">;
269
+ required: import("convex/values").VBoolean<boolean, "required">;
270
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
271
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
272
+ description: import("convex/values").VString<string | undefined, "optional">;
273
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
274
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | "options.minLength" | "options.maxLength" | "options.pattern" | `defaultValue.${string}`>, import("convex/values").VObject<{
275
+ options?: {
276
+ min?: number | undefined;
277
+ max?: number | undefined;
278
+ step?: number | undefined;
279
+ precision?: number | undefined;
280
+ } | undefined;
281
+ searchable?: boolean | undefined;
282
+ localized?: boolean | undefined;
283
+ description?: string | undefined;
284
+ defaultValue?: any;
285
+ required: boolean;
286
+ type: "number";
287
+ name: string;
288
+ label: string;
289
+ }, {
290
+ type: import("convex/values").VLiteral<"number", "required">;
291
+ options: import("convex/values").VObject<{
292
+ min?: number | undefined;
293
+ max?: number | undefined;
294
+ step?: number | undefined;
295
+ precision?: number | undefined;
296
+ } | undefined, {
297
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
298
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
299
+ step: import("convex/values").VFloat64<number | undefined, "optional">;
300
+ precision: import("convex/values").VFloat64<number | undefined, "optional">;
301
+ }, "optional", "min" | "max" | "step" | "precision">;
302
+ name: import("convex/values").VString<string, "required">;
303
+ label: import("convex/values").VString<string, "required">;
304
+ required: import("convex/values").VBoolean<boolean, "required">;
305
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
306
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
307
+ description: import("convex/values").VString<string | undefined, "optional">;
308
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
309
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max" | "options.step" | "options.precision">, import("convex/values").VObject<{
310
+ options?: {
311
+ trueLabel?: string | undefined;
312
+ falseLabel?: string | undefined;
313
+ } | undefined;
314
+ searchable?: boolean | undefined;
315
+ localized?: boolean | undefined;
316
+ description?: string | undefined;
317
+ defaultValue?: any;
318
+ required: boolean;
319
+ type: "boolean";
320
+ name: string;
321
+ label: string;
322
+ }, {
323
+ type: import("convex/values").VLiteral<"boolean", "required">;
324
+ options: import("convex/values").VObject<{
325
+ trueLabel?: string | undefined;
326
+ falseLabel?: string | undefined;
327
+ } | undefined, {
328
+ trueLabel: import("convex/values").VString<string | undefined, "optional">;
329
+ falseLabel: import("convex/values").VString<string | undefined, "optional">;
330
+ }, "optional", "trueLabel" | "falseLabel">;
331
+ name: import("convex/values").VString<string, "required">;
332
+ label: import("convex/values").VString<string, "required">;
333
+ required: import("convex/values").VBoolean<boolean, "required">;
334
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
335
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
336
+ description: import("convex/values").VString<string | undefined, "optional">;
337
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
338
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.trueLabel" | "options.falseLabel">, import("convex/values").VObject<{
339
+ options?: {
340
+ allowedBlocks?: string[] | undefined;
341
+ allowedMarks?: string[] | undefined;
342
+ } | undefined;
343
+ searchable?: boolean | undefined;
344
+ localized?: boolean | undefined;
345
+ description?: string | undefined;
346
+ defaultValue?: any;
347
+ required: boolean;
348
+ type: "richText";
349
+ name: string;
350
+ label: string;
351
+ }, {
352
+ type: import("convex/values").VLiteral<"richText", "required">;
353
+ options: import("convex/values").VObject<{
354
+ allowedBlocks?: string[] | undefined;
355
+ allowedMarks?: string[] | undefined;
356
+ } | undefined, {
357
+ allowedBlocks: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
358
+ allowedMarks: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
359
+ }, "optional", "allowedBlocks" | "allowedMarks">;
360
+ name: import("convex/values").VString<string, "required">;
361
+ label: import("convex/values").VString<string, "required">;
362
+ required: import("convex/values").VBoolean<boolean, "required">;
363
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
364
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
365
+ description: import("convex/values").VString<string | undefined, "optional">;
366
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
367
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.allowedBlocks" | "options.allowedMarks">, import("convex/values").VObject<{
368
+ options?: {
369
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
370
+ allowedMimeTypes?: string[] | undefined;
371
+ maxFileSize?: number | undefined;
372
+ multiple?: boolean | undefined;
373
+ } | undefined;
374
+ searchable?: boolean | undefined;
375
+ localized?: boolean | undefined;
376
+ description?: string | undefined;
377
+ defaultValue?: any;
378
+ required: boolean;
379
+ type: "media";
380
+ name: string;
381
+ label: string;
382
+ }, {
383
+ type: import("convex/values").VLiteral<"media", "required">;
384
+ options: import("convex/values").VObject<{
385
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
386
+ allowedMimeTypes?: string[] | undefined;
387
+ maxFileSize?: number | undefined;
388
+ multiple?: boolean | undefined;
389
+ } | undefined, {
390
+ mediaType: import("convex/values").VUnion<"image" | "video" | "audio" | "document" | "other" | undefined, [import("convex/values").VLiteral<"image", "required">, import("convex/values").VLiteral<"video", "required">, import("convex/values").VLiteral<"audio", "required">, import("convex/values").VLiteral<"document", "required">, import("convex/values").VLiteral<"other", "required">], "optional", never>;
391
+ allowedMimeTypes: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
392
+ maxFileSize: import("convex/values").VFloat64<number | undefined, "optional">;
393
+ multiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
394
+ }, "optional", "mediaType" | "allowedMimeTypes" | "maxFileSize" | "multiple">;
395
+ name: import("convex/values").VString<string, "required">;
396
+ label: import("convex/values").VString<string, "required">;
397
+ required: import("convex/values").VBoolean<boolean, "required">;
398
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
399
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
400
+ description: import("convex/values").VString<string | undefined, "optional">;
401
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
402
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.mediaType" | "options.allowedMimeTypes" | "options.maxFileSize" | "options.multiple">, import("convex/values").VObject<{
403
+ options?: {
404
+ options?: {
405
+ label: string;
406
+ value: string;
407
+ }[] | undefined;
408
+ } | undefined;
409
+ searchable?: boolean | undefined;
410
+ localized?: boolean | undefined;
411
+ description?: string | undefined;
412
+ defaultValue?: any;
413
+ required: boolean;
414
+ type: "select";
415
+ name: string;
416
+ label: string;
417
+ }, {
418
+ type: import("convex/values").VLiteral<"select", "required">;
419
+ options: import("convex/values").VObject<{
420
+ options?: {
421
+ label: string;
422
+ value: string;
423
+ }[] | undefined;
424
+ } | undefined, {
425
+ options: import("convex/values").VArray<{
426
+ label: string;
427
+ value: string;
428
+ }[] | undefined, import("convex/values").VObject<{
429
+ label: string;
430
+ value: string;
431
+ }, {
432
+ value: import("convex/values").VString<string, "required">;
433
+ label: import("convex/values").VString<string, "required">;
434
+ }, "required", "label" | "value">, "optional">;
435
+ }, "optional", "options">;
436
+ name: import("convex/values").VString<string, "required">;
437
+ label: import("convex/values").VString<string, "required">;
438
+ required: import("convex/values").VBoolean<boolean, "required">;
439
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
440
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
441
+ description: import("convex/values").VString<string | undefined, "optional">;
442
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
443
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.options">, import("convex/values").VObject<{
444
+ options?: {
445
+ options?: {
446
+ label: string;
447
+ value: string;
448
+ }[] | undefined;
449
+ } | undefined;
450
+ searchable?: boolean | undefined;
451
+ localized?: boolean | undefined;
452
+ description?: string | undefined;
453
+ defaultValue?: any;
454
+ required: boolean;
455
+ type: "multiSelect";
456
+ name: string;
457
+ label: string;
458
+ }, {
459
+ type: import("convex/values").VLiteral<"multiSelect", "required">;
460
+ options: import("convex/values").VObject<{
461
+ options?: {
462
+ label: string;
463
+ value: string;
464
+ }[] | undefined;
465
+ } | undefined, {
466
+ options: import("convex/values").VArray<{
467
+ label: string;
468
+ value: string;
469
+ }[] | undefined, import("convex/values").VObject<{
470
+ label: string;
471
+ value: string;
472
+ }, {
473
+ value: import("convex/values").VString<string, "required">;
474
+ label: import("convex/values").VString<string, "required">;
475
+ }, "required", "label" | "value">, "optional">;
476
+ }, "optional", "options">;
477
+ name: import("convex/values").VString<string, "required">;
478
+ label: import("convex/values").VString<string, "required">;
479
+ required: import("convex/values").VBoolean<boolean, "required">;
480
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
481
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
482
+ description: import("convex/values").VString<string | undefined, "optional">;
483
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
484
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.options">, import("convex/values").VObject<{
485
+ options?: {
486
+ taxonomyId?: string | undefined;
487
+ allowCreate?: boolean | undefined;
488
+ maxTags?: number | undefined;
489
+ minTags?: number | undefined;
490
+ } | undefined;
491
+ searchable?: boolean | undefined;
492
+ localized?: boolean | undefined;
493
+ description?: string | undefined;
494
+ defaultValue?: any;
495
+ required: boolean;
496
+ type: "tags";
497
+ name: string;
498
+ label: string;
499
+ }, {
500
+ type: import("convex/values").VLiteral<"tags", "required">;
501
+ options: import("convex/values").VObject<{
502
+ taxonomyId?: string | undefined;
503
+ allowCreate?: boolean | undefined;
504
+ maxTags?: number | undefined;
505
+ minTags?: number | undefined;
506
+ } | undefined, {
507
+ taxonomyId: import("convex/values").VString<string | undefined, "optional">;
508
+ allowCreate: import("convex/values").VBoolean<boolean | undefined, "optional">;
509
+ maxTags: import("convex/values").VFloat64<number | undefined, "optional">;
510
+ minTags: import("convex/values").VFloat64<number | undefined, "optional">;
511
+ }, "optional", "taxonomyId" | "allowCreate" | "maxTags" | "minTags">;
512
+ name: import("convex/values").VString<string, "required">;
513
+ label: import("convex/values").VString<string, "required">;
514
+ required: import("convex/values").VBoolean<boolean, "required">;
515
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
516
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
517
+ description: import("convex/values").VString<string | undefined, "optional">;
518
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
519
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags">, import("convex/values").VObject<{
520
+ options?: {
521
+ allowMultiple?: boolean | undefined;
522
+ } | undefined;
523
+ searchable?: boolean | undefined;
524
+ localized?: boolean | undefined;
525
+ description?: string | undefined;
526
+ defaultValue?: any;
527
+ required: boolean;
528
+ type: "category";
529
+ name: string;
530
+ label: string;
531
+ }, {
532
+ type: import("convex/values").VLiteral<"category", "required">;
533
+ options: import("convex/values").VObject<{
534
+ allowMultiple?: boolean | undefined;
535
+ } | undefined, {
536
+ allowMultiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
537
+ }, "optional", "allowMultiple">;
538
+ name: import("convex/values").VString<string, "required">;
539
+ label: import("convex/values").VString<string, "required">;
540
+ required: import("convex/values").VBoolean<boolean, "required">;
541
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
542
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
543
+ description: import("convex/values").VString<string | undefined, "optional">;
544
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
545
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.allowMultiple">, import("convex/values").VObject<{
546
+ options?: {
547
+ schema?: any;
548
+ } | undefined;
549
+ searchable?: boolean | undefined;
550
+ localized?: boolean | undefined;
551
+ description?: string | undefined;
552
+ defaultValue?: any;
553
+ required: boolean;
554
+ type: "json";
555
+ name: string;
556
+ label: string;
557
+ }, {
558
+ type: import("convex/values").VLiteral<"json", "required">;
559
+ options: import("convex/values").VObject<{
560
+ schema?: any;
561
+ } | undefined, {
562
+ schema: import("convex/values").VAny<any, "optional", string>;
563
+ }, "optional", "schema" | `schema.${string}`>;
564
+ name: import("convex/values").VString<string, "required">;
565
+ label: import("convex/values").VString<string, "required">;
566
+ required: import("convex/values").VBoolean<boolean, "required">;
567
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
568
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
569
+ description: import("convex/values").VString<string | undefined, "optional">;
570
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
571
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.schema" | `options.schema.${string}`>, import("convex/values").VObject<{
572
+ options?: {
573
+ min?: number | undefined;
574
+ max?: number | undefined;
575
+ } | undefined;
576
+ searchable?: boolean | undefined;
577
+ localized?: boolean | undefined;
578
+ description?: string | undefined;
579
+ defaultValue?: any;
580
+ required: boolean;
581
+ type: "date";
582
+ name: string;
583
+ label: string;
584
+ }, {
585
+ type: import("convex/values").VLiteral<"date", "required">;
586
+ options: import("convex/values").VObject<{
587
+ min?: number | undefined;
588
+ max?: number | undefined;
589
+ } | undefined, {
590
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
591
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
592
+ }, "optional", "min" | "max">;
593
+ name: import("convex/values").VString<string, "required">;
594
+ label: import("convex/values").VString<string, "required">;
595
+ required: import("convex/values").VBoolean<boolean, "required">;
596
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
597
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
598
+ description: import("convex/values").VString<string | undefined, "optional">;
599
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
600
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max">, import("convex/values").VObject<{
601
+ options?: {
602
+ min?: number | undefined;
603
+ max?: number | undefined;
604
+ } | undefined;
605
+ searchable?: boolean | undefined;
606
+ localized?: boolean | undefined;
607
+ description?: string | undefined;
608
+ defaultValue?: any;
609
+ required: boolean;
610
+ type: "datetime";
611
+ name: string;
612
+ label: string;
613
+ }, {
614
+ type: import("convex/values").VLiteral<"datetime", "required">;
615
+ options: import("convex/values").VObject<{
616
+ min?: number | undefined;
617
+ max?: number | undefined;
618
+ } | undefined, {
619
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
620
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
621
+ }, "optional", "min" | "max">;
622
+ name: import("convex/values").VString<string, "required">;
623
+ label: import("convex/values").VString<string, "required">;
624
+ required: import("convex/values").VBoolean<boolean, "required">;
625
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
626
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
627
+ description: import("convex/values").VString<string | undefined, "optional">;
628
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
629
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max">, import("convex/values").VObject<{
630
+ options?: {
631
+ multiple?: boolean | undefined;
632
+ allowedContentTypes?: string[] | undefined;
633
+ minItems?: number | undefined;
634
+ } | undefined;
635
+ searchable?: boolean | undefined;
636
+ localized?: boolean | undefined;
637
+ description?: string | undefined;
638
+ defaultValue?: any;
639
+ required: boolean;
640
+ type: "reference";
641
+ name: string;
642
+ label: string;
643
+ }, {
644
+ type: import("convex/values").VLiteral<"reference", "required">;
645
+ options: import("convex/values").VObject<{
646
+ multiple?: boolean | undefined;
647
+ allowedContentTypes?: string[] | undefined;
648
+ minItems?: number | undefined;
649
+ } | undefined, {
650
+ allowedContentTypes: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
651
+ multiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
652
+ minItems: import("convex/values").VFloat64<number | undefined, "optional">;
653
+ }, "optional", "multiple" | "allowedContentTypes" | "minItems">;
654
+ name: import("convex/values").VString<string, "required">;
655
+ label: import("convex/values").VString<string, "required">;
656
+ required: import("convex/values").VBoolean<boolean, "required">;
657
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
658
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
659
+ description: import("convex/values").VString<string | undefined, "optional">;
660
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
661
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.multiple" | "options.allowedContentTypes" | "options.minItems">], "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | "options.minLength" | "options.maxLength" | "options.pattern" | `defaultValue.${string}` | "options.min" | "options.max" | "options.step" | "options.precision" | "options.trueLabel" | "options.falseLabel" | "options.allowedBlocks" | "options.allowedMarks" | "options.mediaType" | "options.allowedMimeTypes" | "options.maxFileSize" | "options.multiple" | "options.options" | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags" | "options.allowMultiple" | "options.schema" | `options.schema.${string}` | "options.allowedContentTypes" | "options.minItems">;
662
+ export declare const adminContentTypeDoc: import("convex/values").VObject<{
663
+ description?: string | undefined;
664
+ deletedAt?: number | undefined;
665
+ updatedBy?: string | undefined;
666
+ sortOrder?: number | undefined;
667
+ icon?: string | undefined;
668
+ singleton?: boolean | undefined;
669
+ slugField?: string | undefined;
670
+ titleField?: string | undefined;
671
+ fields: ({
672
+ options?: {
673
+ minLength?: number | undefined;
674
+ maxLength?: number | undefined;
675
+ pattern?: string | undefined;
676
+ } | undefined;
677
+ searchable?: boolean | undefined;
678
+ localized?: boolean | undefined;
679
+ description?: string | undefined;
680
+ defaultValue?: any;
681
+ required: boolean;
682
+ type: "text";
683
+ name: string;
684
+ label: string;
685
+ } | {
686
+ options?: {
687
+ min?: number | undefined;
688
+ max?: number | undefined;
689
+ step?: number | undefined;
690
+ precision?: number | undefined;
691
+ } | undefined;
692
+ searchable?: boolean | undefined;
693
+ localized?: boolean | undefined;
694
+ description?: string | undefined;
695
+ defaultValue?: any;
696
+ required: boolean;
697
+ type: "number";
698
+ name: string;
699
+ label: string;
700
+ } | {
701
+ options?: {
702
+ trueLabel?: string | undefined;
703
+ falseLabel?: string | undefined;
704
+ } | undefined;
705
+ searchable?: boolean | undefined;
706
+ localized?: boolean | undefined;
707
+ description?: string | undefined;
708
+ defaultValue?: any;
709
+ required: boolean;
710
+ type: "boolean";
711
+ name: string;
712
+ label: string;
713
+ } | {
714
+ options?: {
715
+ allowedBlocks?: string[] | undefined;
716
+ allowedMarks?: string[] | undefined;
717
+ } | undefined;
718
+ searchable?: boolean | undefined;
719
+ localized?: boolean | undefined;
720
+ description?: string | undefined;
721
+ defaultValue?: any;
722
+ required: boolean;
723
+ type: "richText";
724
+ name: string;
725
+ label: string;
726
+ } | {
727
+ options?: {
728
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
729
+ allowedMimeTypes?: string[] | undefined;
730
+ maxFileSize?: number | undefined;
731
+ multiple?: boolean | undefined;
732
+ } | undefined;
733
+ searchable?: boolean | undefined;
734
+ localized?: boolean | undefined;
735
+ description?: string | undefined;
736
+ defaultValue?: any;
737
+ required: boolean;
738
+ type: "media";
739
+ name: string;
740
+ label: string;
741
+ } | {
742
+ options?: {
743
+ options?: {
744
+ label: string;
745
+ value: string;
746
+ }[] | undefined;
747
+ } | undefined;
748
+ searchable?: boolean | undefined;
749
+ localized?: boolean | undefined;
750
+ description?: string | undefined;
751
+ defaultValue?: any;
752
+ required: boolean;
753
+ type: "select";
754
+ name: string;
755
+ label: string;
756
+ } | {
757
+ options?: {
758
+ allowMultiple?: boolean | undefined;
759
+ } | undefined;
760
+ searchable?: boolean | undefined;
761
+ localized?: boolean | undefined;
762
+ description?: string | undefined;
763
+ defaultValue?: any;
764
+ required: boolean;
765
+ type: "category";
766
+ name: string;
767
+ label: string;
768
+ } | {
769
+ options?: {
770
+ schema?: any;
771
+ } | undefined;
772
+ searchable?: boolean | undefined;
773
+ localized?: boolean | undefined;
774
+ description?: string | undefined;
775
+ defaultValue?: any;
776
+ required: boolean;
777
+ type: "json";
778
+ name: string;
779
+ label: string;
780
+ } | {
781
+ options?: {
782
+ multiple?: boolean | undefined;
783
+ allowedContentTypes?: string[] | undefined;
784
+ minItems?: number | undefined;
785
+ } | undefined;
786
+ searchable?: boolean | undefined;
787
+ localized?: boolean | undefined;
788
+ description?: string | undefined;
789
+ defaultValue?: any;
790
+ required: boolean;
791
+ type: "reference";
792
+ name: string;
793
+ label: string;
794
+ } | {
795
+ options?: {
796
+ options?: {
797
+ label: string;
798
+ value: string;
799
+ }[] | undefined;
800
+ } | undefined;
801
+ searchable?: boolean | undefined;
802
+ localized?: boolean | undefined;
803
+ description?: string | undefined;
804
+ defaultValue?: any;
805
+ required: boolean;
806
+ type: "multiSelect";
807
+ name: string;
808
+ label: string;
809
+ } | {
810
+ options?: {
811
+ min?: number | undefined;
812
+ max?: number | undefined;
813
+ } | undefined;
814
+ searchable?: boolean | undefined;
815
+ localized?: boolean | undefined;
816
+ description?: string | undefined;
817
+ defaultValue?: any;
818
+ required: boolean;
819
+ type: "date";
820
+ name: string;
821
+ label: string;
822
+ } | {
823
+ options?: {
824
+ min?: number | undefined;
825
+ max?: number | undefined;
826
+ } | undefined;
827
+ searchable?: boolean | undefined;
828
+ localized?: boolean | undefined;
829
+ description?: string | undefined;
830
+ defaultValue?: any;
831
+ required: boolean;
832
+ type: "datetime";
833
+ name: string;
834
+ label: string;
835
+ } | {
836
+ options?: {
837
+ taxonomyId?: string | undefined;
838
+ allowCreate?: boolean | undefined;
839
+ maxTags?: number | undefined;
840
+ minTags?: number | undefined;
841
+ } | undefined;
842
+ searchable?: boolean | undefined;
843
+ localized?: boolean | undefined;
844
+ description?: string | undefined;
845
+ defaultValue?: any;
846
+ required: boolean;
847
+ type: "tags";
848
+ name: string;
849
+ label: string;
850
+ })[];
851
+ name: string;
852
+ createdBy: string;
853
+ displayName: string;
854
+ isActive: boolean;
855
+ _creationTime: number;
856
+ _id: string;
857
+ }, {
858
+ _id: import("convex/values").VString<string, "required">;
859
+ fields: import("convex/values").VArray<({
860
+ options?: {
861
+ minLength?: number | undefined;
862
+ maxLength?: number | undefined;
863
+ pattern?: string | undefined;
864
+ } | undefined;
865
+ searchable?: boolean | undefined;
866
+ localized?: boolean | undefined;
867
+ description?: string | undefined;
868
+ defaultValue?: any;
869
+ required: boolean;
870
+ type: "text";
871
+ name: string;
872
+ label: string;
873
+ } | {
874
+ options?: {
875
+ min?: number | undefined;
876
+ max?: number | undefined;
877
+ step?: number | undefined;
878
+ precision?: number | undefined;
879
+ } | undefined;
880
+ searchable?: boolean | undefined;
881
+ localized?: boolean | undefined;
882
+ description?: string | undefined;
883
+ defaultValue?: any;
884
+ required: boolean;
885
+ type: "number";
886
+ name: string;
887
+ label: string;
888
+ } | {
889
+ options?: {
890
+ trueLabel?: string | undefined;
891
+ falseLabel?: string | undefined;
892
+ } | undefined;
893
+ searchable?: boolean | undefined;
894
+ localized?: boolean | undefined;
895
+ description?: string | undefined;
896
+ defaultValue?: any;
897
+ required: boolean;
898
+ type: "boolean";
899
+ name: string;
900
+ label: string;
901
+ } | {
902
+ options?: {
903
+ allowedBlocks?: string[] | undefined;
904
+ allowedMarks?: string[] | undefined;
905
+ } | undefined;
906
+ searchable?: boolean | undefined;
907
+ localized?: boolean | undefined;
908
+ description?: string | undefined;
909
+ defaultValue?: any;
910
+ required: boolean;
911
+ type: "richText";
912
+ name: string;
913
+ label: string;
914
+ } | {
915
+ options?: {
916
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
917
+ allowedMimeTypes?: string[] | undefined;
918
+ maxFileSize?: number | undefined;
919
+ multiple?: boolean | undefined;
920
+ } | undefined;
921
+ searchable?: boolean | undefined;
922
+ localized?: boolean | undefined;
923
+ description?: string | undefined;
924
+ defaultValue?: any;
925
+ required: boolean;
926
+ type: "media";
927
+ name: string;
928
+ label: string;
929
+ } | {
930
+ options?: {
931
+ options?: {
932
+ label: string;
933
+ value: string;
934
+ }[] | undefined;
935
+ } | undefined;
936
+ searchable?: boolean | undefined;
937
+ localized?: boolean | undefined;
938
+ description?: string | undefined;
939
+ defaultValue?: any;
940
+ required: boolean;
941
+ type: "select";
942
+ name: string;
943
+ label: string;
944
+ } | {
945
+ options?: {
946
+ allowMultiple?: boolean | undefined;
947
+ } | undefined;
948
+ searchable?: boolean | undefined;
949
+ localized?: boolean | undefined;
950
+ description?: string | undefined;
951
+ defaultValue?: any;
952
+ required: boolean;
953
+ type: "category";
954
+ name: string;
955
+ label: string;
956
+ } | {
957
+ options?: {
958
+ schema?: any;
959
+ } | undefined;
960
+ searchable?: boolean | undefined;
961
+ localized?: boolean | undefined;
962
+ description?: string | undefined;
963
+ defaultValue?: any;
964
+ required: boolean;
965
+ type: "json";
966
+ name: string;
967
+ label: string;
968
+ } | {
969
+ options?: {
970
+ multiple?: boolean | undefined;
971
+ allowedContentTypes?: string[] | undefined;
972
+ minItems?: number | undefined;
973
+ } | undefined;
974
+ searchable?: boolean | undefined;
975
+ localized?: boolean | undefined;
976
+ description?: string | undefined;
977
+ defaultValue?: any;
978
+ required: boolean;
979
+ type: "reference";
980
+ name: string;
981
+ label: string;
982
+ } | {
983
+ options?: {
984
+ options?: {
985
+ label: string;
986
+ value: string;
987
+ }[] | undefined;
988
+ } | undefined;
989
+ searchable?: boolean | undefined;
990
+ localized?: boolean | undefined;
991
+ description?: string | undefined;
992
+ defaultValue?: any;
993
+ required: boolean;
994
+ type: "multiSelect";
995
+ name: string;
996
+ label: string;
997
+ } | {
998
+ options?: {
999
+ min?: number | undefined;
1000
+ max?: number | undefined;
1001
+ } | undefined;
1002
+ searchable?: boolean | undefined;
1003
+ localized?: boolean | undefined;
1004
+ description?: string | undefined;
1005
+ defaultValue?: any;
1006
+ required: boolean;
1007
+ type: "date";
1008
+ name: string;
1009
+ label: string;
1010
+ } | {
1011
+ options?: {
1012
+ min?: number | undefined;
1013
+ max?: number | undefined;
1014
+ } | undefined;
1015
+ searchable?: boolean | undefined;
1016
+ localized?: boolean | undefined;
1017
+ description?: string | undefined;
1018
+ defaultValue?: any;
1019
+ required: boolean;
1020
+ type: "datetime";
1021
+ name: string;
1022
+ label: string;
1023
+ } | {
1024
+ options?: {
1025
+ taxonomyId?: string | undefined;
1026
+ allowCreate?: boolean | undefined;
1027
+ maxTags?: number | undefined;
1028
+ minTags?: number | undefined;
1029
+ } | undefined;
1030
+ searchable?: boolean | undefined;
1031
+ localized?: boolean | undefined;
1032
+ description?: string | undefined;
1033
+ defaultValue?: any;
1034
+ required: boolean;
1035
+ type: "tags";
1036
+ name: string;
1037
+ label: string;
1038
+ })[], import("convex/values").VUnion<{
1039
+ options?: {
1040
+ minLength?: number | undefined;
1041
+ maxLength?: number | undefined;
1042
+ pattern?: string | undefined;
1043
+ } | undefined;
1044
+ searchable?: boolean | undefined;
1045
+ localized?: boolean | undefined;
1046
+ description?: string | undefined;
1047
+ defaultValue?: any;
1048
+ required: boolean;
1049
+ type: "text";
1050
+ name: string;
1051
+ label: string;
1052
+ } | {
1053
+ options?: {
1054
+ min?: number | undefined;
1055
+ max?: number | undefined;
1056
+ step?: number | undefined;
1057
+ precision?: number | undefined;
1058
+ } | undefined;
1059
+ searchable?: boolean | undefined;
1060
+ localized?: boolean | undefined;
1061
+ description?: string | undefined;
1062
+ defaultValue?: any;
1063
+ required: boolean;
1064
+ type: "number";
1065
+ name: string;
1066
+ label: string;
1067
+ } | {
1068
+ options?: {
1069
+ trueLabel?: string | undefined;
1070
+ falseLabel?: string | undefined;
1071
+ } | undefined;
1072
+ searchable?: boolean | undefined;
1073
+ localized?: boolean | undefined;
1074
+ description?: string | undefined;
1075
+ defaultValue?: any;
1076
+ required: boolean;
1077
+ type: "boolean";
1078
+ name: string;
1079
+ label: string;
1080
+ } | {
1081
+ options?: {
1082
+ allowedBlocks?: string[] | undefined;
1083
+ allowedMarks?: string[] | undefined;
1084
+ } | undefined;
1085
+ searchable?: boolean | undefined;
1086
+ localized?: boolean | undefined;
1087
+ description?: string | undefined;
1088
+ defaultValue?: any;
1089
+ required: boolean;
1090
+ type: "richText";
1091
+ name: string;
1092
+ label: string;
1093
+ } | {
1094
+ options?: {
1095
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
1096
+ allowedMimeTypes?: string[] | undefined;
1097
+ maxFileSize?: number | undefined;
1098
+ multiple?: boolean | undefined;
1099
+ } | undefined;
1100
+ searchable?: boolean | undefined;
1101
+ localized?: boolean | undefined;
1102
+ description?: string | undefined;
1103
+ defaultValue?: any;
1104
+ required: boolean;
1105
+ type: "media";
1106
+ name: string;
1107
+ label: string;
1108
+ } | {
1109
+ options?: {
1110
+ options?: {
1111
+ label: string;
1112
+ value: string;
1113
+ }[] | undefined;
1114
+ } | undefined;
1115
+ searchable?: boolean | undefined;
1116
+ localized?: boolean | undefined;
1117
+ description?: string | undefined;
1118
+ defaultValue?: any;
1119
+ required: boolean;
1120
+ type: "select";
1121
+ name: string;
1122
+ label: string;
1123
+ } | {
1124
+ options?: {
1125
+ allowMultiple?: boolean | undefined;
1126
+ } | undefined;
1127
+ searchable?: boolean | undefined;
1128
+ localized?: boolean | undefined;
1129
+ description?: string | undefined;
1130
+ defaultValue?: any;
1131
+ required: boolean;
1132
+ type: "category";
1133
+ name: string;
1134
+ label: string;
1135
+ } | {
1136
+ options?: {
1137
+ schema?: any;
1138
+ } | undefined;
1139
+ searchable?: boolean | undefined;
1140
+ localized?: boolean | undefined;
1141
+ description?: string | undefined;
1142
+ defaultValue?: any;
1143
+ required: boolean;
1144
+ type: "json";
1145
+ name: string;
1146
+ label: string;
1147
+ } | {
1148
+ options?: {
1149
+ multiple?: boolean | undefined;
1150
+ allowedContentTypes?: string[] | undefined;
1151
+ minItems?: number | undefined;
1152
+ } | undefined;
1153
+ searchable?: boolean | undefined;
1154
+ localized?: boolean | undefined;
1155
+ description?: string | undefined;
1156
+ defaultValue?: any;
1157
+ required: boolean;
1158
+ type: "reference";
1159
+ name: string;
1160
+ label: string;
1161
+ } | {
1162
+ options?: {
1163
+ options?: {
1164
+ label: string;
1165
+ value: string;
1166
+ }[] | undefined;
1167
+ } | undefined;
1168
+ searchable?: boolean | undefined;
1169
+ localized?: boolean | undefined;
1170
+ description?: string | undefined;
1171
+ defaultValue?: any;
1172
+ required: boolean;
1173
+ type: "multiSelect";
1174
+ name: string;
1175
+ label: string;
1176
+ } | {
1177
+ options?: {
1178
+ min?: number | undefined;
1179
+ max?: number | undefined;
1180
+ } | undefined;
1181
+ searchable?: boolean | undefined;
1182
+ localized?: boolean | undefined;
1183
+ description?: string | undefined;
1184
+ defaultValue?: any;
1185
+ required: boolean;
1186
+ type: "date";
1187
+ name: string;
1188
+ label: string;
1189
+ } | {
1190
+ options?: {
1191
+ min?: number | undefined;
1192
+ max?: number | undefined;
1193
+ } | undefined;
1194
+ searchable?: boolean | undefined;
1195
+ localized?: boolean | undefined;
1196
+ description?: string | undefined;
1197
+ defaultValue?: any;
1198
+ required: boolean;
1199
+ type: "datetime";
1200
+ name: string;
1201
+ label: string;
1202
+ } | {
1203
+ options?: {
1204
+ taxonomyId?: string | undefined;
1205
+ allowCreate?: boolean | undefined;
1206
+ maxTags?: number | undefined;
1207
+ minTags?: number | undefined;
1208
+ } | undefined;
1209
+ searchable?: boolean | undefined;
1210
+ localized?: boolean | undefined;
1211
+ description?: string | undefined;
1212
+ defaultValue?: any;
1213
+ required: boolean;
1214
+ type: "tags";
1215
+ name: string;
1216
+ label: string;
1217
+ }, [import("convex/values").VObject<{
1218
+ options?: {
1219
+ minLength?: number | undefined;
1220
+ maxLength?: number | undefined;
1221
+ pattern?: string | undefined;
1222
+ } | undefined;
1223
+ searchable?: boolean | undefined;
1224
+ localized?: boolean | undefined;
1225
+ description?: string | undefined;
1226
+ defaultValue?: any;
1227
+ required: boolean;
1228
+ type: "text";
1229
+ name: string;
1230
+ label: string;
1231
+ }, {
1232
+ type: import("convex/values").VLiteral<"text", "required">;
1233
+ options: import("convex/values").VObject<{
1234
+ minLength?: number | undefined;
1235
+ maxLength?: number | undefined;
1236
+ pattern?: string | undefined;
1237
+ } | undefined, {
1238
+ minLength: import("convex/values").VFloat64<number | undefined, "optional">;
1239
+ maxLength: import("convex/values").VFloat64<number | undefined, "optional">;
1240
+ pattern: import("convex/values").VString<string | undefined, "optional">;
1241
+ }, "optional", "minLength" | "maxLength" | "pattern">;
1242
+ name: import("convex/values").VString<string, "required">;
1243
+ label: import("convex/values").VString<string, "required">;
1244
+ required: import("convex/values").VBoolean<boolean, "required">;
1245
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1246
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1247
+ description: import("convex/values").VString<string | undefined, "optional">;
1248
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1249
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | "options.minLength" | "options.maxLength" | "options.pattern" | `defaultValue.${string}`>, import("convex/values").VObject<{
1250
+ options?: {
1251
+ min?: number | undefined;
1252
+ max?: number | undefined;
1253
+ step?: number | undefined;
1254
+ precision?: number | undefined;
1255
+ } | undefined;
1256
+ searchable?: boolean | undefined;
1257
+ localized?: boolean | undefined;
1258
+ description?: string | undefined;
1259
+ defaultValue?: any;
1260
+ required: boolean;
1261
+ type: "number";
1262
+ name: string;
1263
+ label: string;
1264
+ }, {
1265
+ type: import("convex/values").VLiteral<"number", "required">;
1266
+ options: import("convex/values").VObject<{
1267
+ min?: number | undefined;
1268
+ max?: number | undefined;
1269
+ step?: number | undefined;
1270
+ precision?: number | undefined;
1271
+ } | undefined, {
1272
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
1273
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
1274
+ step: import("convex/values").VFloat64<number | undefined, "optional">;
1275
+ precision: import("convex/values").VFloat64<number | undefined, "optional">;
1276
+ }, "optional", "min" | "max" | "step" | "precision">;
1277
+ name: import("convex/values").VString<string, "required">;
1278
+ label: import("convex/values").VString<string, "required">;
1279
+ required: import("convex/values").VBoolean<boolean, "required">;
1280
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1281
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1282
+ description: import("convex/values").VString<string | undefined, "optional">;
1283
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1284
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max" | "options.step" | "options.precision">, import("convex/values").VObject<{
1285
+ options?: {
1286
+ trueLabel?: string | undefined;
1287
+ falseLabel?: string | undefined;
1288
+ } | undefined;
1289
+ searchable?: boolean | undefined;
1290
+ localized?: boolean | undefined;
1291
+ description?: string | undefined;
1292
+ defaultValue?: any;
1293
+ required: boolean;
1294
+ type: "boolean";
1295
+ name: string;
1296
+ label: string;
1297
+ }, {
1298
+ type: import("convex/values").VLiteral<"boolean", "required">;
1299
+ options: import("convex/values").VObject<{
1300
+ trueLabel?: string | undefined;
1301
+ falseLabel?: string | undefined;
1302
+ } | undefined, {
1303
+ trueLabel: import("convex/values").VString<string | undefined, "optional">;
1304
+ falseLabel: import("convex/values").VString<string | undefined, "optional">;
1305
+ }, "optional", "trueLabel" | "falseLabel">;
1306
+ name: import("convex/values").VString<string, "required">;
1307
+ label: import("convex/values").VString<string, "required">;
1308
+ required: import("convex/values").VBoolean<boolean, "required">;
1309
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1310
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1311
+ description: import("convex/values").VString<string | undefined, "optional">;
1312
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1313
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.trueLabel" | "options.falseLabel">, import("convex/values").VObject<{
1314
+ options?: {
1315
+ allowedBlocks?: string[] | undefined;
1316
+ allowedMarks?: string[] | undefined;
1317
+ } | undefined;
1318
+ searchable?: boolean | undefined;
1319
+ localized?: boolean | undefined;
1320
+ description?: string | undefined;
1321
+ defaultValue?: any;
1322
+ required: boolean;
1323
+ type: "richText";
1324
+ name: string;
1325
+ label: string;
1326
+ }, {
1327
+ type: import("convex/values").VLiteral<"richText", "required">;
1328
+ options: import("convex/values").VObject<{
1329
+ allowedBlocks?: string[] | undefined;
1330
+ allowedMarks?: string[] | undefined;
1331
+ } | undefined, {
1332
+ allowedBlocks: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
1333
+ allowedMarks: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
1334
+ }, "optional", "allowedBlocks" | "allowedMarks">;
1335
+ name: import("convex/values").VString<string, "required">;
1336
+ label: import("convex/values").VString<string, "required">;
1337
+ required: import("convex/values").VBoolean<boolean, "required">;
1338
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1339
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1340
+ description: import("convex/values").VString<string | undefined, "optional">;
1341
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1342
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.allowedBlocks" | "options.allowedMarks">, import("convex/values").VObject<{
1343
+ options?: {
1344
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
1345
+ allowedMimeTypes?: string[] | undefined;
1346
+ maxFileSize?: number | undefined;
1347
+ multiple?: boolean | undefined;
1348
+ } | undefined;
1349
+ searchable?: boolean | undefined;
1350
+ localized?: boolean | undefined;
1351
+ description?: string | undefined;
1352
+ defaultValue?: any;
1353
+ required: boolean;
1354
+ type: "media";
1355
+ name: string;
1356
+ label: string;
1357
+ }, {
1358
+ type: import("convex/values").VLiteral<"media", "required">;
1359
+ options: import("convex/values").VObject<{
1360
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
1361
+ allowedMimeTypes?: string[] | undefined;
1362
+ maxFileSize?: number | undefined;
1363
+ multiple?: boolean | undefined;
1364
+ } | undefined, {
1365
+ mediaType: import("convex/values").VUnion<"image" | "video" | "audio" | "document" | "other" | undefined, [import("convex/values").VLiteral<"image", "required">, import("convex/values").VLiteral<"video", "required">, import("convex/values").VLiteral<"audio", "required">, import("convex/values").VLiteral<"document", "required">, import("convex/values").VLiteral<"other", "required">], "optional", never>;
1366
+ allowedMimeTypes: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
1367
+ maxFileSize: import("convex/values").VFloat64<number | undefined, "optional">;
1368
+ multiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
1369
+ }, "optional", "mediaType" | "allowedMimeTypes" | "maxFileSize" | "multiple">;
1370
+ name: import("convex/values").VString<string, "required">;
1371
+ label: import("convex/values").VString<string, "required">;
1372
+ required: import("convex/values").VBoolean<boolean, "required">;
1373
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1374
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1375
+ description: import("convex/values").VString<string | undefined, "optional">;
1376
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1377
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.mediaType" | "options.allowedMimeTypes" | "options.maxFileSize" | "options.multiple">, import("convex/values").VObject<{
1378
+ options?: {
1379
+ options?: {
1380
+ label: string;
1381
+ value: string;
1382
+ }[] | undefined;
1383
+ } | undefined;
1384
+ searchable?: boolean | undefined;
1385
+ localized?: boolean | undefined;
1386
+ description?: string | undefined;
1387
+ defaultValue?: any;
1388
+ required: boolean;
1389
+ type: "select";
1390
+ name: string;
1391
+ label: string;
1392
+ }, {
1393
+ type: import("convex/values").VLiteral<"select", "required">;
1394
+ options: import("convex/values").VObject<{
1395
+ options?: {
1396
+ label: string;
1397
+ value: string;
1398
+ }[] | undefined;
1399
+ } | undefined, {
1400
+ options: import("convex/values").VArray<{
1401
+ label: string;
1402
+ value: string;
1403
+ }[] | undefined, import("convex/values").VObject<{
1404
+ label: string;
1405
+ value: string;
1406
+ }, {
1407
+ value: import("convex/values").VString<string, "required">;
1408
+ label: import("convex/values").VString<string, "required">;
1409
+ }, "required", "label" | "value">, "optional">;
1410
+ }, "optional", "options">;
1411
+ name: import("convex/values").VString<string, "required">;
1412
+ label: import("convex/values").VString<string, "required">;
1413
+ required: import("convex/values").VBoolean<boolean, "required">;
1414
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1415
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1416
+ description: import("convex/values").VString<string | undefined, "optional">;
1417
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1418
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.options">, import("convex/values").VObject<{
1419
+ options?: {
1420
+ options?: {
1421
+ label: string;
1422
+ value: string;
1423
+ }[] | undefined;
1424
+ } | undefined;
1425
+ searchable?: boolean | undefined;
1426
+ localized?: boolean | undefined;
1427
+ description?: string | undefined;
1428
+ defaultValue?: any;
1429
+ required: boolean;
1430
+ type: "multiSelect";
1431
+ name: string;
1432
+ label: string;
1433
+ }, {
1434
+ type: import("convex/values").VLiteral<"multiSelect", "required">;
1435
+ options: import("convex/values").VObject<{
1436
+ options?: {
1437
+ label: string;
1438
+ value: string;
1439
+ }[] | undefined;
1440
+ } | undefined, {
1441
+ options: import("convex/values").VArray<{
1442
+ label: string;
1443
+ value: string;
1444
+ }[] | undefined, import("convex/values").VObject<{
1445
+ label: string;
1446
+ value: string;
1447
+ }, {
1448
+ value: import("convex/values").VString<string, "required">;
1449
+ label: import("convex/values").VString<string, "required">;
1450
+ }, "required", "label" | "value">, "optional">;
1451
+ }, "optional", "options">;
1452
+ name: import("convex/values").VString<string, "required">;
1453
+ label: import("convex/values").VString<string, "required">;
1454
+ required: import("convex/values").VBoolean<boolean, "required">;
1455
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1456
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1457
+ description: import("convex/values").VString<string | undefined, "optional">;
1458
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1459
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.options">, import("convex/values").VObject<{
1460
+ options?: {
1461
+ taxonomyId?: string | undefined;
1462
+ allowCreate?: boolean | undefined;
1463
+ maxTags?: number | undefined;
1464
+ minTags?: number | undefined;
1465
+ } | undefined;
1466
+ searchable?: boolean | undefined;
1467
+ localized?: boolean | undefined;
1468
+ description?: string | undefined;
1469
+ defaultValue?: any;
1470
+ required: boolean;
1471
+ type: "tags";
1472
+ name: string;
1473
+ label: string;
1474
+ }, {
1475
+ type: import("convex/values").VLiteral<"tags", "required">;
1476
+ options: import("convex/values").VObject<{
1477
+ taxonomyId?: string | undefined;
1478
+ allowCreate?: boolean | undefined;
1479
+ maxTags?: number | undefined;
1480
+ minTags?: number | undefined;
1481
+ } | undefined, {
1482
+ taxonomyId: import("convex/values").VString<string | undefined, "optional">;
1483
+ allowCreate: import("convex/values").VBoolean<boolean | undefined, "optional">;
1484
+ maxTags: import("convex/values").VFloat64<number | undefined, "optional">;
1485
+ minTags: import("convex/values").VFloat64<number | undefined, "optional">;
1486
+ }, "optional", "taxonomyId" | "allowCreate" | "maxTags" | "minTags">;
1487
+ name: import("convex/values").VString<string, "required">;
1488
+ label: import("convex/values").VString<string, "required">;
1489
+ required: import("convex/values").VBoolean<boolean, "required">;
1490
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1491
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1492
+ description: import("convex/values").VString<string | undefined, "optional">;
1493
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1494
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags">, import("convex/values").VObject<{
1495
+ options?: {
1496
+ allowMultiple?: boolean | undefined;
1497
+ } | undefined;
1498
+ searchable?: boolean | undefined;
1499
+ localized?: boolean | undefined;
1500
+ description?: string | undefined;
1501
+ defaultValue?: any;
1502
+ required: boolean;
1503
+ type: "category";
1504
+ name: string;
1505
+ label: string;
1506
+ }, {
1507
+ type: import("convex/values").VLiteral<"category", "required">;
1508
+ options: import("convex/values").VObject<{
1509
+ allowMultiple?: boolean | undefined;
1510
+ } | undefined, {
1511
+ allowMultiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
1512
+ }, "optional", "allowMultiple">;
1513
+ name: import("convex/values").VString<string, "required">;
1514
+ label: import("convex/values").VString<string, "required">;
1515
+ required: import("convex/values").VBoolean<boolean, "required">;
1516
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1517
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1518
+ description: import("convex/values").VString<string | undefined, "optional">;
1519
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1520
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.allowMultiple">, import("convex/values").VObject<{
1521
+ options?: {
1522
+ schema?: any;
1523
+ } | undefined;
1524
+ searchable?: boolean | undefined;
1525
+ localized?: boolean | undefined;
1526
+ description?: string | undefined;
1527
+ defaultValue?: any;
1528
+ required: boolean;
1529
+ type: "json";
1530
+ name: string;
1531
+ label: string;
1532
+ }, {
1533
+ type: import("convex/values").VLiteral<"json", "required">;
1534
+ options: import("convex/values").VObject<{
1535
+ schema?: any;
1536
+ } | undefined, {
1537
+ schema: import("convex/values").VAny<any, "optional", string>;
1538
+ }, "optional", "schema" | `schema.${string}`>;
1539
+ name: import("convex/values").VString<string, "required">;
1540
+ label: import("convex/values").VString<string, "required">;
1541
+ required: import("convex/values").VBoolean<boolean, "required">;
1542
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1543
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1544
+ description: import("convex/values").VString<string | undefined, "optional">;
1545
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1546
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.schema" | `options.schema.${string}`>, import("convex/values").VObject<{
1547
+ options?: {
1548
+ min?: number | undefined;
1549
+ max?: number | undefined;
1550
+ } | undefined;
1551
+ searchable?: boolean | undefined;
1552
+ localized?: boolean | undefined;
1553
+ description?: string | undefined;
1554
+ defaultValue?: any;
1555
+ required: boolean;
1556
+ type: "date";
1557
+ name: string;
1558
+ label: string;
1559
+ }, {
1560
+ type: import("convex/values").VLiteral<"date", "required">;
1561
+ options: import("convex/values").VObject<{
1562
+ min?: number | undefined;
1563
+ max?: number | undefined;
1564
+ } | undefined, {
1565
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
1566
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
1567
+ }, "optional", "min" | "max">;
1568
+ name: import("convex/values").VString<string, "required">;
1569
+ label: import("convex/values").VString<string, "required">;
1570
+ required: import("convex/values").VBoolean<boolean, "required">;
1571
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1572
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1573
+ description: import("convex/values").VString<string | undefined, "optional">;
1574
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1575
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max">, import("convex/values").VObject<{
1576
+ options?: {
1577
+ min?: number | undefined;
1578
+ max?: number | undefined;
1579
+ } | undefined;
1580
+ searchable?: boolean | undefined;
1581
+ localized?: boolean | undefined;
1582
+ description?: string | undefined;
1583
+ defaultValue?: any;
1584
+ required: boolean;
1585
+ type: "datetime";
1586
+ name: string;
1587
+ label: string;
1588
+ }, {
1589
+ type: import("convex/values").VLiteral<"datetime", "required">;
1590
+ options: import("convex/values").VObject<{
1591
+ min?: number | undefined;
1592
+ max?: number | undefined;
1593
+ } | undefined, {
1594
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
1595
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
1596
+ }, "optional", "min" | "max">;
1597
+ name: import("convex/values").VString<string, "required">;
1598
+ label: import("convex/values").VString<string, "required">;
1599
+ required: import("convex/values").VBoolean<boolean, "required">;
1600
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1601
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1602
+ description: import("convex/values").VString<string | undefined, "optional">;
1603
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1604
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max">, import("convex/values").VObject<{
1605
+ options?: {
1606
+ multiple?: boolean | undefined;
1607
+ allowedContentTypes?: string[] | undefined;
1608
+ minItems?: number | undefined;
1609
+ } | undefined;
1610
+ searchable?: boolean | undefined;
1611
+ localized?: boolean | undefined;
1612
+ description?: string | undefined;
1613
+ defaultValue?: any;
1614
+ required: boolean;
1615
+ type: "reference";
1616
+ name: string;
1617
+ label: string;
1618
+ }, {
1619
+ type: import("convex/values").VLiteral<"reference", "required">;
1620
+ options: import("convex/values").VObject<{
1621
+ multiple?: boolean | undefined;
1622
+ allowedContentTypes?: string[] | undefined;
1623
+ minItems?: number | undefined;
1624
+ } | undefined, {
1625
+ allowedContentTypes: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
1626
+ multiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
1627
+ minItems: import("convex/values").VFloat64<number | undefined, "optional">;
1628
+ }, "optional", "multiple" | "allowedContentTypes" | "minItems">;
1629
+ name: import("convex/values").VString<string, "required">;
1630
+ label: import("convex/values").VString<string, "required">;
1631
+ required: import("convex/values").VBoolean<boolean, "required">;
1632
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
1633
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
1634
+ description: import("convex/values").VString<string | undefined, "optional">;
1635
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
1636
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.multiple" | "options.allowedContentTypes" | "options.minItems">], "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | "options.minLength" | "options.maxLength" | "options.pattern" | `defaultValue.${string}` | "options.min" | "options.max" | "options.step" | "options.precision" | "options.trueLabel" | "options.falseLabel" | "options.allowedBlocks" | "options.allowedMarks" | "options.mediaType" | "options.allowedMimeTypes" | "options.maxFileSize" | "options.multiple" | "options.options" | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags" | "options.allowMultiple" | "options.schema" | `options.schema.${string}` | "options.allowedContentTypes" | "options.minItems">, "required">;
1637
+ name: import("convex/values").VString<string, "required">;
1638
+ displayName: import("convex/values").VString<string, "required">;
1639
+ createdBy: import("convex/values").VString<string, "required">;
1640
+ description: import("convex/values").VString<string | undefined, "optional">;
1641
+ icon: import("convex/values").VString<string | undefined, "optional">;
1642
+ singleton: import("convex/values").VBoolean<boolean | undefined, "optional">;
1643
+ slugField: import("convex/values").VString<string | undefined, "optional">;
1644
+ titleField: import("convex/values").VString<string | undefined, "optional">;
1645
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
1646
+ isActive: import("convex/values").VBoolean<boolean, "required">;
1647
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
1648
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
1649
+ _creationTime: import("convex/values").VFloat64<number, "required">;
1650
+ }, "required", "fields" | "name" | "description" | "deletedAt" | "createdBy" | "updatedBy" | "sortOrder" | "displayName" | "icon" | "singleton" | "slugField" | "titleField" | "isActive" | "_creationTime" | "_id">;
1651
+ export declare const adminContentTypeWithCountDoc: import("convex/values").VObject<{
1652
+ description?: string | undefined;
1653
+ deletedAt?: number | undefined;
1654
+ updatedBy?: string | undefined;
1655
+ sortOrder?: number | undefined;
1656
+ icon?: string | undefined;
1657
+ singleton?: boolean | undefined;
1658
+ slugField?: string | undefined;
1659
+ titleField?: string | undefined;
1660
+ entryCount?: number | undefined;
1661
+ fields: ({
1662
+ options?: {
1663
+ minLength?: number | undefined;
1664
+ maxLength?: number | undefined;
1665
+ pattern?: string | undefined;
1666
+ } | undefined;
1667
+ searchable?: boolean | undefined;
1668
+ localized?: boolean | undefined;
1669
+ description?: string | undefined;
1670
+ defaultValue?: any;
1671
+ required: boolean;
1672
+ type: "text";
1673
+ name: string;
1674
+ label: string;
1675
+ } | {
1676
+ options?: {
1677
+ min?: number | undefined;
1678
+ max?: number | undefined;
1679
+ step?: number | undefined;
1680
+ precision?: number | undefined;
1681
+ } | undefined;
1682
+ searchable?: boolean | undefined;
1683
+ localized?: boolean | undefined;
1684
+ description?: string | undefined;
1685
+ defaultValue?: any;
1686
+ required: boolean;
1687
+ type: "number";
1688
+ name: string;
1689
+ label: string;
1690
+ } | {
1691
+ options?: {
1692
+ trueLabel?: string | undefined;
1693
+ falseLabel?: string | undefined;
1694
+ } | undefined;
1695
+ searchable?: boolean | undefined;
1696
+ localized?: boolean | undefined;
1697
+ description?: string | undefined;
1698
+ defaultValue?: any;
1699
+ required: boolean;
1700
+ type: "boolean";
1701
+ name: string;
1702
+ label: string;
1703
+ } | {
1704
+ options?: {
1705
+ allowedBlocks?: string[] | undefined;
1706
+ allowedMarks?: string[] | undefined;
1707
+ } | undefined;
1708
+ searchable?: boolean | undefined;
1709
+ localized?: boolean | undefined;
1710
+ description?: string | undefined;
1711
+ defaultValue?: any;
1712
+ required: boolean;
1713
+ type: "richText";
1714
+ name: string;
1715
+ label: string;
1716
+ } | {
1717
+ options?: {
1718
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
1719
+ allowedMimeTypes?: string[] | undefined;
1720
+ maxFileSize?: number | undefined;
1721
+ multiple?: boolean | undefined;
1722
+ } | undefined;
1723
+ searchable?: boolean | undefined;
1724
+ localized?: boolean | undefined;
1725
+ description?: string | undefined;
1726
+ defaultValue?: any;
1727
+ required: boolean;
1728
+ type: "media";
1729
+ name: string;
1730
+ label: string;
1731
+ } | {
1732
+ options?: {
1733
+ options?: {
1734
+ label: string;
1735
+ value: string;
1736
+ }[] | undefined;
1737
+ } | undefined;
1738
+ searchable?: boolean | undefined;
1739
+ localized?: boolean | undefined;
1740
+ description?: string | undefined;
1741
+ defaultValue?: any;
1742
+ required: boolean;
1743
+ type: "select";
1744
+ name: string;
1745
+ label: string;
1746
+ } | {
1747
+ options?: {
1748
+ allowMultiple?: boolean | undefined;
1749
+ } | undefined;
1750
+ searchable?: boolean | undefined;
1751
+ localized?: boolean | undefined;
1752
+ description?: string | undefined;
1753
+ defaultValue?: any;
1754
+ required: boolean;
1755
+ type: "category";
1756
+ name: string;
1757
+ label: string;
1758
+ } | {
1759
+ options?: {
1760
+ schema?: any;
1761
+ } | undefined;
1762
+ searchable?: boolean | undefined;
1763
+ localized?: boolean | undefined;
1764
+ description?: string | undefined;
1765
+ defaultValue?: any;
1766
+ required: boolean;
1767
+ type: "json";
1768
+ name: string;
1769
+ label: string;
1770
+ } | {
1771
+ options?: {
1772
+ multiple?: boolean | undefined;
1773
+ allowedContentTypes?: string[] | undefined;
1774
+ minItems?: number | undefined;
1775
+ } | undefined;
1776
+ searchable?: boolean | undefined;
1777
+ localized?: boolean | undefined;
1778
+ description?: string | undefined;
1779
+ defaultValue?: any;
1780
+ required: boolean;
1781
+ type: "reference";
1782
+ name: string;
1783
+ label: string;
1784
+ } | {
1785
+ options?: {
1786
+ options?: {
1787
+ label: string;
1788
+ value: string;
1789
+ }[] | undefined;
1790
+ } | undefined;
1791
+ searchable?: boolean | undefined;
1792
+ localized?: boolean | undefined;
1793
+ description?: string | undefined;
1794
+ defaultValue?: any;
1795
+ required: boolean;
1796
+ type: "multiSelect";
1797
+ name: string;
1798
+ label: string;
1799
+ } | {
1800
+ options?: {
1801
+ min?: number | undefined;
1802
+ max?: number | undefined;
1803
+ } | undefined;
1804
+ searchable?: boolean | undefined;
1805
+ localized?: boolean | undefined;
1806
+ description?: string | undefined;
1807
+ defaultValue?: any;
1808
+ required: boolean;
1809
+ type: "date";
1810
+ name: string;
1811
+ label: string;
1812
+ } | {
1813
+ options?: {
1814
+ min?: number | undefined;
1815
+ max?: number | undefined;
1816
+ } | undefined;
1817
+ searchable?: boolean | undefined;
1818
+ localized?: boolean | undefined;
1819
+ description?: string | undefined;
1820
+ defaultValue?: any;
1821
+ required: boolean;
1822
+ type: "datetime";
1823
+ name: string;
1824
+ label: string;
1825
+ } | {
1826
+ options?: {
1827
+ taxonomyId?: string | undefined;
1828
+ allowCreate?: boolean | undefined;
1829
+ maxTags?: number | undefined;
1830
+ minTags?: number | undefined;
1831
+ } | undefined;
1832
+ searchable?: boolean | undefined;
1833
+ localized?: boolean | undefined;
1834
+ description?: string | undefined;
1835
+ defaultValue?: any;
1836
+ required: boolean;
1837
+ type: "tags";
1838
+ name: string;
1839
+ label: string;
1840
+ })[];
1841
+ name: string;
1842
+ createdBy: string;
1843
+ displayName: string;
1844
+ isActive: boolean;
1845
+ _creationTime: number;
1846
+ _id: string;
1847
+ }, {
1848
+ _id: import("convex/values").VString<string, "required">;
1849
+ fields: import("convex/values").VArray<({
1850
+ options?: {
1851
+ minLength?: number | undefined;
1852
+ maxLength?: number | undefined;
1853
+ pattern?: string | undefined;
1854
+ } | undefined;
1855
+ searchable?: boolean | undefined;
1856
+ localized?: boolean | undefined;
1857
+ description?: string | undefined;
1858
+ defaultValue?: any;
1859
+ required: boolean;
1860
+ type: "text";
1861
+ name: string;
1862
+ label: string;
1863
+ } | {
1864
+ options?: {
1865
+ min?: number | undefined;
1866
+ max?: number | undefined;
1867
+ step?: number | undefined;
1868
+ precision?: number | undefined;
1869
+ } | undefined;
1870
+ searchable?: boolean | undefined;
1871
+ localized?: boolean | undefined;
1872
+ description?: string | undefined;
1873
+ defaultValue?: any;
1874
+ required: boolean;
1875
+ type: "number";
1876
+ name: string;
1877
+ label: string;
1878
+ } | {
1879
+ options?: {
1880
+ trueLabel?: string | undefined;
1881
+ falseLabel?: string | undefined;
1882
+ } | undefined;
1883
+ searchable?: boolean | undefined;
1884
+ localized?: boolean | undefined;
1885
+ description?: string | undefined;
1886
+ defaultValue?: any;
1887
+ required: boolean;
1888
+ type: "boolean";
1889
+ name: string;
1890
+ label: string;
1891
+ } | {
1892
+ options?: {
1893
+ allowedBlocks?: string[] | undefined;
1894
+ allowedMarks?: string[] | undefined;
1895
+ } | undefined;
1896
+ searchable?: boolean | undefined;
1897
+ localized?: boolean | undefined;
1898
+ description?: string | undefined;
1899
+ defaultValue?: any;
1900
+ required: boolean;
1901
+ type: "richText";
1902
+ name: string;
1903
+ label: string;
1904
+ } | {
1905
+ options?: {
1906
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
1907
+ allowedMimeTypes?: string[] | undefined;
1908
+ maxFileSize?: number | undefined;
1909
+ multiple?: boolean | undefined;
1910
+ } | undefined;
1911
+ searchable?: boolean | undefined;
1912
+ localized?: boolean | undefined;
1913
+ description?: string | undefined;
1914
+ defaultValue?: any;
1915
+ required: boolean;
1916
+ type: "media";
1917
+ name: string;
1918
+ label: string;
1919
+ } | {
1920
+ options?: {
1921
+ options?: {
1922
+ label: string;
1923
+ value: string;
1924
+ }[] | undefined;
1925
+ } | undefined;
1926
+ searchable?: boolean | undefined;
1927
+ localized?: boolean | undefined;
1928
+ description?: string | undefined;
1929
+ defaultValue?: any;
1930
+ required: boolean;
1931
+ type: "select";
1932
+ name: string;
1933
+ label: string;
1934
+ } | {
1935
+ options?: {
1936
+ allowMultiple?: boolean | undefined;
1937
+ } | undefined;
1938
+ searchable?: boolean | undefined;
1939
+ localized?: boolean | undefined;
1940
+ description?: string | undefined;
1941
+ defaultValue?: any;
1942
+ required: boolean;
1943
+ type: "category";
1944
+ name: string;
1945
+ label: string;
1946
+ } | {
1947
+ options?: {
1948
+ schema?: any;
1949
+ } | undefined;
1950
+ searchable?: boolean | undefined;
1951
+ localized?: boolean | undefined;
1952
+ description?: string | undefined;
1953
+ defaultValue?: any;
1954
+ required: boolean;
1955
+ type: "json";
1956
+ name: string;
1957
+ label: string;
1958
+ } | {
1959
+ options?: {
1960
+ multiple?: boolean | undefined;
1961
+ allowedContentTypes?: string[] | undefined;
1962
+ minItems?: number | undefined;
1963
+ } | undefined;
1964
+ searchable?: boolean | undefined;
1965
+ localized?: boolean | undefined;
1966
+ description?: string | undefined;
1967
+ defaultValue?: any;
1968
+ required: boolean;
1969
+ type: "reference";
1970
+ name: string;
1971
+ label: string;
1972
+ } | {
1973
+ options?: {
1974
+ options?: {
1975
+ label: string;
1976
+ value: string;
1977
+ }[] | undefined;
1978
+ } | undefined;
1979
+ searchable?: boolean | undefined;
1980
+ localized?: boolean | undefined;
1981
+ description?: string | undefined;
1982
+ defaultValue?: any;
1983
+ required: boolean;
1984
+ type: "multiSelect";
1985
+ name: string;
1986
+ label: string;
1987
+ } | {
1988
+ options?: {
1989
+ min?: number | undefined;
1990
+ max?: number | undefined;
1991
+ } | undefined;
1992
+ searchable?: boolean | undefined;
1993
+ localized?: boolean | undefined;
1994
+ description?: string | undefined;
1995
+ defaultValue?: any;
1996
+ required: boolean;
1997
+ type: "date";
1998
+ name: string;
1999
+ label: string;
2000
+ } | {
2001
+ options?: {
2002
+ min?: number | undefined;
2003
+ max?: number | undefined;
2004
+ } | undefined;
2005
+ searchable?: boolean | undefined;
2006
+ localized?: boolean | undefined;
2007
+ description?: string | undefined;
2008
+ defaultValue?: any;
2009
+ required: boolean;
2010
+ type: "datetime";
2011
+ name: string;
2012
+ label: string;
2013
+ } | {
2014
+ options?: {
2015
+ taxonomyId?: string | undefined;
2016
+ allowCreate?: boolean | undefined;
2017
+ maxTags?: number | undefined;
2018
+ minTags?: number | undefined;
2019
+ } | undefined;
2020
+ searchable?: boolean | undefined;
2021
+ localized?: boolean | undefined;
2022
+ description?: string | undefined;
2023
+ defaultValue?: any;
2024
+ required: boolean;
2025
+ type: "tags";
2026
+ name: string;
2027
+ label: string;
2028
+ })[], import("convex/values").VUnion<{
2029
+ options?: {
2030
+ minLength?: number | undefined;
2031
+ maxLength?: number | undefined;
2032
+ pattern?: string | undefined;
2033
+ } | undefined;
2034
+ searchable?: boolean | undefined;
2035
+ localized?: boolean | undefined;
2036
+ description?: string | undefined;
2037
+ defaultValue?: any;
2038
+ required: boolean;
2039
+ type: "text";
2040
+ name: string;
2041
+ label: string;
2042
+ } | {
2043
+ options?: {
2044
+ min?: number | undefined;
2045
+ max?: number | undefined;
2046
+ step?: number | undefined;
2047
+ precision?: number | undefined;
2048
+ } | undefined;
2049
+ searchable?: boolean | undefined;
2050
+ localized?: boolean | undefined;
2051
+ description?: string | undefined;
2052
+ defaultValue?: any;
2053
+ required: boolean;
2054
+ type: "number";
2055
+ name: string;
2056
+ label: string;
2057
+ } | {
2058
+ options?: {
2059
+ trueLabel?: string | undefined;
2060
+ falseLabel?: string | undefined;
2061
+ } | undefined;
2062
+ searchable?: boolean | undefined;
2063
+ localized?: boolean | undefined;
2064
+ description?: string | undefined;
2065
+ defaultValue?: any;
2066
+ required: boolean;
2067
+ type: "boolean";
2068
+ name: string;
2069
+ label: string;
2070
+ } | {
2071
+ options?: {
2072
+ allowedBlocks?: string[] | undefined;
2073
+ allowedMarks?: string[] | undefined;
2074
+ } | undefined;
2075
+ searchable?: boolean | undefined;
2076
+ localized?: boolean | undefined;
2077
+ description?: string | undefined;
2078
+ defaultValue?: any;
2079
+ required: boolean;
2080
+ type: "richText";
2081
+ name: string;
2082
+ label: string;
2083
+ } | {
2084
+ options?: {
2085
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
2086
+ allowedMimeTypes?: string[] | undefined;
2087
+ maxFileSize?: number | undefined;
2088
+ multiple?: boolean | undefined;
2089
+ } | undefined;
2090
+ searchable?: boolean | undefined;
2091
+ localized?: boolean | undefined;
2092
+ description?: string | undefined;
2093
+ defaultValue?: any;
2094
+ required: boolean;
2095
+ type: "media";
2096
+ name: string;
2097
+ label: string;
2098
+ } | {
2099
+ options?: {
2100
+ options?: {
2101
+ label: string;
2102
+ value: string;
2103
+ }[] | undefined;
2104
+ } | undefined;
2105
+ searchable?: boolean | undefined;
2106
+ localized?: boolean | undefined;
2107
+ description?: string | undefined;
2108
+ defaultValue?: any;
2109
+ required: boolean;
2110
+ type: "select";
2111
+ name: string;
2112
+ label: string;
2113
+ } | {
2114
+ options?: {
2115
+ allowMultiple?: boolean | undefined;
2116
+ } | undefined;
2117
+ searchable?: boolean | undefined;
2118
+ localized?: boolean | undefined;
2119
+ description?: string | undefined;
2120
+ defaultValue?: any;
2121
+ required: boolean;
2122
+ type: "category";
2123
+ name: string;
2124
+ label: string;
2125
+ } | {
2126
+ options?: {
2127
+ schema?: any;
2128
+ } | undefined;
2129
+ searchable?: boolean | undefined;
2130
+ localized?: boolean | undefined;
2131
+ description?: string | undefined;
2132
+ defaultValue?: any;
2133
+ required: boolean;
2134
+ type: "json";
2135
+ name: string;
2136
+ label: string;
2137
+ } | {
2138
+ options?: {
2139
+ multiple?: boolean | undefined;
2140
+ allowedContentTypes?: string[] | undefined;
2141
+ minItems?: number | undefined;
2142
+ } | undefined;
2143
+ searchable?: boolean | undefined;
2144
+ localized?: boolean | undefined;
2145
+ description?: string | undefined;
2146
+ defaultValue?: any;
2147
+ required: boolean;
2148
+ type: "reference";
2149
+ name: string;
2150
+ label: string;
2151
+ } | {
2152
+ options?: {
2153
+ options?: {
2154
+ label: string;
2155
+ value: string;
2156
+ }[] | undefined;
2157
+ } | undefined;
2158
+ searchable?: boolean | undefined;
2159
+ localized?: boolean | undefined;
2160
+ description?: string | undefined;
2161
+ defaultValue?: any;
2162
+ required: boolean;
2163
+ type: "multiSelect";
2164
+ name: string;
2165
+ label: string;
2166
+ } | {
2167
+ options?: {
2168
+ min?: number | undefined;
2169
+ max?: number | undefined;
2170
+ } | undefined;
2171
+ searchable?: boolean | undefined;
2172
+ localized?: boolean | undefined;
2173
+ description?: string | undefined;
2174
+ defaultValue?: any;
2175
+ required: boolean;
2176
+ type: "date";
2177
+ name: string;
2178
+ label: string;
2179
+ } | {
2180
+ options?: {
2181
+ min?: number | undefined;
2182
+ max?: number | undefined;
2183
+ } | undefined;
2184
+ searchable?: boolean | undefined;
2185
+ localized?: boolean | undefined;
2186
+ description?: string | undefined;
2187
+ defaultValue?: any;
2188
+ required: boolean;
2189
+ type: "datetime";
2190
+ name: string;
2191
+ label: string;
2192
+ } | {
2193
+ options?: {
2194
+ taxonomyId?: string | undefined;
2195
+ allowCreate?: boolean | undefined;
2196
+ maxTags?: number | undefined;
2197
+ minTags?: number | undefined;
2198
+ } | undefined;
2199
+ searchable?: boolean | undefined;
2200
+ localized?: boolean | undefined;
2201
+ description?: string | undefined;
2202
+ defaultValue?: any;
2203
+ required: boolean;
2204
+ type: "tags";
2205
+ name: string;
2206
+ label: string;
2207
+ }, [import("convex/values").VObject<{
2208
+ options?: {
2209
+ minLength?: number | undefined;
2210
+ maxLength?: number | undefined;
2211
+ pattern?: string | undefined;
2212
+ } | undefined;
2213
+ searchable?: boolean | undefined;
2214
+ localized?: boolean | undefined;
2215
+ description?: string | undefined;
2216
+ defaultValue?: any;
2217
+ required: boolean;
2218
+ type: "text";
2219
+ name: string;
2220
+ label: string;
2221
+ }, {
2222
+ type: import("convex/values").VLiteral<"text", "required">;
2223
+ options: import("convex/values").VObject<{
2224
+ minLength?: number | undefined;
2225
+ maxLength?: number | undefined;
2226
+ pattern?: string | undefined;
2227
+ } | undefined, {
2228
+ minLength: import("convex/values").VFloat64<number | undefined, "optional">;
2229
+ maxLength: import("convex/values").VFloat64<number | undefined, "optional">;
2230
+ pattern: import("convex/values").VString<string | undefined, "optional">;
2231
+ }, "optional", "minLength" | "maxLength" | "pattern">;
2232
+ name: import("convex/values").VString<string, "required">;
2233
+ label: import("convex/values").VString<string, "required">;
2234
+ required: import("convex/values").VBoolean<boolean, "required">;
2235
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2236
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2237
+ description: import("convex/values").VString<string | undefined, "optional">;
2238
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2239
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | "options.minLength" | "options.maxLength" | "options.pattern" | `defaultValue.${string}`>, import("convex/values").VObject<{
2240
+ options?: {
2241
+ min?: number | undefined;
2242
+ max?: number | undefined;
2243
+ step?: number | undefined;
2244
+ precision?: number | undefined;
2245
+ } | undefined;
2246
+ searchable?: boolean | undefined;
2247
+ localized?: boolean | undefined;
2248
+ description?: string | undefined;
2249
+ defaultValue?: any;
2250
+ required: boolean;
2251
+ type: "number";
2252
+ name: string;
2253
+ label: string;
2254
+ }, {
2255
+ type: import("convex/values").VLiteral<"number", "required">;
2256
+ options: import("convex/values").VObject<{
2257
+ min?: number | undefined;
2258
+ max?: number | undefined;
2259
+ step?: number | undefined;
2260
+ precision?: number | undefined;
2261
+ } | undefined, {
2262
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
2263
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
2264
+ step: import("convex/values").VFloat64<number | undefined, "optional">;
2265
+ precision: import("convex/values").VFloat64<number | undefined, "optional">;
2266
+ }, "optional", "min" | "max" | "step" | "precision">;
2267
+ name: import("convex/values").VString<string, "required">;
2268
+ label: import("convex/values").VString<string, "required">;
2269
+ required: import("convex/values").VBoolean<boolean, "required">;
2270
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2271
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2272
+ description: import("convex/values").VString<string | undefined, "optional">;
2273
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2274
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max" | "options.step" | "options.precision">, import("convex/values").VObject<{
2275
+ options?: {
2276
+ trueLabel?: string | undefined;
2277
+ falseLabel?: string | undefined;
2278
+ } | undefined;
2279
+ searchable?: boolean | undefined;
2280
+ localized?: boolean | undefined;
2281
+ description?: string | undefined;
2282
+ defaultValue?: any;
2283
+ required: boolean;
2284
+ type: "boolean";
2285
+ name: string;
2286
+ label: string;
2287
+ }, {
2288
+ type: import("convex/values").VLiteral<"boolean", "required">;
2289
+ options: import("convex/values").VObject<{
2290
+ trueLabel?: string | undefined;
2291
+ falseLabel?: string | undefined;
2292
+ } | undefined, {
2293
+ trueLabel: import("convex/values").VString<string | undefined, "optional">;
2294
+ falseLabel: import("convex/values").VString<string | undefined, "optional">;
2295
+ }, "optional", "trueLabel" | "falseLabel">;
2296
+ name: import("convex/values").VString<string, "required">;
2297
+ label: import("convex/values").VString<string, "required">;
2298
+ required: import("convex/values").VBoolean<boolean, "required">;
2299
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2300
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2301
+ description: import("convex/values").VString<string | undefined, "optional">;
2302
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2303
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.trueLabel" | "options.falseLabel">, import("convex/values").VObject<{
2304
+ options?: {
2305
+ allowedBlocks?: string[] | undefined;
2306
+ allowedMarks?: string[] | undefined;
2307
+ } | undefined;
2308
+ searchable?: boolean | undefined;
2309
+ localized?: boolean | undefined;
2310
+ description?: string | undefined;
2311
+ defaultValue?: any;
2312
+ required: boolean;
2313
+ type: "richText";
2314
+ name: string;
2315
+ label: string;
2316
+ }, {
2317
+ type: import("convex/values").VLiteral<"richText", "required">;
2318
+ options: import("convex/values").VObject<{
2319
+ allowedBlocks?: string[] | undefined;
2320
+ allowedMarks?: string[] | undefined;
2321
+ } | undefined, {
2322
+ allowedBlocks: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
2323
+ allowedMarks: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
2324
+ }, "optional", "allowedBlocks" | "allowedMarks">;
2325
+ name: import("convex/values").VString<string, "required">;
2326
+ label: import("convex/values").VString<string, "required">;
2327
+ required: import("convex/values").VBoolean<boolean, "required">;
2328
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2329
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2330
+ description: import("convex/values").VString<string | undefined, "optional">;
2331
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2332
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.allowedBlocks" | "options.allowedMarks">, import("convex/values").VObject<{
2333
+ options?: {
2334
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
2335
+ allowedMimeTypes?: string[] | undefined;
2336
+ maxFileSize?: number | undefined;
2337
+ multiple?: boolean | undefined;
2338
+ } | undefined;
2339
+ searchable?: boolean | undefined;
2340
+ localized?: boolean | undefined;
2341
+ description?: string | undefined;
2342
+ defaultValue?: any;
2343
+ required: boolean;
2344
+ type: "media";
2345
+ name: string;
2346
+ label: string;
2347
+ }, {
2348
+ type: import("convex/values").VLiteral<"media", "required">;
2349
+ options: import("convex/values").VObject<{
2350
+ mediaType?: "image" | "video" | "audio" | "document" | "other" | undefined;
2351
+ allowedMimeTypes?: string[] | undefined;
2352
+ maxFileSize?: number | undefined;
2353
+ multiple?: boolean | undefined;
2354
+ } | undefined, {
2355
+ mediaType: import("convex/values").VUnion<"image" | "video" | "audio" | "document" | "other" | undefined, [import("convex/values").VLiteral<"image", "required">, import("convex/values").VLiteral<"video", "required">, import("convex/values").VLiteral<"audio", "required">, import("convex/values").VLiteral<"document", "required">, import("convex/values").VLiteral<"other", "required">], "optional", never>;
2356
+ allowedMimeTypes: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
2357
+ maxFileSize: import("convex/values").VFloat64<number | undefined, "optional">;
2358
+ multiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
2359
+ }, "optional", "mediaType" | "allowedMimeTypes" | "maxFileSize" | "multiple">;
2360
+ name: import("convex/values").VString<string, "required">;
2361
+ label: import("convex/values").VString<string, "required">;
2362
+ required: import("convex/values").VBoolean<boolean, "required">;
2363
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2364
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2365
+ description: import("convex/values").VString<string | undefined, "optional">;
2366
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2367
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.mediaType" | "options.allowedMimeTypes" | "options.maxFileSize" | "options.multiple">, import("convex/values").VObject<{
2368
+ options?: {
2369
+ options?: {
2370
+ label: string;
2371
+ value: string;
2372
+ }[] | undefined;
2373
+ } | undefined;
2374
+ searchable?: boolean | undefined;
2375
+ localized?: boolean | undefined;
2376
+ description?: string | undefined;
2377
+ defaultValue?: any;
2378
+ required: boolean;
2379
+ type: "select";
2380
+ name: string;
2381
+ label: string;
2382
+ }, {
2383
+ type: import("convex/values").VLiteral<"select", "required">;
2384
+ options: import("convex/values").VObject<{
2385
+ options?: {
2386
+ label: string;
2387
+ value: string;
2388
+ }[] | undefined;
2389
+ } | undefined, {
2390
+ options: import("convex/values").VArray<{
2391
+ label: string;
2392
+ value: string;
2393
+ }[] | undefined, import("convex/values").VObject<{
2394
+ label: string;
2395
+ value: string;
2396
+ }, {
2397
+ value: import("convex/values").VString<string, "required">;
2398
+ label: import("convex/values").VString<string, "required">;
2399
+ }, "required", "label" | "value">, "optional">;
2400
+ }, "optional", "options">;
2401
+ name: import("convex/values").VString<string, "required">;
2402
+ label: import("convex/values").VString<string, "required">;
2403
+ required: import("convex/values").VBoolean<boolean, "required">;
2404
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2405
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2406
+ description: import("convex/values").VString<string | undefined, "optional">;
2407
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2408
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.options">, import("convex/values").VObject<{
2409
+ options?: {
2410
+ options?: {
2411
+ label: string;
2412
+ value: string;
2413
+ }[] | undefined;
2414
+ } | undefined;
2415
+ searchable?: boolean | undefined;
2416
+ localized?: boolean | undefined;
2417
+ description?: string | undefined;
2418
+ defaultValue?: any;
2419
+ required: boolean;
2420
+ type: "multiSelect";
2421
+ name: string;
2422
+ label: string;
2423
+ }, {
2424
+ type: import("convex/values").VLiteral<"multiSelect", "required">;
2425
+ options: import("convex/values").VObject<{
2426
+ options?: {
2427
+ label: string;
2428
+ value: string;
2429
+ }[] | undefined;
2430
+ } | undefined, {
2431
+ options: import("convex/values").VArray<{
2432
+ label: string;
2433
+ value: string;
2434
+ }[] | undefined, import("convex/values").VObject<{
2435
+ label: string;
2436
+ value: string;
2437
+ }, {
2438
+ value: import("convex/values").VString<string, "required">;
2439
+ label: import("convex/values").VString<string, "required">;
2440
+ }, "required", "label" | "value">, "optional">;
2441
+ }, "optional", "options">;
2442
+ name: import("convex/values").VString<string, "required">;
2443
+ label: import("convex/values").VString<string, "required">;
2444
+ required: import("convex/values").VBoolean<boolean, "required">;
2445
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2446
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2447
+ description: import("convex/values").VString<string | undefined, "optional">;
2448
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2449
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.options">, import("convex/values").VObject<{
2450
+ options?: {
2451
+ taxonomyId?: string | undefined;
2452
+ allowCreate?: boolean | undefined;
2453
+ maxTags?: number | undefined;
2454
+ minTags?: number | undefined;
2455
+ } | undefined;
2456
+ searchable?: boolean | undefined;
2457
+ localized?: boolean | undefined;
2458
+ description?: string | undefined;
2459
+ defaultValue?: any;
2460
+ required: boolean;
2461
+ type: "tags";
2462
+ name: string;
2463
+ label: string;
2464
+ }, {
2465
+ type: import("convex/values").VLiteral<"tags", "required">;
2466
+ options: import("convex/values").VObject<{
2467
+ taxonomyId?: string | undefined;
2468
+ allowCreate?: boolean | undefined;
2469
+ maxTags?: number | undefined;
2470
+ minTags?: number | undefined;
2471
+ } | undefined, {
2472
+ taxonomyId: import("convex/values").VString<string | undefined, "optional">;
2473
+ allowCreate: import("convex/values").VBoolean<boolean | undefined, "optional">;
2474
+ maxTags: import("convex/values").VFloat64<number | undefined, "optional">;
2475
+ minTags: import("convex/values").VFloat64<number | undefined, "optional">;
2476
+ }, "optional", "taxonomyId" | "allowCreate" | "maxTags" | "minTags">;
2477
+ name: import("convex/values").VString<string, "required">;
2478
+ label: import("convex/values").VString<string, "required">;
2479
+ required: import("convex/values").VBoolean<boolean, "required">;
2480
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2481
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2482
+ description: import("convex/values").VString<string | undefined, "optional">;
2483
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2484
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags">, import("convex/values").VObject<{
2485
+ options?: {
2486
+ allowMultiple?: boolean | undefined;
2487
+ } | undefined;
2488
+ searchable?: boolean | undefined;
2489
+ localized?: boolean | undefined;
2490
+ description?: string | undefined;
2491
+ defaultValue?: any;
2492
+ required: boolean;
2493
+ type: "category";
2494
+ name: string;
2495
+ label: string;
2496
+ }, {
2497
+ type: import("convex/values").VLiteral<"category", "required">;
2498
+ options: import("convex/values").VObject<{
2499
+ allowMultiple?: boolean | undefined;
2500
+ } | undefined, {
2501
+ allowMultiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
2502
+ }, "optional", "allowMultiple">;
2503
+ name: import("convex/values").VString<string, "required">;
2504
+ label: import("convex/values").VString<string, "required">;
2505
+ required: import("convex/values").VBoolean<boolean, "required">;
2506
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2507
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2508
+ description: import("convex/values").VString<string | undefined, "optional">;
2509
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2510
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.allowMultiple">, import("convex/values").VObject<{
2511
+ options?: {
2512
+ schema?: any;
2513
+ } | undefined;
2514
+ searchable?: boolean | undefined;
2515
+ localized?: boolean | undefined;
2516
+ description?: string | undefined;
2517
+ defaultValue?: any;
2518
+ required: boolean;
2519
+ type: "json";
2520
+ name: string;
2521
+ label: string;
2522
+ }, {
2523
+ type: import("convex/values").VLiteral<"json", "required">;
2524
+ options: import("convex/values").VObject<{
2525
+ schema?: any;
2526
+ } | undefined, {
2527
+ schema: import("convex/values").VAny<any, "optional", string>;
2528
+ }, "optional", "schema" | `schema.${string}`>;
2529
+ name: import("convex/values").VString<string, "required">;
2530
+ label: import("convex/values").VString<string, "required">;
2531
+ required: import("convex/values").VBoolean<boolean, "required">;
2532
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2533
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2534
+ description: import("convex/values").VString<string | undefined, "optional">;
2535
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2536
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.schema" | `options.schema.${string}`>, import("convex/values").VObject<{
2537
+ options?: {
2538
+ min?: number | undefined;
2539
+ max?: number | undefined;
2540
+ } | undefined;
2541
+ searchable?: boolean | undefined;
2542
+ localized?: boolean | undefined;
2543
+ description?: string | undefined;
2544
+ defaultValue?: any;
2545
+ required: boolean;
2546
+ type: "date";
2547
+ name: string;
2548
+ label: string;
2549
+ }, {
2550
+ type: import("convex/values").VLiteral<"date", "required">;
2551
+ options: import("convex/values").VObject<{
2552
+ min?: number | undefined;
2553
+ max?: number | undefined;
2554
+ } | undefined, {
2555
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
2556
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
2557
+ }, "optional", "min" | "max">;
2558
+ name: import("convex/values").VString<string, "required">;
2559
+ label: import("convex/values").VString<string, "required">;
2560
+ required: import("convex/values").VBoolean<boolean, "required">;
2561
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2562
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2563
+ description: import("convex/values").VString<string | undefined, "optional">;
2564
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2565
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max">, import("convex/values").VObject<{
2566
+ options?: {
2567
+ min?: number | undefined;
2568
+ max?: number | undefined;
2569
+ } | undefined;
2570
+ searchable?: boolean | undefined;
2571
+ localized?: boolean | undefined;
2572
+ description?: string | undefined;
2573
+ defaultValue?: any;
2574
+ required: boolean;
2575
+ type: "datetime";
2576
+ name: string;
2577
+ label: string;
2578
+ }, {
2579
+ type: import("convex/values").VLiteral<"datetime", "required">;
2580
+ options: import("convex/values").VObject<{
2581
+ min?: number | undefined;
2582
+ max?: number | undefined;
2583
+ } | undefined, {
2584
+ min: import("convex/values").VFloat64<number | undefined, "optional">;
2585
+ max: import("convex/values").VFloat64<number | undefined, "optional">;
2586
+ }, "optional", "min" | "max">;
2587
+ name: import("convex/values").VString<string, "required">;
2588
+ label: import("convex/values").VString<string, "required">;
2589
+ required: import("convex/values").VBoolean<boolean, "required">;
2590
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2591
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2592
+ description: import("convex/values").VString<string | undefined, "optional">;
2593
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2594
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.min" | "options.max">, import("convex/values").VObject<{
2595
+ options?: {
2596
+ multiple?: boolean | undefined;
2597
+ allowedContentTypes?: string[] | undefined;
2598
+ minItems?: number | undefined;
2599
+ } | undefined;
2600
+ searchable?: boolean | undefined;
2601
+ localized?: boolean | undefined;
2602
+ description?: string | undefined;
2603
+ defaultValue?: any;
2604
+ required: boolean;
2605
+ type: "reference";
2606
+ name: string;
2607
+ label: string;
2608
+ }, {
2609
+ type: import("convex/values").VLiteral<"reference", "required">;
2610
+ options: import("convex/values").VObject<{
2611
+ multiple?: boolean | undefined;
2612
+ allowedContentTypes?: string[] | undefined;
2613
+ minItems?: number | undefined;
2614
+ } | undefined, {
2615
+ allowedContentTypes: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
2616
+ multiple: import("convex/values").VBoolean<boolean | undefined, "optional">;
2617
+ minItems: import("convex/values").VFloat64<number | undefined, "optional">;
2618
+ }, "optional", "multiple" | "allowedContentTypes" | "minItems">;
2619
+ name: import("convex/values").VString<string, "required">;
2620
+ label: import("convex/values").VString<string, "required">;
2621
+ required: import("convex/values").VBoolean<boolean, "required">;
2622
+ searchable: import("convex/values").VBoolean<boolean | undefined, "optional">;
2623
+ localized: import("convex/values").VBoolean<boolean | undefined, "optional">;
2624
+ description: import("convex/values").VString<string | undefined, "optional">;
2625
+ defaultValue: import("convex/values").VAny<any, "optional", string>;
2626
+ }, "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | `defaultValue.${string}` | "options.multiple" | "options.allowedContentTypes" | "options.minItems">], "required", "required" | "type" | "options" | "name" | "label" | "searchable" | "localized" | "description" | "defaultValue" | "options.minLength" | "options.maxLength" | "options.pattern" | `defaultValue.${string}` | "options.min" | "options.max" | "options.step" | "options.precision" | "options.trueLabel" | "options.falseLabel" | "options.allowedBlocks" | "options.allowedMarks" | "options.mediaType" | "options.allowedMimeTypes" | "options.maxFileSize" | "options.multiple" | "options.options" | "options.taxonomyId" | "options.allowCreate" | "options.maxTags" | "options.minTags" | "options.allowMultiple" | "options.schema" | `options.schema.${string}` | "options.allowedContentTypes" | "options.minItems">, "required">;
2627
+ entryCount: import("convex/values").VFloat64<number | undefined, "optional">;
2628
+ name: import("convex/values").VString<string, "required">;
2629
+ displayName: import("convex/values").VString<string, "required">;
2630
+ createdBy: import("convex/values").VString<string, "required">;
2631
+ description: import("convex/values").VString<string | undefined, "optional">;
2632
+ icon: import("convex/values").VString<string | undefined, "optional">;
2633
+ singleton: import("convex/values").VBoolean<boolean | undefined, "optional">;
2634
+ slugField: import("convex/values").VString<string | undefined, "optional">;
2635
+ titleField: import("convex/values").VString<string | undefined, "optional">;
2636
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
2637
+ isActive: import("convex/values").VBoolean<boolean, "required">;
2638
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2639
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
2640
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2641
+ }, "required", "fields" | "name" | "description" | "deletedAt" | "createdBy" | "updatedBy" | "sortOrder" | "displayName" | "icon" | "singleton" | "slugField" | "titleField" | "isActive" | "_creationTime" | "_id" | "entryCount">;
2642
+ export declare const adminDeleteContentTypeResult: import("convex/values").VObject<{
2643
+ success: boolean;
2644
+ deletedVersionsCount: number;
2645
+ deletedId: string;
2646
+ deletedEntriesCount: number;
2647
+ wasHardDelete: boolean;
2648
+ }, {
2649
+ deletedId: import("convex/values").VString<string, "required">;
2650
+ success: import("convex/values").VBoolean<boolean, "required">;
2651
+ deletedEntriesCount: import("convex/values").VFloat64<number, "required">;
2652
+ deletedVersionsCount: import("convex/values").VFloat64<number, "required">;
2653
+ wasHardDelete: import("convex/values").VBoolean<boolean, "required">;
2654
+ }, "required", "success" | "deletedVersionsCount" | "deletedId" | "deletedEntriesCount" | "wasHardDelete">;
2655
+ export declare const adminContentEntryDoc: import("convex/values").VObject<{
2656
+ deletedAt?: number | undefined;
2657
+ createdBy?: string | undefined;
2658
+ updatedBy?: string | undefined;
2659
+ searchText?: string | undefined;
2660
+ locale?: string | undefined;
2661
+ primaryEntryId?: string | undefined;
2662
+ scheduledPublishAt?: number | undefined;
2663
+ firstPublishedAt?: number | undefined;
2664
+ lastPublishedAt?: number | undefined;
2665
+ lockedBy?: string | undefined;
2666
+ lockExpiresAt?: number | undefined;
2667
+ _creationTime: number;
2668
+ contentTypeId: string;
2669
+ slug: string;
2670
+ status: string;
2671
+ data: any;
2672
+ version: number;
2673
+ _id: string;
2674
+ }, {
2675
+ _id: import("convex/values").VString<string, "required">;
2676
+ contentTypeId: import("convex/values").VString<string, "required">;
2677
+ primaryEntryId: import("convex/values").VString<string | undefined, "optional">;
2678
+ slug: import("convex/values").VString<string, "required">;
2679
+ status: import("convex/values").VString<string, "required">;
2680
+ data: import("convex/values").VAny<any, "required", string>;
2681
+ locale: import("convex/values").VString<string | undefined, "optional">;
2682
+ version: import("convex/values").VFloat64<number, "required">;
2683
+ scheduledPublishAt: import("convex/values").VFloat64<number | undefined, "optional">;
2684
+ firstPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2685
+ lastPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2686
+ lockedBy: import("convex/values").VString<string | undefined, "optional">;
2687
+ lockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
2688
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2689
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
2690
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
2691
+ searchText: import("convex/values").VString<string | undefined, "optional">;
2692
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2693
+ }, "required", "deletedAt" | "createdBy" | "updatedBy" | "searchText" | "_creationTime" | "contentTypeId" | "slug" | "status" | "data" | "locale" | "primaryEntryId" | "version" | "scheduledPublishAt" | "firstPublishedAt" | "lastPublishedAt" | "lockedBy" | "lockExpiresAt" | `data.${string}` | "_id">;
2694
+ export declare const adminDeleteContentEntryResult: import("convex/values").VObject<{
2695
+ deletedAt?: number | undefined;
2696
+ createdBy?: string | undefined;
2697
+ updatedBy?: string | undefined;
2698
+ searchText?: string | undefined;
2699
+ locale?: string | undefined;
2700
+ primaryEntryId?: string | undefined;
2701
+ scheduledPublishAt?: number | undefined;
2702
+ firstPublishedAt?: number | undefined;
2703
+ lastPublishedAt?: number | undefined;
2704
+ lockedBy?: string | undefined;
2705
+ lockExpiresAt?: number | undefined;
2706
+ deletedVersionsCount?: number | undefined;
2707
+ _creationTime: number;
2708
+ contentTypeId: string;
2709
+ slug: string;
2710
+ status: string;
2711
+ data: any;
2712
+ version: number;
2713
+ _id: string;
2714
+ }, {
2715
+ _id: import("convex/values").VString<string, "required">;
2716
+ contentTypeId: import("convex/values").VString<string, "required">;
2717
+ primaryEntryId: import("convex/values").VString<string | undefined, "optional">;
2718
+ deletedVersionsCount: import("convex/values").VFloat64<number | undefined, "optional">;
2719
+ slug: import("convex/values").VString<string, "required">;
2720
+ status: import("convex/values").VString<string, "required">;
2721
+ data: import("convex/values").VAny<any, "required", string>;
2722
+ locale: import("convex/values").VString<string | undefined, "optional">;
2723
+ version: import("convex/values").VFloat64<number, "required">;
2724
+ scheduledPublishAt: import("convex/values").VFloat64<number | undefined, "optional">;
2725
+ firstPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2726
+ lastPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2727
+ lockedBy: import("convex/values").VString<string | undefined, "optional">;
2728
+ lockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
2729
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2730
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
2731
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
2732
+ searchText: import("convex/values").VString<string | undefined, "optional">;
2733
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2734
+ }, "required", "deletedAt" | "createdBy" | "updatedBy" | "searchText" | "_creationTime" | "contentTypeId" | "slug" | "status" | "data" | "locale" | "primaryEntryId" | "version" | "scheduledPublishAt" | "firstPublishedAt" | "lastPublishedAt" | "lockedBy" | "lockExpiresAt" | `data.${string}` | "_id" | "deletedVersionsCount">;
2735
+ export declare const adminContentVersionDoc: import("convex/values").VObject<{
2736
+ createdBy?: string | undefined;
2737
+ changeDescription?: string | undefined;
2738
+ publishedAt?: number | undefined;
2739
+ _creationTime: number;
2740
+ slug: string;
2741
+ status: string;
2742
+ data: any;
2743
+ entryId: string;
2744
+ versionNumber: number;
2745
+ wasPublished: boolean;
2746
+ _id: string;
2747
+ }, {
2748
+ _id: import("convex/values").VString<string, "required">;
2749
+ entryId: import("convex/values").VString<string, "required">;
2750
+ versionNumber: import("convex/values").VFloat64<number, "required">;
2751
+ data: import("convex/values").VAny<any, "required", string>;
2752
+ slug: import("convex/values").VString<string, "required">;
2753
+ status: import("convex/values").VString<string, "required">;
2754
+ changeDescription: import("convex/values").VString<string | undefined, "optional">;
2755
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
2756
+ wasPublished: import("convex/values").VBoolean<boolean, "required">;
2757
+ publishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2758
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2759
+ }, "required", "createdBy" | "_creationTime" | "slug" | "status" | "data" | `data.${string}` | "entryId" | "versionNumber" | "changeDescription" | "wasPublished" | "publishedAt" | "_id">;
2760
+ export declare const adminVersionFieldDiff: import("convex/values").VObject<{
2761
+ fromValue?: any;
2762
+ toValue?: any;
2763
+ field: string;
2764
+ changeType: "added" | "removed" | "modified";
2765
+ }, {
2766
+ field: import("convex/values").VString<string, "required">;
2767
+ fromValue: import("convex/values").VAny<any, "optional", string>;
2768
+ toValue: import("convex/values").VAny<any, "optional", string>;
2769
+ changeType: import("convex/values").VUnion<"added" | "removed" | "modified", [import("convex/values").VLiteral<"added", "required">, import("convex/values").VLiteral<"removed", "required">, import("convex/values").VLiteral<"modified", "required">], "required", never>;
2770
+ }, "required", "field" | "fromValue" | "toValue" | "changeType" | `fromValue.${string}` | `toValue.${string}`>;
2771
+ export declare const adminCompareVersionsResult: import("convex/values").VObject<{
2772
+ hasChanges: boolean;
2773
+ fromVersion: {
2774
+ slug: string;
2775
+ status: string;
2776
+ versionNumber: number;
2777
+ wasPublished: boolean;
2778
+ createdAt: number;
2779
+ };
2780
+ toVersion: {
2781
+ slug: string;
2782
+ status: string;
2783
+ versionNumber: number;
2784
+ wasPublished: boolean;
2785
+ createdAt: number;
2786
+ };
2787
+ changedFields: string[];
2788
+ fieldDiffs: {
2789
+ fromValue?: any;
2790
+ toValue?: any;
2791
+ field: string;
2792
+ changeType: "added" | "removed" | "modified";
2793
+ }[];
2794
+ slugChanged: boolean;
2795
+ statusChanged: boolean;
2796
+ changeSummary: string;
2797
+ }, {
2798
+ hasChanges: import("convex/values").VBoolean<boolean, "required">;
2799
+ fromVersion: import("convex/values").VObject<{
2800
+ slug: string;
2801
+ status: string;
2802
+ versionNumber: number;
2803
+ wasPublished: boolean;
2804
+ createdAt: number;
2805
+ }, {
2806
+ versionNumber: import("convex/values").VFloat64<number, "required">;
2807
+ status: import("convex/values").VString<string, "required">;
2808
+ slug: import("convex/values").VString<string, "required">;
2809
+ wasPublished: import("convex/values").VBoolean<boolean, "required">;
2810
+ createdAt: import("convex/values").VFloat64<number, "required">;
2811
+ }, "required", "slug" | "status" | "versionNumber" | "wasPublished" | "createdAt">;
2812
+ toVersion: import("convex/values").VObject<{
2813
+ slug: string;
2814
+ status: string;
2815
+ versionNumber: number;
2816
+ wasPublished: boolean;
2817
+ createdAt: number;
2818
+ }, {
2819
+ versionNumber: import("convex/values").VFloat64<number, "required">;
2820
+ status: import("convex/values").VString<string, "required">;
2821
+ slug: import("convex/values").VString<string, "required">;
2822
+ wasPublished: import("convex/values").VBoolean<boolean, "required">;
2823
+ createdAt: import("convex/values").VFloat64<number, "required">;
2824
+ }, "required", "slug" | "status" | "versionNumber" | "wasPublished" | "createdAt">;
2825
+ changedFields: import("convex/values").VArray<string[], import("convex/values").VString<string, "required">, "required">;
2826
+ fieldDiffs: import("convex/values").VArray<{
2827
+ fromValue?: any;
2828
+ toValue?: any;
2829
+ field: string;
2830
+ changeType: "added" | "removed" | "modified";
2831
+ }[], import("convex/values").VObject<{
2832
+ fromValue?: any;
2833
+ toValue?: any;
2834
+ field: string;
2835
+ changeType: "added" | "removed" | "modified";
2836
+ }, {
2837
+ field: import("convex/values").VString<string, "required">;
2838
+ fromValue: import("convex/values").VAny<any, "optional", string>;
2839
+ toValue: import("convex/values").VAny<any, "optional", string>;
2840
+ changeType: import("convex/values").VUnion<"added" | "removed" | "modified", [import("convex/values").VLiteral<"added", "required">, import("convex/values").VLiteral<"removed", "required">, import("convex/values").VLiteral<"modified", "required">], "required", never>;
2841
+ }, "required", "field" | "fromValue" | "toValue" | "changeType" | `fromValue.${string}` | `toValue.${string}`>, "required">;
2842
+ slugChanged: import("convex/values").VBoolean<boolean, "required">;
2843
+ statusChanged: import("convex/values").VBoolean<boolean, "required">;
2844
+ changeSummary: import("convex/values").VString<string, "required">;
2845
+ }, "required", "hasChanges" | "fromVersion" | "toVersion" | "changedFields" | "fieldDiffs" | "slugChanged" | "statusChanged" | "changeSummary" | "fromVersion.slug" | "fromVersion.status" | "fromVersion.versionNumber" | "fromVersion.wasPublished" | "fromVersion.createdAt" | "toVersion.slug" | "toVersion.status" | "toVersion.versionNumber" | "toVersion.wasPublished" | "toVersion.createdAt">;
2846
+ export declare const adminMediaAssetDoc: import("convex/values").VObject<{
2847
+ tags?: string[] | undefined;
2848
+ description?: string | undefined;
2849
+ width?: number | undefined;
2850
+ height?: number | undefined;
2851
+ duration?: number | undefined;
2852
+ altText?: string | undefined;
2853
+ title?: string | undefined;
2854
+ parentId?: string | undefined;
2855
+ size?: number | undefined;
2856
+ metadata?: Record<string, any> | undefined;
2857
+ deletedAt?: number | undefined;
2858
+ createdBy?: string | undefined;
2859
+ updatedBy?: string | undefined;
2860
+ searchText?: string | undefined;
2861
+ name: string;
2862
+ kind: "asset";
2863
+ storageId: string;
2864
+ mimeType: string;
2865
+ path: string;
2866
+ _creationTime: number;
2867
+ _id: string;
2868
+ }, {
2869
+ _id: import("convex/values").VString<string, "required">;
2870
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2871
+ parentId: import("convex/values").VString<string | undefined, "optional">;
2872
+ storageId: import("convex/values").VString<string, "required">;
2873
+ kind: import("convex/values").VLiteral<"asset", "required">;
2874
+ mimeType: import("convex/values").VString<string, "required">;
2875
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
2876
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
2877
+ duration: import("convex/values").VFloat64<number | undefined, "optional">;
2878
+ altText: import("convex/values").VString<string | undefined, "optional">;
2879
+ name: import("convex/values").VString<string, "required">;
2880
+ title: import("convex/values").VString<string | undefined, "optional">;
2881
+ description: import("convex/values").VString<string | undefined, "optional">;
2882
+ path: import("convex/values").VString<string, "required">;
2883
+ tags: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
2884
+ size: import("convex/values").VFloat64<number | undefined, "optional">;
2885
+ metadata: import("convex/values").VRecord<Record<string, any> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "optional", string>;
2886
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2887
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
2888
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
2889
+ searchText: import("convex/values").VString<string | undefined, "optional">;
2890
+ }, "required", "tags" | "name" | "description" | "kind" | "storageId" | "mimeType" | "width" | "height" | "duration" | "altText" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "_creationTime" | "_id">;
2891
+ export declare const adminMediaFolderDoc: import("convex/values").VObject<{
2892
+ tags?: string[] | undefined;
2893
+ description?: string | undefined;
2894
+ title?: string | undefined;
2895
+ parentId?: string | undefined;
2896
+ size?: number | undefined;
2897
+ metadata?: Record<string, any> | undefined;
2898
+ deletedAt?: number | undefined;
2899
+ createdBy?: string | undefined;
2900
+ updatedBy?: string | undefined;
2901
+ searchText?: string | undefined;
2902
+ sortOrder?: number | undefined;
2903
+ name: string;
2904
+ kind: "folder";
2905
+ path: string;
2906
+ _creationTime: number;
2907
+ _id: string;
2908
+ }, {
2909
+ _id: import("convex/values").VString<string, "required">;
2910
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2911
+ parentId: import("convex/values").VString<string | undefined, "optional">;
2912
+ kind: import("convex/values").VLiteral<"folder", "required">;
2913
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
2914
+ name: import("convex/values").VString<string, "required">;
2915
+ title: import("convex/values").VString<string | undefined, "optional">;
2916
+ description: import("convex/values").VString<string | undefined, "optional">;
2917
+ path: import("convex/values").VString<string, "required">;
2918
+ tags: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
2919
+ size: import("convex/values").VFloat64<number | undefined, "optional">;
2920
+ metadata: import("convex/values").VRecord<Record<string, any> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "optional", string>;
2921
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
2922
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
2923
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
2924
+ searchText: import("convex/values").VString<string | undefined, "optional">;
2925
+ }, "required", "tags" | "name" | "description" | "kind" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "sortOrder" | "_creationTime" | "_id">;
2926
+ export declare const adminMediaItemDoc: import("convex/values").VUnion<{
2927
+ tags?: string[] | undefined;
2928
+ description?: string | undefined;
2929
+ width?: number | undefined;
2930
+ height?: number | undefined;
2931
+ duration?: number | undefined;
2932
+ altText?: string | undefined;
2933
+ title?: string | undefined;
2934
+ parentId?: string | undefined;
2935
+ size?: number | undefined;
2936
+ metadata?: Record<string, any> | undefined;
2937
+ deletedAt?: number | undefined;
2938
+ createdBy?: string | undefined;
2939
+ updatedBy?: string | undefined;
2940
+ searchText?: string | undefined;
2941
+ name: string;
2942
+ kind: "asset";
2943
+ storageId: string;
2944
+ mimeType: string;
2945
+ path: string;
2946
+ _creationTime: number;
2947
+ _id: string;
2948
+ } | {
2949
+ tags?: string[] | undefined;
2950
+ description?: string | undefined;
2951
+ title?: string | undefined;
2952
+ parentId?: string | undefined;
2953
+ size?: number | undefined;
2954
+ metadata?: Record<string, any> | undefined;
2955
+ deletedAt?: number | undefined;
2956
+ createdBy?: string | undefined;
2957
+ updatedBy?: string | undefined;
2958
+ searchText?: string | undefined;
2959
+ sortOrder?: number | undefined;
2960
+ name: string;
2961
+ kind: "folder";
2962
+ path: string;
2963
+ _creationTime: number;
2964
+ _id: string;
2965
+ }, [import("convex/values").VObject<{
2966
+ tags?: string[] | undefined;
2967
+ description?: string | undefined;
2968
+ width?: number | undefined;
2969
+ height?: number | undefined;
2970
+ duration?: number | undefined;
2971
+ altText?: string | undefined;
2972
+ title?: string | undefined;
2973
+ parentId?: string | undefined;
2974
+ size?: number | undefined;
2975
+ metadata?: Record<string, any> | undefined;
2976
+ deletedAt?: number | undefined;
2977
+ createdBy?: string | undefined;
2978
+ updatedBy?: string | undefined;
2979
+ searchText?: string | undefined;
2980
+ name: string;
2981
+ kind: "asset";
2982
+ storageId: string;
2983
+ mimeType: string;
2984
+ path: string;
2985
+ _creationTime: number;
2986
+ _id: string;
2987
+ }, {
2988
+ _id: import("convex/values").VString<string, "required">;
2989
+ _creationTime: import("convex/values").VFloat64<number, "required">;
2990
+ parentId: import("convex/values").VString<string | undefined, "optional">;
2991
+ storageId: import("convex/values").VString<string, "required">;
2992
+ kind: import("convex/values").VLiteral<"asset", "required">;
2993
+ mimeType: import("convex/values").VString<string, "required">;
2994
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
2995
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
2996
+ duration: import("convex/values").VFloat64<number | undefined, "optional">;
2997
+ altText: import("convex/values").VString<string | undefined, "optional">;
2998
+ name: import("convex/values").VString<string, "required">;
2999
+ title: import("convex/values").VString<string | undefined, "optional">;
3000
+ description: import("convex/values").VString<string | undefined, "optional">;
3001
+ path: import("convex/values").VString<string, "required">;
3002
+ tags: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
3003
+ size: import("convex/values").VFloat64<number | undefined, "optional">;
3004
+ metadata: import("convex/values").VRecord<Record<string, any> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "optional", string>;
3005
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3006
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3007
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3008
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3009
+ }, "required", "tags" | "name" | "description" | "kind" | "storageId" | "mimeType" | "width" | "height" | "duration" | "altText" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "_creationTime" | "_id">, import("convex/values").VObject<{
3010
+ tags?: string[] | undefined;
3011
+ description?: string | undefined;
3012
+ title?: string | undefined;
3013
+ parentId?: string | undefined;
3014
+ size?: number | undefined;
3015
+ metadata?: Record<string, any> | undefined;
3016
+ deletedAt?: number | undefined;
3017
+ createdBy?: string | undefined;
3018
+ updatedBy?: string | undefined;
3019
+ searchText?: string | undefined;
3020
+ sortOrder?: number | undefined;
3021
+ name: string;
3022
+ kind: "folder";
3023
+ path: string;
3024
+ _creationTime: number;
3025
+ _id: string;
3026
+ }, {
3027
+ _id: import("convex/values").VString<string, "required">;
3028
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3029
+ parentId: import("convex/values").VString<string | undefined, "optional">;
3030
+ kind: import("convex/values").VLiteral<"folder", "required">;
3031
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
3032
+ name: import("convex/values").VString<string, "required">;
3033
+ title: import("convex/values").VString<string | undefined, "optional">;
3034
+ description: import("convex/values").VString<string | undefined, "optional">;
3035
+ path: import("convex/values").VString<string, "required">;
3036
+ tags: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
3037
+ size: import("convex/values").VFloat64<number | undefined, "optional">;
3038
+ metadata: import("convex/values").VRecord<Record<string, any> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "optional", string>;
3039
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3040
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3041
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3042
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3043
+ }, "required", "tags" | "name" | "description" | "kind" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "sortOrder" | "_creationTime" | "_id">], "required", "tags" | "name" | "description" | "kind" | "storageId" | "mimeType" | "width" | "height" | "duration" | "altText" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "sortOrder" | "_creationTime" | "_id">;
3044
+ export declare const adminDeleteMediaAssetResult: import("convex/values").VObject<{
3045
+ tags?: string[] | undefined;
3046
+ description?: string | undefined;
3047
+ width?: number | undefined;
3048
+ height?: number | undefined;
3049
+ duration?: number | undefined;
3050
+ altText?: string | undefined;
3051
+ title?: string | undefined;
3052
+ parentId?: string | undefined;
3053
+ size?: number | undefined;
3054
+ metadata?: Record<string, any> | undefined;
3055
+ deletedAt?: number | undefined;
3056
+ createdBy?: string | undefined;
3057
+ updatedBy?: string | undefined;
3058
+ searchText?: string | undefined;
3059
+ storageFileDeleted?: boolean | undefined;
3060
+ name: string;
3061
+ kind: "asset";
3062
+ storageId: string;
3063
+ mimeType: string;
3064
+ path: string;
3065
+ _creationTime: number;
3066
+ _id: string;
3067
+ }, {
3068
+ _id: import("convex/values").VString<string, "required">;
3069
+ parentId: import("convex/values").VString<string | undefined, "optional">;
3070
+ storageId: import("convex/values").VString<string, "required">;
3071
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3072
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3073
+ storageFileDeleted: import("convex/values").VBoolean<boolean | undefined, "optional">;
3074
+ kind: import("convex/values").VLiteral<"asset", "required">;
3075
+ mimeType: import("convex/values").VString<string, "required">;
3076
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
3077
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
3078
+ duration: import("convex/values").VFloat64<number | undefined, "optional">;
3079
+ altText: import("convex/values").VString<string | undefined, "optional">;
3080
+ name: import("convex/values").VString<string, "required">;
3081
+ title: import("convex/values").VString<string | undefined, "optional">;
3082
+ description: import("convex/values").VString<string | undefined, "optional">;
3083
+ path: import("convex/values").VString<string, "required">;
3084
+ tags: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
3085
+ size: import("convex/values").VFloat64<number | undefined, "optional">;
3086
+ metadata: import("convex/values").VRecord<Record<string, any> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "optional", string>;
3087
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3088
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3089
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3090
+ }, "required", "tags" | "name" | "description" | "kind" | "storageId" | "mimeType" | "width" | "height" | "duration" | "altText" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "_creationTime" | "_id" | "storageFileDeleted">;
3091
+ export declare const adminMoveMediaAssetItemResult: import("convex/values").VObject<{
3092
+ error?: string | undefined;
3093
+ previousFolderId?: string | undefined;
3094
+ id: string;
3095
+ success: boolean;
3096
+ }, {
3097
+ id: import("convex/values").VString<string, "required">;
3098
+ success: import("convex/values").VBoolean<boolean, "required">;
3099
+ error: import("convex/values").VString<string | undefined, "optional">;
3100
+ previousFolderId: import("convex/values").VString<string | undefined, "optional">;
3101
+ }, "required", "id" | "success" | "error" | "previousFolderId">;
3102
+ export declare const adminMoveMediaAssetsResult: import("convex/values").VObject<{
3103
+ targetFolderId?: string | undefined;
3104
+ targetFolderPath?: string | undefined;
3105
+ failed: number;
3106
+ total: number;
3107
+ succeeded: number;
3108
+ results: {
3109
+ error?: string | undefined;
3110
+ previousFolderId?: string | undefined;
3111
+ id: string;
3112
+ success: boolean;
3113
+ }[];
3114
+ }, {
3115
+ total: import("convex/values").VFloat64<number, "required">;
3116
+ succeeded: import("convex/values").VFloat64<number, "required">;
3117
+ failed: import("convex/values").VFloat64<number, "required">;
3118
+ targetFolderId: import("convex/values").VString<string | undefined, "optional">;
3119
+ targetFolderPath: import("convex/values").VString<string | undefined, "optional">;
3120
+ results: import("convex/values").VArray<{
3121
+ error?: string | undefined;
3122
+ previousFolderId?: string | undefined;
3123
+ id: string;
3124
+ success: boolean;
3125
+ }[], import("convex/values").VObject<{
3126
+ error?: string | undefined;
3127
+ previousFolderId?: string | undefined;
3128
+ id: string;
3129
+ success: boolean;
3130
+ }, {
3131
+ id: import("convex/values").VString<string, "required">;
3132
+ success: import("convex/values").VBoolean<boolean, "required">;
3133
+ error: import("convex/values").VString<string | undefined, "optional">;
3134
+ previousFolderId: import("convex/values").VString<string | undefined, "optional">;
3135
+ }, "required", "id" | "success" | "error" | "previousFolderId">, "required">;
3136
+ }, "required", "failed" | "targetFolderId" | "total" | "succeeded" | "targetFolderPath" | "results">;
3137
+ export declare const adminMediaVariantDoc: import("convex/values").VObject<{
3138
+ width?: number | undefined;
3139
+ height?: number | undefined;
3140
+ deletedAt?: number | undefined;
3141
+ createdBy?: string | undefined;
3142
+ quality?: number | undefined;
3143
+ preset?: string | undefined;
3144
+ errorMessage?: string | undefined;
3145
+ processingStartedAt?: number | undefined;
3146
+ processingCompletedAt?: number | undefined;
3147
+ format: string;
3148
+ storageId: string;
3149
+ mimeType: string;
3150
+ size: number;
3151
+ _creationTime: number;
3152
+ status: "pending" | "processing" | "completed" | "failed";
3153
+ assetId: string;
3154
+ variantType: "thumbnail" | "responsive" | "format";
3155
+ autoGenerated: boolean;
3156
+ _id: string;
3157
+ }, {
3158
+ _id: import("convex/values").VString<string, "required">;
3159
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3160
+ assetId: import("convex/values").VString<string, "required">;
3161
+ storageId: import("convex/values").VString<string, "required">;
3162
+ variantType: import("convex/values").VUnion<"thumbnail" | "responsive" | "format", [import("convex/values").VLiteral<"thumbnail", "required">, import("convex/values").VLiteral<"responsive", "required">, import("convex/values").VLiteral<"format", "required">], "required", never>;
3163
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
3164
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
3165
+ format: import("convex/values").VString<string, "required">;
3166
+ mimeType: import("convex/values").VString<string, "required">;
3167
+ size: import("convex/values").VFloat64<number, "required">;
3168
+ quality: import("convex/values").VFloat64<number | undefined, "optional">;
3169
+ preset: import("convex/values").VString<string | undefined, "optional">;
3170
+ autoGenerated: import("convex/values").VBoolean<boolean, "required">;
3171
+ status: import("convex/values").VUnion<"pending" | "processing" | "completed" | "failed", [import("convex/values").VLiteral<"pending", "required">, import("convex/values").VLiteral<"processing", "required">, import("convex/values").VLiteral<"completed", "required">, import("convex/values").VLiteral<"failed", "required">], "required", never>;
3172
+ errorMessage: import("convex/values").VString<string | undefined, "optional">;
3173
+ processingStartedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3174
+ processingCompletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3175
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3176
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3177
+ }, "required", "format" | "storageId" | "mimeType" | "width" | "height" | "size" | "deletedAt" | "createdBy" | "_creationTime" | "status" | "assetId" | "variantType" | "quality" | "preset" | "autoGenerated" | "errorMessage" | "processingStartedAt" | "processingCompletedAt" | "_id">;
3178
+ export declare const adminMediaVariantWithUrlDoc: import("convex/values").VObject<{
3179
+ width?: number | undefined;
3180
+ height?: number | undefined;
3181
+ deletedAt?: number | undefined;
3182
+ createdBy?: string | undefined;
3183
+ quality?: number | undefined;
3184
+ preset?: string | undefined;
3185
+ errorMessage?: string | undefined;
3186
+ processingStartedAt?: number | undefined;
3187
+ processingCompletedAt?: number | undefined;
3188
+ format: string;
3189
+ storageId: string;
3190
+ mimeType: string;
3191
+ size: number;
3192
+ _creationTime: number;
3193
+ status: "pending" | "processing" | "completed" | "failed";
3194
+ assetId: string;
3195
+ variantType: "thumbnail" | "responsive" | "format";
3196
+ autoGenerated: boolean;
3197
+ url: string | null;
3198
+ _id: string;
3199
+ }, {
3200
+ url: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
3201
+ _id: import("convex/values").VString<string, "required">;
3202
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3203
+ assetId: import("convex/values").VString<string, "required">;
3204
+ storageId: import("convex/values").VString<string, "required">;
3205
+ variantType: import("convex/values").VUnion<"thumbnail" | "responsive" | "format", [import("convex/values").VLiteral<"thumbnail", "required">, import("convex/values").VLiteral<"responsive", "required">, import("convex/values").VLiteral<"format", "required">], "required", never>;
3206
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
3207
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
3208
+ format: import("convex/values").VString<string, "required">;
3209
+ mimeType: import("convex/values").VString<string, "required">;
3210
+ size: import("convex/values").VFloat64<number, "required">;
3211
+ quality: import("convex/values").VFloat64<number | undefined, "optional">;
3212
+ preset: import("convex/values").VString<string | undefined, "optional">;
3213
+ autoGenerated: import("convex/values").VBoolean<boolean, "required">;
3214
+ status: import("convex/values").VUnion<"pending" | "processing" | "completed" | "failed", [import("convex/values").VLiteral<"pending", "required">, import("convex/values").VLiteral<"processing", "required">, import("convex/values").VLiteral<"completed", "required">, import("convex/values").VLiteral<"failed", "required">], "required", never>;
3215
+ errorMessage: import("convex/values").VString<string | undefined, "optional">;
3216
+ processingStartedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3217
+ processingCompletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3218
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3219
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3220
+ }, "required", "format" | "storageId" | "mimeType" | "width" | "height" | "size" | "deletedAt" | "createdBy" | "_creationTime" | "status" | "assetId" | "variantType" | "quality" | "preset" | "autoGenerated" | "errorMessage" | "processingStartedAt" | "processingCompletedAt" | "url" | "_id">;
3221
+ export declare const adminVariantPresetValidator: import("convex/values").VObject<{
3222
+ description?: string | undefined;
3223
+ width?: number | undefined;
3224
+ height?: number | undefined;
3225
+ quality?: number | undefined;
3226
+ format: string;
3227
+ name: string;
3228
+ variantType: "thumbnail" | "responsive" | "format";
3229
+ }, {
3230
+ name: import("convex/values").VString<string, "required">;
3231
+ variantType: import("convex/values").VUnion<"thumbnail" | "responsive" | "format", [import("convex/values").VLiteral<"thumbnail", "required">, import("convex/values").VLiteral<"responsive", "required">, import("convex/values").VLiteral<"format", "required">], "required", never>;
3232
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
3233
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
3234
+ format: import("convex/values").VString<string, "required">;
3235
+ quality: import("convex/values").VFloat64<number | undefined, "optional">;
3236
+ description: import("convex/values").VString<string | undefined, "optional">;
3237
+ }, "required", "format" | "name" | "description" | "width" | "height" | "variantType" | "quality">;
3238
+ export declare const adminGenerateVariantsResult: import("convex/values").VObject<{
3239
+ failed: number;
3240
+ total: number;
3241
+ succeeded: number;
3242
+ results: {
3243
+ error?: string | undefined;
3244
+ variantId?: string | undefined;
3245
+ preset: string;
3246
+ success: boolean;
3247
+ }[];
3248
+ }, {
3249
+ total: import("convex/values").VFloat64<number, "required">;
3250
+ succeeded: import("convex/values").VFloat64<number, "required">;
3251
+ failed: import("convex/values").VFloat64<number, "required">;
3252
+ results: import("convex/values").VArray<{
3253
+ error?: string | undefined;
3254
+ variantId?: string | undefined;
3255
+ preset: string;
3256
+ success: boolean;
3257
+ }[], import("convex/values").VObject<{
3258
+ error?: string | undefined;
3259
+ variantId?: string | undefined;
3260
+ preset: string;
3261
+ success: boolean;
3262
+ }, {
3263
+ preset: import("convex/values").VString<string, "required">;
3264
+ success: import("convex/values").VBoolean<boolean, "required">;
3265
+ variantId: import("convex/values").VString<string | undefined, "optional">;
3266
+ error: import("convex/values").VString<string | undefined, "optional">;
3267
+ }, "required", "preset" | "success" | "error" | "variantId">, "required">;
3268
+ }, "required", "failed" | "total" | "succeeded" | "results">;
3269
+ export declare const adminResponsiveSrcsetResult: import("convex/values").VObject<{
3270
+ sizes?: string | undefined;
3271
+ entries: {
3272
+ format: string;
3273
+ width: number;
3274
+ url: string;
3275
+ descriptor: string;
3276
+ }[];
3277
+ src: string | null;
3278
+ srcset: string;
3279
+ }, {
3280
+ src: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
3281
+ srcset: import("convex/values").VString<string, "required">;
3282
+ entries: import("convex/values").VArray<{
3283
+ format: string;
3284
+ width: number;
3285
+ url: string;
3286
+ descriptor: string;
3287
+ }[], import("convex/values").VObject<{
3288
+ format: string;
3289
+ width: number;
3290
+ url: string;
3291
+ descriptor: string;
3292
+ }, {
3293
+ url: import("convex/values").VString<string, "required">;
3294
+ descriptor: import("convex/values").VString<string, "required">;
3295
+ width: import("convex/values").VFloat64<number, "required">;
3296
+ format: import("convex/values").VString<string, "required">;
3297
+ }, "required", "format" | "width" | "url" | "descriptor">, "required">;
3298
+ sizes: import("convex/values").VString<string | undefined, "optional">;
3299
+ }, "required", "entries" | "src" | "srcset" | "sizes">;
3300
+ export declare const adminAssetWithVariantsResult: import("convex/values").VObject<{
3301
+ asset: {
3302
+ tags?: string[] | undefined;
3303
+ description?: string | undefined;
3304
+ width?: number | undefined;
3305
+ height?: number | undefined;
3306
+ duration?: number | undefined;
3307
+ altText?: string | undefined;
3308
+ title?: string | undefined;
3309
+ parentId?: string | undefined;
3310
+ size?: number | undefined;
3311
+ metadata?: Record<string, any> | undefined;
3312
+ deletedAt?: number | undefined;
3313
+ createdBy?: string | undefined;
3314
+ updatedBy?: string | undefined;
3315
+ searchText?: string | undefined;
3316
+ name: string;
3317
+ kind: "asset";
3318
+ storageId: string;
3319
+ mimeType: string;
3320
+ path: string;
3321
+ _creationTime: number;
3322
+ _id: string;
3323
+ };
3324
+ variants: {
3325
+ width?: number | undefined;
3326
+ height?: number | undefined;
3327
+ deletedAt?: number | undefined;
3328
+ createdBy?: string | undefined;
3329
+ quality?: number | undefined;
3330
+ preset?: string | undefined;
3331
+ errorMessage?: string | undefined;
3332
+ processingStartedAt?: number | undefined;
3333
+ processingCompletedAt?: number | undefined;
3334
+ format: string;
3335
+ storageId: string;
3336
+ mimeType: string;
3337
+ size: number;
3338
+ _creationTime: number;
3339
+ status: "pending" | "processing" | "completed" | "failed";
3340
+ assetId: string;
3341
+ variantType: "thumbnail" | "responsive" | "format";
3342
+ autoGenerated: boolean;
3343
+ url: string | null;
3344
+ _id: string;
3345
+ }[];
3346
+ originalUrl: string | null;
3347
+ }, {
3348
+ asset: import("convex/values").VObject<{
3349
+ tags?: string[] | undefined;
3350
+ description?: string | undefined;
3351
+ width?: number | undefined;
3352
+ height?: number | undefined;
3353
+ duration?: number | undefined;
3354
+ altText?: string | undefined;
3355
+ title?: string | undefined;
3356
+ parentId?: string | undefined;
3357
+ size?: number | undefined;
3358
+ metadata?: Record<string, any> | undefined;
3359
+ deletedAt?: number | undefined;
3360
+ createdBy?: string | undefined;
3361
+ updatedBy?: string | undefined;
3362
+ searchText?: string | undefined;
3363
+ name: string;
3364
+ kind: "asset";
3365
+ storageId: string;
3366
+ mimeType: string;
3367
+ path: string;
3368
+ _creationTime: number;
3369
+ _id: string;
3370
+ }, {
3371
+ _id: import("convex/values").VString<string, "required">;
3372
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3373
+ parentId: import("convex/values").VString<string | undefined, "optional">;
3374
+ storageId: import("convex/values").VString<string, "required">;
3375
+ kind: import("convex/values").VLiteral<"asset", "required">;
3376
+ mimeType: import("convex/values").VString<string, "required">;
3377
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
3378
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
3379
+ duration: import("convex/values").VFloat64<number | undefined, "optional">;
3380
+ altText: import("convex/values").VString<string | undefined, "optional">;
3381
+ name: import("convex/values").VString<string, "required">;
3382
+ title: import("convex/values").VString<string | undefined, "optional">;
3383
+ description: import("convex/values").VString<string | undefined, "optional">;
3384
+ path: import("convex/values").VString<string, "required">;
3385
+ tags: import("convex/values").VArray<string[] | undefined, import("convex/values").VString<string, "required">, "optional">;
3386
+ size: import("convex/values").VFloat64<number | undefined, "optional">;
3387
+ metadata: import("convex/values").VRecord<Record<string, any> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "optional", string>;
3388
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3389
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3390
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3391
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3392
+ }, "required", "tags" | "name" | "description" | "kind" | "storageId" | "mimeType" | "width" | "height" | "duration" | "altText" | "title" | "parentId" | "path" | "size" | "metadata" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | `metadata.${string}` | "_creationTime" | "_id">;
3393
+ variants: import("convex/values").VArray<{
3394
+ width?: number | undefined;
3395
+ height?: number | undefined;
3396
+ deletedAt?: number | undefined;
3397
+ createdBy?: string | undefined;
3398
+ quality?: number | undefined;
3399
+ preset?: string | undefined;
3400
+ errorMessage?: string | undefined;
3401
+ processingStartedAt?: number | undefined;
3402
+ processingCompletedAt?: number | undefined;
3403
+ format: string;
3404
+ storageId: string;
3405
+ mimeType: string;
3406
+ size: number;
3407
+ _creationTime: number;
3408
+ status: "pending" | "processing" | "completed" | "failed";
3409
+ assetId: string;
3410
+ variantType: "thumbnail" | "responsive" | "format";
3411
+ autoGenerated: boolean;
3412
+ url: string | null;
3413
+ _id: string;
3414
+ }[], import("convex/values").VObject<{
3415
+ width?: number | undefined;
3416
+ height?: number | undefined;
3417
+ deletedAt?: number | undefined;
3418
+ createdBy?: string | undefined;
3419
+ quality?: number | undefined;
3420
+ preset?: string | undefined;
3421
+ errorMessage?: string | undefined;
3422
+ processingStartedAt?: number | undefined;
3423
+ processingCompletedAt?: number | undefined;
3424
+ format: string;
3425
+ storageId: string;
3426
+ mimeType: string;
3427
+ size: number;
3428
+ _creationTime: number;
3429
+ status: "pending" | "processing" | "completed" | "failed";
3430
+ assetId: string;
3431
+ variantType: "thumbnail" | "responsive" | "format";
3432
+ autoGenerated: boolean;
3433
+ url: string | null;
3434
+ _id: string;
3435
+ }, {
3436
+ url: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
3437
+ _id: import("convex/values").VString<string, "required">;
3438
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3439
+ assetId: import("convex/values").VString<string, "required">;
3440
+ storageId: import("convex/values").VString<string, "required">;
3441
+ variantType: import("convex/values").VUnion<"thumbnail" | "responsive" | "format", [import("convex/values").VLiteral<"thumbnail", "required">, import("convex/values").VLiteral<"responsive", "required">, import("convex/values").VLiteral<"format", "required">], "required", never>;
3442
+ width: import("convex/values").VFloat64<number | undefined, "optional">;
3443
+ height: import("convex/values").VFloat64<number | undefined, "optional">;
3444
+ format: import("convex/values").VString<string, "required">;
3445
+ mimeType: import("convex/values").VString<string, "required">;
3446
+ size: import("convex/values").VFloat64<number, "required">;
3447
+ quality: import("convex/values").VFloat64<number | undefined, "optional">;
3448
+ preset: import("convex/values").VString<string | undefined, "optional">;
3449
+ autoGenerated: import("convex/values").VBoolean<boolean, "required">;
3450
+ status: import("convex/values").VUnion<"pending" | "processing" | "completed" | "failed", [import("convex/values").VLiteral<"pending", "required">, import("convex/values").VLiteral<"processing", "required">, import("convex/values").VLiteral<"completed", "required">, import("convex/values").VLiteral<"failed", "required">], "required", never>;
3451
+ errorMessage: import("convex/values").VString<string | undefined, "optional">;
3452
+ processingStartedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3453
+ processingCompletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3454
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3455
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3456
+ }, "required", "format" | "storageId" | "mimeType" | "width" | "height" | "size" | "deletedAt" | "createdBy" | "_creationTime" | "status" | "assetId" | "variantType" | "quality" | "preset" | "autoGenerated" | "errorMessage" | "processingStartedAt" | "processingCompletedAt" | "url" | "_id">, "required">;
3457
+ originalUrl: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
3458
+ }, "required", "asset" | "variants" | "originalUrl" | "asset.tags" | "asset.name" | "asset.description" | "asset.kind" | "asset.storageId" | "asset.mimeType" | "asset.width" | "asset.height" | "asset.duration" | "asset.altText" | "asset.title" | "asset.parentId" | "asset.path" | "asset.size" | "asset.metadata" | "asset.deletedAt" | "asset.createdBy" | "asset.updatedBy" | "asset.searchText" | `asset.metadata.${string}` | "asset._creationTime" | "asset._id">;
3459
+ export declare const adminTaxonomyDoc: import("convex/values").VObject<{
3460
+ description?: string | undefined;
3461
+ deletedAt?: number | undefined;
3462
+ createdBy?: string | undefined;
3463
+ updatedBy?: string | undefined;
3464
+ sortOrder?: number | undefined;
3465
+ icon?: string | undefined;
3466
+ name: string;
3467
+ displayName: string;
3468
+ isActive: boolean;
3469
+ _creationTime: number;
3470
+ isHierarchical: boolean;
3471
+ allowInlineCreation: boolean;
3472
+ _id: string;
3473
+ }, {
3474
+ _id: import("convex/values").VString<string, "required">;
3475
+ name: import("convex/values").VString<string, "required">;
3476
+ displayName: import("convex/values").VString<string, "required">;
3477
+ description: import("convex/values").VString<string | undefined, "optional">;
3478
+ isHierarchical: import("convex/values").VBoolean<boolean, "required">;
3479
+ allowInlineCreation: import("convex/values").VBoolean<boolean, "required">;
3480
+ icon: import("convex/values").VString<string | undefined, "optional">;
3481
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
3482
+ isActive: import("convex/values").VBoolean<boolean, "required">;
3483
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3484
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3485
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3486
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3487
+ }, "required", "name" | "description" | "deletedAt" | "createdBy" | "updatedBy" | "sortOrder" | "displayName" | "icon" | "isActive" | "_creationTime" | "isHierarchical" | "allowInlineCreation" | "_id">;
3488
+ export declare const adminTaxonomyTermDoc: import("convex/values").VObject<{
3489
+ description?: string | undefined;
3490
+ parentId?: string | undefined;
3491
+ path?: string | undefined;
3492
+ deletedAt?: number | undefined;
3493
+ createdBy?: string | undefined;
3494
+ updatedBy?: string | undefined;
3495
+ searchText?: string | undefined;
3496
+ sortOrder?: number | undefined;
3497
+ icon?: string | undefined;
3498
+ color?: string | undefined;
3499
+ name: string;
3500
+ taxonomyId: string;
3501
+ _creationTime: number;
3502
+ slug: string;
3503
+ depth: number;
3504
+ usageCount: number;
3505
+ _id: string;
3506
+ }, {
3507
+ _id: import("convex/values").VString<string, "required">;
3508
+ taxonomyId: import("convex/values").VString<string, "required">;
3509
+ parentId: import("convex/values").VString<string | undefined, "optional">;
3510
+ slug: import("convex/values").VString<string, "required">;
3511
+ name: import("convex/values").VString<string, "required">;
3512
+ description: import("convex/values").VString<string | undefined, "optional">;
3513
+ path: import("convex/values").VString<string | undefined, "optional">;
3514
+ depth: import("convex/values").VFloat64<number, "required">;
3515
+ color: import("convex/values").VString<string | undefined, "optional">;
3516
+ icon: import("convex/values").VString<string | undefined, "optional">;
3517
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
3518
+ usageCount: import("convex/values").VFloat64<number, "required">;
3519
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3520
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3521
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3522
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3523
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3524
+ }, "required", "name" | "description" | "taxonomyId" | "parentId" | "path" | "deletedAt" | "createdBy" | "updatedBy" | "searchText" | "sortOrder" | "icon" | "_creationTime" | "slug" | "depth" | "color" | "usageCount" | "_id">;
3525
+ export declare const adminTermHierarchyNode: import("convex/values").VObject<{
3526
+ description?: string | undefined;
3527
+ sortOrder?: number | undefined;
3528
+ icon?: string | undefined;
3529
+ color?: string | undefined;
3530
+ name: string;
3531
+ slug: string;
3532
+ depth: number;
3533
+ usageCount: number;
3534
+ _id: string;
3535
+ children: any[];
3536
+ }, {
3537
+ _id: import("convex/values").VString<string, "required">;
3538
+ name: import("convex/values").VString<string, "required">;
3539
+ slug: import("convex/values").VString<string, "required">;
3540
+ description: import("convex/values").VString<string | undefined, "optional">;
3541
+ color: import("convex/values").VString<string | undefined, "optional">;
3542
+ icon: import("convex/values").VString<string | undefined, "optional">;
3543
+ sortOrder: import("convex/values").VFloat64<number | undefined, "optional">;
3544
+ usageCount: import("convex/values").VFloat64<number, "required">;
3545
+ depth: import("convex/values").VFloat64<number, "required">;
3546
+ children: import("convex/values").VArray<any[], import("convex/values").VAny<any, "required", string>, "required">;
3547
+ }, "required", "name" | "description" | "sortOrder" | "icon" | "slug" | "depth" | "color" | "usageCount" | "_id" | "children">;
3548
+ export declare const adminTrashConfigDoc: import("convex/values").VObject<{
3549
+ updatedBy?: string | undefined;
3550
+ lastCleanupAt?: number | undefined;
3551
+ lastCleanupCount?: number | undefined;
3552
+ _id?: string | undefined;
3553
+ _creationTime: number;
3554
+ retentionDays: number;
3555
+ autoCleanupEnabled: boolean;
3556
+ }, {
3557
+ _id: import("convex/values").VString<string | undefined, "optional">;
3558
+ retentionDays: import("convex/values").VFloat64<number, "required">;
3559
+ autoCleanupEnabled: import("convex/values").VBoolean<boolean, "required">;
3560
+ lastCleanupAt: import("convex/values").VFloat64<number | undefined, "optional">;
3561
+ lastCleanupCount: import("convex/values").VFloat64<number | undefined, "optional">;
3562
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3563
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3564
+ }, "required", "updatedBy" | "_creationTime" | "retentionDays" | "autoCleanupEnabled" | "lastCleanupAt" | "lastCleanupCount" | "_id">;
3565
+ export declare const adminTrashItemDoc: import("convex/values").VObject<{
3566
+ deletedAt?: number | undefined;
3567
+ createdBy?: string | undefined;
3568
+ updatedBy?: string | undefined;
3569
+ searchText?: string | undefined;
3570
+ locale?: string | undefined;
3571
+ primaryEntryId?: string | undefined;
3572
+ scheduledPublishAt?: number | undefined;
3573
+ firstPublishedAt?: number | undefined;
3574
+ lastPublishedAt?: number | undefined;
3575
+ lockedBy?: string | undefined;
3576
+ lockExpiresAt?: number | undefined;
3577
+ contentTypeName?: string | undefined;
3578
+ expiresAt?: number | undefined;
3579
+ _creationTime: number;
3580
+ contentTypeId: string;
3581
+ slug: string;
3582
+ status: string;
3583
+ data: any;
3584
+ version: number;
3585
+ _id: string;
3586
+ deletedDaysAgo: number;
3587
+ }, {
3588
+ deletedDaysAgo: import("convex/values").VFloat64<number, "required">;
3589
+ expiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
3590
+ contentTypeName: import("convex/values").VString<string | undefined, "optional">;
3591
+ _id: import("convex/values").VString<string, "required">;
3592
+ contentTypeId: import("convex/values").VString<string, "required">;
3593
+ primaryEntryId: import("convex/values").VString<string | undefined, "optional">;
3594
+ slug: import("convex/values").VString<string, "required">;
3595
+ status: import("convex/values").VString<string, "required">;
3596
+ data: import("convex/values").VAny<any, "required", string>;
3597
+ locale: import("convex/values").VString<string | undefined, "optional">;
3598
+ version: import("convex/values").VFloat64<number, "required">;
3599
+ scheduledPublishAt: import("convex/values").VFloat64<number | undefined, "optional">;
3600
+ firstPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3601
+ lastPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3602
+ lockedBy: import("convex/values").VString<string | undefined, "optional">;
3603
+ lockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
3604
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3605
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3606
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3607
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3608
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3609
+ }, "required", "deletedAt" | "createdBy" | "updatedBy" | "searchText" | "_creationTime" | "contentTypeId" | "slug" | "status" | "data" | "locale" | "primaryEntryId" | "version" | "scheduledPublishAt" | "firstPublishedAt" | "lastPublishedAt" | "lockedBy" | "lockExpiresAt" | `data.${string}` | "_id" | "contentTypeName" | "deletedDaysAgo" | "expiresAt">;
3610
+ export declare const adminTrashStatsDoc: import("convex/values").VObject<{
3611
+ oldestItemDaysAgo?: number | undefined;
3612
+ totalItems: number;
3613
+ byContentType: {
3614
+ contentTypeId: string;
3615
+ contentTypeName: string;
3616
+ count: number;
3617
+ }[];
3618
+ expiringWithin7Days: number;
3619
+ }, {
3620
+ totalItems: import("convex/values").VFloat64<number, "required">;
3621
+ byContentType: import("convex/values").VArray<{
3622
+ contentTypeId: string;
3623
+ contentTypeName: string;
3624
+ count: number;
3625
+ }[], import("convex/values").VObject<{
3626
+ contentTypeId: string;
3627
+ contentTypeName: string;
3628
+ count: number;
3629
+ }, {
3630
+ contentTypeId: import("convex/values").VString<string, "required">;
3631
+ contentTypeName: import("convex/values").VString<string, "required">;
3632
+ count: import("convex/values").VFloat64<number, "required">;
3633
+ }, "required", "contentTypeId" | "contentTypeName" | "count">, "required">;
3634
+ expiringWithin7Days: import("convex/values").VFloat64<number, "required">;
3635
+ oldestItemDaysAgo: import("convex/values").VFloat64<number | undefined, "optional">;
3636
+ }, "required", "totalItems" | "byContentType" | "expiringWithin7Days" | "oldestItemDaysAgo">;
3637
+ export declare const adminEmptyTrashResult: import("convex/values").VObject<{
3638
+ deletedCount: number;
3639
+ deletedVersionsCount: number;
3640
+ errors: {
3641
+ id: string;
3642
+ error: string;
3643
+ }[];
3644
+ }, {
3645
+ deletedCount: import("convex/values").VFloat64<number, "required">;
3646
+ deletedVersionsCount: import("convex/values").VFloat64<number, "required">;
3647
+ errors: import("convex/values").VArray<{
3648
+ id: string;
3649
+ error: string;
3650
+ }[], import("convex/values").VObject<{
3651
+ id: string;
3652
+ error: string;
3653
+ }, {
3654
+ id: import("convex/values").VString<string, "required">;
3655
+ error: import("convex/values").VString<string, "required">;
3656
+ }, "required", "id" | "error">, "required">;
3657
+ }, "required", "deletedCount" | "deletedVersionsCount" | "errors">;
3658
+ export declare const adminLockStatusDoc: import("convex/values").VObject<{
3659
+ lockedBy?: string | undefined;
3660
+ lockExpiresAt?: number | undefined;
3661
+ timeRemaining?: number | undefined;
3662
+ isExpired?: boolean | undefined;
3663
+ isLocked: boolean;
3664
+ }, {
3665
+ isLocked: import("convex/values").VBoolean<boolean, "required">;
3666
+ lockedBy: import("convex/values").VString<string | undefined, "optional">;
3667
+ lockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
3668
+ timeRemaining: import("convex/values").VFloat64<number | undefined, "optional">;
3669
+ isExpired: import("convex/values").VBoolean<boolean | undefined, "optional">;
3670
+ }, "required", "lockedBy" | "lockExpiresAt" | "isLocked" | "timeRemaining" | "isExpired">;
3671
+ export declare const adminLockAcquisitionResult: import("convex/values").VObject<{
3672
+ error?: string | undefined;
3673
+ entry?: {
3674
+ deletedAt?: number | undefined;
3675
+ createdBy?: string | undefined;
3676
+ updatedBy?: string | undefined;
3677
+ searchText?: string | undefined;
3678
+ locale?: string | undefined;
3679
+ primaryEntryId?: string | undefined;
3680
+ scheduledPublishAt?: number | undefined;
3681
+ firstPublishedAt?: number | undefined;
3682
+ lastPublishedAt?: number | undefined;
3683
+ lockedBy?: string | undefined;
3684
+ lockExpiresAt?: number | undefined;
3685
+ _creationTime: number;
3686
+ contentTypeId: string;
3687
+ slug: string;
3688
+ status: string;
3689
+ data: any;
3690
+ version: number;
3691
+ _id: string;
3692
+ } | undefined;
3693
+ currentLockHolder?: string | undefined;
3694
+ currentLockExpiresAt?: number | undefined;
3695
+ success: boolean;
3696
+ }, {
3697
+ success: import("convex/values").VBoolean<boolean, "required">;
3698
+ entry: import("convex/values").VObject<{
3699
+ deletedAt?: number | undefined;
3700
+ createdBy?: string | undefined;
3701
+ updatedBy?: string | undefined;
3702
+ searchText?: string | undefined;
3703
+ locale?: string | undefined;
3704
+ primaryEntryId?: string | undefined;
3705
+ scheduledPublishAt?: number | undefined;
3706
+ firstPublishedAt?: number | undefined;
3707
+ lastPublishedAt?: number | undefined;
3708
+ lockedBy?: string | undefined;
3709
+ lockExpiresAt?: number | undefined;
3710
+ _creationTime: number;
3711
+ contentTypeId: string;
3712
+ slug: string;
3713
+ status: string;
3714
+ data: any;
3715
+ version: number;
3716
+ _id: string;
3717
+ } | undefined, {
3718
+ _id: import("convex/values").VString<string, "required">;
3719
+ contentTypeId: import("convex/values").VString<string, "required">;
3720
+ primaryEntryId: import("convex/values").VString<string | undefined, "optional">;
3721
+ slug: import("convex/values").VString<string, "required">;
3722
+ status: import("convex/values").VString<string, "required">;
3723
+ data: import("convex/values").VAny<any, "required", string>;
3724
+ locale: import("convex/values").VString<string | undefined, "optional">;
3725
+ version: import("convex/values").VFloat64<number, "required">;
3726
+ scheduledPublishAt: import("convex/values").VFloat64<number | undefined, "optional">;
3727
+ firstPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3728
+ lastPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3729
+ lockedBy: import("convex/values").VString<string | undefined, "optional">;
3730
+ lockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
3731
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3732
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3733
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3734
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3735
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3736
+ }, "optional", "deletedAt" | "createdBy" | "updatedBy" | "searchText" | "_creationTime" | "contentTypeId" | "slug" | "status" | "data" | "locale" | "primaryEntryId" | "version" | "scheduledPublishAt" | "firstPublishedAt" | "lastPublishedAt" | "lockedBy" | "lockExpiresAt" | `data.${string}` | "_id">;
3737
+ error: import("convex/values").VString<string | undefined, "optional">;
3738
+ currentLockHolder: import("convex/values").VString<string | undefined, "optional">;
3739
+ currentLockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
3740
+ }, "required", "success" | "error" | "entry" | "currentLockHolder" | "currentLockExpiresAt" | "entry.deletedAt" | "entry.createdBy" | "entry.updatedBy" | "entry.searchText" | "entry._creationTime" | "entry.contentTypeId" | "entry.slug" | "entry.status" | "entry.data" | "entry.locale" | "entry.primaryEntryId" | "entry.version" | "entry.scheduledPublishAt" | "entry.firstPublishedAt" | "entry.lastPublishedAt" | "entry.lockedBy" | "entry.lockExpiresAt" | `entry.data.${string}` | "entry._id">;
3741
+ export declare const adminLockedEntryDoc: import("convex/values").VObject<{
3742
+ deletedAt?: number | undefined;
3743
+ createdBy?: string | undefined;
3744
+ updatedBy?: string | undefined;
3745
+ searchText?: string | undefined;
3746
+ locale?: string | undefined;
3747
+ primaryEntryId?: string | undefined;
3748
+ scheduledPublishAt?: number | undefined;
3749
+ firstPublishedAt?: number | undefined;
3750
+ lastPublishedAt?: number | undefined;
3751
+ lockedBy?: string | undefined;
3752
+ lockExpiresAt?: number | undefined;
3753
+ contentTypeName?: string | undefined;
3754
+ _creationTime: number;
3755
+ contentTypeId: string;
3756
+ slug: string;
3757
+ status: string;
3758
+ data: any;
3759
+ version: number;
3760
+ _id: string;
3761
+ }, {
3762
+ contentTypeName: import("convex/values").VString<string | undefined, "optional">;
3763
+ _id: import("convex/values").VString<string, "required">;
3764
+ contentTypeId: import("convex/values").VString<string, "required">;
3765
+ primaryEntryId: import("convex/values").VString<string | undefined, "optional">;
3766
+ slug: import("convex/values").VString<string, "required">;
3767
+ status: import("convex/values").VString<string, "required">;
3768
+ data: import("convex/values").VAny<any, "required", string>;
3769
+ locale: import("convex/values").VString<string | undefined, "optional">;
3770
+ version: import("convex/values").VFloat64<number, "required">;
3771
+ scheduledPublishAt: import("convex/values").VFloat64<number | undefined, "optional">;
3772
+ firstPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3773
+ lastPublishedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3774
+ lockedBy: import("convex/values").VString<string | undefined, "optional">;
3775
+ lockExpiresAt: import("convex/values").VFloat64<number | undefined, "optional">;
3776
+ deletedAt: import("convex/values").VFloat64<number | undefined, "optional">;
3777
+ createdBy: import("convex/values").VString<string | undefined, "optional">;
3778
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3779
+ searchText: import("convex/values").VString<string | undefined, "optional">;
3780
+ _creationTime: import("convex/values").VFloat64<number, "required">;
3781
+ }, "required", "deletedAt" | "createdBy" | "updatedBy" | "searchText" | "_creationTime" | "contentTypeId" | "slug" | "status" | "data" | "locale" | "primaryEntryId" | "version" | "scheduledPublishAt" | "firstPublishedAt" | "lastPublishedAt" | "lockedBy" | "lockExpiresAt" | `data.${string}` | "_id" | "contentTypeName">;
3782
+ export declare const adminBulkOperationItemResult: import("convex/values").VObject<{
3783
+ error?: string | undefined;
3784
+ id: string;
3785
+ success: boolean;
3786
+ }, {
3787
+ id: import("convex/values").VString<string, "required">;
3788
+ success: import("convex/values").VBoolean<boolean, "required">;
3789
+ error: import("convex/values").VString<string | undefined, "optional">;
3790
+ }, "required", "id" | "success" | "error">;
3791
+ export declare const adminBulkOperationResult: import("convex/values").VObject<{
3792
+ failed: number;
3793
+ total: number;
3794
+ succeeded: number;
3795
+ results: {
3796
+ error?: string | undefined;
3797
+ id: string;
3798
+ success: boolean;
3799
+ }[];
3800
+ }, {
3801
+ total: import("convex/values").VFloat64<number, "required">;
3802
+ succeeded: import("convex/values").VFloat64<number, "required">;
3803
+ failed: import("convex/values").VFloat64<number, "required">;
3804
+ results: import("convex/values").VArray<{
3805
+ error?: string | undefined;
3806
+ id: string;
3807
+ success: boolean;
3808
+ }[], import("convex/values").VObject<{
3809
+ error?: string | undefined;
3810
+ id: string;
3811
+ success: boolean;
3812
+ }, {
3813
+ id: import("convex/values").VString<string, "required">;
3814
+ success: import("convex/values").VBoolean<boolean, "required">;
3815
+ error: import("convex/values").VString<string | undefined, "optional">;
3816
+ }, "required", "id" | "success" | "error">, "required">;
3817
+ }, "required", "failed" | "total" | "succeeded" | "results">;
3818
+ export declare const adminDashboardStatsDoc: import("convex/values").VObject<{
3819
+ published: number;
3820
+ contentTypes: number;
3821
+ contentEntries: number;
3822
+ mediaAssets: number;
3823
+ }, {
3824
+ contentTypes: import("convex/values").VFloat64<number, "required">;
3825
+ contentEntries: import("convex/values").VFloat64<number, "required">;
3826
+ mediaAssets: import("convex/values").VFloat64<number, "required">;
3827
+ published: import("convex/values").VFloat64<number, "required">;
3828
+ }, "required", "published" | "contentTypes" | "contentEntries" | "mediaAssets">;
3829
+ export declare const adminSettingsDoc: import("convex/values").VObject<{
3830
+ updatedBy?: string | undefined;
3831
+ _creationTime?: number | undefined;
3832
+ _id: string | null;
3833
+ defaultLocale: string;
3834
+ features: {
3835
+ versioning: boolean;
3836
+ scheduling: boolean;
3837
+ localization: boolean;
3838
+ mediaManagement: boolean;
3839
+ };
3840
+ availableLocales: string[];
3841
+ }, {
3842
+ _id: import("convex/values").VUnion<string | null, [import("convex/values").VString<string, "required">, import("convex/values").VNull<null, "required">], "required", never>;
3843
+ _creationTime: import("convex/values").VFloat64<number | undefined, "optional">;
3844
+ defaultLocale: import("convex/values").VString<string, "required">;
3845
+ availableLocales: import("convex/values").VArray<string[], import("convex/values").VString<string, "required">, "required">;
3846
+ features: import("convex/values").VObject<{
3847
+ versioning: boolean;
3848
+ scheduling: boolean;
3849
+ localization: boolean;
3850
+ mediaManagement: boolean;
3851
+ }, {
3852
+ versioning: import("convex/values").VBoolean<boolean, "required">;
3853
+ scheduling: import("convex/values").VBoolean<boolean, "required">;
3854
+ localization: import("convex/values").VBoolean<boolean, "required">;
3855
+ mediaManagement: import("convex/values").VBoolean<boolean, "required">;
3856
+ }, "required", "versioning" | "scheduling" | "localization" | "mediaManagement">;
3857
+ updatedBy: import("convex/values").VString<string | undefined, "optional">;
3858
+ }, "required", "updatedBy" | "_creationTime" | "_id" | "defaultLocale" | "features" | "availableLocales" | "features.versioning" | "features.scheduling" | "features.localization" | "features.mediaManagement">;
3859
+ export type AdminContentType = Infer<typeof adminContentTypeDoc>;
3860
+ export type AdminContentTypeWithCount = Infer<typeof adminContentTypeWithCountDoc>;
3861
+ export type AdminContentEntry = Infer<typeof adminContentEntryDoc>;
3862
+ export type AdminContentVersion = Infer<typeof adminContentVersionDoc>;
3863
+ export type AdminMediaItem = Infer<typeof adminMediaItemDoc>;
3864
+ export type AdminMediaAsset = Infer<typeof adminMediaAssetDoc>;
3865
+ export type AdminMediaFolder = Infer<typeof adminMediaFolderDoc>;
3866
+ export type AdminMediaVariant = Infer<typeof adminMediaVariantDoc>;
3867
+ export type AdminMediaVariantWithUrl = Infer<typeof adminMediaVariantWithUrlDoc>;
3868
+ export type AdminTaxonomy = Infer<typeof adminTaxonomyDoc>;
3869
+ export type AdminTaxonomyTerm = Infer<typeof adminTaxonomyTermDoc>;
3870
+ export type AdminTrashConfig = Infer<typeof adminTrashConfigDoc>;
3871
+ export type AdminTrashItem = Infer<typeof adminTrashItemDoc>;
3872
+ export type AdminTrashStats = Infer<typeof adminTrashStatsDoc>;
3873
+ export type AdminLockStatus = Infer<typeof adminLockStatusDoc>;
3874
+ export type AdminLockAcquisitionResult = Infer<typeof adminLockAcquisitionResult>;
3875
+ export type AdminBulkOperationResult = Infer<typeof adminBulkOperationResult>;
3876
+ export type AdminDashboardStats = Infer<typeof adminDashboardStatsDoc>;
3877
+ export type AdminSettings = Infer<typeof adminSettingsDoc>;
3878
+ export type AdminDeleteContentTypeResult = Infer<typeof adminDeleteContentTypeResult>;
3879
+ export type AdminDeleteContentEntryResult = Infer<typeof adminDeleteContentEntryResult>;
3880
+ export type AdminDeleteMediaAssetResult = Infer<typeof adminDeleteMediaAssetResult>;
3881
+ export type AdminMoveMediaAssetsResult = Infer<typeof adminMoveMediaAssetsResult>;
3882
+ export type AdminEmptyTrashResult = Infer<typeof adminEmptyTrashResult>;
3883
+ export type AdminCompareVersionsResult = Infer<typeof adminCompareVersionsResult>;
3884
+ export type AdminGenerateVariantsResult = Infer<typeof adminGenerateVariantsResult>;
3885
+ export type AdminResponsiveSrcsetResult = Infer<typeof adminResponsiveSrcsetResult>;
3886
+ //# sourceMappingURL=validators.d.ts.map