@prismicio/types-internal 3.17.0 → 4.0.0-canary.72def6d

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 (709) hide show
  1. package/README.md +41 -25
  2. package/dist/common/asset.d.ts +22 -0
  3. package/dist/common/asset.d.ts.map +1 -0
  4. package/dist/common/asset.js +21 -0
  5. package/dist/common/asset.js.map +1 -0
  6. package/dist/common/embed.d.ts +21 -0
  7. package/dist/common/embed.d.ts.map +1 -0
  8. package/dist/common/embed.js +20 -0
  9. package/dist/common/embed.js.map +1 -0
  10. package/dist/common/hexaColorCode.d.ts +8 -0
  11. package/dist/common/hexaColorCode.d.ts.map +1 -0
  12. package/dist/common/hexaColorCode.js +8 -0
  13. package/dist/common/hexaColorCode.js.map +1 -0
  14. package/dist/common/nonEmptyString.d.ts +8 -0
  15. package/dist/common/nonEmptyString.d.ts.map +1 -0
  16. package/dist/common/nonEmptyString.js +7 -0
  17. package/dist/common/nonEmptyString.js.map +1 -0
  18. package/dist/common/widgetKey.d.ts +8 -0
  19. package/dist/common/widgetKey.d.ts.map +1 -0
  20. package/dist/common/widgetKey.js +8 -0
  21. package/dist/common/widgetKey.js.map +1 -0
  22. package/dist/content/boolean.d.ts +11 -0
  23. package/dist/content/boolean.d.ts.map +1 -0
  24. package/dist/content/boolean.js +11 -0
  25. package/dist/content/boolean.js.map +1 -0
  26. package/dist/content/codec/boolean.js +31 -0
  27. package/dist/content/codec/boolean.js.map +1 -0
  28. package/dist/content/codec/document.js +49 -0
  29. package/dist/content/codec/document.js.map +1 -0
  30. package/dist/content/codec/embed.js +42 -0
  31. package/dist/content/codec/embed.js.map +1 -0
  32. package/dist/content/codec/empty.js +35 -0
  33. package/dist/content/codec/empty.js.map +1 -0
  34. package/dist/content/codec/field.js +41 -0
  35. package/dist/content/codec/field.js.map +1 -0
  36. package/dist/content/codec/geopoint.js +32 -0
  37. package/dist/content/codec/geopoint.js.map +1 -0
  38. package/dist/content/codec/group.js +127 -0
  39. package/dist/content/codec/group.js.map +1 -0
  40. package/dist/content/codec/image.js +44 -0
  41. package/dist/content/codec/image.js.map +1 -0
  42. package/dist/content/codec/integrationField.js +31 -0
  43. package/dist/content/codec/integrationField.js.map +1 -0
  44. package/dist/content/codec/legacyContentCtx.d.ts +72 -0
  45. package/dist/content/codec/legacyContentCtx.d.ts.map +1 -0
  46. package/dist/content/codec/legacyContentCtx.js +76 -0
  47. package/dist/content/codec/legacyContentCtx.js.map +1 -0
  48. package/dist/content/codec/link.js +93 -0
  49. package/dist/content/codec/link.js.map +1 -0
  50. package/dist/content/codec/nestable.js +91 -0
  51. package/dist/content/codec/nestable.js.map +1 -0
  52. package/dist/content/codec/repeatable.js +56 -0
  53. package/dist/content/codec/repeatable.js.map +1 -0
  54. package/dist/content/codec/richText.js +87 -0
  55. package/dist/content/codec/richText.js.map +1 -0
  56. package/dist/content/codec/separator.js +26 -0
  57. package/dist/content/codec/separator.js.map +1 -0
  58. package/dist/content/codec/slice.js +220 -0
  59. package/dist/content/codec/slice.js.map +1 -0
  60. package/dist/content/codec/slices.js +106 -0
  61. package/dist/content/codec/slices.js.map +1 -0
  62. package/dist/content/codec/table.js +56 -0
  63. package/dist/content/codec/table.js.map +1 -0
  64. package/dist/content/codec/uid.js +31 -0
  65. package/dist/content/codec/uid.js.map +1 -0
  66. package/dist/content/codec/widget.js +39 -0
  67. package/dist/content/codec/widget.js.map +1 -0
  68. package/dist/content/document.d.ts +3026 -0
  69. package/dist/content/document.d.ts.map +1 -0
  70. package/dist/content/document.js +9 -0
  71. package/dist/content/document.js.map +1 -0
  72. package/dist/content/embed.d.ts +24 -0
  73. package/dist/content/embed.d.ts.map +1 -0
  74. package/dist/content/embed.js +12 -0
  75. package/dist/content/embed.js.map +1 -0
  76. package/dist/content/empty.d.ts +11 -0
  77. package/dist/content/empty.d.ts.map +1 -0
  78. package/dist/content/empty.js +11 -0
  79. package/dist/content/empty.js.map +1 -0
  80. package/dist/content/field.d.ts +78 -0
  81. package/dist/content/field.d.ts.map +1 -0
  82. package/dist/content/field.js +52 -0
  83. package/dist/content/field.js.map +1 -0
  84. package/dist/content/geopoint.d.ts +14 -0
  85. package/dist/content/geopoint.d.ts.map +1 -0
  86. package/dist/content/geopoint.js +9 -0
  87. package/dist/content/geopoint.js.map +1 -0
  88. package/dist/content/group.d.ts +18 -0
  89. package/dist/content/group.d.ts.map +1 -0
  90. package/dist/content/group.js +19 -0
  91. package/dist/content/group.js.map +1 -0
  92. package/dist/content/image.d.ts +52 -0
  93. package/dist/content/image.d.ts.map +1 -0
  94. package/dist/content/image.js +10 -0
  95. package/dist/content/image.js.map +1 -0
  96. package/dist/content/integrationField.d.ts +11 -0
  97. package/dist/content/integrationField.d.ts.map +1 -0
  98. package/dist/content/integrationField.js +11 -0
  99. package/dist/content/integrationField.js.map +1 -0
  100. package/dist/content/legacy/boolean.js +7 -0
  101. package/dist/content/legacy/boolean.js.map +1 -0
  102. package/dist/content/legacy/document.js +15 -0
  103. package/dist/content/legacy/document.js.map +1 -0
  104. package/dist/content/legacy/embed.js +23 -0
  105. package/dist/content/legacy/embed.js.map +1 -0
  106. package/dist/content/legacy/empty.js +7 -0
  107. package/dist/content/legacy/empty.js.map +1 -0
  108. package/dist/content/legacy/field.js +7 -0
  109. package/dist/content/legacy/field.js.map +1 -0
  110. package/dist/content/legacy/geopoint.js +10 -0
  111. package/dist/content/legacy/geopoint.js.map +1 -0
  112. package/dist/content/legacy/group.js +10 -0
  113. package/dist/content/legacy/group.js.map +1 -0
  114. package/dist/content/legacy/image.d.ts +1 -0
  115. package/dist/content/legacy/image.js +33 -0
  116. package/dist/content/legacy/image.js.map +1 -0
  117. package/dist/content/legacy/integrationField.js +7 -0
  118. package/dist/content/legacy/integrationField.js.map +1 -0
  119. package/dist/content/legacy/link.js +88 -0
  120. package/dist/content/legacy/link.js.map +1 -0
  121. package/dist/content/legacy/nestable.js +32 -0
  122. package/dist/content/legacy/nestable.js.map +1 -0
  123. package/dist/content/legacy/repeatable.js +13 -0
  124. package/dist/content/legacy/repeatable.js.map +1 -0
  125. package/dist/content/legacy/richText.js +100 -0
  126. package/dist/content/legacy/richText.js.map +1 -0
  127. package/dist/content/legacy/separator.js +7 -0
  128. package/dist/content/legacy/separator.js.map +1 -0
  129. package/dist/content/legacy/slice.js +23 -0
  130. package/dist/content/legacy/slice.js.map +1 -0
  131. package/dist/content/legacy/slices.js +13 -0
  132. package/dist/content/legacy/slices.js.map +1 -0
  133. package/dist/content/legacy/table.js +19 -0
  134. package/dist/content/legacy/table.js.map +1 -0
  135. package/dist/content/legacy/uid.js +7 -0
  136. package/dist/content/legacy/uid.js.map +1 -0
  137. package/dist/content/link.d.ts +188 -0
  138. package/dist/content/link.d.ts.map +1 -0
  139. package/dist/content/link.js +50 -0
  140. package/dist/content/link.js.map +1 -0
  141. package/dist/content/nestable.d.ts +755 -0
  142. package/dist/content/nestable.d.ts.map +1 -0
  143. package/dist/content/nestable.js +38 -0
  144. package/dist/content/nestable.js.map +1 -0
  145. package/dist/content/repeatable.d.ts +192 -0
  146. package/dist/content/repeatable.d.ts.map +1 -0
  147. package/dist/content/repeatable.js +13 -0
  148. package/dist/content/repeatable.js.map +1 -0
  149. package/dist/content/richText.d.ts +141 -0
  150. package/dist/content/richText.d.ts.map +1 -0
  151. package/dist/content/richText.js +23 -0
  152. package/dist/content/richText.js.map +1 -0
  153. package/dist/content/separator.d.ts +10 -0
  154. package/dist/content/separator.d.ts.map +1 -0
  155. package/dist/content/separator.js +8 -0
  156. package/dist/content/separator.js.map +1 -0
  157. package/dist/content/slice.d.ts +4527 -0
  158. package/dist/content/slice.d.ts.map +1 -0
  159. package/dist/content/slice.js +27 -0
  160. package/dist/content/slice.js.map +1 -0
  161. package/dist/content/slices.d.ts +4536 -0
  162. package/dist/content/slices.d.ts.map +1 -0
  163. package/dist/content/slices.js +18 -0
  164. package/dist/content/slices.js.map +1 -0
  165. package/dist/content/table.d.ts +153 -0
  166. package/dist/content/table.d.ts.map +1 -0
  167. package/dist/content/table.js +13 -0
  168. package/dist/content/table.js.map +1 -0
  169. package/dist/content/uid.d.ts +11 -0
  170. package/dist/content/uid.d.ts.map +1 -0
  171. package/dist/content/uid.js +11 -0
  172. package/dist/content/uid.js.map +1 -0
  173. package/dist/content/widget.d.ts +3026 -0
  174. package/dist/content/widget.d.ts.map +1 -0
  175. package/dist/content/widget.js +16 -0
  176. package/dist/content/widget.js.map +1 -0
  177. package/dist/index.d.ts +50 -0
  178. package/dist/index.js +2 -0
  179. package/dist/io-ts.d.ts +68728 -0
  180. package/dist/io-ts.d.ts.map +1 -0
  181. package/dist/io-ts.js +215 -0
  182. package/dist/io-ts.js.map +1 -0
  183. package/dist/model/boolean.d.ts +16 -0
  184. package/dist/model/boolean.d.ts.map +1 -0
  185. package/dist/model/boolean.js +16 -0
  186. package/dist/model/boolean.js.map +1 -0
  187. package/dist/model/color.d.ts +15 -0
  188. package/dist/model/color.d.ts.map +1 -0
  189. package/dist/model/color.js +15 -0
  190. package/dist/model/color.js.map +1 -0
  191. package/dist/model/customType.d.ts +3357 -0
  192. package/dist/model/customType.d.ts.map +1 -0
  193. package/dist/model/customType.js +18 -0
  194. package/dist/model/customType.js.map +1 -0
  195. package/dist/model/date.d.ts +16 -0
  196. package/dist/model/date.d.ts.map +1 -0
  197. package/dist/model/date.js +16 -0
  198. package/dist/model/date.js.map +1 -0
  199. package/dist/model/embed.d.ts +16 -0
  200. package/dist/model/embed.d.ts.map +1 -0
  201. package/dist/model/embed.js +16 -0
  202. package/dist/model/embed.js.map +1 -0
  203. package/dist/model/geopoint.d.ts +14 -0
  204. package/dist/model/geopoint.d.ts.map +1 -0
  205. package/dist/model/geopoint.js +12 -0
  206. package/dist/model/geopoint.js.map +1 -0
  207. package/dist/model/group.d.ts +568 -0
  208. package/dist/model/group.d.ts.map +1 -0
  209. package/dist/model/group.js +23 -0
  210. package/dist/model/group.js.map +1 -0
  211. package/dist/model/image.d.ts +24 -0
  212. package/dist/model/image.d.ts.map +1 -0
  213. package/dist/model/image.js +41 -0
  214. package/dist/model/image.js.map +1 -0
  215. package/dist/model/integrationField.d.ts +16 -0
  216. package/dist/model/integrationField.d.ts.map +1 -0
  217. package/dist/model/integrationField.js +16 -0
  218. package/dist/model/integrationField.js.map +1 -0
  219. package/dist/model/link.d.ts +48 -0
  220. package/dist/model/link.d.ts.map +1 -0
  221. package/dist/model/link.js +94 -0
  222. package/dist/model/link.js.map +1 -0
  223. package/dist/model/nestable.d.ts +184 -0
  224. package/dist/model/nestable.d.ts.map +1 -0
  225. package/dist/model/nestable.js +40 -0
  226. package/dist/model/nestable.js.map +1 -0
  227. package/dist/model/number.d.ts +18 -0
  228. package/dist/model/number.d.ts.map +1 -0
  229. package/dist/model/number.js +19 -0
  230. package/dist/model/number.js.map +1 -0
  231. package/dist/model/range.d.ts +18 -0
  232. package/dist/model/range.d.ts.map +1 -0
  233. package/dist/model/range.js +19 -0
  234. package/dist/model/range.js.map +1 -0
  235. package/dist/model/richText.d.ts +28 -0
  236. package/dist/model/richText.d.ts.map +1 -0
  237. package/dist/model/richText.js +72 -0
  238. package/dist/model/richText.js.map +1 -0
  239. package/dist/model/section.d.ts +3337 -0
  240. package/dist/model/section.d.ts.map +1 -0
  241. package/dist/model/section.js +10 -0
  242. package/dist/model/section.js.map +1 -0
  243. package/dist/model/select.d.ts +17 -0
  244. package/dist/model/select.d.ts.map +1 -0
  245. package/dist/model/select.js +22 -0
  246. package/dist/model/select.js.map +1 -0
  247. package/dist/model/separator.d.ts +13 -0
  248. package/dist/model/separator.d.ts.map +1 -0
  249. package/dist/model/separator.js +11 -0
  250. package/dist/model/separator.js.map +1 -0
  251. package/dist/model/slice.d.ts +3681 -0
  252. package/dist/model/slice.d.ts.map +1 -0
  253. package/dist/model/slice.js +54 -0
  254. package/dist/model/slice.js.map +1 -0
  255. package/dist/model/slices.d.ts +2225 -0
  256. package/dist/model/slices.d.ts.map +1 -0
  257. package/dist/model/slices.js +29 -0
  258. package/dist/model/slices.js.map +1 -0
  259. package/dist/model/table.d.ts +13 -0
  260. package/dist/model/table.d.ts.map +1 -0
  261. package/dist/model/table.js +17 -0
  262. package/dist/model/table.js.map +1 -0
  263. package/dist/model/text.d.ts +16 -0
  264. package/dist/model/text.d.ts.map +1 -0
  265. package/dist/model/text.js +16 -0
  266. package/dist/model/text.js.map +1 -0
  267. package/dist/model/timestamp.d.ts +16 -0
  268. package/dist/model/timestamp.d.ts.map +1 -0
  269. package/dist/model/timestamp.js +16 -0
  270. package/dist/model/timestamp.js.map +1 -0
  271. package/dist/model/uid.d.ts +16 -0
  272. package/dist/model/uid.d.ts.map +1 -0
  273. package/dist/model/uid.js +16 -0
  274. package/dist/model/uid.js.map +1 -0
  275. package/dist/model/widget.d.ts +3360 -0
  276. package/dist/model/widget.d.ts.map +1 -0
  277. package/dist/model/widget.js +44 -0
  278. package/dist/model/widget.js.map +1 -0
  279. package/dist/zod4.d.ts +33521 -0
  280. package/dist/zod4.d.ts.map +1 -0
  281. package/dist/zod4.js +127 -0
  282. package/dist/zod4.js.map +1 -0
  283. package/package.json +54 -58
  284. package/src/common/asset.ts +29 -0
  285. package/src/common/embed.ts +27 -0
  286. package/src/common/hexaColorCode.ts +11 -0
  287. package/src/common/nonEmptyString.ts +9 -0
  288. package/src/common/widgetKey.ts +11 -0
  289. package/src/content/boolean.ts +23 -0
  290. package/src/content/codec/boolean.ts +38 -0
  291. package/src/content/codec/document.ts +60 -0
  292. package/src/content/codec/embed.ts +55 -0
  293. package/src/content/codec/empty.ts +49 -0
  294. package/src/content/codec/field.ts +96 -0
  295. package/src/content/codec/geopoint.ts +40 -0
  296. package/src/content/codec/group.ts +163 -0
  297. package/src/content/codec/image.ts +50 -0
  298. package/src/content/codec/integrationField.ts +38 -0
  299. package/src/content/{LegacyContentCtx.ts → codec/legacyContentCtx.ts} +25 -15
  300. package/src/content/codec/link.ts +103 -0
  301. package/src/content/codec/nestable.ts +146 -0
  302. package/src/content/codec/repeatable.ts +68 -0
  303. package/src/content/codec/richText.ts +113 -0
  304. package/src/content/codec/separator.ts +33 -0
  305. package/src/content/codec/slice.ts +274 -0
  306. package/src/content/codec/slices.ts +130 -0
  307. package/src/content/codec/table.ts +65 -0
  308. package/src/content/codec/uid.ts +36 -0
  309. package/src/content/codec/widget.ts +58 -0
  310. package/src/content/document.ts +8 -0
  311. package/src/content/embed.ts +12 -0
  312. package/src/content/empty.ts +10 -0
  313. package/src/content/field.ts +87 -0
  314. package/src/content/geopoint.ts +11 -0
  315. package/src/content/group.ts +96 -0
  316. package/src/content/image.ts +103 -0
  317. package/src/content/integrationField.ts +10 -0
  318. package/src/content/legacy/boolean.ts +5 -0
  319. package/src/content/legacy/document.ts +25 -0
  320. package/src/content/legacy/embed.ts +23 -0
  321. package/src/content/legacy/empty.ts +10 -0
  322. package/src/content/legacy/field.ts +8 -0
  323. package/src/content/legacy/geopoint.ts +10 -0
  324. package/src/content/legacy/group.ts +15 -0
  325. package/src/content/legacy/image.ts +43 -0
  326. package/src/content/legacy/integrationField.ts +5 -0
  327. package/src/content/legacy/link.ts +171 -0
  328. package/src/content/legacy/nestable.ts +31 -0
  329. package/src/content/legacy/repeatable.ts +20 -0
  330. package/src/content/legacy/richText.ts +165 -0
  331. package/src/content/legacy/separator.ts +6 -0
  332. package/src/content/legacy/slice.ts +37 -0
  333. package/src/content/legacy/slices.ts +17 -0
  334. package/src/content/legacy/table.ts +39 -0
  335. package/src/content/legacy/uid.ts +6 -0
  336. package/src/content/legacy/widget.ts +15 -0
  337. package/src/content/link.ts +131 -0
  338. package/src/content/nestable.ts +64 -0
  339. package/src/content/repeatable.ts +13 -0
  340. package/src/content/richText.ts +32 -0
  341. package/src/content/separator.ts +9 -0
  342. package/src/content/slice.ts +41 -0
  343. package/src/content/slices.ts +23 -0
  344. package/src/content/table.ts +14 -0
  345. package/src/content/uid.ts +10 -0
  346. package/src/content/utils.ts +37 -105
  347. package/src/content/widget.ts +17 -0
  348. package/src/content/{fields/withDefaultValues.ts → withDefaultValues.ts} +34 -39
  349. package/src/index.ts +78 -0
  350. package/src/io-ts.ts +313 -0
  351. package/src/model/boolean.ts +15 -0
  352. package/src/model/color.ts +14 -0
  353. package/src/model/customType.ts +26 -0
  354. package/src/model/date.ts +15 -0
  355. package/src/model/diff/index.ts +4 -0
  356. package/src/{customtypes/diff/SharedSlice.ts → model/diff/sharedSlice.ts} +16 -18
  357. package/src/model/diff/utils.ts +45 -0
  358. package/src/model/diff/variation.ts +152 -0
  359. package/src/model/diff/widgets.ts +15 -0
  360. package/src/model/embed.ts +15 -0
  361. package/src/model/geopoint.ts +13 -0
  362. package/src/model/group.ts +36 -0
  363. package/src/model/image.ts +54 -0
  364. package/src/model/integrationField.ts +15 -0
  365. package/src/model/link.ts +147 -0
  366. package/src/model/nestable.ts +39 -0
  367. package/src/model/number.ts +26 -0
  368. package/src/model/range.ts +26 -0
  369. package/src/model/richText.ts +106 -0
  370. package/src/model/section.ts +12 -0
  371. package/src/model/select.ts +30 -0
  372. package/src/model/separator.ts +12 -0
  373. package/src/model/slice.ts +94 -0
  374. package/src/model/slices.ts +54 -0
  375. package/src/model/table.ts +20 -0
  376. package/src/model/text.ts +15 -0
  377. package/src/model/timestamp.ts +15 -0
  378. package/src/model/uid.ts +15 -0
  379. package/src/model/widget.ts +52 -0
  380. package/src/zod4.ts +153 -0
  381. package/lib/common/Asset.d.ts +0 -16
  382. package/lib/common/Asset.js +0 -11
  383. package/lib/common/Embed.d.ts +0 -15
  384. package/lib/common/Embed.js +0 -10
  385. package/lib/common/HexaColorCode.d.ts +0 -4
  386. package/lib/common/HexaColorCode.js +0 -7
  387. package/lib/common/UUID.d.ts +0 -6
  388. package/lib/common/UUID.js +0 -8
  389. package/lib/common/WidgetKey.d.ts +0 -3
  390. package/lib/common/WidgetKey.js +0 -8
  391. package/lib/common/index.d.ts +0 -3
  392. package/lib/common/index.js +0 -6
  393. package/lib/content/Document.d.ts +0 -11813
  394. package/lib/content/Document.js +0 -364
  395. package/lib/content/LegacyContentCtx.d.ts +0 -64
  396. package/lib/content/LegacyContentCtx.js +0 -130
  397. package/lib/content/fields/EmptyContent.d.ts +0 -16
  398. package/lib/content/fields/EmptyContent.js +0 -30
  399. package/lib/content/fields/GroupContent.d.ts +0 -53
  400. package/lib/content/fields/GroupContent.js +0 -307
  401. package/lib/content/fields/UIDContent.d.ts +0 -16
  402. package/lib/content/fields/UIDContent.js +0 -25
  403. package/lib/content/fields/WidgetContent.d.ts +0 -11749
  404. package/lib/content/fields/WidgetContent.js +0 -57
  405. package/lib/content/fields/index.d.ts +0 -6
  406. package/lib/content/fields/index.js +0 -9
  407. package/lib/content/fields/nestable/BooleanContent.d.ts +0 -18
  408. package/lib/content/fields/nestable/BooleanContent.js +0 -35
  409. package/lib/content/fields/nestable/EmbedContent.d.ts +0 -78
  410. package/lib/content/fields/nestable/EmbedContent.js +0 -56
  411. package/lib/content/fields/nestable/FieldContent/ColorContent.d.ts +0 -18
  412. package/lib/content/fields/nestable/FieldContent/ColorContent.js +0 -35
  413. package/lib/content/fields/nestable/FieldContent/DateContent.d.ts +0 -18
  414. package/lib/content/fields/nestable/FieldContent/DateContent.js +0 -35
  415. package/lib/content/fields/nestable/FieldContent/NumberContent.d.ts +0 -18
  416. package/lib/content/fields/nestable/FieldContent/NumberContent.js +0 -35
  417. package/lib/content/fields/nestable/FieldContent/RangeContent.d.ts +0 -18
  418. package/lib/content/fields/nestable/FieldContent/RangeContent.js +0 -35
  419. package/lib/content/fields/nestable/FieldContent/SelectContent.d.ts +0 -20
  420. package/lib/content/fields/nestable/FieldContent/SelectContent.js +0 -46
  421. package/lib/content/fields/nestable/FieldContent/TextContent.d.ts +0 -18
  422. package/lib/content/fields/nestable/FieldContent/TextContent.js +0 -35
  423. package/lib/content/fields/nestable/FieldContent/TimestampContent.d.ts +0 -18
  424. package/lib/content/fields/nestable/FieldContent/TimestampContent.js +0 -35
  425. package/lib/content/fields/nestable/FieldContent/common.d.ts +0 -1
  426. package/lib/content/fields/nestable/FieldContent/common.js +0 -4
  427. package/lib/content/fields/nestable/FieldContent/index.d.ts +0 -49
  428. package/lib/content/fields/nestable/FieldContent/index.js +0 -38
  429. package/lib/content/fields/nestable/GeoPointContent.d.ts +0 -33
  430. package/lib/content/fields/nestable/GeoPointContent.js +0 -31
  431. package/lib/content/fields/nestable/ImageContent.d.ts +0 -252
  432. package/lib/content/fields/nestable/ImageContent.js +0 -122
  433. package/lib/content/fields/nestable/IntegrationFieldContent.d.ts +0 -16
  434. package/lib/content/fields/nestable/IntegrationFieldContent.js +0 -28
  435. package/lib/content/fields/nestable/LinkContent.d.ts +0 -919
  436. package/lib/content/fields/nestable/LinkContent.js +0 -399
  437. package/lib/content/fields/nestable/NestableContent.d.ts +0 -1953
  438. package/lib/content/fields/nestable/NestableContent.js +0 -167
  439. package/lib/content/fields/nestable/RepeatableContent.d.ts +0 -182
  440. package/lib/content/fields/nestable/RepeatableContent.js +0 -146
  441. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +0 -1261
  442. package/lib/content/fields/nestable/RichTextContent/Blocks.js +0 -170
  443. package/lib/content/fields/nestable/RichTextContent/index.d.ts +0 -1004
  444. package/lib/content/fields/nestable/RichTextContent/index.js +0 -28
  445. package/lib/content/fields/nestable/SeparatorContent.d.ts +0 -13
  446. package/lib/content/fields/nestable/SeparatorContent.js +0 -22
  447. package/lib/content/fields/nestable/TableContent.d.ts +0 -776
  448. package/lib/content/fields/nestable/TableContent.js +0 -167
  449. package/lib/content/fields/nestable/index.d.ts +0 -12
  450. package/lib/content/fields/nestable/index.js +0 -15
  451. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +0 -3934
  452. package/lib/content/fields/slices/Slice/CompositeSliceContent.js +0 -195
  453. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +0 -774
  454. package/lib/content/fields/slices/Slice/RepeatableContent.js +0 -21
  455. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +0 -3937
  456. package/lib/content/fields/slices/Slice/SharedSliceContent.js +0 -215
  457. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +0 -1962
  458. package/lib/content/fields/slices/Slice/SimpleSliceContent.js +0 -130
  459. package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +0 -1952
  460. package/lib/content/fields/slices/Slice/SlicePrimaryContent.js +0 -30
  461. package/lib/content/fields/slices/Slice/index.d.ts +0 -6810
  462. package/lib/content/fields/slices/Slice/index.js +0 -45
  463. package/lib/content/fields/slices/SliceItem.d.ts +0 -6846
  464. package/lib/content/fields/slices/SliceItem.js +0 -116
  465. package/lib/content/fields/slices/SlicesContent.d.ts +0 -9827
  466. package/lib/content/fields/slices/SlicesContent.js +0 -465
  467. package/lib/content/fields/slices/index.d.ts +0 -3
  468. package/lib/content/fields/slices/index.js +0 -6
  469. package/lib/content/fields/withDefaultValues.d.ts +0 -9
  470. package/lib/content/fields/withDefaultValues.js +0 -79
  471. package/lib/content/helpers.d.ts +0 -9
  472. package/lib/content/helpers.js +0 -22
  473. package/lib/content/index.d.ts +0 -4
  474. package/lib/content/index.js +0 -7
  475. package/lib/content/utils.d.ts +0 -50
  476. package/lib/content/utils.js +0 -35
  477. package/lib/customtypes/CustomType.d.ts +0 -3680
  478. package/lib/customtypes/CustomType.js +0 -184
  479. package/lib/customtypes/Section.d.ts +0 -3635
  480. package/lib/customtypes/Section.js +0 -66
  481. package/lib/customtypes/diff/Changes.d.ts +0 -17
  482. package/lib/customtypes/diff/Changes.js +0 -9
  483. package/lib/customtypes/diff/SharedSlice.d.ts +0 -1624
  484. package/lib/customtypes/diff/SharedSlice.js +0 -55
  485. package/lib/customtypes/diff/Variation.d.ts +0 -1605
  486. package/lib/customtypes/diff/Variation.js +0 -113
  487. package/lib/customtypes/diff/Widgets.d.ts +0 -11
  488. package/lib/customtypes/diff/Widgets.js +0 -2
  489. package/lib/customtypes/diff/index.d.ts +0 -4
  490. package/lib/customtypes/diff/index.js +0 -7
  491. package/lib/customtypes/index.d.ts +0 -4
  492. package/lib/customtypes/index.js +0 -7
  493. package/lib/customtypes/widgets/Group.d.ts +0 -1352
  494. package/lib/customtypes/widgets/Group.js +0 -92
  495. package/lib/customtypes/widgets/UID.d.ts +0 -19
  496. package/lib/customtypes/widgets/UID.js +0 -21
  497. package/lib/customtypes/widgets/Widget.d.ts +0 -4457
  498. package/lib/customtypes/widgets/Widget.js +0 -49
  499. package/lib/customtypes/widgets/index.d.ts +0 -6
  500. package/lib/customtypes/widgets/index.js +0 -9
  501. package/lib/customtypes/widgets/nestable/BooleanField.d.ts +0 -20
  502. package/lib/customtypes/widgets/nestable/BooleanField.js +0 -21
  503. package/lib/customtypes/widgets/nestable/Color.d.ts +0 -17
  504. package/lib/customtypes/widgets/nestable/Color.js +0 -20
  505. package/lib/customtypes/widgets/nestable/Date.d.ts +0 -19
  506. package/lib/customtypes/widgets/nestable/Date.js +0 -21
  507. package/lib/customtypes/widgets/nestable/Embed.d.ts +0 -19
  508. package/lib/customtypes/widgets/nestable/Embed.js +0 -21
  509. package/lib/customtypes/widgets/nestable/GeoPoint.d.ts +0 -15
  510. package/lib/customtypes/widgets/nestable/GeoPoint.js +0 -19
  511. package/lib/customtypes/widgets/nestable/Image.d.ts +0 -44
  512. package/lib/customtypes/widgets/nestable/Image.js +0 -29
  513. package/lib/customtypes/widgets/nestable/IntegrationField.d.ts +0 -19
  514. package/lib/customtypes/widgets/nestable/IntegrationField.js +0 -21
  515. package/lib/customtypes/widgets/nestable/Link.d.ts +0 -196
  516. package/lib/customtypes/widgets/nestable/Link.js +0 -167
  517. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +0 -217
  518. package/lib/customtypes/widgets/nestable/NestableWidget.js +0 -39
  519. package/lib/customtypes/widgets/nestable/Number.d.ts +0 -23
  520. package/lib/customtypes/widgets/nestable/Number.js +0 -24
  521. package/lib/customtypes/widgets/nestable/Range.d.ts +0 -23
  522. package/lib/customtypes/widgets/nestable/Range.js +0 -24
  523. package/lib/customtypes/widgets/nestable/RichText.d.ts +0 -73
  524. package/lib/customtypes/widgets/nestable/RichText.js +0 -131
  525. package/lib/customtypes/widgets/nestable/Select.d.ts +0 -21
  526. package/lib/customtypes/widgets/nestable/Select.js +0 -22
  527. package/lib/customtypes/widgets/nestable/Separator.d.ts +0 -14
  528. package/lib/customtypes/widgets/nestable/Separator.js +0 -18
  529. package/lib/customtypes/widgets/nestable/Table.d.ts +0 -21
  530. package/lib/customtypes/widgets/nestable/Table.js +0 -30
  531. package/lib/customtypes/widgets/nestable/Text.d.ts +0 -19
  532. package/lib/customtypes/widgets/nestable/Text.js +0 -21
  533. package/lib/customtypes/widgets/nestable/Timestamp.d.ts +0 -19
  534. package/lib/customtypes/widgets/nestable/Timestamp.js +0 -21
  535. package/lib/customtypes/widgets/nestable/index.d.ts +0 -17
  536. package/lib/customtypes/widgets/nestable/index.js +0 -20
  537. package/lib/customtypes/widgets/shared/ImageConstraint.d.ts +0 -7
  538. package/lib/customtypes/widgets/shared/ImageConstraint.js +0 -31
  539. package/lib/customtypes/widgets/shared/index.d.ts +0 -1
  540. package/lib/customtypes/widgets/shared/index.js +0 -8
  541. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +0 -455
  542. package/lib/customtypes/widgets/slices/CompositeSlice.js +0 -63
  543. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +0 -442
  544. package/lib/customtypes/widgets/slices/LegacySlice.js +0 -12
  545. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +0 -1807
  546. package/lib/customtypes/widgets/slices/SharedSlice.js +0 -118
  547. package/lib/customtypes/widgets/slices/SharedSliceRef.d.ts +0 -5
  548. package/lib/customtypes/widgets/slices/SharedSliceRef.js +0 -9
  549. package/lib/customtypes/widgets/slices/Slice.d.ts +0 -6
  550. package/lib/customtypes/widgets/slices/Slice.js +0 -2
  551. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +0 -1259
  552. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.js +0 -10
  553. package/lib/customtypes/widgets/slices/Slices.d.ts +0 -5917
  554. package/lib/customtypes/widgets/slices/Slices.js +0 -146
  555. package/lib/customtypes/widgets/slices/SlicesTypes.d.ts +0 -6
  556. package/lib/customtypes/widgets/slices/SlicesTypes.js +0 -11
  557. package/lib/customtypes/widgets/slices/index.d.ts +0 -8
  558. package/lib/customtypes/widgets/slices/index.js +0 -11
  559. package/lib/utils/Arrays.d.ts +0 -1
  560. package/lib/utils/Arrays.js +0 -13
  561. package/lib/utils/DocumentId.d.ts +0 -2
  562. package/lib/utils/DocumentId.js +0 -7
  563. package/lib/utils/Fields.d.ts +0 -6
  564. package/lib/utils/Fields.js +0 -2
  565. package/lib/utils/Objects.d.ts +0 -8
  566. package/lib/utils/Objects.js +0 -42
  567. package/lib/utils/index.d.ts +0 -4
  568. package/lib/utils/index.js +0 -8
  569. package/lib/validators/BasicTypes.d.ts +0 -10
  570. package/lib/validators/BasicTypes.js +0 -25
  571. package/lib/validators/DateFromString.d.ts +0 -3
  572. package/lib/validators/DateFromString.js +0 -11
  573. package/lib/validators/DateFromStringOrNumber.d.ts +0 -3
  574. package/lib/validators/DateFromStringOrNumber.js +0 -10
  575. package/lib/validators/DateFromTsMs.d.ts +0 -3
  576. package/lib/validators/DateFromTsMs.js +0 -10
  577. package/lib/validators/DefaultOrElse.d.ts +0 -5
  578. package/lib/validators/DefaultOrElse.js +0 -21
  579. package/lib/validators/IntFromNumber.d.ts +0 -5
  580. package/lib/validators/IntFromNumber.js +0 -14
  581. package/lib/validators/IntFromPixels.d.ts +0 -8
  582. package/lib/validators/IntFromPixels.js +0 -24
  583. package/lib/validators/NonEmptyString.d.ts +0 -3
  584. package/lib/validators/NonEmptyString.js +0 -6
  585. package/lib/validators/NonEmptyStringOrNull.d.ts +0 -3
  586. package/lib/validators/NonEmptyStringOrNull.js +0 -15
  587. package/lib/validators/NumberOrNull.d.ts +0 -3
  588. package/lib/validators/NumberOrNull.js +0 -6
  589. package/lib/validators/NumberRange.d.ts +0 -32
  590. package/lib/validators/NumberRange.js +0 -40
  591. package/lib/validators/StringFromBoolean.d.ts +0 -5
  592. package/lib/validators/StringFromBoolean.js +0 -10
  593. package/lib/validators/StringFromNumber.d.ts +0 -5
  594. package/lib/validators/StringFromNumber.js +0 -10
  595. package/lib/validators/StringOrNull.d.ts +0 -3
  596. package/lib/validators/StringOrNull.js +0 -6
  597. package/lib/validators/TrimmedString.d.ts +0 -5
  598. package/lib/validators/TrimmedString.js +0 -23
  599. package/lib/validators/function.d.ts +0 -34
  600. package/lib/validators/function.js +0 -100
  601. package/lib/validators/index.d.ts +0 -15
  602. package/lib/validators/index.js +0 -31
  603. package/src/common/Asset.ts +0 -25
  604. package/src/common/Embed.ts +0 -22
  605. package/src/common/HexaColorCode.ts +0 -11
  606. package/src/common/UUID.ts +0 -19
  607. package/src/common/WidgetKey.ts +0 -13
  608. package/src/common/index.ts +0 -3
  609. package/src/content/Document.ts +0 -539
  610. package/src/content/fields/EmptyContent.ts +0 -45
  611. package/src/content/fields/GroupContent.ts +0 -466
  612. package/src/content/fields/UIDContent.ts +0 -42
  613. package/src/content/fields/WidgetContent.ts +0 -76
  614. package/src/content/fields/index.ts +0 -6
  615. package/src/content/fields/nestable/BooleanContent.ts +0 -52
  616. package/src/content/fields/nestable/EmbedContent.ts +0 -74
  617. package/src/content/fields/nestable/FieldContent/ColorContent.ts +0 -49
  618. package/src/content/fields/nestable/FieldContent/DateContent.ts +0 -49
  619. package/src/content/fields/nestable/FieldContent/NumberContent.ts +0 -49
  620. package/src/content/fields/nestable/FieldContent/RangeContent.ts +0 -49
  621. package/src/content/fields/nestable/FieldContent/SelectContent.ts +0 -60
  622. package/src/content/fields/nestable/FieldContent/TextContent.ts +0 -49
  623. package/src/content/fields/nestable/FieldContent/TimestampContent.ts +0 -49
  624. package/src/content/fields/nestable/FieldContent/common.ts +0 -1
  625. package/src/content/fields/nestable/FieldContent/index.ts +0 -40
  626. package/src/content/fields/nestable/GeoPointContent.ts +0 -48
  627. package/src/content/fields/nestable/ImageContent.ts +0 -196
  628. package/src/content/fields/nestable/IntegrationFieldContent.ts +0 -51
  629. package/src/content/fields/nestable/LinkContent.ts +0 -651
  630. package/src/content/fields/nestable/NestableContent.ts +0 -241
  631. package/src/content/fields/nestable/RepeatableContent.ts +0 -224
  632. package/src/content/fields/nestable/RichTextContent/Blocks.ts +0 -238
  633. package/src/content/fields/nestable/RichTextContent/index.ts +0 -42
  634. package/src/content/fields/nestable/SeparatorContent.ts +0 -34
  635. package/src/content/fields/nestable/TableContent.ts +0 -234
  636. package/src/content/fields/nestable/index.ts +0 -12
  637. package/src/content/fields/slices/Slice/CompositeSliceContent.ts +0 -293
  638. package/src/content/fields/slices/Slice/RepeatableContent.ts +0 -29
  639. package/src/content/fields/slices/Slice/SharedSliceContent.ts +0 -305
  640. package/src/content/fields/slices/Slice/SimpleSliceContent.ts +0 -180
  641. package/src/content/fields/slices/Slice/SlicePrimaryContent.ts +0 -40
  642. package/src/content/fields/slices/Slice/index.ts +0 -52
  643. package/src/content/fields/slices/SliceItem.ts +0 -184
  644. package/src/content/fields/slices/SlicesContent.ts +0 -677
  645. package/src/content/fields/slices/index.ts +0 -3
  646. package/src/content/helpers.ts +0 -25
  647. package/src/content/index.ts +0 -4
  648. package/src/customtypes/CustomType.ts +0 -280
  649. package/src/customtypes/Section.ts +0 -98
  650. package/src/customtypes/diff/Variation.ts +0 -167
  651. package/src/customtypes/diff/Widgets.ts +0 -17
  652. package/src/customtypes/diff/index.ts +0 -4
  653. package/src/customtypes/index.ts +0 -4
  654. package/src/customtypes/widgets/Group.ts +0 -120
  655. package/src/customtypes/widgets/UID.ts +0 -27
  656. package/src/customtypes/widgets/Widget.ts +0 -83
  657. package/src/customtypes/widgets/index.ts +0 -6
  658. package/src/customtypes/widgets/nestable/BooleanField.ts +0 -29
  659. package/src/customtypes/widgets/nestable/Color.ts +0 -25
  660. package/src/customtypes/widgets/nestable/Date.ts +0 -27
  661. package/src/customtypes/widgets/nestable/Embed.ts +0 -27
  662. package/src/customtypes/widgets/nestable/GeoPoint.ts +0 -25
  663. package/src/customtypes/widgets/nestable/Image.ts +0 -39
  664. package/src/customtypes/widgets/nestable/IntegrationField.ts +0 -26
  665. package/src/customtypes/widgets/nestable/Link.ts +0 -313
  666. package/src/customtypes/widgets/nestable/NestableWidget.ts +0 -40
  667. package/src/customtypes/widgets/nestable/Number.ts +0 -30
  668. package/src/customtypes/widgets/nestable/Range.ts +0 -30
  669. package/src/customtypes/widgets/nestable/RichText.ts +0 -215
  670. package/src/customtypes/widgets/nestable/Select.ts +0 -34
  671. package/src/customtypes/widgets/nestable/Separator.ts +0 -24
  672. package/src/customtypes/widgets/nestable/Table.ts +0 -38
  673. package/src/customtypes/widgets/nestable/Text.ts +0 -27
  674. package/src/customtypes/widgets/nestable/Timestamp.ts +0 -27
  675. package/src/customtypes/widgets/nestable/index.ts +0 -17
  676. package/src/customtypes/widgets/shared/ImageConstraint.ts +0 -41
  677. package/src/customtypes/widgets/shared/index.ts +0 -1
  678. package/src/customtypes/widgets/slices/CompositeSlice.ts +0 -79
  679. package/src/customtypes/widgets/slices/LegacySlice.ts +0 -15
  680. package/src/customtypes/widgets/slices/SharedSlice.ts +0 -152
  681. package/src/customtypes/widgets/slices/SharedSliceRef.ts +0 -10
  682. package/src/customtypes/widgets/slices/Slice.ts +0 -7
  683. package/src/customtypes/widgets/slices/SlicePrimaryWidget.ts +0 -12
  684. package/src/customtypes/widgets/slices/Slices.ts +0 -184
  685. package/src/customtypes/widgets/slices/SlicesTypes.ts +0 -11
  686. package/src/customtypes/widgets/slices/index.ts +0 -8
  687. package/src/utils/Arrays.ts +0 -12
  688. package/src/utils/DocumentId.ts +0 -8
  689. package/src/utils/Fields.ts +0 -4
  690. package/src/utils/Objects.ts +0 -53
  691. package/src/utils/index.ts +0 -4
  692. package/src/validators/BasicTypes.ts +0 -55
  693. package/src/validators/DateFromString.ts +0 -19
  694. package/src/validators/DateFromStringOrNumber.ts +0 -17
  695. package/src/validators/DateFromTsMs.ts +0 -17
  696. package/src/validators/DefaultOrElse.ts +0 -24
  697. package/src/validators/IntFromNumber.ts +0 -22
  698. package/src/validators/IntFromPixels.ts +0 -32
  699. package/src/validators/NonEmptyString.ts +0 -8
  700. package/src/validators/NonEmptyStringOrNull.ts +0 -22
  701. package/src/validators/NumberOrNull.ts +0 -5
  702. package/src/validators/NumberRange.ts +0 -51
  703. package/src/validators/StringFromBoolean.ts +0 -19
  704. package/src/validators/StringFromNumber.ts +0 -19
  705. package/src/validators/StringOrNull.ts +0 -5
  706. package/src/validators/TrimmedString.ts +0 -33
  707. package/src/validators/function.ts +0 -115
  708. package/src/validators/index.ts +0 -15
  709. /package/src/{customtypes/diff/Changes.ts → model/diff/changes.ts} +0 -0
