@prismicio/types-internal 3.11.2 → 3.12.0-alpha.0

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 (90) hide show
  1. package/CHANGELOG.md +764 -0
  2. package/lib/content/Document.d.ts +32 -7
  3. package/lib/content/Document.js +22 -8
  4. package/lib/content/LegacyContentCtx.d.ts +25 -3
  5. package/lib/content/LegacyContentCtx.js +67 -5
  6. package/lib/content/fields/GroupContent.d.ts +4 -2
  7. package/lib/content/fields/GroupContent.js +38 -15
  8. package/lib/content/fields/UIDContent.js +1 -0
  9. package/lib/content/fields/WidgetContent.d.ts +6 -0
  10. package/lib/content/fields/nestable/BooleanContent.js +1 -0
  11. package/lib/content/fields/nestable/EmbedContent.js +1 -0
  12. package/lib/content/fields/nestable/FieldContent/ColorContent.js +1 -0
  13. package/lib/content/fields/nestable/FieldContent/DateContent.js +1 -0
  14. package/lib/content/fields/nestable/FieldContent/NumberContent.js +1 -0
  15. package/lib/content/fields/nestable/FieldContent/RangeContent.js +1 -0
  16. package/lib/content/fields/nestable/FieldContent/SelectContent.js +1 -0
  17. package/lib/content/fields/nestable/FieldContent/TextContent.js +1 -0
  18. package/lib/content/fields/nestable/FieldContent/TimestampContent.js +1 -0
  19. package/lib/content/fields/nestable/GeoPointContent.js +1 -0
  20. package/lib/content/fields/nestable/ImageContent.js +1 -0
  21. package/lib/content/fields/nestable/IntegrationFieldContent.js +1 -0
  22. package/lib/content/fields/nestable/LinkContent.js +2 -0
  23. package/lib/content/fields/nestable/RepeatableContent.js +1 -0
  24. package/lib/content/fields/nestable/RichTextContent/index.js +1 -0
  25. package/lib/content/fields/nestable/SeparatorContent.js +1 -0
  26. package/lib/content/fields/nestable/TableContent.js +1 -0
  27. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +3 -0
  28. package/lib/content/fields/slices/Slice/CompositeSliceContent.js +19 -5
  29. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +5 -4
  30. package/lib/content/fields/slices/Slice/RepeatableContent.js +2 -1
  31. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +3 -0
  32. package/lib/content/fields/slices/Slice/SharedSliceContent.js +26 -19
  33. package/lib/content/fields/slices/Slice/SimpleSliceContent.js +1 -0
  34. package/lib/content/fields/slices/Slice/index.d.ts +4 -0
  35. package/lib/content/fields/slices/SliceItem.d.ts +13 -1
  36. package/lib/content/fields/slices/SliceItem.js +14 -3
  37. package/lib/content/fields/slices/SlicesContent.d.ts +18 -12
  38. package/lib/content/fields/slices/SlicesContent.js +3 -1
  39. package/lib/customtypes/CustomType.js +6 -9
  40. package/lib/customtypes/Section.js +3 -8
  41. package/lib/customtypes/widgets/Group.js +20 -20
  42. package/lib/customtypes/widgets/nestable/NestableWidgetZ.d.ts +3 -0
  43. package/lib/customtypes/widgets/nestable/NestableWidgetZ.js +29 -0
  44. package/lib/customtypes/widgets/slices/CompositeSlice.js +9 -22
  45. package/lib/customtypes/widgets/slices/SharedSlice.js +18 -37
  46. package/lib/customtypes/widgets/slices/SharedSliceZ.d.ts +16 -0
  47. package/lib/customtypes/widgets/slices/SharedSliceZ.js +39 -0
  48. package/lib/customtypes/widgets/slices/SlicePrimaryWidgetZ.d.ts +3 -0
  49. package/lib/customtypes/widgets/slices/SlicePrimaryWidgetZ.js +6 -0
  50. package/lib/customtypes/widgets/slices/Slices.js +9 -16
  51. package/package.json +1 -1
  52. package/src/content/Document.ts +31 -8
  53. package/src/content/LegacyContentCtx.ts +72 -16
  54. package/src/content/fields/GroupContent.ts +56 -14
  55. package/src/content/fields/UIDContent.ts +1 -0
  56. package/src/content/fields/nestable/BooleanContent.ts +1 -0
  57. package/src/content/fields/nestable/EmbedContent.ts +1 -0
  58. package/src/content/fields/nestable/FieldContent/ColorContent.ts +1 -0
  59. package/src/content/fields/nestable/FieldContent/DateContent.ts +1 -0
  60. package/src/content/fields/nestable/FieldContent/NumberContent.ts +1 -0
  61. package/src/content/fields/nestable/FieldContent/RangeContent.ts +1 -0
  62. package/src/content/fields/nestable/FieldContent/SelectContent.ts +1 -0
  63. package/src/content/fields/nestable/FieldContent/TextContent.ts +1 -0
  64. package/src/content/fields/nestable/FieldContent/TimestampContent.ts +1 -0
  65. package/src/content/fields/nestable/GeoPointContent.ts +1 -0
  66. package/src/content/fields/nestable/ImageContent.ts +1 -0
  67. package/src/content/fields/nestable/IntegrationFieldContent.ts +1 -0
  68. package/src/content/fields/nestable/LinkContent.ts +2 -0
  69. package/src/content/fields/nestable/RepeatableContent.ts +4 -0
  70. package/src/content/fields/nestable/RichTextContent/index.ts +1 -0
  71. package/src/content/fields/nestable/SeparatorContent.ts +1 -0
  72. package/src/content/fields/nestable/TableContent.ts +1 -0
  73. package/src/content/fields/slices/Slice/CompositeSliceContent.ts +19 -5
  74. package/src/content/fields/slices/Slice/RepeatableContent.ts +7 -2
  75. package/src/content/fields/slices/Slice/SharedSliceContent.ts +26 -19
  76. package/src/content/fields/slices/Slice/SimpleSliceContent.ts +1 -0
  77. package/src/content/fields/slices/SliceItem.ts +15 -4
  78. package/src/content/fields/slices/SlicesContent.ts +10 -2
  79. package/src/customtypes/CustomType.ts +6 -9
  80. package/src/customtypes/Section.ts +3 -9
  81. package/src/customtypes/widgets/Group.ts +20 -21
  82. package/src/customtypes/widgets/slices/CompositeSlice.ts +9 -22
  83. package/src/customtypes/widgets/slices/SharedSlice.ts +23 -38
  84. package/src/customtypes/widgets/slices/Slices.ts +9 -15
  85. package/lib/content/fields/RepeatableContent.d.ts +0 -162
  86. package/lib/content/fields/RepeatableContent.js +0 -93
  87. package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -727
  88. package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
  89. package/lib/customtypes/widgets/slices/SliceWidget.d.ts +0 -327
  90. package/lib/customtypes/widgets/slices/SliceWidget.js +0 -8
