@prismicio/types-internal 2.2.0-alpha.1 → 2.2.0-alpha.11

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 (286) hide show
  1. package/lib/common/Asset.d.ts +16 -0
  2. package/lib/common/Asset.js +11 -0
  3. package/lib/common/Embed.d.ts +15 -0
  4. package/lib/common/Embed.js +10 -0
  5. package/lib/common/UUID.d.ts +7 -0
  6. package/lib/common/UUID.js +8 -0
  7. package/lib/common/index.d.ts +2 -0
  8. package/lib/common/index.js +2 -0
  9. package/lib/content/Document.d.ts +40 -40
  10. package/lib/content/fields/GroupContent.d.ts +12 -12
  11. package/lib/content/fields/GroupContent.js +11 -4
  12. package/lib/content/fields/WidgetContent.d.ts +56 -56
  13. package/lib/content/fields/nestable/NestableContent.d.ts +7 -7
  14. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +12 -12
  15. package/lib/content/fields/nestable/RichTextContent/index.d.ts +9 -9
  16. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +14 -14
  17. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +5 -5
  18. package/lib/content/fields/slices/Slice/RepeatableContent.js +0 -1
  19. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +14 -14
  20. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +14 -14
  21. package/lib/content/fields/slices/Slice/index.d.ts +30 -30
  22. package/lib/content/fields/slices/SliceItem.d.ts +30 -30
  23. package/lib/content/fields/slices/SlicesContent.d.ts +42 -42
  24. package/lib/customtypes/CustomType.d.ts +2 -0
  25. package/lib/customtypes/CustomType.js +8 -1
  26. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +0 -157
  27. package/lib/customtypes/widgets/nestable/NestableWidget.js +1 -17
  28. package/lib/import/converters/Document.d.ts +3 -2
  29. package/lib/import/converters/Document.js +11 -7
  30. package/lib/import/converters/fields/Slices/SharedSlice.d.ts +4 -0
  31. package/lib/import/converters/fields/Slices/SharedSlice.js +19 -0
  32. package/lib/import/converters/fields/Slices/SharedSliceContent.d.ts +10 -0
  33. package/lib/import/converters/fields/Slices/SharedSliceContent.js +58 -0
  34. package/lib/import/converters/fields/Slices/SliceItem.d.ts +4 -0
  35. package/lib/import/converters/fields/Slices/SliceItem.js +24 -0
  36. package/lib/import/converters/fields/Slices/Slices.d.ts +4 -0
  37. package/lib/import/converters/fields/Slices/Slices.js +16 -0
  38. package/lib/import/converters/fields/Slices/index.d.ts +1 -0
  39. package/lib/import/converters/fields/Slices/index.js +4 -0
  40. package/lib/import/converters/fields/UID.d.ts +3 -0
  41. package/lib/import/converters/fields/UID.js +12 -0
  42. package/lib/import/converters/fields/index.d.ts +2 -0
  43. package/lib/import/converters/fields/index.js +2 -0
  44. package/lib/import/converters/fields/nestable/Boolean.d.ts +3 -0
  45. package/lib/import/converters/fields/nestable/Boolean.js +12 -0
  46. package/lib/import/converters/fields/nestable/Color.js +9 -6
  47. package/lib/import/converters/fields/nestable/Date.d.ts +1 -1
  48. package/lib/import/converters/fields/nestable/Date.js +5 -5
  49. package/lib/import/converters/fields/nestable/Embed.d.ts +4 -0
  50. package/lib/import/converters/fields/nestable/Embed.js +32 -0
  51. package/lib/import/converters/fields/nestable/GeooPoint.d.ts +3 -0
  52. package/lib/import/converters/fields/nestable/GeooPoint.js +15 -0
  53. package/lib/import/converters/fields/nestable/Image.d.ts +4 -0
  54. package/lib/import/converters/fields/nestable/Image.js +55 -0
  55. package/lib/import/converters/fields/nestable/Link.d.ts +4 -0
  56. package/lib/import/converters/fields/nestable/Link.js +70 -0
  57. package/lib/import/converters/fields/nestable/Nestable.d.ts +4 -2
  58. package/lib/import/converters/fields/nestable/Nestable.js +11 -1
  59. package/lib/import/converters/fields/nestable/Number.js +9 -6
  60. package/lib/import/converters/fields/nestable/Select.js +9 -6
  61. package/lib/import/converters/fields/nestable/Text.js +9 -6
  62. package/lib/import/converters/fields/nestable/Timestamp.d.ts +1 -1
  63. package/lib/import/converters/fields/nestable/Timestamp.js +9 -6
  64. package/lib/import/converters/fields/nestable/index.d.ts +5 -0
  65. package/lib/import/converters/fields/nestable/index.js +5 -0
  66. package/lib/import/validators/Document.d.ts +4 -4
  67. package/lib/import/validators/Document.js +38 -46
  68. package/lib/import/validators/fields/ImportContent.d.ts +5 -0
  69. package/lib/import/validators/fields/ImportContent.js +21 -0
  70. package/lib/import/validators/fields/ImportField.d.ts +135 -0
  71. package/lib/import/validators/fields/ImportField.js +29 -0
  72. package/lib/import/validators/fields/ImportSlices/ImportSliceId.d.ts +9 -0
  73. package/lib/import/validators/fields/ImportSlices/ImportSliceId.js +43 -0
  74. package/lib/import/validators/fields/ImportSlices/ImportSliceItem.d.ts +24 -0
  75. package/lib/import/validators/fields/ImportSlices/ImportSliceItem.js +87 -0
  76. package/lib/import/validators/fields/ImportSlices/ImportSliceItemContent.d.ts +12 -0
  77. package/lib/import/validators/fields/ImportSlices/ImportSliceItemContent.js +41 -0
  78. package/lib/import/validators/fields/ImportSlices/ImportSlices.d.ts +8 -0
  79. package/lib/import/validators/fields/ImportSlices/ImportSlices.js +29 -0
  80. package/lib/import/validators/fields/ImportSlices/SharedSlice/SharedSlice.d.ts +14 -0
  81. package/lib/import/validators/fields/ImportSlices/SharedSlice/SharedSlice.js +60 -0
  82. package/lib/import/validators/fields/ImportSlices/SharedSlice/errors.d.ts +4 -0
  83. package/lib/import/validators/fields/ImportSlices/SharedSlice/errors.js +7 -0
  84. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/OptionalSharedSliceId.d.ts +2 -0
  85. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/OptionalSharedSliceId.js +15 -0
  86. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContent.d.ts +17 -0
  87. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContent.js +30 -0
  88. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContentEntry.d.ts +43 -0
  89. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContentEntry.js +69 -0
  90. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/errors.d.ts +4 -0
  91. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/errors.js +6 -0
  92. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/index.d.ts +2 -0
  93. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/index.js +5 -0
  94. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/types.d.ts +1 -0
  95. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/types.js +2 -0
  96. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceId.d.ts +9 -0
  97. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceId.js +39 -0
  98. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceType.d.ts +11 -0
  99. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceType.js +24 -0
  100. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceVariation.d.ts +11 -0
  101. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceVariation.js +24 -0
  102. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/index.d.ts +5 -0
  103. package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/index.js +8 -0
  104. package/lib/import/validators/fields/ImportSlices/SharedSlice/index.d.ts +3 -0
  105. package/lib/import/validators/fields/ImportSlices/SharedSlice/index.js +6 -0
  106. package/lib/import/validators/fields/ImportSlices/SharedSlice/utils.d.ts +339 -0
  107. package/lib/import/validators/fields/ImportSlices/SharedSlice/utils.js +11 -0
  108. package/lib/import/validators/fields/ImportSlices/index.d.ts +1 -0
  109. package/lib/import/validators/fields/ImportSlices/index.js +4 -0
  110. package/lib/import/validators/fields/ImportSlices/utils.d.ts +4 -0
  111. package/lib/import/validators/fields/ImportSlices/utils.js +35 -0
  112. package/lib/import/validators/fields/Slices/SharedSlice/SharedSlice.d.ts +14 -0
  113. package/lib/import/validators/fields/Slices/SharedSlice/SharedSlice.js +60 -0
  114. package/lib/import/validators/fields/Slices/SharedSlice/errors.d.ts +5 -0
  115. package/lib/import/validators/fields/Slices/SharedSlice/errors.js +8 -0
  116. package/lib/import/validators/fields/Slices/SharedSlice/fields/OptionalSharedSliceId.d.ts +2 -0
  117. package/lib/import/validators/fields/Slices/SharedSlice/fields/OptionalSharedSliceId.js +15 -0
  118. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/SharedSliceContent.d.ts +17 -0
  119. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/SharedSliceContent.js +38 -0
  120. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/SharedSliceContentEntry.d.ts +43 -0
  121. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/SharedSliceContentEntry.js +69 -0
  122. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/errors.d.ts +5 -0
  123. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/errors.js +9 -0
  124. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/index.d.ts +2 -0
  125. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/index.js +5 -0
  126. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/types.d.ts +1 -0
  127. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceContent/types.js +2 -0
  128. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceId.d.ts +9 -0
  129. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceId.js +39 -0
  130. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceItems.d.ts +11 -0
  131. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceItems.js +25 -0
  132. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceType.d.ts +11 -0
  133. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceType.js +24 -0
  134. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceVariation.d.ts +11 -0
  135. package/lib/import/validators/fields/Slices/SharedSlice/fields/SharedSliceVariation.js +24 -0
  136. package/lib/import/validators/fields/Slices/SharedSlice/fields/index.d.ts +6 -0
  137. package/lib/import/validators/fields/Slices/SharedSlice/fields/index.js +9 -0
  138. package/lib/import/validators/fields/Slices/SharedSlice/index.d.ts +3 -0
  139. package/lib/import/validators/fields/Slices/SharedSlice/index.js +6 -0
  140. package/lib/import/validators/fields/Slices/SharedSlice/utils.d.ts +339 -0
  141. package/lib/import/validators/fields/Slices/SharedSlice/utils.js +11 -0
  142. package/lib/import/validators/fields/Slices/Slices.d.ts +8 -0
  143. package/lib/import/validators/fields/Slices/Slices.js +29 -0
  144. package/lib/import/validators/fields/Slices/index.d.ts +1 -0
  145. package/lib/import/validators/fields/Slices/index.js +4 -0
  146. package/lib/import/validators/fields/Slices/utils.d.ts +4 -0
  147. package/lib/import/validators/fields/Slices/utils.js +35 -0
  148. package/lib/import/validators/fields/Slices.d.ts +4 -0
  149. package/lib/import/validators/fields/Slices.js +12 -0
  150. package/lib/import/validators/fields/UID.d.ts +6 -0
  151. package/lib/import/validators/fields/UID.js +15 -0
  152. package/lib/import/validators/fields/index.d.ts +1 -5
  153. package/lib/import/validators/fields/index.js +1 -0
  154. package/lib/import/validators/fields/nestable/Boolean.d.ts +6 -0
  155. package/lib/import/validators/fields/nestable/Boolean.js +6 -0
  156. package/lib/import/validators/fields/nestable/Color.d.ts +5 -4
  157. package/lib/import/validators/fields/nestable/Color.js +4 -4
  158. package/lib/import/validators/fields/nestable/Date.d.ts +5 -3
  159. package/lib/import/validators/fields/nestable/Date.js +4 -2
  160. package/lib/import/validators/fields/nestable/Embed.d.ts +10 -0
  161. package/lib/import/validators/fields/nestable/Embed.js +36 -0
  162. package/lib/import/validators/fields/nestable/GeoPoint.d.ts +13 -0
  163. package/lib/import/validators/fields/nestable/GeoPoint.js +13 -0
  164. package/lib/import/validators/fields/nestable/Image/Decoder.d.ts +26 -0
  165. package/lib/import/validators/fields/nestable/Image/Decoder.js +40 -0
  166. package/lib/import/validators/fields/nestable/Image/Validator.d.ts +37 -0
  167. package/lib/import/validators/fields/nestable/Image/Validator.js +26 -0
  168. package/lib/import/validators/fields/nestable/Image/index.d.ts +26 -0
  169. package/lib/import/validators/fields/nestable/Image/index.js +28 -0
  170. package/lib/import/validators/fields/nestable/Image/model.d.ts +18 -0
  171. package/lib/import/validators/fields/nestable/Image/model.js +2 -0
  172. package/lib/import/validators/fields/nestable/Image.d.ts +45 -0
  173. package/lib/import/validators/fields/nestable/Image.js +45 -0
  174. package/lib/import/validators/fields/nestable/Link.d.ts +38 -0
  175. package/lib/import/validators/fields/nestable/Link.js +35 -0
  176. package/lib/import/validators/fields/nestable/Nestable.d.ts +120 -4
  177. package/lib/import/validators/fields/nestable/Nestable.js +59 -28
  178. package/lib/import/validators/fields/nestable/Number.d.ts +16 -9
  179. package/lib/import/validators/fields/nestable/Number.js +5 -4
  180. package/lib/import/validators/fields/nestable/Select.d.ts +15 -8
  181. package/lib/import/validators/fields/nestable/Select.js +4 -2
  182. package/lib/import/validators/fields/nestable/Text.d.ts +6 -3
  183. package/lib/import/validators/fields/nestable/Text.js +2 -1
  184. package/lib/import/validators/fields/nestable/Timestamp.d.ts +5 -3
  185. package/lib/import/validators/fields/nestable/Timestamp.js +4 -2
  186. package/lib/import/validators/fields/nestable/index.d.ts +6 -0
  187. package/lib/import/validators/fields/nestable/index.js +6 -0
  188. package/lib/utils/DocumentId.d.ts +1 -0
  189. package/lib/utils/DocumentId.js +7 -0
  190. package/lib/utils/Objects.d.ts +1 -0
  191. package/lib/utils/Objects.js +5 -1
  192. package/lib/utils/io-ts.d.ts +2 -0
  193. package/lib/utils/io-ts.js +22 -0
  194. package/lib/validators/BasicTypes.d.ts +9 -0
  195. package/lib/validators/BasicTypes.js +20 -1
  196. package/lib/validators/DefaultOrElse.d.ts +5 -0
  197. package/lib/validators/DefaultOrElse.js +21 -0
  198. package/lib/validators/NonEmptyString.js +2 -1
  199. package/lib/validators/NumberRange.d.ts +32 -0
  200. package/lib/validators/NumberRange.js +40 -0
  201. package/lib/validators/function.d.ts +20 -0
  202. package/lib/validators/function.js +41 -1
  203. package/lib/validators/index.d.ts +2 -1
  204. package/lib/validators/index.js +4 -2
  205. package/package.json +6 -3
  206. package/src/common/Asset.ts +25 -0
  207. package/src/common/Embed.ts +22 -0
  208. package/src/common/UUID.ts +18 -0
  209. package/src/common/index.ts +2 -0
  210. package/src/content/fields/GroupContent.ts +9 -5
  211. package/src/content/fields/slices/Slice/RepeatableContent.ts +0 -1
  212. package/src/customtypes/CustomType.ts +13 -0
  213. package/src/customtypes/widgets/nestable/NestableWidget.ts +0 -17
  214. package/src/import/converters/Document.ts +26 -10
  215. package/src/import/converters/fields/Slices/SharedSlice.ts +24 -0
  216. package/src/import/converters/fields/Slices/SharedSliceContent.ts +94 -0
  217. package/src/import/converters/fields/Slices/Slices.ts +20 -0
  218. package/src/import/converters/fields/Slices/index.ts +1 -0
  219. package/src/import/converters/fields/UID.ts +13 -0
  220. package/src/import/converters/fields/index.ts +2 -0
  221. package/src/import/converters/fields/nestable/Boolean.ts +13 -0
  222. package/src/import/converters/fields/nestable/Color.ts +7 -5
  223. package/src/import/converters/fields/nestable/Date.ts +12 -13
  224. package/src/import/converters/fields/nestable/Embed.ts +37 -0
  225. package/src/import/converters/fields/nestable/GeooPoint.ts +16 -0
  226. package/src/import/converters/fields/nestable/Image.ts +73 -0
  227. package/src/import/converters/fields/nestable/Link.ts +77 -0
  228. package/src/import/converters/fields/nestable/Nestable.ts +21 -2
  229. package/src/import/converters/fields/nestable/Number.ts +7 -5
  230. package/src/import/converters/fields/nestable/Select.ts +7 -5
  231. package/src/import/converters/fields/nestable/Text.ts +7 -5
  232. package/src/import/converters/fields/nestable/Timestamp.ts +8 -6
  233. package/src/import/converters/fields/nestable/index.ts +5 -0
  234. package/src/import/validators/Document.ts +86 -79
  235. package/src/import/validators/fields/ImportContent.ts +30 -0
  236. package/src/import/validators/fields/ImportField.ts +30 -0
  237. package/src/import/validators/fields/ImportSlices/ImportSlices.ts +54 -0
  238. package/src/import/validators/fields/ImportSlices/SharedSlice/SharedSlice.ts +114 -0
  239. package/src/import/validators/fields/ImportSlices/SharedSlice/errors.ts +6 -0
  240. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/OptionalSharedSliceId.ts +20 -0
  241. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContent.ts +61 -0
  242. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContentEntry.ts +100 -0
  243. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/errors.ts +10 -0
  244. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/index.ts +2 -0
  245. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/types.ts +1 -0
  246. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceId.ts +65 -0
  247. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceType.ts +45 -0
  248. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceVariation.ts +45 -0
  249. package/src/import/validators/fields/ImportSlices/SharedSlice/fields/index.ts +5 -0
  250. package/src/import/validators/fields/ImportSlices/SharedSlice/index.ts +3 -0
  251. package/src/import/validators/fields/ImportSlices/SharedSlice/utils.ts +21 -0
  252. package/src/import/validators/fields/ImportSlices/index.ts +1 -0
  253. package/src/import/validators/fields/ImportSlices/utils.ts +43 -0
  254. package/src/import/validators/fields/UID.ts +27 -0
  255. package/src/import/validators/fields/index.ts +1 -7
  256. package/src/import/validators/fields/nestable/Boolean.ts +7 -0
  257. package/src/import/validators/fields/nestable/Color.ts +23 -23
  258. package/src/import/validators/fields/nestable/Date.ts +26 -27
  259. package/src/import/validators/fields/nestable/Embed.ts +54 -0
  260. package/src/import/validators/fields/nestable/GeoPoint.ts +21 -0
  261. package/src/import/validators/fields/nestable/Image/Decoder.ts +61 -0
  262. package/src/import/validators/fields/nestable/Image/Validator.ts +35 -0
  263. package/src/import/validators/fields/nestable/Image/index.ts +45 -0
  264. package/src/import/validators/fields/nestable/Image/model.ts +18 -0
  265. package/src/import/validators/fields/nestable/Link.ts +54 -0
  266. package/src/import/validators/fields/nestable/Nestable.ts +65 -26
  267. package/src/import/validators/fields/nestable/Number.ts +32 -30
  268. package/src/import/validators/fields/nestable/Select.ts +32 -30
  269. package/src/import/validators/fields/nestable/Text.ts +6 -6
  270. package/src/import/validators/fields/nestable/Timestamp.ts +29 -26
  271. package/src/import/validators/fields/nestable/index.ts +6 -0
  272. package/src/utils/DocumentId.ts +9 -0
  273. package/src/utils/Objects.ts +10 -0
  274. package/src/utils/io-ts.ts +29 -0
  275. package/src/validators/BasicTypes.ts +53 -0
  276. package/src/validators/DefaultOrElse.ts +24 -0
  277. package/src/validators/NonEmptyString.ts +4 -4
  278. package/src/validators/NumberRange.ts +51 -0
  279. package/src/validators/function.ts +44 -0
  280. package/src/validators/index.ts +2 -1
  281. package/lib/import/converters/fields/utils.d.ts +0 -1
  282. package/lib/import/converters/fields/utils.js +0 -10
  283. package/lib/validators/NullOrT.d.ts +0 -2
  284. package/lib/validators/NullOrT.js +0 -13
  285. package/src/import/converters/fields/utils.ts +0 -7
  286. package/src/validators/NullOrT.ts +0 -18
