Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
4083afa
feat(openapi): add richtext node/mark types to spec and aliases
dipankarmaikap Jul 24, 2026
2e0b21b
feat(openapi): add RichText node/mark types to spec and aliases
dipankarmaikap Jul 24, 2026
848fae8
chore(openapi): use 'rich text' in prose descriptions
dipankarmaikap Jul 24, 2026
edad0de
fix(openapi): tighten richtext node schemas and add RichTextMark/Rich…
dipankarmaikap Jul 24, 2026
e18dd3e
chore(openapi): add deprecated RichtextFieldValue alias for backward …
dipankarmaikap Jul 27, 2026
33eeb23
fix(openapi): rename richtext-field-value to rich-text-field-value fo…
dipankarmaikap Jul 28, 2026
8f2782a
fix(openapi): make ParagraphNode attrs optional
dipankarmaikap Jul 28, 2026
3a7eb80
fix(openapi): improve richtext node schemas
dipankarmaikap Jul 29, 2026
3ddbebd
feat(schema): regenerate for RichTextFieldValue rename and add backwa…
dipankarmaikap Jul 29, 2026
46f56bb
feat(capi-client): regenerate for RichTextFieldValue rename
dipankarmaikap Jul 29, 2026
6d86516
feat(mapi-client): regenerate for RichTextFieldValue rename and add b…
dipankarmaikap Jul 29, 2026
8725cc5
chore(live-preview): regenerate for RichTextFieldValue rename
dipankarmaikap Jul 29, 2026
a29546f
chore(experiments): regenerate for RichTextFieldValue rename
dipankarmaikap Jul 29, 2026
56a09c2
feat(migrations): export RichTextFieldValue alongside deprecated Rich…
dipankarmaikap Jul 29, 2026
9a89ccd
fix(openapi): use block-content-input for richtext BlockNode body and…
dipankarmaikap Jul 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ allOf:
- $ref: ./base-field.yaml
- $ref: ./value-field.yaml
- type: object
description: Richtext field configuration
description: Rich text field configuration
required:
- type
properties:
Expand Down Expand Up @@ -73,7 +73,7 @@ allOf:
- align-justify
style_options:
type: array
description: Custom CSS styles for the richtext field
description: Custom CSS styles for the rich text field
items:
type: object
properties:
Expand Down
6 changes: 5 additions & 1 deletion tools/openapi-codegen/specs/overlay.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ components:
$ref: ./shared/stories/field-types/multilink-field-value.yaml
PluginFieldValue:
$ref: ./shared/stories/field-types/plugin-field-value.yaml
RichtextFieldValue:
RichTextFieldValue:
$ref: ./shared/stories/field-types/richtext-field-value.yaml
RichTextNode:
$ref: ./shared/stories/field-types/richtext-field-value.yaml#/$defs/RichTextNode
RichTextMark:
$ref: ./shared/stories/field-types/richtext-field-value.yaml#/$defs/RichTextMark
TableFieldValue:
$ref: ./shared/stories/field-types/table-field-value.yaml
ComponentSchemaField:
Expand Down
Loading
Loading