package/CHANGELOG.md ADDED
@@ -0,0 +1,764 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [3.11.1](https://github.com/prismicio/prismic-types-internal/compare/v3.8.0...v3.11.1) (2025-06-09)
6
+
7
+
8
+ ### Features
9
+
10
+ * export CustomTypes codec ([#127](https://github.com/prismicio/prismic-types-internal/issues/127)) ([abe0466](https://github.com/prismicio/prismic-types-internal/commit/abe04663a81cd37a4f9a397cb294db3dfcd62453))
11
+
12
+
13
+ ### Chore
14
+
15
+ * **release:** 3.10.0 ([#126](https://github.com/prismicio/prismic-types-internal/issues/126)) ([d13d3e2](https://github.com/prismicio/prismic-types-internal/commit/d13d3e2f5e5f59ea6c5b81c521b4f0937cc53fee))
16
+ * **release:** 3.11.0 ([#128](https://github.com/prismicio/prismic-types-internal/issues/128)) ([600dd44](https://github.com/prismicio/prismic-types-internal/commit/600dd44f6bd4c84639667020601332e61a52a2ad))
17
+
18
+ ## [3.11.0](https://github.com/prismicio/prismic-types-internal/compare/v3.8.0...v3.11.0) (2025-06-05)
19
+
20
+
21
+ ### Features
22
+
23
+ * export CustomTypes codec ([#127](https://github.com/prismicio/prismic-types-internal/issues/127)) ([abe0466](https://github.com/prismicio/prismic-types-internal/commit/abe04663a81cd37a4f9a397cb294db3dfcd62453))
24
+
25
+
26
+ ### Chore
27
+
28
+ * **release:** 3.10.0 ([#126](https://github.com/prismicio/prismic-types-internal/issues/126)) ([d13d3e2](https://github.com/prismicio/prismic-types-internal/commit/d13d3e2f5e5f59ea6c5b81c521b4f0937cc53fee))
29
+
30
+ ## [3.11.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v3.8.0...v3.11.0-alpha.0) (2025-06-04)
31
+
32
+
33
+ ### Features
34
+
35
+ * export CustomTypes ([436b708](https://github.com/prismicio/prismic-types-internal/commit/436b7084e714a8fa5f88c7ba4c963c85bef78b58))
36
+
37
+
38
+ ### Chore
39
+
40
+ * **release:** 3.10.0 ([#126](https://github.com/prismicio/prismic-types-internal/issues/126)) ([d13d3e2](https://github.com/prismicio/prismic-types-internal/commit/d13d3e2f5e5f59ea6c5b81c521b4f0937cc53fee))
41
+
42
+ ### [3.10.1](https://github.com/prismicio/prismic-types-internal/compare/v3.10.0-alpha.1...v3.10.1) (2025-05-16)
43
+
44
+
45
+ ### Chore
46
+
47
+ * **release:** 3.10.0 ([#126](https://github.com/prismicio/prismic-types-internal/issues/126)) ([d13d3e2](https://github.com/prismicio/prismic-types-internal/commit/d13d3e2f5e5f59ea6c5b81c521b4f0937cc53fee))
48
+
49
+ ## [3.10.0](https://github.com/prismicio/prismic-types-internal/compare/v3.8.0...v3.10.0) (2025-05-15)
50
+
51
+ ## [3.10.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v3.10.0-alpha.0...v3.10.0-alpha.1) (2025-05-14)
52
+
53
+ ## [3.10.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v3.9.0...v3.10.0-alpha.0) (2025-04-28)
54
+
55
+ ## [3.9.0](https://github.com/prismicio/prismic-types-internal/compare/v3.9.0-alpha.0...v3.9.0) (2025-04-23)
56
+
57
+ ## [3.9.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v3.8.0...v3.9.0-alpha.0) (2025-04-16)
58
+
59
+ ## [3.8.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.8.0) (2025-03-17)
60
+
61
+
62
+ ### Features
63
+
64
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
65
+ * add traverseTableContent function ([#117](https://github.com/prismicio/prismic-types-internal/issues/117)) ([92ddae4](https://github.com/prismicio/prismic-types-internal/commit/92ddae4f42881e2cd05f488e82c5c6dfd986bbf5))
66
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
67
+ * support key for table field content ([#122](https://github.com/prismicio/prismic-types-internal/issues/122)) ([4c486a3](https://github.com/prismicio/prismic-types-internal/commit/4c486a395fc44f077921f6a62923d5e4a8d46301))
68
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
69
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
70
+
71
+
72
+ ### Bug Fixes
73
+
74
+ * allow full rich text in table cell ([#119](https://github.com/prismicio/prismic-types-internal/issues/119)) ([12d6396](https://github.com/prismicio/prismic-types-internal/commit/12d6396f75f1f02a6f563b75e275508408aa1162))
75
+ * ensure group traverse don't check def ([#118](https://github.com/prismicio/prismic-types-internal/issues/118)) ([d3d5946](https://github.com/prismicio/prismic-types-internal/commit/d3d5946a8e8de2c7fbb58bb3a777f1d1611f55e7))
76
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
77
+
78
+
79
+ ### Refactor
80
+
81
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
82
+
83
+ ## [3.8.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.8.0-alpha.0) (2025-03-14)
84
+
85
+
86
+ ### Features
87
+
88
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
89
+ * add traverseTableContent function ([#117](https://github.com/prismicio/prismic-types-internal/issues/117)) ([92ddae4](https://github.com/prismicio/prismic-types-internal/commit/92ddae4f42881e2cd05f488e82c5c6dfd986bbf5))
90
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
91
+ * support key for table field content ([17d6041](https://github.com/prismicio/prismic-types-internal/commit/17d6041138eb4326d9f1d4f75cefd94e34a7b5d2))
92
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
93
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
94
+
95
+
96
+ ### Bug Fixes
97
+
98
+ * allow full rich text in table cell ([#119](https://github.com/prismicio/prismic-types-internal/issues/119)) ([12d6396](https://github.com/prismicio/prismic-types-internal/commit/12d6396f75f1f02a6f563b75e275508408aa1162))
99
+ * ensure group traverse don't check def ([#118](https://github.com/prismicio/prismic-types-internal/issues/118)) ([d3d5946](https://github.com/prismicio/prismic-types-internal/commit/d3d5946a8e8de2c7fbb58bb3a777f1d1611f55e7))
100
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
101
+
102
+
103
+ ### Refactor
104
+
105
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
106
+
107
+ ## [3.7.0](https://github.com/prismicio/prismic-types-internal/compare/v3.7.0-alpha.1...v3.7.0) (2025-03-10)
108
+
109
+ ## [3.7.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.7.0-alpha.1) (2025-03-10)
110
+
111
+
112
+ ### Features
113
+
114
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
115
+ * add column width property to table cells ([5928f50](https://github.com/prismicio/prismic-types-internal/commit/5928f50f065a7f7a67907037f5716deeffc0664c))
116
+ * add exact ([f6c66e8](https://github.com/prismicio/prismic-types-internal/commit/f6c66e868cf6bc87c985c4efd55f61eda6a98f71))
117
+ * add traverseTableContent function ([#117](https://github.com/prismicio/prismic-types-internal/issues/117)) ([92ddae4](https://github.com/prismicio/prismic-types-internal/commit/92ddae4f42881e2cd05f488e82c5c6dfd986bbf5))
118
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
119
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
120
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
121
+
122
+
123
+ ### Bug Fixes
124
+
125
+ * allow full rich text in table cell ([#119](https://github.com/prismicio/prismic-types-internal/issues/119)) ([12d6396](https://github.com/prismicio/prismic-types-internal/commit/12d6396f75f1f02a6f563b75e275508408aa1162))
126
+ * **ci:** update cache action to v4 ([de98416](https://github.com/prismicio/prismic-types-internal/commit/de9841645d4b0a67100ed21ab2433b4735718265))
127
+ * ensure group traverse don't check def ([#118](https://github.com/prismicio/prismic-types-internal/issues/118)) ([d3d5946](https://github.com/prismicio/prismic-types-internal/commit/d3d5946a8e8de2c7fbb58bb3a777f1d1611f55e7))
128
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
129
+
130
+
131
+ ### Chore
132
+
133
+ * **release:** 3.7.0-alpha.0 ([b61c801](https://github.com/prismicio/prismic-types-internal/commit/b61c8018b357f6811b854bb0589311259920d756))
134
+
135
+
136
+ ### Refactor
137
+
138
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
139
+ * **test:** remove columnWidth ([a5f4703](https://github.com/prismicio/prismic-types-internal/commit/a5f47037bbca1ee8d262678185fba6a40f616b39))
140
+
141
+ ## [3.7.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.7.0-alpha.0) (2025-03-05)
142
+
143
+
144
+ ### Features
145
+
146
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
147
+ * add column width property to table cells ([5928f50](https://github.com/prismicio/prismic-types-internal/commit/5928f50f065a7f7a67907037f5716deeffc0664c))
148
+ * add traverseTableContent function ([#117](https://github.com/prismicio/prismic-types-internal/issues/117)) ([92ddae4](https://github.com/prismicio/prismic-types-internal/commit/92ddae4f42881e2cd05f488e82c5c6dfd986bbf5))
149
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
150
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
151
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
152
+
153
+
154
+ ### Bug Fixes
155
+
156
+ * allow full rich text in table cell ([#119](https://github.com/prismicio/prismic-types-internal/issues/119)) ([12d6396](https://github.com/prismicio/prismic-types-internal/commit/12d6396f75f1f02a6f563b75e275508408aa1162))
157
+ * ensure group traverse don't check def ([#118](https://github.com/prismicio/prismic-types-internal/issues/118)) ([d3d5946](https://github.com/prismicio/prismic-types-internal/commit/d3d5946a8e8de2c7fbb58bb3a777f1d1611f55e7))
158
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
159
+
160
+
161
+ ### Refactor
162
+
163
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
164
+
165
+ ## [3.6.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.6.0) (2025-02-10)
166
+
167
+
168
+ ### Features
169
+
170
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
171
+ * add traverseTableContent function ([#117](https://github.com/prismicio/prismic-types-internal/issues/117)) ([92ddae4](https://github.com/prismicio/prismic-types-internal/commit/92ddae4f42881e2cd05f488e82c5c6dfd986bbf5))
172
+ * allow full rich text in table cell ([e1f935b](https://github.com/prismicio/prismic-types-internal/commit/e1f935bc0faca0bd9b0b2379ecba183a01e3ba46))
173
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
174
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
175
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
176
+
177
+
178
+ ### Bug Fixes
179
+
180
+ * ensure group traverse don't check def ([#118](https://github.com/prismicio/prismic-types-internal/issues/118)) ([d3d5946](https://github.com/prismicio/prismic-types-internal/commit/d3d5946a8e8de2c7fbb58bb3a777f1d1611f55e7))
181
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
182
+
183
+
184
+ ### Refactor
185
+
186
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
187
+
188
+ ## [3.5.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.5.0) (2025-02-04)
189
+
190
+
191
+ ### Features
192
+
193
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
194
+ * add traverseTableContent function ([1805498](https://github.com/prismicio/prismic-types-internal/commit/18054985a6f083ecaa583eb0d800f2f4be7b9ab4))
195
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
196
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
197
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
198
+
199
+
200
+ ### Bug Fixes
201
+
202
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
203
+
204
+
205
+ ### Refactor
206
+
207
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
208
+
209
+
210
+ ### Chore
211
+
212
+ * **release:** 3.4.0 ([77ceacf](https://github.com/prismicio/prismic-types-internal/commit/77ceacf5cfb554932248305d76b8f86036a8ccfa))
213
+ * remove old comment ([3d642fe](https://github.com/prismicio/prismic-types-internal/commit/3d642fef654be427e283a23594703bfb4378763a))
214
+ * return empty table cell when filtered out ([981a46d](https://github.com/prismicio/prismic-types-internal/commit/981a46deb41e4e2fe0c34d2cd1e70b4f1078d4df))
215
+
216
+ ## [3.4.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.4.0) (2025-02-04)
217
+
218
+
219
+ ### Features
220
+
221
+ * add a table cell config export ([#116](https://github.com/prismicio/prismic-types-internal/issues/116)) ([d708d20](https://github.com/prismicio/prismic-types-internal/commit/d708d20e14d2ed52dbbe52690361a945c8a39f27))
222
+ * add traverseTableContent function ([1805498](https://github.com/prismicio/prismic-types-internal/commit/18054985a6f083ecaa583eb0d800f2f4be7b9ab4))
223
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
224
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
225
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
226
+
227
+
228
+ ### Bug Fixes
229
+
230
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
231
+
232
+
233
+ ### Refactor
234
+
235
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
236
+
237
+
238
+ ### Chore
239
+
240
+ * remove old comment ([3d642fe](https://github.com/prismicio/prismic-types-internal/commit/3d642fef654be427e283a23594703bfb4378763a))
241
+ * return empty table cell when filtered out ([981a46d](https://github.com/prismicio/prismic-types-internal/commit/981a46deb41e4e2fe0c34d2cd1e70b4f1078d4df))
242
+
243
+ ## [3.4.0-alpha.16](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.4.0-alpha.16) (2025-01-30)
244
+
245
+
246
+ ### Features
247
+
248
+ * add a table cell config export ([5079302](https://github.com/prismicio/prismic-types-internal/commit/50793024af9ca073c5aa3bde6673ad926d11f76f))
249
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
250
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
251
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
252
+
253
+
254
+ ### Bug Fixes
255
+
256
+ * legacy parsing issue + tests ([#115](https://github.com/prismicio/prismic-types-internal/issues/115)) ([eca23b0](https://github.com/prismicio/prismic-types-internal/commit/eca23b07666791145249e927ecb9e27c070f3c5a))
257
+
258
+
259
+ ### Refactor
260
+
261
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
262
+
263
+
264
+ ### Documentation
265
+
266
+ * add a note about fieldset ([fd6b675](https://github.com/prismicio/prismic-types-internal/commit/fd6b675eaa6f6b2d2ec3561d50e91662f8cf23da))
267
+
268
+
269
+ ### Chore
270
+
271
+ * rename to TableCellConfig ([06cddd5](https://github.com/prismicio/prismic-types-internal/commit/06cddd5dccc35bcda0307bd6a58dd19ba733fb8e))
272
+
273
+ ## [3.4.0-alpha.15](https://github.com/prismicio/prismic-types-internal/compare/v3.4.0-alpha.11...v3.4.0-alpha.15) (2025-01-30)
274
+
275
+
276
+ ### Features
277
+
278
+ * add TableRow type export ([0c745b1](https://github.com/prismicio/prismic-types-internal/commit/0c745b1866df467fb11606165b957472068058d2))
279
+ * make table cell content a rich text field ([f882caf](https://github.com/prismicio/prismic-types-internal/commit/f882cafb68cd74104f9e2a3fe2f7e6f52002f116))
280
+ * make table cell content a rich text field ([#114](https://github.com/prismicio/prismic-types-internal/issues/114)) ([7f8e794](https://github.com/prismicio/prismic-types-internal/commit/7f8e794d15f3e76e4035de31e6e8d3c4bcc65f38))
281
+
282
+
283
+ ### Bug Fixes
284
+
285
+ * legacy parsing issue + tests ([4689458](https://github.com/prismicio/prismic-types-internal/commit/46894587e2a6690ece7b4b44bdafd4357e8bfc71))
286
+
287
+
288
+ ### Refactor
289
+
290
+ * stop using .is from codec for group and repeatable ([#113](https://github.com/prismicio/prismic-types-internal/issues/113)) ([421ee5c](https://github.com/prismicio/prismic-types-internal/commit/421ee5c24da59f8ae174a49d8ee66c70f94cf551))
291
+
292
+ ## [3.4.0-alpha.11](https://github.com/prismicio/prismic-types-internal/compare/v3.4.0-alpha.3...v3.4.0-alpha.11) (2025-01-22)
293
+
294
+
295
+ ### Chore
296
+
297
+ * remove the unneeded fieldset property ([6a617b8](https://github.com/prismicio/prismic-types-internal/commit/6a617b8204a5e35a0ba53ceff2fd87b7ba92fc9a))
298
+
299
+ ## [3.4.0-alpha.3](https://github.com/prismicio/prismic-types-internal/compare/v3.4.0-alpha.2...v3.4.0-alpha.3) (2025-01-21)
300
+
301
+
302
+ ### Bug Fixes
303
+
304
+ * add fieldset to Table field ([241437b](https://github.com/prismicio/prismic-types-internal/commit/241437b96f7eb604adb6c79cdedaf76c6ab8ecfa))
305
+
306
+ ## [3.4.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v3.4.0-alpha.1...v3.4.0-alpha.2) (2025-01-21)
307
+
308
+
309
+ ### Features
310
+
311
+ * add table to NestableWidget and NestableContent ([f1146a6](https://github.com/prismicio/prismic-types-internal/commit/f1146a6793b56b452c992ef2cf1c96be32b611a6))
312
+
313
+ ## [3.4.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.4.0-alpha.1) (2025-01-21)
314
+
315
+
316
+ ### Features
317
+
318
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
319
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
320
+
321
+
322
+ ### Chore
323
+
324
+ * **release:** 3.4.0-alpha.0 ([0a424aa](https://github.com/prismicio/prismic-types-internal/commit/0a424aa5e55f2b1db4ffcaf7adaef4d76eda4174))
325
+
326
+ ## [3.4.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0...v3.4.0-alpha.0) (2025-01-21)
327
+
328
+
329
+ ### Features
330
+
331
+ * support Table field content ([#111](https://github.com/prismicio/prismic-types-internal/issues/111)) ([be51847](https://github.com/prismicio/prismic-types-internal/commit/be51847484ef3cc2ca85d90eab4a2f30decf5d15))
332
+ * support table field model ([#110](https://github.com/prismicio/prismic-types-internal/issues/110)) ([5f70164](https://github.com/prismicio/prismic-types-internal/commit/5f7016493784e1addd7ae7bd9e1edaec1d32dfa1))
333
+
334
+ ## [3.3.0](https://github.com/prismicio/prismic-types-internal/compare/v3.2.0...v3.3.0) (2024-12-17)
335
+
336
+
337
+ ### Features
338
+
339
+ * support link variant ([#105](https://github.com/prismicio/prismic-types-internal/issues/105)) ([f5d81e4](https://github.com/prismicio/prismic-types-internal/commit/f5d81e4b2bbb45b97aef2ee42fa1219b5285f377))
340
+
341
+ ## [3.3.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v3.3.0-alpha.1...v3.3.0-alpha.2) (2024-12-12)
342
+
343
+ ## [3.3.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v3.2.0...v3.3.0-alpha.1) (2024-12-10)
344
+
345
+ ## [3.3.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.3.0-alpha.0) (2024-12-05)
346
+
347
+
348
+ ### Chore
349
+
350
+ * **release:** 3.2.0-alpha.0 ([355f1cc](https://github.com/prismicio/prismic-types-internal/commit/355f1cc2788f23de38d0b7ba628d2cc37bccfaf5))
351
+ * **release:** 3.3.0-alpha.0 ([0e79585](https://github.com/prismicio/prismic-types-internal/commit/0e79585102512d6b4e91be14507be0985de05697))
352
+
353
+ ## [3.3.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.3.0-alpha.0) (2024-12-05)
354
+
355
+ ## [3.2.0](https://github.com/prismicio/prismic-types-internal/compare/v3.2.0-alpha.7...v3.2.0) (2024-12-09)
356
+
357
+ ## [3.2.0-alpha.7](https://github.com/prismicio/prismic-types-internal/compare/v3.2.0-alpha.6...v3.2.0-alpha.7) (2024-12-09)
358
+
359
+
360
+ ### Refactor
361
+
362
+ * simplify ([a05dcee](https://github.com/prismicio/prismic-types-internal/commit/a05dcee9baa392017be43505600f0450f3de51d5))
363
+
364
+
365
+ ### Chore
366
+
367
+ * test description ([e57a676](https://github.com/prismicio/prismic-types-internal/commit/e57a676bf4b65d1b6b9824fc73b6eb402e3c6462))
368
+ * test description ([d335e49](https://github.com/prismicio/prismic-types-internal/commit/d335e49e74cce1239cefb593fbd3f6d1c9607f4b))
369
+
370
+ ## [3.2.0-alpha.6](https://github.com/prismicio/prismic-types-internal/compare/v3.2.0-alpha.5...v3.2.0-alpha.6) (2024-12-09)
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * remove unwanted repeat check ([1e3ebf3](https://github.com/prismicio/prismic-types-internal/commit/1e3ebf3586487945b2a8ec07fdd2e48deeaded4f))
376
+
377
+ ## [3.2.0-alpha.5](https://github.com/prismicio/prismic-types-internal/compare/v3.2.0-alpha.4...v3.2.0-alpha.5) (2024-12-06)
378
+
379
+
380
+ ### Bug Fixes
381
+
382
+ * avoid setting undefined model on repeat true on shared slice ([2dac602](https://github.com/prismicio/prismic-types-internal/commit/2dac6025f20637dbafe077efa051ed1bb554debb))
383
+
384
+ ## [3.2.0-alpha.4](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.2.0-alpha.4) (2024-12-06)
385
+
386
+
387
+ ### Features
388
+
389
+ * ensure correct types for image and file link kind ([#92](https://github.com/prismicio/prismic-types-internal/issues/92)) ([31750c5](https://github.com/prismicio/prismic-types-internal/commit/31750c5ed6cc157f15f197e6d540f6309468f32d))
390
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
391
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
392
+ * support repeatable links ([#89](https://github.com/prismicio/prismic-types-internal/issues/89)) ([1f1c37d](https://github.com/prismicio/prismic-types-internal/commit/1f1c37d51214c0840a21aa6c512fa47de39da62e))
393
+
394
+
395
+ ### Bug Fixes
396
+
397
+ * avoid setting undefined model on repeat true ([3edaa42](https://github.com/prismicio/prismic-types-internal/commit/3edaa4208b0202480f794564ff937ff07f61c592))
398
+
399
+
400
+ ### Chore
401
+
402
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
403
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
404
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
405
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
406
+ * **release:** 3.0.0 ([#95](https://github.com/prismicio/prismic-types-internal/issues/95)) ([dc4c734](https://github.com/prismicio/prismic-types-internal/commit/dc4c734cdb62e89240fb66095932f931f887b8c6))
407
+ * **release:** 3.1.0 ([#103](https://github.com/prismicio/prismic-types-internal/issues/103)) ([6851f20](https://github.com/prismicio/prismic-types-internal/commit/6851f20ea7429d4de82b364f62b8064eb0829529))
408
+ * **release:** 3.2.0-alpha.0 ([62bec1f](https://github.com/prismicio/prismic-types-internal/commit/62bec1f20116211959b5d09cc286965e6418a035))
409
+ * update changelog ([8e64d7e](https://github.com/prismicio/prismic-types-internal/commit/8e64d7e89d296c816e1ed23833c5828172c1f40e))
410
+
411
+ ## [3.2.0-alpha.3](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.2.0-alpha.3) (2024-12-05)
412
+
413
+ ## [3.2.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.2.0-alpha.2) (2024-12-05)
414
+
415
+ ## [3.2.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.2.0-alpha.1) (2024-12-05)
416
+
417
+ ## [3.2.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.2.0-alpha.0) (2024-12-05)
418
+
419
+
420
+ ### Features
421
+
422
+ * ensure correct types for image and file link kind ([#92](https://github.com/prismicio/prismic-types-internal/issues/92)) ([31750c5](https://github.com/prismicio/prismic-types-internal/commit/31750c5ed6cc157f15f197e6d540f6309468f32d))
423
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
424
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
425
+ * support repeatable links ([#89](https://github.com/prismicio/prismic-types-internal/issues/89)) ([1f1c37d](https://github.com/prismicio/prismic-types-internal/commit/1f1c37d51214c0840a21aa6c512fa47de39da62e))
426
+
427
+
428
+ ### Chore
429
+
430
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
431
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
432
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
433
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
434
+ * **release:** 3.0.0 ([#95](https://github.com/prismicio/prismic-types-internal/issues/95)) ([dc4c734](https://github.com/prismicio/prismic-types-internal/commit/dc4c734cdb62e89240fb66095932f931f887b8c6))
435
+ * **release:** 3.1.0 ([#103](https://github.com/prismicio/prismic-types-internal/issues/103)) ([6851f20](https://github.com/prismicio/prismic-types-internal/commit/6851f20ea7429d4de82b364f62b8064eb0829529))
436
+
437
+ ## [3.1.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1...v3.1.0) (2024-11-29)
438
+
439
+
440
+ ### Features
441
+
442
+ * ensure correct types for image and file link kind ([#92](https://github.com/prismicio/prismic-types-internal/issues/92)) ([31750c5](https://github.com/prismicio/prismic-types-internal/commit/31750c5ed6cc157f15f197e6d540f6309468f32d))
443
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
444
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
445
+ * support repeatable links ([#89](https://github.com/prismicio/prismic-types-internal/issues/89)) ([1f1c37d](https://github.com/prismicio/prismic-types-internal/commit/1f1c37d51214c0840a21aa6c512fa47de39da62e))
446
+
447
+
448
+ ### Chore
449
+
450
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
451
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
452
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
453
+ * **release:** 3.0.0 ([#95](https://github.com/prismicio/prismic-types-internal/issues/95)) ([dc4c734](https://github.com/prismicio/prismic-types-internal/commit/dc4c734cdb62e89240fb66095932f931f887b8c6))
454
+
455
+ ## [3.1.0-alpha.5](https://github.com/prismicio/prismic-types-internal/compare/v3.1.0-alpha.4...v3.1.0-alpha.5) (2024-11-26)
456
+
457
+ ## [3.1.0-alpha.4](https://github.com/prismicio/prismic-types-internal/compare/v3.1.0-alpha.3...v3.1.0-alpha.4) (2024-11-22)
458
+
459
+ ## [3.1.0-alpha.3](https://github.com/prismicio/prismic-types-internal/compare/v3.1.0-alpha.2...v3.1.0-alpha.3) (2024-11-21)
460
+
461
+ ## [3.1.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v3.1.0-alpha.1...v3.1.0-alpha.2) (2024-11-20)
462
+
463
+
464
+ ### Features
465
+
466
+ * AnyLink kind ([#97](https://github.com/prismicio/prismic-types-internal/issues/97)) ([73004b1](https://github.com/prismicio/prismic-types-internal/commit/73004b10d2277c752a0ce5f791d2314d3a5c647b))
467
+
468
+ ## [3.1.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.3...v3.1.0-alpha.1) (2024-11-19)
469
+
470
+
471
+ ### Features
472
+
473
+ * ensure correct types for image and file link kind ([#92](https://github.com/prismicio/prismic-types-internal/issues/92)) ([31750c5](https://github.com/prismicio/prismic-types-internal/commit/31750c5ed6cc157f15f197e6d540f6309468f32d))
474
+
475
+
476
+ ### Chore
477
+
478
+ * **release:** 3.0.0 ([#95](https://github.com/prismicio/prismic-types-internal/issues/95)) ([dc4c734](https://github.com/prismicio/prismic-types-internal/commit/dc4c734cdb62e89240fb66095932f931f887b8c6))
479
+
480
+ ## [3.1.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.5...v3.1.0-alpha.0) (2024-11-18)
481
+
482
+
483
+ ### Features
484
+
485
+ * ensure correct types for image and file link kind ([#92](https://github.com/prismicio/prismic-types-internal/issues/92)) ([31750c5](https://github.com/prismicio/prismic-types-internal/commit/31750c5ed6cc157f15f197e6d540f6309468f32d))
486
+
487
+
488
+ ### Refactor
489
+
490
+ * better test description ([dd08d49](https://github.com/prismicio/prismic-types-internal/commit/dd08d49da2d8b92f9854bc6e4dd9a9ee1b19570b))
491
+ * rename variable ([7f50259](https://github.com/prismicio/prismic-types-internal/commit/7f50259b84bea760c9eb313b1ffda9774feadda6))
492
+
493
+
494
+ ### Chore
495
+
496
+ * formatting ([700342a](https://github.com/prismicio/prismic-types-internal/commit/700342a093994e28bb514f01b6cf83fc94291965))
497
+ * **release:** 3.0.0 ([#95](https://github.com/prismicio/prismic-types-internal/issues/95)) ([dc4c734](https://github.com/prismicio/prismic-types-internal/commit/dc4c734cdb62e89240fb66095932f931f887b8c6))
498
+
499
+ ## [3.0.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1...v3.0.0) (2024-11-15)
500
+
501
+
502
+ ### Features
503
+
504
+ * ensure correct types for image and file link kind ([#92](https://github.com/prismicio/prismic-types-internal/issues/92)) ([31750c5](https://github.com/prismicio/prismic-types-internal/commit/31750c5ed6cc157f15f197e6d540f6309468f32d))
505
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
506
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
507
+
508
+
509
+ ### Chore
510
+
511
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
512
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
513
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
514
+
515
+ ## [3.0.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v3.0.0-alpha.0) (2024-11-06)
516
+
517
+
518
+ ### Features
519
+
520
+ * ensure correct types for image and file link kind ([0d7627d](https://github.com/prismicio/prismic-types-internal/commit/0d7627da025adc109ffe99e9c8544cdea28700b3))
521
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
522
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
523
+
524
+
525
+ ### Chore
526
+
527
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
528
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
529
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
530
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
531
+
532
+ ## [2.9.0-alpha.5](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.4...v2.9.0-alpha.5) (2024-11-15)
533
+
534
+
535
+ ### Features
536
+
537
+ * adapt document link to allow empty ([1fece63](https://github.com/prismicio/prismic-types-internal/commit/1fece63c5094546d9cb352bada609ce277e6ec2b))
538
+ * adapt external link to allow empty ([bd9f9f5](https://github.com/prismicio/prismic-types-internal/commit/bd9f9f59331675fd2a8307b42b4f71e6c49988e4))
539
+ * adapt file link to allow empty ([04adfbb](https://github.com/prismicio/prismic-types-internal/commit/04adfbb93e516fce5bb735e4c47c163e9f6c351c))
540
+ * adapt image link to allow empty ([b9ba367](https://github.com/prismicio/prismic-types-internal/commit/b9ba3674881ab546a75918c06fa61a0e4d83d9fc))
541
+ * adapt media link to allow empty ([f320497](https://github.com/prismicio/prismic-types-internal/commit/f3204971c0167e20910a3085d9945884eb069289))
542
+
543
+
544
+ ### Bug Fixes
545
+
546
+ * remove type of input ([e28f944](https://github.com/prismicio/prismic-types-internal/commit/e28f94405c77bb718298339d470840fc44cc5122))
547
+
548
+ ## [2.9.0-alpha.4](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.3...v2.9.0-alpha.4) (2024-11-15)
549
+
550
+
551
+ ### Features
552
+
553
+ * adapt any link to allow empty text ([a3e09ae](https://github.com/prismicio/prismic-types-internal/commit/a3e09ae96e0c3456349623f6256f458c15aded67))
554
+
555
+ ## [2.9.0-alpha.3](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.0...v2.9.0-alpha.3) (2024-11-11)
556
+
557
+ ## [2.9.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.1...v2.9.0-alpha.2) (2024-11-08)
558
+
559
+ ## [2.9.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v2.9.0-alpha.0...v2.9.0-alpha.1) (2024-11-08)
560
+
561
+
562
+ ### Features
563
+
564
+ * support traverse of repeatable links items ([d684b48](https://github.com/prismicio/prismic-types-internal/commit/d684b48ab8c17d2be43684ebe946a38624111cb0))
565
+
566
+ ## [2.9.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v2.9.0-alpha.0) (2024-10-19)
567
+
568
+
569
+ ### Features
570
+
571
+ * add fallback for Link `repeat` ([c1421d3](https://github.com/prismicio/prismic-types-internal/commit/c1421d3b3cf4545171856ff83c0fdae79d326165))
572
+ * add repeat prop to link config ([1fce59e](https://github.com/prismicio/prismic-types-internal/commit/1fce59e36aa0ce8db75b38a78f948e9cae736429))
573
+ * add support & tests for repeating link content ([0643aa6](https://github.com/prismicio/prismic-types-internal/commit/0643aa6d976d9d1667fc1f24f2ac092df04c2049))
574
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
575
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
576
+
577
+
578
+ ### Chore
579
+
580
+ * fix spelling error ([43c3e86](https://github.com/prismicio/prismic-types-internal/commit/43c3e86f3344e353b9b70246c03d6f1b9f37a1e9))
581
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
582
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
583
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
584
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
585
+
586
+ ## [2.8.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v2.8.0) (2024-09-24)
587
+
588
+
589
+ ### Features
590
+
591
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
592
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
593
+
594
+
595
+ ### Chore
596
+
597
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
598
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
599
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
600
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
601
+
602
+ ## [2.7.0](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.9...v2.7.0) (2024-09-17)
603
+
604
+ ## [2.7.0-alpha.9](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.8...v2.7.0-alpha.9) (2024-09-16)
605
+
606
+ ## [2.7.0-alpha.8](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.7...v2.7.0-alpha.8) (2024-09-13)
607
+
608
+ ## [2.7.0-alpha.7](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.6...v2.7.0-alpha.7) (2024-09-11)
609
+
610
+ ## [2.7.0-alpha.6](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.5...v2.7.0-alpha.6) (2024-09-11)
611
+
612
+ ## [2.7.0-alpha.5](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.2...v2.7.0-alpha.5) (2024-09-10)
613
+
614
+
615
+ ### Chore
616
+
617
+ * **release:** 2.7.0-alpha.3 ([398d89e](https://github.com/prismicio/prismic-types-internal/commit/398d89e9891aa0b2431dff16843fb1da00483f6d))
618
+ * **release:** 2.7.0-alpha.4 ([945a592](https://github.com/prismicio/prismic-types-internal/commit/945a592af6c2c654824dc8084993c59ff89fdb7f))
619
+
620
+ ## [2.7.0-alpha.4](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.2...v2.7.0-alpha.4) (2024-09-10)
621
+
622
+
623
+ ### Chore
624
+
625
+ * **release:** 2.7.0-alpha.3 ([398d89e](https://github.com/prismicio/prismic-types-internal/commit/398d89e9891aa0b2431dff16843fb1da00483f6d))
626
+
627
+ ## [2.7.0-alpha.3](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.2...v2.7.0-alpha.3) (2024-09-10)
628
+
629
+ ## [2.7.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.1...v2.7.0-alpha.2) (2024-08-26)
630
+
631
+ ## [2.7.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v2.7.0-alpha.0...v2.7.0-alpha.1) (2024-08-07)
632
+
633
+ ## [2.7.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v2.7.0-alpha.0) (2024-08-06)
634
+
635
+
636
+ ### Features
637
+
638
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
639
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
640
+
641
+
642
+ ### Chore
643
+
644
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
645
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
646
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
647
+ * **release:** 2.6.0 ([#81](https://github.com/prismicio/prismic-types-internal/issues/81)) ([4e3b8e4](https://github.com/prismicio/prismic-types-internal/commit/4e3b8e433fd7d02a357c7b592c5d5d4a634c5ed7))
648
+
649
+ ## [2.6.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1...v2.6.0) (2024-06-25)
650
+
651
+
652
+ ### Features
653
+
654
+ * revert creating RepeatableContent for old group items without nested group ([#80](https://github.com/prismicio/prismic-types-internal/issues/80)) ([bb4bca3](https://github.com/prismicio/prismic-types-internal/commit/bb4bca322ebf6b6b6bebe56ec0d58631d910160d))
655
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
656
+
657
+
658
+ ### Chore
659
+
660
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
661
+ * **release:** 2.5.0 ([#79](https://github.com/prismicio/prismic-types-internal/issues/79)) ([60986f1](https://github.com/prismicio/prismic-types-internal/commit/60986f1bbd26815e05e27221b6d7367427d94876))
662
+
663
+ ## [2.5.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1...v2.5.0) (2024-06-20)
664
+
665
+
666
+ ### Features
667
+
668
+ * support nesting groups ([#77](https://github.com/prismicio/prismic-types-internal/issues/77)) ([2164625](https://github.com/prismicio/prismic-types-internal/commit/2164625cc139c639b47a8702f430884a8ab01a0c)), closes [#78](https://github.com/prismicio/prismic-types-internal/issues/78)
669
+
670
+
671
+ ### Chore
672
+
673
+ * new `CONTRIBUTING.md` and pull request template ([#76](https://github.com/prismicio/prismic-types-internal/issues/76)) ([61fd901](https://github.com/prismicio/prismic-types-internal/commit/61fd901af80d6e53479eaf1b6b00a751abe658c7))
674
+
675
+ ## [2.5.0-alpha.4](https://github.com/prismicio/prismic-types-internal/compare/v2.5.0-alpha.3...v2.5.0-alpha.4) (2024-06-04)
676
+
677
+
678
+ ### Bug Fixes
679
+
680
+ * use `t.Type<A, O>` over `t.Mixed` ([44a847d](https://github.com/prismicio/prismic-types-internal/commit/44a847d3e9af5f4286312f8a1dc165386a121f6c))
681
+
682
+
683
+ ### Refactor
684
+
685
+ * prefer `t.Mixed` over `t.Type<any>` ([378a57d](https://github.com/prismicio/prismic-types-internal/commit/378a57db81ef0a2f06de874b9ccd341068140b31))
686
+
687
+ ## [2.5.0-alpha.3](https://github.com/prismicio/prismic-types-internal/compare/v2.5.0-alpha.2...v2.5.0-alpha.3) (2024-05-30)
688
+
689
+
690
+ ### Refactor
691
+
692
+ * only limit groups nesting in model and allow infinite nesting in content ([2bd7d62](https://github.com/prismicio/prismic-types-internal/commit/2bd7d626aaa1c962829524f22e088856f9b799d3))
693
+
694
+ ## [2.5.0-alpha.2](https://github.com/prismicio/prismic-types-internal/compare/v2.5.0-alpha.1...v2.5.0-alpha.2) (2024-05-29)
695
+
696
+
697
+ ### Refactor
698
+
699
+ * disallow nested groups in slice's items ([7086f1a](https://github.com/prismicio/prismic-types-internal/commit/7086f1a1fa46c0973c564091aff2ad0cf184b91f))
700
+ * per review ([73b7714](https://github.com/prismicio/prismic-types-internal/commit/73b77145cec35ffeab22e04521e7aa2547318120))
701
+
702
+ ## [2.5.0-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v2.5.0-alpha.1) (2024-05-28)
703
+
704
+
705
+ ### Features
706
+
707
+ * support nesting groups ([bcc55a4](https://github.com/prismicio/prismic-types-internal/commit/bcc55a4840d5aed9fb2ff7a992e252e69e909d3b))
708
+
709
+
710
+ ### Bug Fixes
711
+
712
+ * traversing nested groups ([121a003](https://github.com/prismicio/prismic-types-internal/commit/121a0033db0a51c11be7dad3aee05ef788fb0a3c))
713
+
714
+
715
+ ### Chore
716
+
717
+ * fix version ([11768f6](https://github.com/prismicio/prismic-types-internal/commit/11768f674612223cc1df50eb4442dbda936ad8cd))
718
+ * **release:** 2.4.1 ([3fa9df2](https://github.com/prismicio/prismic-types-internal/commit/3fa9df228e91df348ada9110ce96aa2f75e34c5d))
719
+
720
+ ### [2.4.1](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.1...v2.4.1) (2024-05-13)
721
+
722
+ ### [2.4.1-alpha.1](https://github.com/prismicio/prismic-types-internal/compare/v2.4.1-alpha.0...v2.4.1-alpha.1) (2024-05-13)
723
+
724
+
725
+ ### Chore
726
+
727
+ * export diff types ([c12e4dc](https://github.com/prismicio/prismic-types-internal/commit/c12e4dc12aaf6381cbf2344087cc4316bd23a102))
728
+
729
+ ### [2.4.1-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.0...v2.4.1-alpha.0) (2024-05-13)
730
+
731
+
732
+ ### Bug Fixes
733
+
734
+ * diff slice group fields ([#73](https://github.com/prismicio/prismic-types-internal/issues/73)) ([cd997a1](https://github.com/prismicio/prismic-types-internal/commit/cd997a12b8d3975be36b2f39f273c2901fd08d03))
735
+
736
+
737
+ ### Chore
738
+
739
+ * export diff types ([d0a0108](https://github.com/prismicio/prismic-types-internal/commit/d0a010802b0515d7fb233b1b8966b72f26d476fc))
740
+ * release as patch ([11db2a8](https://github.com/prismicio/prismic-types-internal/commit/11db2a8b0aa1eff5382bbfce56d82af29a7a41fd))
741
+
742
+ ## [2.5.0-alpha.0](https://github.com/prismicio/prismic-types-internal/compare/v2.4.0...v2.5.0-alpha.0) (2024-05-07)
743
+
744
+
745
+ ### Features
746
+
747
+ * diff slice group fields ([8107f1a](https://github.com/prismicio/prismic-types-internal/commit/8107f1a17466c15a44080fff86ce4f5a89bc804b))
748
+
749
+ ## [2.4.0](https://github.com/prismicio/prismic-types-internal/compare/v2.3.1...v2.4.0) (2024-05-07)
750
+
751
+
752
+ ### Features
753
+
754
+ * **slice:** allow groups in slice primary property ([#70](https://github.com/prismicio/prismic-types-internal/issues/70)) ([c29b8b7](https://github.com/prismicio/prismic-types-internal/commit/c29b8b70d9b05cd1d1f8bd0532020c8e4be56036))
755
+
756
+ ### [0.3.1](https://github.com/prismicio/prismic-types-internal/compare/v0.3.1-beta.0...v0.3.1) (2022-07-06)
757
+
758
+ ### [0.3.1-beta.0](https://github.com/prismicio/prismic-types-internal/compare/v0.3.0...v0.3.1-beta.0) (2022-06-23)
759
+
760
+
761
+ ### Bug Fixes
762
+
763
+ * test StructuredTextContent ([62405b5](https://github.com/prismicio/prismic-types-internal/commit/62405b538e7db959f79fa6933129bb7f9ca008e1))
764
+ * validate widget id format ([fe0fbec](https://github.com/prismicio/prismic-types-internal/commit/fe0fbec5287178b9d7ae5f97c4b4c3edbf364c21))