@@ -276,7 +276,7 @@ export declare const NestableContent: t.UnionC<[t.ExactC<t.TypeC<{
276
276
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
277
277
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
278
278
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
279
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
279
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
280
280
  content: t.IntersectionC<[t.TypeC<{
281
281
  text: t.StringC;
282
282
  }>, t.PartialC<{
@@ -285,13 +285,13 @@ export declare const NestableContent: t.UnionC<[t.ExactC<t.TypeC<{
285
285
  } & {
286
286
  start: number;
287
287
  end: number;
288
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
288
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
289
289
  })[], ({
290
290
  data?: unknown;
291
291
  } & {
292
292
  start: number;
293
293
  end: number;
294
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
294
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
295
295
  })[], unknown>;
296
296
  }>]>;
297
297
  }>, t.PartialC<{
@@ -551,7 +551,7 @@ export declare const isNestableContent: (u: unknown) => u is {
551
551
  label?: string | null | undefined;
552
552
  direction?: string | null | undefined;
553
553
  }) | ({
554
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
554
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
555
555
  content: {
556
556
  text: string;
557
557
  } & {
@@ -560,7 +560,7 @@ export declare const isNestableContent: (u: unknown) => u is {
560
560
  } & {
561
561
  start: number;
562
562
  end: number;
563
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
563
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
564
564
  })[];
565
565
  };
566
566
  } & {
@@ -819,7 +819,7 @@ export declare const NestableLegacy: (ctx: LegacyContentCtx) => {
819
819
  label?: string | null | undefined;
820
820
  direction?: string | null | undefined;
821
821
  }) | ({
822
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
822
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
823
823
  content: {
824
824
  text: string;
825
825
  } & {
@@ -828,7 +828,7 @@ export declare const NestableLegacy: (ctx: LegacyContentCtx) => {
828
828
  } & {
829
829
  start: number;
830
830
  end: number;
831
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
831
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
832
832
  })[];
833
833
  };
834
834
  } & {
@@ -55,13 +55,13 @@ export declare const ValidatedMetas: (linkCodec: LinkCodec) => t.Type<({
55
55
  } & {
56
56
  start: number;
57
57
  end: number;
58
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
58
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
59
59
  })[], ({
60
60
  data?: unknown;
61
61
  } & {
62
62
  start: number;
63
63
  end: number;
64
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
64
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
65
65
  })[], unknown>;
66
66
  export declare const ImageBlock: t.ExactC<t.IntersectionC<[t.TypeC<{
67
67
  type: t.LiteralC<"image">;
@@ -191,7 +191,7 @@ export declare type EmbedBlock = t.TypeOf<typeof EmbedBlock>;
191
191
  export declare function checkEmbedBlock(block: Block): block is EmbedBlock;
192
192
  declare type LinkCodec = typeof Link | typeof LinkLegacy;
193
193
  export declare const TextBlock: t.ExactC<t.IntersectionC<[t.TypeC<{
194
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
194
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
195
195
  content: t.IntersectionC<[t.TypeC<{
196
196
  text: t.StringC;
197
197
  }>, t.PartialC<{
@@ -200,13 +200,13 @@ export declare const TextBlock: t.ExactC<t.IntersectionC<[t.TypeC<{
200
200
  } & {
201
201
  start: number;
202
202
  end: number;
203
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
203
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
204
204
  })[], ({
205
205
  data?: unknown;
206
206
  } & {
207
207
  start: number;
208
208
  end: number;
209
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
209
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
210
210
  })[], unknown>;
211
211
  }>]>;
212
212
  }>, t.PartialC<{
@@ -307,7 +307,7 @@ export declare const BlockLegacy: t.Type<({
307
307
  label?: string | null | undefined;
308
308
  direction?: string | null | undefined;
309
309
  }) | ({
310
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
310
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
311
311
  content: {
312
312
  text: string;
313
313
  } & {
@@ -316,7 +316,7 @@ export declare const BlockLegacy: t.Type<({
316
316
  } & {
317
317
  start: number;
318
318
  end: number;
319
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
319
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
320
320
  })[];
321
321
  };
322
322
  } & {
@@ -415,7 +415,7 @@ export declare const BlockLegacy: t.Type<({
415
415
  label?: string | null | undefined;
416
416
  direction?: string | null | undefined;
417
417
  }) | ({
418
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
418
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
419
419
  content: {
420
420
  text: string;
421
421
  } & {
@@ -424,7 +424,7 @@ export declare const BlockLegacy: t.Type<({
424
424
  } & {
425
425
  start: number;
426
426
  end: number;
427
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
427
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
428
428
  })[];
429
429
  };
430
430
  } & {
@@ -552,7 +552,7 @@ export declare const Block: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
552
552
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
553
553
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
554
554
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
555
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
555
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
556
556
  content: t.IntersectionC<[t.TypeC<{
557
557
  text: t.StringC;
558
558
  }>, t.PartialC<{
@@ -561,13 +561,13 @@ export declare const Block: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
561
561
  } & {
562
562
  start: number;
563
563
  end: number;
564
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
564
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
565
565
  })[], ({
566
566
  data?: unknown;
567
567
  } & {
568
568
  start: number;
569
569
  end: number;
570
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
570
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
571
571
  })[], unknown>;
572
572
  }>]>;
573
573
  }>, t.PartialC<{
@@ -96,7 +96,7 @@ export declare const isRichTextContent: (u: unknown) => u is {
96
96
  label?: string | null | undefined;
97
97
  direction?: string | null | undefined;
98
98
  }) | ({
99
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
99
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
100
100
  content: {
101
101
  text: string;
102
102
  } & {
@@ -105,7 +105,7 @@ export declare const isRichTextContent: (u: unknown) => u is {
105
105
  } & {
106
106
  start: number;
107
107
  end: number;
108
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
108
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
109
109
  })[];
110
110
  };
111
111
  } & {
@@ -236,7 +236,7 @@ export declare const RichTextContent: t.ExactC<t.TypeC<{
236
236
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
237
237
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
238
238
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
239
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
239
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
240
240
  content: t.IntersectionC<[t.TypeC<{
241
241
  text: t.StringC;
242
242
  }>, t.PartialC<{
@@ -245,13 +245,13 @@ export declare const RichTextContent: t.ExactC<t.TypeC<{
245
245
  } & {
246
246
  start: number;
247
247
  end: number;
248
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
248
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
249
249
  })[], ({
250
250
  data?: unknown;
251
251
  } & {
252
252
  start: number;
253
253
  end: number;
254
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
254
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
255
255
  })[], unknown>;
256
256
  }>]>;
257
257
  }>, t.PartialC<{
@@ -356,7 +356,7 @@ export declare const RichTextLegacy: (ctx: LegacyContentCtx) => t.Type<{
356
356
  label?: string | null | undefined;
357
357
  direction?: string | null | undefined;
358
358
  }) | ({
359
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
359
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
360
360
  content: {
361
361
  text: string;
362
362
  } & {
@@ -365,7 +365,7 @@ export declare const RichTextLegacy: (ctx: LegacyContentCtx) => t.Type<{
365
365
  } & {
366
366
  start: number;
367
367
  end: number;
368
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
368
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
369
369
  })[];
370
370
  };
371
371
  } & {
@@ -465,7 +465,7 @@ export declare const RichTextLegacy: (ctx: LegacyContentCtx) => t.Type<{
465
465
  label?: string | null | undefined;
466
466
  direction?: string | null | undefined;
467
467
  }) | ({
468
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
468
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
469
469
  content: {
470
470
  text: string;
471
471
  } & {
@@ -474,7 +474,7 @@ export declare const RichTextLegacy: (ctx: LegacyContentCtx) => t.Type<{
474
474
  } & {
475
475
  start: number;
476
476
  end: number;
477
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
477
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
478
478
  })[];
479
479
  };
480
480
  } & {
@@ -252,7 +252,7 @@ export declare const isCompositeSliceContent: (u: unknown) => u is {
252
252
  label?: string | null | undefined;
253
253
  direction?: string | null | undefined;
254
254
  }) | ({
255
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
255
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
256
256
  content: {
257
257
  text: string;
258
258
  } & {
@@ -261,7 +261,7 @@ export declare const isCompositeSliceContent: (u: unknown) => u is {
261
261
  } & {
262
262
  start: number;
263
263
  end: number;
264
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
264
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
265
265
  })[];
266
266
  };
267
267
  } & {
@@ -522,7 +522,7 @@ export declare const isCompositeSliceContent: (u: unknown) => u is {
522
522
  label?: string | null | undefined;
523
523
  direction?: string | null | undefined;
524
524
  }) | ({
525
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
525
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
526
526
  content: {
527
527
  text: string;
528
528
  } & {
@@ -531,7 +531,7 @@ export declare const isCompositeSliceContent: (u: unknown) => u is {
531
531
  } & {
532
532
  start: number;
533
533
  end: number;
534
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
534
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
535
535
  })[];
536
536
  };
537
537
  } & {
@@ -794,7 +794,7 @@ export declare const CompositeSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
794
794
  label?: string | null | undefined;
795
795
  direction?: string | null | undefined;
796
796
  }) | ({
797
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
797
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
798
798
  content: {
799
799
  text: string;
800
800
  } & {
@@ -803,7 +803,7 @@ export declare const CompositeSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
803
803
  } & {
804
804
  start: number;
805
805
  end: number;
806
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
806
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
807
807
  })[];
808
808
  };
809
809
  } & {
@@ -1064,7 +1064,7 @@ export declare const CompositeSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
1064
1064
  label?: string | null | undefined;
1065
1065
  direction?: string | null | undefined;
1066
1066
  }) | ({
1067
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1067
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1068
1068
  content: {
1069
1069
  text: string;
1070
1070
  } & {
@@ -1073,7 +1073,7 @@ export declare const CompositeSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
1073
1073
  } & {
1074
1074
  start: number;
1075
1075
  end: number;
1076
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1076
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1077
1077
  })[];
1078
1078
  };
1079
1079
  } & {
@@ -1368,7 +1368,7 @@ export declare const CompositeSliceContent: t.ExactC<t.TypeC<{
1368
1368
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1369
1369
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1370
1370
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1371
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1371
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1372
1372
  content: t.IntersectionC<[t.TypeC<{
1373
1373
  text: t.StringC;
1374
1374
  }>, t.PartialC<{
@@ -1377,13 +1377,13 @@ export declare const CompositeSliceContent: t.ExactC<t.TypeC<{
1377
1377
  } & {
1378
1378
  start: number;
1379
1379
  end: number;
1380
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1380
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1381
1381
  })[], ({
1382
1382
  data?: unknown;
1383
1383
  } & {
1384
1384
  start: number;
1385
1385
  end: number;
1386
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1386
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1387
1387
  })[], unknown>;
1388
1388
  }>]>;
1389
1389
  }>, t.PartialC<{
@@ -1671,7 +1671,7 @@ export declare const CompositeSliceContent: t.ExactC<t.TypeC<{
1671
1671
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1672
1672
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1673
1673
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1674
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1674
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1675
1675
  content: t.IntersectionC<[t.TypeC<{
1676
1676
  text: t.StringC;
1677
1677
  }>, t.PartialC<{
@@ -1680,13 +1680,13 @@ export declare const CompositeSliceContent: t.ExactC<t.TypeC<{
1680
1680
  } & {
1681
1681
  start: number;
1682
1682
  end: number;
1683
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1683
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1684
1684
  })[], ({
1685
1685
  data?: unknown;
1686
1686
  } & {
1687
1687
  start: number;
1688
1688
  end: number;
1689
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1689
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1690
1690
  })[], unknown>;
1691
1691
  }>]>;
1692
1692
  }>, t.PartialC<{
@@ -250,7 +250,7 @@ export declare const RepeatableWidgetsLegacy: (ctx: LegacyContentCtx) => t.Array
250
250
  label?: string | null | undefined;
251
251
  direction?: string | null | undefined;
252
252
  }) | ({
253
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
253
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
254
254
  content: {
255
255
  text: string;
256
256
  } & {
@@ -259,7 +259,7 @@ export declare const RepeatableWidgetsLegacy: (ctx: LegacyContentCtx) => t.Array
259
259
  } & {
260
260
  start: number;
261
261
  end: number;
262
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
262
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
263
263
  })[];
264
264
  };
265
265
  } & {
@@ -550,7 +550,7 @@ export declare const RepeatableWidgets: t.ArrayC<t.ExactC<t.TypeC<{
550
550
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
551
551
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
552
552
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
553
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
553
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
554
554
  content: t.IntersectionC<[t.TypeC<{
555
555
  text: t.StringC;
556
556
  }>, t.PartialC<{
@@ -559,13 +559,13 @@ export declare const RepeatableWidgets: t.ArrayC<t.ExactC<t.TypeC<{
559
559
  } & {
560
560
  start: number;
561
561
  end: number;
562
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
562
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
563
563
  })[], ({
564
564
  data?: unknown;
565
565
  } & {
566
566
  start: number;
567
567
  end: number;
568
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
568
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
569
569
  })[], unknown>;
570
570
  }>]>;
571
571
  }>, t.PartialC<{
@@ -14,5 +14,4 @@ const RepeatableWidgetsBlock = t.strict({
14
14
  __TYPE__: t.literal(GroupContent_1.GroupItemContentType),
15
15
  value: t.array(RepeatableWidget),
16
16
  });
17
- t.array(RepeatableWidget);
18
17
  exports.RepeatableWidgets = t.array(RepeatableWidgetsBlock);
@@ -253,7 +253,7 @@ export declare const isSharedSliceContent: (u: unknown) => u is {
253
253
  label?: string | null | undefined;
254
254
  direction?: string | null | undefined;
255
255
  }) | ({
256
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
256
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
257
257
  content: {
258
258
  text: string;
259
259
  } & {
@@ -262,7 +262,7 @@ export declare const isSharedSliceContent: (u: unknown) => u is {
262
262
  } & {
263
263
  start: number;
264
264
  end: number;
265
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
265
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
266
266
  })[];
267
267
  };
268
268
  } & {
@@ -523,7 +523,7 @@ export declare const isSharedSliceContent: (u: unknown) => u is {
523
523
  label?: string | null | undefined;
524
524
  direction?: string | null | undefined;
525
525
  }) | ({
526
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
526
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
527
527
  content: {
528
528
  text: string;
529
529
  } & {
@@ -532,7 +532,7 @@ export declare const isSharedSliceContent: (u: unknown) => u is {
532
532
  } & {
533
533
  start: number;
534
534
  end: number;
535
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
535
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
536
536
  })[];
537
537
  };
538
538
  } & {
@@ -796,7 +796,7 @@ export declare const SharedSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
796
796
  label?: string | null | undefined;
797
797
  direction?: string | null | undefined;
798
798
  }) | ({
799
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
799
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
800
800
  content: {
801
801
  text: string;
802
802
  } & {
@@ -805,7 +805,7 @@ export declare const SharedSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
805
805
  } & {
806
806
  start: number;
807
807
  end: number;
808
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
808
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
809
809
  })[];
810
810
  };
