@prismicio/types-internal 3.17.0-alpha.2 → 3.17.0-pr.144.0c8207f

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