All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Chore: Bump intermediate representation to v31
- Feature: The generated models now support boolean literals and users
do not have to specify them in the builder.
For example, for the following object
the user will not need to specify the literal properties when building the object.
Actor: properties: name: string isMale: literal<true>
var actor = Actor.builder() .name("Brad Pitt") .build();
- Chore: Intialize this changelog