811
811
  } & {
@@ -1066,7 +1066,7 @@ export declare const SharedSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
1066
1066
  label?: string | null | undefined;
1067
1067
  direction?: string | null | undefined;
1068
1068
  }) | ({
1069
- type: "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1069
+ type: "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1070
1070
  content: {
1071
1071
  text: string;
1072
1072
  } & {
@@ -1075,7 +1075,7 @@ export declare const SharedSliceLegacy: (ctx: LegacyContentCtx) => t.Type<{
1075
1075
  } & {
1076
1076
  start: number;
1077
1077
  end: number;
1078
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1078
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1079
1079
  })[];
1080
1080
  };
1081
1081
  } & {
@@ -1372,7 +1372,7 @@ export declare const SharedSliceContent: t.ExactC<t.TypeC<{
1372
1372
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1373
1373
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1374
1374
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1375
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1375
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1376
1376
  content: t.IntersectionC<[t.TypeC<{
1377
1377
  text: t.StringC;
1378
1378
  }>, t.PartialC<{
@@ -1381,13 +1381,13 @@ export declare const SharedSliceContent: t.ExactC<t.TypeC<{
1381
1381
  } & {
1382
1382
  start: number;
1383
1383
  end: number;
1384
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1384
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1385
1385
  })[], ({
1386
1386
  data?: unknown;
1387
1387
  } & {
1388
1388
  start: number;
1389
1389
  end: number;
1390
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1390
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1391
1391
  })[], unknown>;
1392
1392
  }>]>;
1393
1393
  }>, t.PartialC<{
@@ -1675,7 +1675,7 @@ export declare const SharedSliceContent: t.ExactC<t.TypeC<{
1675
1675
  label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1676
1676
  direction: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1677
1677
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1678
- type: t.Type<"paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1678
+ type: t.Type<"image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", "image" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl", unknown>;
1679
1679
  content: t.IntersectionC<[t.TypeC<{
1680
1680
  text: t.StringC;
1681
1681
  }>, t.PartialC<{
@@ -1684,13 +1684,13 @@ export declare const SharedSliceContent: t.ExactC<t.TypeC<{
1684
1684
  } & {
1685
1685
  start: number;
1686
1686
  end: number;
1687
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1687
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1688
1688
  })[], ({
1689
1689
  data?: unknown;
1690
1690
  } & {
1691
1691
  start: number;
1692
1692
  end: number;
1693
- type: "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "image" | "embed" | "list-item" | "o-list-item" | "rtl";
1693
+ type: "image" | "label" | "paragraph" | "heading1" | "heading2" | "heading3" | "heading4" | "heading5" | "heading6" | "strong" | "em" | "preformatted" | "hyperlink" | "embed" | "list-item" | "o-list-item" | "rtl";
1694
1694
  })[], unknown>;
1695
1695
  }>]>;
1696
1696
  }>, t.PartialC<{