@prismicio/types-internal 3.17.0 → 4.0.0-canary.3fe5f1e

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