@prismicio/types-internal 3.17.0-pr.145.680cd65 → 3.17.2

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