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