@@ -0,0 +1,2225 @@
1
+ import { z } from "zod/mini";
2
+
3
+ //#region src/model/slices.d.ts
4
+ declare const StaticSlicesModelSchema: z.ZodMiniObject<{
5
+ type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"Slices">, z.ZodMiniLiteral<"Choice">]>;
6
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
7
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
8
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
9
+ labels: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
10
+ name: z.ZodMiniString<string>;
11
+ display: z.ZodMiniOptional<z.ZodMiniString<string>>;
12
+ }, z.core.$strip>>>, z.ZodMiniNull]>>;
13
+ choices: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
14
+ type: z.ZodMiniLiteral<"Slice">;
15
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
16
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
17
+ icon: z.ZodMiniOptional<z.ZodMiniString<string>>;
18
+ display: z.ZodMiniOptional<z.ZodMiniString<string>>;
19
+ "non-repeat": z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
20
+ type: z.ZodMiniLiteral<"Boolean">;
21
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
22
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
23
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
24
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
25
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
26
+ }, z.core.$strip>>;
27
+ }, z.core.$strip>, z.ZodMiniObject<{
28
+ type: z.ZodMiniLiteral<"Color">;
29
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
30
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
31
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
32
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
33
+ }, z.core.$strip>>;
34
+ }, z.core.$strip>, z.ZodMiniObject<{
35
+ type: z.ZodMiniLiteral<"Date">;
36
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
37
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
38
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
39
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
40
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
41
+ }, z.core.$strip>>;
42
+ }, z.core.$strip>, z.ZodMiniObject<{
43
+ type: z.ZodMiniLiteral<"Embed">;
44
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
45
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
46
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
47
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
48
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
49
+ }, z.core.$strip>>;
50
+ }, z.core.$strip>, z.ZodMiniObject<{
51
+ type: z.ZodMiniLiteral<"GeoPoint">;
52
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
53
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
54
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
55
+ }, z.core.$strip>>;
56
+ }, z.core.$strip>, z.ZodMiniObject<{
57
+ type: z.ZodMiniLiteral<"Image">;
58
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
59
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
60
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
61
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
62
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
63
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
64
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
65
+ }, z.core.$strip>>;
66
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
67
+ name: z.ZodMiniString<string>;
68
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
69
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
70
+ }, z.core.$strip>>>;
71
+ }, z.core.$strip>>;
72
+ }, z.core.$strip>, z.ZodMiniObject<{
73
+ type: z.ZodMiniLiteral<"IntegrationFields">;
74
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
75
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
76
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
77
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
78
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
79
+ }, z.core.$strip>>;
80
+ }, z.core.$strip>, z.ZodMiniObject<{
81
+ type: z.ZodMiniLiteral<"Link">;
82
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
83
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
84
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
85
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
86
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
87
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
88
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
89
+ id: z.ZodMiniString<string>;
90
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
91
+ id: z.ZodMiniString<string>;
92
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
93
+ id: z.ZodMiniString<string>;
94
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
95
+ id: z.ZodMiniString<string>;
96
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
97
+ id: z.ZodMiniString<string>;
98
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
99
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
100
+ }, z.core.$strip>]>>>;
101
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
102
+ }, z.core.$strip>, z.ZodMiniObject<{
103
+ id: z.ZodMiniString<string>;
104
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
105
+ id: z.ZodMiniString<string>;
106
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
107
+ id: z.ZodMiniString<string>;
108
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
109
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
110
+ }, z.core.$strip>]>>>;
111
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
112
+ }, z.core.$strip>]>>>>;
113
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
114
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
115
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
116
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
117
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
118
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
119
+ }, z.core.$strip>>;
120
+ }, z.core.$strip>, z.ZodMiniObject<{
121
+ type: z.ZodMiniLiteral<"Number">;
122
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
123
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
124
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
125
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
126
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
127
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
128
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
129
+ }, z.core.$strip>>;
130
+ }, z.core.$strip>, z.ZodMiniObject<{
131
+ type: z.ZodMiniLiteral<"Range">;
132
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
133
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
134
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
135
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
136
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
137
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
138
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
139
+ }, z.core.$strip>>;
140
+ }, z.core.$strip>, z.ZodMiniObject<{
141
+ type: z.ZodMiniLiteral<"StructuredText">;
142
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
143
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
144
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
145
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
146
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
147
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
148
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
149
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
150
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
151
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
152
+ }, z.core.$strip>>;
153
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
154
+ name: z.ZodMiniString<string>;
155
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
156
+ name: string;
157
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
158
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
159
+ }, z.core.$strip>>;
160
+ }, z.core.$strip>, z.ZodMiniObject<{
161
+ type: z.ZodMiniLiteral<"Select">;
162
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
163
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
164
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
165
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
166
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
167
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
168
+ }, z.core.$strip>>;
169
+ }, z.core.$strip>, z.ZodMiniObject<{
170
+ type: z.ZodMiniLiteral<"Separator">;
171
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
172
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
173
+ }, z.core.$strip>>;
174
+ }, z.core.$strip>, z.ZodMiniObject<{
175
+ type: z.ZodMiniLiteral<"Table">;
176
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
177
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
178
+ }, z.core.$strip>>;
179
+ }, z.core.$strip>, z.ZodMiniObject<{
180
+ type: z.ZodMiniLiteral<"Text">;
181
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
182
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
183
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
184
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
185
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
186
+ }, z.core.$strip>>;
187
+ }, z.core.$strip>, z.ZodMiniObject<{
188
+ type: z.ZodMiniLiteral<"Timestamp">;
189
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
190
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
191
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
192
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
193
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
194
+ }, z.core.$strip>>;
195
+ }, z.core.$strip>]>>>;
196
+ repeat: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
197
+ type: z.ZodMiniLiteral<"Boolean">;
198
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
199
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
200
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
201
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
202
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
203
+ }, z.core.$strip>>;
204
+ }, z.core.$strip>, z.ZodMiniObject<{
205
+ type: z.ZodMiniLiteral<"Color">;
206
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
207
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
208
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
209
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
210
+ }, z.core.$strip>>;
211
+ }, z.core.$strip>, z.ZodMiniObject<{
212
+ type: z.ZodMiniLiteral<"Date">;
213
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
214
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
215
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
216
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
217
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
218
+ }, z.core.$strip>>;
219
+ }, z.core.$strip>, z.ZodMiniObject<{
220
+ type: z.ZodMiniLiteral<"Embed">;
221
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
222
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
223
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
224
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
225
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
226
+ }, z.core.$strip>>;
227
+ }, z.core.$strip>, z.ZodMiniObject<{
228
+ type: z.ZodMiniLiteral<"GeoPoint">;
229
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
230
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
231
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
232
+ }, z.core.$strip>>;
233
+ }, z.core.$strip>, z.ZodMiniObject<{
234
+ type: z.ZodMiniLiteral<"Image">;
235
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
236
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
237
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
238
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
239
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
240
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
241
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
242
+ }, z.core.$strip>>;
243
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
244
+ name: z.ZodMiniString<string>;
245
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
246
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
247
+ }, z.core.$strip>>>;
248
+ }, z.core.$strip>>;
249
+ }, z.core.$strip>, z.ZodMiniObject<{
250
+ type: z.ZodMiniLiteral<"IntegrationFields">;
251
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
252
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
253
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
254
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
255
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
256
+ }, z.core.$strip>>;
257
+ }, z.core.$strip>, z.ZodMiniObject<{
258
+ type: z.ZodMiniLiteral<"Link">;
259
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
260
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
261
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
262
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
263
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
264
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
265
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
266
+ id: z.ZodMiniString<string>;
267
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
268
+ id: z.ZodMiniString<string>;
269
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
270
+ id: z.ZodMiniString<string>;
271
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
272
+ id: z.ZodMiniString<string>;
273
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
274
+ id: z.ZodMiniString<string>;
275
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
276
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
277
+ }, z.core.$strip>]>>>;
278
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
279
+ }, z.core.$strip>, z.ZodMiniObject<{
280
+ id: z.ZodMiniString<string>;
281
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
282
+ id: z.ZodMiniString<string>;
283
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
284
+ id: z.ZodMiniString<string>;
285
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
286
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
287
+ }, z.core.$strip>]>>>;
288
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
289
+ }, z.core.$strip>]>>>>;
290
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
291
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
292
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
293
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
294
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
295
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
296
+ }, z.core.$strip>>;
297
+ }, z.core.$strip>, z.ZodMiniObject<{
298
+ type: z.ZodMiniLiteral<"Number">;
299
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
300
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
301
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
302
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
303
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
304
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
305
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
306
+ }, z.core.$strip>>;
307
+ }, z.core.$strip>, z.ZodMiniObject<{
308
+ type: z.ZodMiniLiteral<"Range">;
309
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
310
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
311
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
312
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
313
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
314
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
315
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
316
+ }, z.core.$strip>>;
317
+ }, z.core.$strip>, z.ZodMiniObject<{
318
+ type: z.ZodMiniLiteral<"StructuredText">;
319
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
320
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
321
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
322
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
323
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
324
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
325
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
326
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
327
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
328
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
329
+ }, z.core.$strip>>;
330
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
331
+ name: z.ZodMiniString<string>;
332
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
333
+ name: string;
334
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
335
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
336
+ }, z.core.$strip>>;
337
+ }, z.core.$strip>, z.ZodMiniObject<{
338
+ type: z.ZodMiniLiteral<"Select">;
339
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
340
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
341
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
342
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
343
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
344
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
345
+ }, z.core.$strip>>;
346
+ }, z.core.$strip>, z.ZodMiniObject<{
347
+ type: z.ZodMiniLiteral<"Separator">;
348
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
349
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
350
+ }, z.core.$strip>>;
351
+ }, z.core.$strip>, z.ZodMiniObject<{
352
+ type: z.ZodMiniLiteral<"Table">;
353
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
354
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
355
+ }, z.core.$strip>>;
356
+ }, z.core.$strip>, z.ZodMiniObject<{
357
+ type: z.ZodMiniLiteral<"Text">;
358
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
359
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
360
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
361
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
362
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
363
+ }, z.core.$strip>>;
364
+ }, z.core.$strip>, z.ZodMiniObject<{
365
+ type: z.ZodMiniLiteral<"Timestamp">;
366
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
367
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
368
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
369
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
370
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
371
+ }, z.core.$strip>>;
372
+ }, z.core.$strip>]>>>;
373
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
374
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
375
+ }, z.core.$strip>>;
376
+ }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
377
+ type: z.ZodMiniLiteral<"Boolean">;
378
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
379
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
380
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
381
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
382
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
383
+ }, z.core.$strip>>;
384
+ }, z.core.$strip>, z.ZodMiniObject<{
385
+ type: z.ZodMiniLiteral<"Color">;
386
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
387
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
388
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
389
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
390
+ }, z.core.$strip>>;
391
+ }, z.core.$strip>, z.ZodMiniObject<{
392
+ type: z.ZodMiniLiteral<"Date">;
393
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
394
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
395
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
396
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
397
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
398
+ }, z.core.$strip>>;
399
+ }, z.core.$strip>, z.ZodMiniObject<{
400
+ type: z.ZodMiniLiteral<"Embed">;
401
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
402
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
403
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
404
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
405
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
406
+ }, z.core.$strip>>;
407
+ }, z.core.$strip>, z.ZodMiniObject<{
408
+ type: z.ZodMiniLiteral<"GeoPoint">;
409
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
410
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
411
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
412
+ }, z.core.$strip>>;
413
+ }, z.core.$strip>, z.ZodMiniObject<{
414
+ type: z.ZodMiniLiteral<"Image">;
415
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
416
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
417
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
418
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
419
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
420
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
421
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
422
+ }, z.core.$strip>>;
423
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
424
+ name: z.ZodMiniString<string>;
425
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
426
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
427
+ }, z.core.$strip>>>;
428
+ }, z.core.$strip>>;
429
+ }, z.core.$strip>, z.ZodMiniObject<{
430
+ type: z.ZodMiniLiteral<"IntegrationFields">;
431
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
432
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
433
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
434
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
435
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
436
+ }, z.core.$strip>>;
437
+ }, z.core.$strip>, z.ZodMiniObject<{
438
+ type: z.ZodMiniLiteral<"Link">;
439
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
440
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
441
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
442
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
443
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
444
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
445
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
446
+ id: z.ZodMiniString<string>;
447
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
448
+ id: z.ZodMiniString<string>;
449
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
450
+ id: z.ZodMiniString<string>;
451
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
452
+ id: z.ZodMiniString<string>;
453
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
454
+ id: z.ZodMiniString<string>;
455
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
456
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
457
+ }, z.core.$strip>]>>>;
458
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
459
+ }, z.core.$strip>, z.ZodMiniObject<{
460
+ id: z.ZodMiniString<string>;
461
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
462
+ id: z.ZodMiniString<string>;
463
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
464
+ id: z.ZodMiniString<string>;
465
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
466
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
467
+ }, z.core.$strip>]>>>;
468
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
469
+ }, z.core.$strip>]>>>>;
470
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
471
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
472
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
473
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
474
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
475
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
476
+ }, z.core.$strip>>;
477
+ }, z.core.$strip>, z.ZodMiniObject<{
478
+ type: z.ZodMiniLiteral<"Number">;
479
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
480
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
481
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
482
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
483
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
484
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
485
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
486
+ }, z.core.$strip>>;
487
+ }, z.core.$strip>, z.ZodMiniObject<{
488
+ type: z.ZodMiniLiteral<"Range">;
489
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
490
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
491
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
492
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
493
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
494
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
495
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
496
+ }, z.core.$strip>>;
497
+ }, z.core.$strip>, z.ZodMiniObject<{
498
+ type: z.ZodMiniLiteral<"StructuredText">;
499
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
500
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
501
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
502
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
503
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
504
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
505
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
506
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
507
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
508
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
509
+ }, z.core.$strip>>;
510
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
511
+ name: z.ZodMiniString<string>;
512
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
513
+ name: string;
514
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
515
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
516
+ }, z.core.$strip>>;
517
+ }, z.core.$strip>, z.ZodMiniObject<{
518
+ type: z.ZodMiniLiteral<"Select">;
519
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
520
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
521
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
522
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
523
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
524
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
525
+ }, z.core.$strip>>;
526
+ }, z.core.$strip>, z.ZodMiniObject<{
527
+ type: z.ZodMiniLiteral<"Separator">;
528
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
529
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
530
+ }, z.core.$strip>>;
531
+ }, z.core.$strip>, z.ZodMiniObject<{
532
+ type: z.ZodMiniLiteral<"Table">;
533
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
534
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
535
+ }, z.core.$strip>>;
536
+ }, z.core.$strip>, z.ZodMiniObject<{
537
+ type: z.ZodMiniLiteral<"Text">;
538
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
539
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
540
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
541
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
542
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
543
+ }, z.core.$strip>>;
544
+ }, z.core.$strip>, z.ZodMiniObject<{
545
+ type: z.ZodMiniLiteral<"Timestamp">;
546
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
547
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
548
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
549
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
550
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
551
+ }, z.core.$strip>>;
552
+ }, z.core.$strip>]>, z.ZodMiniObject<{
553
+ type: z.ZodMiniLiteral<"Group">;
554
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
555
+ icon: z.ZodMiniOptional<z.ZodMiniString<string>>;
556
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
557
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
558
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
559
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
560
+ fields: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
561
+ type: z.ZodMiniLiteral<"Boolean">;
562
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
563
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
564
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
565
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
566
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
567
+ }, z.core.$strip>>;
568
+ }, z.core.$strip>, z.ZodMiniObject<{
569
+ type: z.ZodMiniLiteral<"Color">;
570
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
571
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
572
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
573
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
574
+ }, z.core.$strip>>;
575
+ }, z.core.$strip>, z.ZodMiniObject<{
576
+ type: z.ZodMiniLiteral<"Date">;
577
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
578
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
579
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
580
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
581
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
582
+ }, z.core.$strip>>;
583
+ }, z.core.$strip>, z.ZodMiniObject<{
584
+ type: z.ZodMiniLiteral<"Embed">;
585
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
586
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
587
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
588
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
589
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
590
+ }, z.core.$strip>>;
591
+ }, z.core.$strip>, z.ZodMiniObject<{
592
+ type: z.ZodMiniLiteral<"GeoPoint">;
593
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
594
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
595
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
596
+ }, z.core.$strip>>;
597
+ }, z.core.$strip>, z.ZodMiniObject<{
598
+ type: z.ZodMiniLiteral<"Image">;
599
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
600
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
601
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
602
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
603
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
604
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
605
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
606
+ }, z.core.$strip>>;
607
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
608
+ name: z.ZodMiniString<string>;
609
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
610
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
611
+ }, z.core.$strip>>>;
612
+ }, z.core.$strip>>;
613
+ }, z.core.$strip>, z.ZodMiniObject<{
614
+ type: z.ZodMiniLiteral<"IntegrationFields">;
615
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
616
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
617
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
618
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
619
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
620
+ }, z.core.$strip>>;
621
+ }, z.core.$strip>, z.ZodMiniObject<{
622
+ type: z.ZodMiniLiteral<"Link">;
623
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
624
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
625
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
626
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
627
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
628
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
629
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
630
+ id: z.ZodMiniString<string>;
631
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
632
+ id: z.ZodMiniString<string>;
633
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
634
+ id: z.ZodMiniString<string>;
635
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
636
+ id: z.ZodMiniString<string>;
637
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
638
+ id: z.ZodMiniString<string>;
639
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
640
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
641
+ }, z.core.$strip>]>>>;
642
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
643
+ }, z.core.$strip>, z.ZodMiniObject<{
644
+ id: z.ZodMiniString<string>;
645
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
646
+ id: z.ZodMiniString<string>;
647
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
648
+ id: z.ZodMiniString<string>;
649
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
650
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
651
+ }, z.core.$strip>]>>>;
652
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
653
+ }, z.core.$strip>]>>>>;
654
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
655
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
656
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
657
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
658
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
659
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
660
+ }, z.core.$strip>>;
661
+ }, z.core.$strip>, z.ZodMiniObject<{
662
+ type: z.ZodMiniLiteral<"Number">;
663
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
664
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
665
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
666
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
667
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
668
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
669
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
670
+ }, z.core.$strip>>;
671
+ }, z.core.$strip>, z.ZodMiniObject<{
672
+ type: z.ZodMiniLiteral<"Range">;
673
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
674
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
675
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
676
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
677
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
678
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
679
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
680
+ }, z.core.$strip>>;
681
+ }, z.core.$strip>, z.ZodMiniObject<{
682
+ type: z.ZodMiniLiteral<"StructuredText">;
683
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
684
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
685
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
686
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
687
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
688
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
689
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
690
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
691
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
692
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
693
+ }, z.core.$strip>>;
694
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
695
+ name: z.ZodMiniString<string>;
696
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
697
+ name: string;
698
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
699
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
700
+ }, z.core.$strip>>;
701
+ }, z.core.$strip>, z.ZodMiniObject<{
702
+ type: z.ZodMiniLiteral<"Select">;
703
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
704
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
705
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
706
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
707
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
708
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
709
+ }, z.core.$strip>>;
710
+ }, z.core.$strip>, z.ZodMiniObject<{
711
+ type: z.ZodMiniLiteral<"Separator">;
712
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
713
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
714
+ }, z.core.$strip>>;
715
+ }, z.core.$strip>, z.ZodMiniObject<{
716
+ type: z.ZodMiniLiteral<"Table">;
717
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
718
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
719
+ }, z.core.$strip>>;
720
+ }, z.core.$strip>, z.ZodMiniObject<{
721
+ type: z.ZodMiniLiteral<"Text">;
722
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
723
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
724
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
725
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
726
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
727
+ }, z.core.$strip>>;
728
+ }, z.core.$strip>, z.ZodMiniObject<{
729
+ type: z.ZodMiniLiteral<"Timestamp">;
730
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
731
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
732
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
733
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
734
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
735
+ }, z.core.$strip>>;
736
+ }, z.core.$strip>]>>>;
737
+ }, z.core.$strip>>;
738
+ }, z.core.$strip>]>, z.ZodMiniObject<{
739
+ id: z.ZodMiniString<string>;
740
+ type: z.ZodMiniLiteral<"SharedSlice">;
741
+ name: z.ZodMiniString<string>;
742
+ variations: z.ZodMiniArray<z.ZodMiniObject<{
743
+ id: z.ZodMiniString<string>;
744
+ name: z.ZodMiniString<string>;
745
+ description: z.ZodMiniString<string>;
746
+ imageUrl: z.ZodMiniDefault<z.ZodMiniString<string>>;
747
+ docURL: z.ZodMiniString<string>;
748
+ version: z.ZodMiniString<string>;
749
+ display: z.ZodMiniOptional<z.ZodMiniString<string>>;
750
+ primary: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
751
+ type: z.ZodMiniLiteral<"Boolean">;
752
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
753
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
754
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
755
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
756
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
757
+ }, z.core.$strip>>;
758
+ }, z.core.$strip>, z.ZodMiniObject<{
759
+ type: z.ZodMiniLiteral<"Color">;
760
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
761
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
762
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
763
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
764
+ }, z.core.$strip>>;
765
+ }, z.core.$strip>, z.ZodMiniObject<{
766
+ type: z.ZodMiniLiteral<"Date">;
767
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
768
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
769
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
770
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
771
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
772
+ }, z.core.$strip>>;
773
+ }, z.core.$strip>, z.ZodMiniObject<{
774
+ type: z.ZodMiniLiteral<"Embed">;
775
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
776
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
777
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
778
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
779
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
780
+ }, z.core.$strip>>;
781
+ }, z.core.$strip>, z.ZodMiniObject<{
782
+ type: z.ZodMiniLiteral<"GeoPoint">;
783
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
784
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
785
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
786
+ }, z.core.$strip>>;
787
+ }, z.core.$strip>, z.ZodMiniObject<{
788
+ type: z.ZodMiniLiteral<"Image">;
789
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
790
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
791
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
792
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
793
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
794
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
795
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
796
+ }, z.core.$strip>>;
797
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
798
+ name: z.ZodMiniString<string>;
799
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
800
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
801
+ }, z.core.$strip>>>;
802
+ }, z.core.$strip>>;
803
+ }, z.core.$strip>, z.ZodMiniObject<{
804
+ type: z.ZodMiniLiteral<"IntegrationFields">;
805
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
806
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
807
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
808
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
809
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
810
+ }, z.core.$strip>>;
811
+ }, z.core.$strip>, z.ZodMiniObject<{
812
+ type: z.ZodMiniLiteral<"Link">;
813
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
814
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
815
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
816
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
817
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
818
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
819
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
820
+ id: z.ZodMiniString<string>;
821
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
822
+ id: z.ZodMiniString<string>;
823
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
824
+ id: z.ZodMiniString<string>;
825
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
826
+ id: z.ZodMiniString<string>;
827
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
828
+ id: z.ZodMiniString<string>;
829
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
830
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
831
+ }, z.core.$strip>]>>>;
832
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
833
+ }, z.core.$strip>, z.ZodMiniObject<{
834
+ id: z.ZodMiniString<string>;
835
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
836
+ id: z.ZodMiniString<string>;
837
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
838
+ id: z.ZodMiniString<string>;
839
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
840
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
841
+ }, z.core.$strip>]>>>;
842
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
843
+ }, z.core.$strip>]>>>>;
844
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
845
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
846
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
847
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
848
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
849
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
850
+ }, z.core.$strip>>;
851
+ }, z.core.$strip>, z.ZodMiniObject<{
852
+ type: z.ZodMiniLiteral<"Number">;
853
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
854
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
855
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
856
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
857
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
858
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
859
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
860
+ }, z.core.$strip>>;
861
+ }, z.core.$strip>, z.ZodMiniObject<{
862
+ type: z.ZodMiniLiteral<"Range">;
863
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
864
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
865
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
866
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
867
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
868
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
869
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
870
+ }, z.core.$strip>>;
871
+ }, z.core.$strip>, z.ZodMiniObject<{
872
+ type: z.ZodMiniLiteral<"StructuredText">;
873
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
874
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
875
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
876
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
877
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
878
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
879
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
880
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
881
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
882
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
883
+ }, z.core.$strip>>;
884
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
885
+ name: z.ZodMiniString<string>;
886
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
887
+ name: string;
888
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
889
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
890
+ }, z.core.$strip>>;
891
+ }, z.core.$strip>, z.ZodMiniObject<{
892
+ type: z.ZodMiniLiteral<"Select">;
893
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
894
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
895
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
896
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
897
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
898
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
899
+ }, z.core.$strip>>;
900
+ }, z.core.$strip>, z.ZodMiniObject<{
901
+ type: z.ZodMiniLiteral<"Separator">;
902
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
903
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
904
+ }, z.core.$strip>>;
905
+ }, z.core.$strip>, z.ZodMiniObject<{
906
+ type: z.ZodMiniLiteral<"Table">;
907
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
908
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
909
+ }, z.core.$strip>>;
910
+ }, z.core.$strip>, z.ZodMiniObject<{
911
+ type: z.ZodMiniLiteral<"Text">;
912
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
913
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
914
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
915
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
916
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
917
+ }, z.core.$strip>>;
918
+ }, z.core.$strip>, z.ZodMiniObject<{
919
+ type: z.ZodMiniLiteral<"Timestamp">;
920
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
921
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
922
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
923
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
924
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
925
+ }, z.core.$strip>>;
926
+ }, z.core.$strip>]>, z.ZodMiniObject<{
927
+ type: z.ZodMiniLiteral<"Group">;
928
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
929
+ icon: z.ZodMiniOptional<z.ZodMiniString<string>>;
930
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
931
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
932
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
933
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
934
+ fields: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
935
+ type: z.ZodMiniLiteral<"Boolean">;
936
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
937
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
938
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
939
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
940
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
941
+ }, z.core.$strip>>;
942
+ }, z.core.$strip>, z.ZodMiniObject<{
943
+ type: z.ZodMiniLiteral<"Color">;
944
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
945
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
946
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
947
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
948
+ }, z.core.$strip>>;
949
+ }, z.core.$strip>, z.ZodMiniObject<{
950
+ type: z.ZodMiniLiteral<"Date">;
951
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
952
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
953
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
954
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
955
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
956
+ }, z.core.$strip>>;
957
+ }, z.core.$strip>, z.ZodMiniObject<{
958
+ type: z.ZodMiniLiteral<"Embed">;
959
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
960
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
961
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
962
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
963
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
964
+ }, z.core.$strip>>;
965
+ }, z.core.$strip>, z.ZodMiniObject<{
966
+ type: z.ZodMiniLiteral<"GeoPoint">;
967
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
968
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
969
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
970
+ }, z.core.$strip>>;
971
+ }, z.core.$strip>, z.ZodMiniObject<{
972
+ type: z.ZodMiniLiteral<"Image">;
973
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
974
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
975
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
976
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
977
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
978
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
979
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
980
+ }, z.core.$strip>>;
981
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
982
+ name: z.ZodMiniString<string>;
983
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
984
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
985
+ }, z.core.$strip>>>;
986
+ }, z.core.$strip>>;
987
+ }, z.core.$strip>, z.ZodMiniObject<{
988
+ type: z.ZodMiniLiteral<"IntegrationFields">;
989
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
990
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
991
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
992
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
993
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
994
+ }, z.core.$strip>>;
995
+ }, z.core.$strip>, z.ZodMiniObject<{
996
+ type: z.ZodMiniLiteral<"Link">;
997
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
998
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
999
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1000
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1001
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1002
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
1003
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1004
+ id: z.ZodMiniString<string>;
1005
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1006
+ id: z.ZodMiniString<string>;
1007
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1008
+ id: z.ZodMiniString<string>;
1009
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1010
+ id: z.ZodMiniString<string>;
1011
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1012
+ id: z.ZodMiniString<string>;
1013
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1014
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1015
+ }, z.core.$strip>]>>>;
1016
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1017
+ }, z.core.$strip>, z.ZodMiniObject<{
1018
+ id: z.ZodMiniString<string>;
1019
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1020
+ id: z.ZodMiniString<string>;
1021
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1022
+ id: z.ZodMiniString<string>;
1023
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1024
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1025
+ }, z.core.$strip>]>>>;
1026
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1027
+ }, z.core.$strip>]>>>>;
1028
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1029
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1030
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1031
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1032
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1033
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
1034
+ }, z.core.$strip>>;
1035
+ }, z.core.$strip>, z.ZodMiniObject<{
1036
+ type: z.ZodMiniLiteral<"Number">;
1037
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1038
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1039
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1040
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1041
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1042
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1043
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1044
+ }, z.core.$strip>>;
1045
+ }, z.core.$strip>, z.ZodMiniObject<{
1046
+ type: z.ZodMiniLiteral<"Range">;
1047
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1048
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1049
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1050
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1051
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1052
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1053
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1054
+ }, z.core.$strip>>;
1055
+ }, z.core.$strip>, z.ZodMiniObject<{
1056
+ type: z.ZodMiniLiteral<"StructuredText">;
1057
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1058
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1059
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1060
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1061
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1062
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1063
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1064
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
1065
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1066
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1067
+ }, z.core.$strip>>;
1068
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1069
+ name: z.ZodMiniString<string>;
1070
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
1071
+ name: string;
1072
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
1073
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1074
+ }, z.core.$strip>>;
1075
+ }, z.core.$strip>, z.ZodMiniObject<{
1076
+ type: z.ZodMiniLiteral<"Select">;
1077
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1078
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1079
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1080
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1081
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
1082
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
1083
+ }, z.core.$strip>>;
1084
+ }, z.core.$strip>, z.ZodMiniObject<{
1085
+ type: z.ZodMiniLiteral<"Separator">;
1086
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1087
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1088
+ }, z.core.$strip>>;
1089
+ }, z.core.$strip>, z.ZodMiniObject<{
1090
+ type: z.ZodMiniLiteral<"Table">;
1091
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1092
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1093
+ }, z.core.$strip>>;
1094
+ }, z.core.$strip>, z.ZodMiniObject<{
1095
+ type: z.ZodMiniLiteral<"Text">;
1096
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1097
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1098
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1099
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1100
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1101
+ }, z.core.$strip>>;
1102
+ }, z.core.$strip>, z.ZodMiniObject<{
1103
+ type: z.ZodMiniLiteral<"Timestamp">;
1104
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1105
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1106
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1107
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1108
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1109
+ }, z.core.$strip>>;
1110
+ }, z.core.$strip>]>, z.ZodMiniObject<{
1111
+ type: z.ZodMiniLiteral<"Group">;
1112
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1113
+ icon: z.ZodMiniOptional<z.ZodMiniString<string>>;
1114
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
1115
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1116
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1117
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1118
+ fields: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1119
+ type: z.ZodMiniLiteral<"Boolean">;
1120
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1121
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1122
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1123
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
1124
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
1125
+ }, z.core.$strip>>;
1126
+ }, z.core.$strip>, z.ZodMiniObject<{
1127
+ type: z.ZodMiniLiteral<"Color">;
1128
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1129
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1130
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1131
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1132
+ }, z.core.$strip>>;
1133
+ }, z.core.$strip>, z.ZodMiniObject<{
1134
+ type: z.ZodMiniLiteral<"Date">;
1135
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1136
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1137
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1138
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1139
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1140
+ }, z.core.$strip>>;
1141
+ }, z.core.$strip>, z.ZodMiniObject<{
1142
+ type: z.ZodMiniLiteral<"Embed">;
1143
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1144
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1145
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1146
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1147
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1148
+ }, z.core.$strip>>;
1149
+ }, z.core.$strip>, z.ZodMiniObject<{
1150
+ type: z.ZodMiniLiteral<"GeoPoint">;
1151
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1152
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1153
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1154
+ }, z.core.$strip>>;
1155
+ }, z.core.$strip>, z.ZodMiniObject<{
1156
+ type: z.ZodMiniLiteral<"Image">;
1157
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1158
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1159
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1160
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1161
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
1162
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1163
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1164
+ }, z.core.$strip>>;
1165
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
1166
+ name: z.ZodMiniString<string>;
1167
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1168
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1169
+ }, z.core.$strip>>>;
1170
+ }, z.core.$strip>>;
1171
+ }, z.core.$strip>, z.ZodMiniObject<{
1172
+ type: z.ZodMiniLiteral<"IntegrationFields">;
1173
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1174
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1175
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1176
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1177
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
1178
+ }, z.core.$strip>>;
1179
+ }, z.core.$strip>, z.ZodMiniObject<{
1180
+ type: z.ZodMiniLiteral<"Link">;
1181
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1182
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1183
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1184
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1185
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1186
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
1187
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1188
+ id: z.ZodMiniString<string>;
1189
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1190
+ id: z.ZodMiniString<string>;
1191
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1192
+ id: z.ZodMiniString<string>;
1193
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1194
+ id: z.ZodMiniString<string>;
1195
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1196
+ id: z.ZodMiniString<string>;
1197
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1198
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1199
+ }, z.core.$strip>]>>>;
1200
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1201
+ }, z.core.$strip>, z.ZodMiniObject<{
1202
+ id: z.ZodMiniString<string>;
1203
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1204
+ id: z.ZodMiniString<string>;
1205
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1206
+ id: z.ZodMiniString<string>;
1207
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1208
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1209
+ }, z.core.$strip>]>>>;
1210
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1211
+ }, z.core.$strip>]>>>>;
1212
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1213
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1214
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1215
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1216
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1217
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
1218
+ }, z.core.$strip>>;
1219
+ }, z.core.$strip>, z.ZodMiniObject<{
1220
+ type: z.ZodMiniLiteral<"Number">;
1221
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1222
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1223
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1224
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1225
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1226
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1227
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1228
+ }, z.core.$strip>>;
1229
+ }, z.core.$strip>, z.ZodMiniObject<{
1230
+ type: z.ZodMiniLiteral<"Range">;
1231
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1232
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1233
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1234
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1235
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1236
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1237
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1238
+ }, z.core.$strip>>;
1239
+ }, z.core.$strip>, z.ZodMiniObject<{
1240
+ type: z.ZodMiniLiteral<"StructuredText">;
1241
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1242
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1243
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1244
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1245
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1246
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1247
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1248
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
1249
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1250
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1251
+ }, z.core.$strip>>;
1252
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1253
+ name: z.ZodMiniString<string>;
1254
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
1255
+ name: string;
1256
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
1257
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1258
+ }, z.core.$strip>>;
1259
+ }, z.core.$strip>, z.ZodMiniObject<{
1260
+ type: z.ZodMiniLiteral<"Select">;
1261
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1262
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1263
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1264
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1265
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
1266
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
1267
+ }, z.core.$strip>>;
1268
+ }, z.core.$strip>, z.ZodMiniObject<{
1269
+ type: z.ZodMiniLiteral<"Separator">;
1270
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1271
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1272
+ }, z.core.$strip>>;
1273
+ }, z.core.$strip>, z.ZodMiniObject<{
1274
+ type: z.ZodMiniLiteral<"Table">;
1275
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1276
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1277
+ }, z.core.$strip>>;
1278
+ }, z.core.$strip>, z.ZodMiniObject<{
1279
+ type: z.ZodMiniLiteral<"Text">;
1280
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1281
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1282
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1283
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1284
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1285
+ }, z.core.$strip>>;
1286
+ }, z.core.$strip>, z.ZodMiniObject<{
1287
+ type: z.ZodMiniLiteral<"Timestamp">;
1288
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1289
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1290
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1291
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1292
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1293
+ }, z.core.$strip>>;
1294
+ }, z.core.$strip>]>>>;
1295
+ }, z.core.$strip>>;
1296
+ }, z.core.$strip>]>>>;
1297
+ }, z.core.$strip>>;
1298
+ }, z.core.$strip>]>>>;
1299
+ items: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1300
+ type: z.ZodMiniLiteral<"Boolean">;
1301
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1302
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1303
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1304
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
1305
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
1306
+ }, z.core.$strip>>;
1307
+ }, z.core.$strip>, z.ZodMiniObject<{
1308
+ type: z.ZodMiniLiteral<"Color">;
1309
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1310
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1311
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1312
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1313
+ }, z.core.$strip>>;
1314
+ }, z.core.$strip>, z.ZodMiniObject<{
1315
+ type: z.ZodMiniLiteral<"Date">;
1316
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1317
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1318
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1319
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1320
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1321
+ }, z.core.$strip>>;
1322
+ }, z.core.$strip>, z.ZodMiniObject<{
1323
+ type: z.ZodMiniLiteral<"Embed">;
1324
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1325
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1326
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1327
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1328
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1329
+ }, z.core.$strip>>;
1330
+ }, z.core.$strip>, z.ZodMiniObject<{
1331
+ type: z.ZodMiniLiteral<"GeoPoint">;
1332
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1333
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1334
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1335
+ }, z.core.$strip>>;
1336
+ }, z.core.$strip>, z.ZodMiniObject<{
1337
+ type: z.ZodMiniLiteral<"Image">;
1338
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1339
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1340
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1341
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1342
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
1343
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1344
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1345
+ }, z.core.$strip>>;
1346
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
1347
+ name: z.ZodMiniString<string>;
1348
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1349
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1350
+ }, z.core.$strip>>>;
1351
+ }, z.core.$strip>>;
1352
+ }, z.core.$strip>, z.ZodMiniObject<{
1353
+ type: z.ZodMiniLiteral<"IntegrationFields">;
1354
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1355
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1356
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1357
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1358
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
1359
+ }, z.core.$strip>>;
1360
+ }, z.core.$strip>, z.ZodMiniObject<{
1361
+ type: z.ZodMiniLiteral<"Link">;
1362
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1363
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1364
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1365
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1366
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1367
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
1368
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1369
+ id: z.ZodMiniString<string>;
1370
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1371
+ id: z.ZodMiniString<string>;
1372
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1373
+ id: z.ZodMiniString<string>;
1374
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1375
+ id: z.ZodMiniString<string>;
1376
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1377
+ id: z.ZodMiniString<string>;
1378
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1379
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1380
+ }, z.core.$strip>]>>>;
1381
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1382
+ }, z.core.$strip>, z.ZodMiniObject<{
1383
+ id: z.ZodMiniString<string>;
1384
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1385
+ id: z.ZodMiniString<string>;
1386
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1387
+ id: z.ZodMiniString<string>;
1388
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1389
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1390
+ }, z.core.$strip>]>>>;
1391
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1392
+ }, z.core.$strip>]>>>>;
1393
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1394
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1395
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1396
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1397
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1398
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
1399
+ }, z.core.$strip>>;
1400
+ }, z.core.$strip>, z.ZodMiniObject<{
1401
+ type: z.ZodMiniLiteral<"Number">;
1402
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1403
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1404
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1405
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1406
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1407
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1408
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1409
+ }, z.core.$strip>>;
1410
+ }, z.core.$strip>, z.ZodMiniObject<{
1411
+ type: z.ZodMiniLiteral<"Range">;
1412
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1413
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1414
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1415
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1416
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1417
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1418
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1419
+ }, z.core.$strip>>;
1420
+ }, z.core.$strip>, z.ZodMiniObject<{
1421
+ type: z.ZodMiniLiteral<"StructuredText">;
1422
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1423
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1424
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1425
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1426
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1427
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1428
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1429
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
1430
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1431
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1432
+ }, z.core.$strip>>;
1433
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1434
+ name: z.ZodMiniString<string>;
1435
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
1436
+ name: string;
1437
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
1438
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1439
+ }, z.core.$strip>>;
1440
+ }, z.core.$strip>, z.ZodMiniObject<{
1441
+ type: z.ZodMiniLiteral<"Select">;
1442
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1443
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1444
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1445
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1446
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
1447
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
1448
+ }, z.core.$strip>>;
1449
+ }, z.core.$strip>, z.ZodMiniObject<{
1450
+ type: z.ZodMiniLiteral<"Separator">;
1451
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1452
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1453
+ }, z.core.$strip>>;
1454
+ }, z.core.$strip>, z.ZodMiniObject<{
1455
+ type: z.ZodMiniLiteral<"Table">;
1456
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1457
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1458
+ }, z.core.$strip>>;
1459
+ }, z.core.$strip>, z.ZodMiniObject<{
1460
+ type: z.ZodMiniLiteral<"Text">;
1461
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1462
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1463
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1464
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1465
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1466
+ }, z.core.$strip>>;
1467
+ }, z.core.$strip>, z.ZodMiniObject<{
1468
+ type: z.ZodMiniLiteral<"Timestamp">;
1469
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1470
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1471
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1472
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1473
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1474
+ }, z.core.$strip>>;
1475
+ }, z.core.$strip>]>>>;
1476
+ }, z.core.$strip>>;
1477
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
1478
+ legacyPaths: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>>;
1479
+ }, z.core.$strip>]>>>;
1480
+ }, z.core.$strip>>;
1481
+ }, z.core.$strip>;
1482
+ type StaticSlicesModel = z.infer<typeof StaticSlicesModelSchema>;
1483
+ declare const DynamicSlicesModelSchema: z.ZodMiniObject<{
1484
+ type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"Slices">, z.ZodMiniLiteral<"Choice">]>;
1485
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1486
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1487
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1488
+ labels: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1489
+ name: z.ZodMiniString<string>;
1490
+ display: z.ZodMiniOptional<z.ZodMiniString<string>>;
1491
+ }, z.core.$strip>>>, z.ZodMiniNull]>>;
1492
+ choices: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1493
+ type: z.ZodMiniLiteral<"Slice">;
1494
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1495
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
1496
+ icon: z.ZodMiniOptional<z.ZodMiniString<string>>;
1497
+ display: z.ZodMiniOptional<z.ZodMiniString<string>>;
1498
+ "non-repeat": z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1499
+ type: z.ZodMiniLiteral<"Boolean">;
1500
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1501
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1502
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1503
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
1504
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
1505
+ }, z.core.$strip>>;
1506
+ }, z.core.$strip>, z.ZodMiniObject<{
1507
+ type: z.ZodMiniLiteral<"Color">;
1508
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1509
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1510
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1511
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1512
+ }, z.core.$strip>>;
1513
+ }, z.core.$strip>, z.ZodMiniObject<{
1514
+ type: z.ZodMiniLiteral<"Date">;
1515
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1516
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1517
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1518
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1519
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1520
+ }, z.core.$strip>>;
1521
+ }, z.core.$strip>, z.ZodMiniObject<{
1522
+ type: z.ZodMiniLiteral<"Embed">;
1523
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1524
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1525
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1526
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1527
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1528
+ }, z.core.$strip>>;
1529
+ }, z.core.$strip>, z.ZodMiniObject<{
1530
+ type: z.ZodMiniLiteral<"GeoPoint">;
1531
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1532
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1533
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1534
+ }, z.core.$strip>>;
1535
+ }, z.core.$strip>, z.ZodMiniObject<{
1536
+ type: z.ZodMiniLiteral<"Image">;
1537
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1538
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1539
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1540
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1541
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
1542
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1543
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1544
+ }, z.core.$strip>>;
1545
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
1546
+ name: z.ZodMiniString<string>;
1547
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1548
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1549
+ }, z.core.$strip>>>;
1550
+ }, z.core.$strip>>;
1551
+ }, z.core.$strip>, z.ZodMiniObject<{
1552
+ type: z.ZodMiniLiteral<"IntegrationFields">;
1553
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1554
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1555
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1556
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1557
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
1558
+ }, z.core.$strip>>;
1559
+ }, z.core.$strip>, z.ZodMiniObject<{
1560
+ type: z.ZodMiniLiteral<"Link">;
1561
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1562
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1563
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1564
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1565
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1566
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
1567
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1568
+ id: z.ZodMiniString<string>;
1569
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1570
+ id: z.ZodMiniString<string>;
1571
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1572
+ id: z.ZodMiniString<string>;
1573
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1574
+ id: z.ZodMiniString<string>;
1575
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1576
+ id: z.ZodMiniString<string>;
1577
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1578
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1579
+ }, z.core.$strip>]>>>;
1580
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1581
+ }, z.core.$strip>, z.ZodMiniObject<{
1582
+ id: z.ZodMiniString<string>;
1583
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1584
+ id: z.ZodMiniString<string>;
1585
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1586
+ id: z.ZodMiniString<string>;
1587
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1588
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1589
+ }, z.core.$strip>]>>>;
1590
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1591
+ }, z.core.$strip>]>>>>;
1592
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1593
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1594
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1595
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1596
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1597
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
1598
+ }, z.core.$strip>>;
1599
+ }, z.core.$strip>, z.ZodMiniObject<{
1600
+ type: z.ZodMiniLiteral<"Number">;
1601
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1602
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1603
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1604
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1605
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1606
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1607
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1608
+ }, z.core.$strip>>;
1609
+ }, z.core.$strip>, z.ZodMiniObject<{
1610
+ type: z.ZodMiniLiteral<"Range">;
1611
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1612
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1613
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1614
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1615
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1616
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1617
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1618
+ }, z.core.$strip>>;
1619
+ }, z.core.$strip>, z.ZodMiniObject<{
1620
+ type: z.ZodMiniLiteral<"StructuredText">;
1621
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1622
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1623
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1624
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1625
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1626
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1627
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1628
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
1629
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1630
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1631
+ }, z.core.$strip>>;
1632
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1633
+ name: z.ZodMiniString<string>;
1634
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
1635
+ name: string;
1636
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
1637
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1638
+ }, z.core.$strip>>;
1639
+ }, z.core.$strip>, z.ZodMiniObject<{
1640
+ type: z.ZodMiniLiteral<"Select">;
1641
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1642
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1643
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1644
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1645
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
1646
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
1647
+ }, z.core.$strip>>;
1648
+ }, z.core.$strip>, z.ZodMiniObject<{
1649
+ type: z.ZodMiniLiteral<"Separator">;
1650
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1651
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1652
+ }, z.core.$strip>>;
1653
+ }, z.core.$strip>, z.ZodMiniObject<{
1654
+ type: z.ZodMiniLiteral<"Table">;
1655
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1656
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1657
+ }, z.core.$strip>>;
1658
+ }, z.core.$strip>, z.ZodMiniObject<{
1659
+ type: z.ZodMiniLiteral<"Text">;
1660
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1661
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1662
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1663
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1664
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1665
+ }, z.core.$strip>>;
1666
+ }, z.core.$strip>, z.ZodMiniObject<{
1667
+ type: z.ZodMiniLiteral<"Timestamp">;
1668
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1669
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1670
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1671
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1672
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1673
+ }, z.core.$strip>>;
1674
+ }, z.core.$strip>]>>>;
1675
+ repeat: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1676
+ type: z.ZodMiniLiteral<"Boolean">;
1677
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1678
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1679
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1680
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
1681
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
1682
+ }, z.core.$strip>>;
1683
+ }, z.core.$strip>, z.ZodMiniObject<{
1684
+ type: z.ZodMiniLiteral<"Color">;
1685
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1686
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1687
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1688
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1689
+ }, z.core.$strip>>;
1690
+ }, z.core.$strip>, z.ZodMiniObject<{
1691
+ type: z.ZodMiniLiteral<"Date">;
1692
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1693
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1694
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1695
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1696
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1697
+ }, z.core.$strip>>;
1698
+ }, z.core.$strip>, z.ZodMiniObject<{
1699
+ type: z.ZodMiniLiteral<"Embed">;
1700
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1701
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1702
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1703
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1704
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1705
+ }, z.core.$strip>>;
1706
+ }, z.core.$strip>, z.ZodMiniObject<{
1707
+ type: z.ZodMiniLiteral<"GeoPoint">;
1708
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1709
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1710
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1711
+ }, z.core.$strip>>;
1712
+ }, z.core.$strip>, z.ZodMiniObject<{
1713
+ type: z.ZodMiniLiteral<"Image">;
1714
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1715
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1716
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1717
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1718
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
1719
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1720
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1721
+ }, z.core.$strip>>;
1722
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
1723
+ name: z.ZodMiniString<string>;
1724
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1725
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1726
+ }, z.core.$strip>>>;
1727
+ }, z.core.$strip>>;
1728
+ }, z.core.$strip>, z.ZodMiniObject<{
1729
+ type: z.ZodMiniLiteral<"IntegrationFields">;
1730
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1731
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1732
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1733
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1734
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
1735
+ }, z.core.$strip>>;
1736
+ }, z.core.$strip>, z.ZodMiniObject<{
1737
+ type: z.ZodMiniLiteral<"Link">;
1738
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1739
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1740
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1741
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1742
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1743
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
1744
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1745
+ id: z.ZodMiniString<string>;
1746
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1747
+ id: z.ZodMiniString<string>;
1748
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1749
+ id: z.ZodMiniString<string>;
1750
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1751
+ id: z.ZodMiniString<string>;
1752
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1753
+ id: z.ZodMiniString<string>;
1754
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1755
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1756
+ }, z.core.$strip>]>>>;
1757
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1758
+ }, z.core.$strip>, z.ZodMiniObject<{
1759
+ id: z.ZodMiniString<string>;
1760
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1761
+ id: z.ZodMiniString<string>;
1762
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1763
+ id: z.ZodMiniString<string>;
1764
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1765
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1766
+ }, z.core.$strip>]>>>;
1767
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1768
+ }, z.core.$strip>]>>>>;
1769
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1770
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1771
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1772
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1773
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1774
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
1775
+ }, z.core.$strip>>;
1776
+ }, z.core.$strip>, z.ZodMiniObject<{
1777
+ type: z.ZodMiniLiteral<"Number">;
1778
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1779
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1780
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1781
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1782
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1783
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1784
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1785
+ }, z.core.$strip>>;
1786
+ }, z.core.$strip>, z.ZodMiniObject<{
1787
+ type: z.ZodMiniLiteral<"Range">;
1788
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1789
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1790
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1791
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1792
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1793
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1794
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1795
+ }, z.core.$strip>>;
1796
+ }, z.core.$strip>, z.ZodMiniObject<{
1797
+ type: z.ZodMiniLiteral<"StructuredText">;
1798
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1799
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1800
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1801
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1802
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1803
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1804
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1805
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
1806
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1807
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1808
+ }, z.core.$strip>>;
1809
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1810
+ name: z.ZodMiniString<string>;
1811
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
1812
+ name: string;
1813
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
1814
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1815
+ }, z.core.$strip>>;
1816
+ }, z.core.$strip>, z.ZodMiniObject<{
1817
+ type: z.ZodMiniLiteral<"Select">;
1818
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1819
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1820
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1821
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1822
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
1823
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
1824
+ }, z.core.$strip>>;
1825
+ }, z.core.$strip>, z.ZodMiniObject<{
1826
+ type: z.ZodMiniLiteral<"Separator">;
1827
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1828
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1829
+ }, z.core.$strip>>;
1830
+ }, z.core.$strip>, z.ZodMiniObject<{
1831
+ type: z.ZodMiniLiteral<"Table">;
1832
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1833
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1834
+ }, z.core.$strip>>;
1835
+ }, z.core.$strip>, z.ZodMiniObject<{
1836
+ type: z.ZodMiniLiteral<"Text">;
1837
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1838
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1839
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1840
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1841
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1842
+ }, z.core.$strip>>;
1843
+ }, z.core.$strip>, z.ZodMiniObject<{
1844
+ type: z.ZodMiniLiteral<"Timestamp">;
1845
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1846
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1847
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1848
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1849
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1850
+ }, z.core.$strip>>;
1851
+ }, z.core.$strip>]>>>;
1852
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1853
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1854
+ }, z.core.$strip>>;
1855
+ }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1856
+ type: z.ZodMiniLiteral<"Boolean">;
1857
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1858
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1859
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1860
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
1861
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
1862
+ }, z.core.$strip>>;
1863
+ }, z.core.$strip>, z.ZodMiniObject<{
1864
+ type: z.ZodMiniLiteral<"Color">;
1865
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1866
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1867
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1868
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1869
+ }, z.core.$strip>>;
1870
+ }, z.core.$strip>, z.ZodMiniObject<{
1871
+ type: z.ZodMiniLiteral<"Date">;
1872
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1873
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1874
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1875
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1876
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
1877
+ }, z.core.$strip>>;
1878
+ }, z.core.$strip>, z.ZodMiniObject<{
1879
+ type: z.ZodMiniLiteral<"Embed">;
1880
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1881
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1882
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1883
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1884
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1885
+ }, z.core.$strip>>;
1886
+ }, z.core.$strip>, z.ZodMiniObject<{
1887
+ type: z.ZodMiniLiteral<"GeoPoint">;
1888
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1889
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1890
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1891
+ }, z.core.$strip>>;
1892
+ }, z.core.$strip>, z.ZodMiniObject<{
1893
+ type: z.ZodMiniLiteral<"Image">;
1894
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1895
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1896
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1897
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1898
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
1899
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1900
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1901
+ }, z.core.$strip>>;
1902
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
1903
+ name: z.ZodMiniString<string>;
1904
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1905
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1906
+ }, z.core.$strip>>>;
1907
+ }, z.core.$strip>>;
1908
+ }, z.core.$strip>, z.ZodMiniObject<{
1909
+ type: z.ZodMiniLiteral<"IntegrationFields">;
1910
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1911
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1912
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1913
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1914
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
1915
+ }, z.core.$strip>>;
1916
+ }, z.core.$strip>, z.ZodMiniObject<{
1917
+ type: z.ZodMiniLiteral<"Link">;
1918
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1919
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1920
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1921
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1922
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1923
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
1924
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1925
+ id: z.ZodMiniString<string>;
1926
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1927
+ id: z.ZodMiniString<string>;
1928
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1929
+ id: z.ZodMiniString<string>;
1930
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1931
+ id: z.ZodMiniString<string>;
1932
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1933
+ id: z.ZodMiniString<string>;
1934
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1935
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1936
+ }, z.core.$strip>]>>>;
1937
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1938
+ }, z.core.$strip>, z.ZodMiniObject<{
1939
+ id: z.ZodMiniString<string>;
1940
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
1941
+ id: z.ZodMiniString<string>;
1942
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1943
+ id: z.ZodMiniString<string>;
1944
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
1945
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1946
+ }, z.core.$strip>]>>>;
1947
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
1948
+ }, z.core.$strip>]>>>>;
1949
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1950
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
1951
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1952
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1953
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1954
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
1955
+ }, z.core.$strip>>;
1956
+ }, z.core.$strip>, z.ZodMiniObject<{
1957
+ type: z.ZodMiniLiteral<"Number">;
1958
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1959
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1960
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1961
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1962
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1963
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1964
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1965
+ }, z.core.$strip>>;
1966
+ }, z.core.$strip>, z.ZodMiniObject<{
1967
+ type: z.ZodMiniLiteral<"Range">;
1968
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1969
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1970
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1971
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1972
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1973
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1974
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1975
+ }, z.core.$strip>>;
1976
+ }, z.core.$strip>, z.ZodMiniObject<{
1977
+ type: z.ZodMiniLiteral<"StructuredText">;
1978
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1979
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
1980
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1981
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
1982
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1983
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1984
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
1985
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
1986
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1987
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
1988
+ }, z.core.$strip>>;
1989
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
1990
+ name: z.ZodMiniString<string>;
1991
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
1992
+ name: string;
1993
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
1994
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1995
+ }, z.core.$strip>>;
1996
+ }, z.core.$strip>, z.ZodMiniObject<{
1997
+ type: z.ZodMiniLiteral<"Select">;
1998
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
1999
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2000
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2001
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2002
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
2003
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
2004
+ }, z.core.$strip>>;
2005
+ }, z.core.$strip>, z.ZodMiniObject<{
2006
+ type: z.ZodMiniLiteral<"Separator">;
2007
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2008
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2009
+ }, z.core.$strip>>;
2010
+ }, z.core.$strip>, z.ZodMiniObject<{
2011
+ type: z.ZodMiniLiteral<"Table">;
2012
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2013
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2014
+ }, z.core.$strip>>;
2015
+ }, z.core.$strip>, z.ZodMiniObject<{
2016
+ type: z.ZodMiniLiteral<"Text">;
2017
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2018
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2019
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2020
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2021
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2022
+ }, z.core.$strip>>;
2023
+ }, z.core.$strip>, z.ZodMiniObject<{
2024
+ type: z.ZodMiniLiteral<"Timestamp">;
2025
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2026
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2027
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2028
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2029
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
2030
+ }, z.core.$strip>>;
2031
+ }, z.core.$strip>]>, z.ZodMiniObject<{
2032
+ type: z.ZodMiniLiteral<"Group">;
2033
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2034
+ icon: z.ZodMiniOptional<z.ZodMiniString<string>>;
2035
+ description: z.ZodMiniOptional<z.ZodMiniString<string>>;
2036
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2037
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2038
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2039
+ fields: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2040
+ type: z.ZodMiniLiteral<"Boolean">;
2041
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2042
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2043
+ default_value: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2044
+ placeholder_true: z.ZodMiniOptional<z.ZodMiniString<string>>;
2045
+ placeholder_false: z.ZodMiniOptional<z.ZodMiniString<string>>;
2046
+ }, z.core.$strip>>;
2047
+ }, z.core.$strip>, z.ZodMiniObject<{
2048
+ type: z.ZodMiniLiteral<"Color">;
2049
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2050
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2051
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2052
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2053
+ }, z.core.$strip>>;
2054
+ }, z.core.$strip>, z.ZodMiniObject<{
2055
+ type: z.ZodMiniLiteral<"Date">;
2056
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2057
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2058
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2059
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2060
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
2061
+ }, z.core.$strip>>;
2062
+ }, z.core.$strip>, z.ZodMiniObject<{
2063
+ type: z.ZodMiniLiteral<"Embed">;
2064
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2065
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2066
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2067
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2068
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2069
+ }, z.core.$strip>>;
2070
+ }, z.core.$strip>, z.ZodMiniObject<{
2071
+ type: z.ZodMiniLiteral<"GeoPoint">;
2072
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2073
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2074
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2075
+ }, z.core.$strip>>;
2076
+ }, z.core.$strip>, z.ZodMiniObject<{
2077
+ type: z.ZodMiniLiteral<"Image">;
2078
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2079
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2080
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2081
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2082
+ constraint: z.ZodMiniOptional<z.ZodMiniObject<{
2083
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2084
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2085
+ }, z.core.$strip>>;
2086
+ thumbnails: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
2087
+ name: z.ZodMiniString<string>;
2088
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2089
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2090
+ }, z.core.$strip>>>;
2091
+ }, z.core.$strip>>;
2092
+ }, z.core.$strip>, z.ZodMiniObject<{
2093
+ type: z.ZodMiniLiteral<"IntegrationFields">;
2094
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2095
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2096
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2097
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2098
+ catalog: z.ZodMiniOptional<z.ZodMiniString<string>>;
2099
+ }, z.core.$strip>>;
2100
+ }, z.core.$strip>, z.ZodMiniObject<{
2101
+ type: z.ZodMiniLiteral<"Link">;
2102
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2103
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2104
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2105
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2106
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2107
+ select: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnknown, z.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
2108
+ customtypes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
2109
+ id: z.ZodMiniString<string>;
2110
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2111
+ id: z.ZodMiniString<string>;
2112
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2113
+ id: z.ZodMiniString<string>;
2114
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
2115
+ id: z.ZodMiniString<string>;
2116
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2117
+ id: z.ZodMiniString<string>;
2118
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
2119
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
2120
+ }, z.core.$strip>]>>>;
2121
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
2122
+ }, z.core.$strip>, z.ZodMiniObject<{
2123
+ id: z.ZodMiniString<string>;
2124
+ customtypes: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniObject<{
2125
+ id: z.ZodMiniString<string>;
2126
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2127
+ id: z.ZodMiniString<string>;
2128
+ fields: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniString<string>>>;
2129
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
2130
+ }, z.core.$strip>]>>>;
2131
+ }, z.core.$strip>, z.ZodMiniString<string>]>>>;
2132
+ }, z.core.$strip>]>>>>;
2133
+ masks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
2134
+ tags: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniString<string>]>, z.ZodMiniTransform<readonly string[], string | string[]>>>;
2135
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2136
+ allowText: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2137
+ repeat: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2138
+ variants: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
2139
+ }, z.core.$strip>>;
2140
+ }, z.core.$strip>, z.ZodMiniObject<{
2141
+ type: z.ZodMiniLiteral<"Number">;
2142
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2143
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2144
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2145
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2146
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2147
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2148
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2149
+ }, z.core.$strip>>;
2150
+ }, z.core.$strip>, z.ZodMiniObject<{
2151
+ type: z.ZodMiniLiteral<"Range">;
2152
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2153
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2154
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2155
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2156
+ min: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2157
+ max: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2158
+ step: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2159
+ }, z.core.$strip>>;
2160
+ }, z.core.$strip>, z.ZodMiniObject<{
2161
+ type: z.ZodMiniLiteral<"StructuredText">;
2162
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2163
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2164
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2165
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2166
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2167
+ single: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
2168
+ multi: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniNull]>, z.ZodMiniTransform<string, string | null>>>;
2169
+ imageConstraint: z.ZodMiniOptional<z.ZodMiniObject<{
2170
+ width: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2171
+ height: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniLiteral<"auto">, z.ZodMiniTransform<null, "auto">>, z.ZodMiniPipe<z.ZodMiniLiteral<"">, z.ZodMiniTransform<null, "">>, z.ZodMiniNull, z.ZodMiniNumber<number>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<number, string>>]>>;
2172
+ }, z.core.$strip>>;
2173
+ labels: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniNull, z.ZodMiniTransform<string[], null>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string[], string>>, z.ZodMiniArray<z.ZodMiniString<string>>, z.ZodMiniPipe<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniObject<{
2174
+ name: z.ZodMiniString<string>;
2175
+ }, z.core.$strip>>>, z.ZodMiniTransform<string[], Record<string, {
2176
+ name: string;
2177
+ }[]>>>]>, z.ZodMiniTransform<readonly string[], string[]>>>;
2178
+ allowTargetBlank: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2179
+ }, z.core.$strip>>;
2180
+ }, z.core.$strip>, z.ZodMiniObject<{
2181
+ type: z.ZodMiniLiteral<"Select">;
2182
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2183
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2184
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2185
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2186
+ default_value: z.ZodMiniOptional<z.ZodMiniString<string>>;
2187
+ options: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniNumber<number>, z.ZodMiniTransform<string, number>>, z.ZodMiniPipe<z.ZodMiniBoolean<boolean>, z.ZodMiniTransform<string, boolean>>]>>>>;
2188
+ }, z.core.$strip>>;
2189
+ }, z.core.$strip>, z.ZodMiniObject<{
2190
+ type: z.ZodMiniLiteral<"Separator">;
2191
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2192
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2193
+ }, z.core.$strip>>;
2194
+ }, z.core.$strip>, z.ZodMiniObject<{
2195
+ type: z.ZodMiniLiteral<"Table">;
2196
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2197
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2198
+ }, z.core.$strip>>;
2199
+ }, z.core.$strip>, z.ZodMiniObject<{
2200
+ type: z.ZodMiniLiteral<"Text">;
2201
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2202
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2203
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2204
+ useAsTitle: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2205
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2206
+ }, z.core.$strip>>;
2207
+ }, z.core.$strip>, z.ZodMiniObject<{
2208
+ type: z.ZodMiniLiteral<"Timestamp">;
2209
+ fieldset: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2210
+ config: z.ZodMiniOptional<z.ZodMiniObject<{
2211
+ label: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
2212
+ placeholder: z.ZodMiniOptional<z.ZodMiniString<string>>;
2213
+ default: z.ZodMiniOptional<z.ZodMiniString<string>>;
2214
+ }, z.core.$strip>>;
2215
+ }, z.core.$strip>]>>>;
2216
+ }, z.core.$strip>>;
2217
+ }, z.core.$strip>]>, z.ZodMiniObject<{
2218
+ type: z.ZodMiniLiteral<"SharedSlice">;
2219
+ }, z.core.$strip>]>>>;
2220
+ }, z.core.$strip>>;
2221
+ }, z.core.$strip>;
2222
+ type DynamicSlicesModel = z.infer<typeof DynamicSlicesModelSchema>;
2223
+ //#endregion
2224
+ export { DynamicSlicesModel, StaticSlicesModel };
2225
+ //# sourceMappingURL=slices.d.ts.map