August 23, 2024

0.39.17

(fix): object declarations with extends and no properties now has examples propagating in the Docs and SDKs

What’s been fixed

  • Previously, object declarations with extends and no properties did not have examples propagating in the Docs and SDKs. The core issue was in IR generation which has now been resolved.

The following will now work as expected:

1types:
2
3 ObjectWithNoProperties:
4 extends:
5 - ParentA
6 - ParentB
7 examples:
8 - name: Default
9 value:
10 propertyFromParentA: foo
11 propertyFromParentB: bar