5.3.8

(chore): Bump generator-cli to 0.9.4.

5.3.7

(chore): Upgrade @fern-api/generator-cli to 0.9.4 which upgrades @fern-api/replay to 0.10.1.

5.3.6

(fix): Fix wire test and snippet imports ignoring package_path config. When package_path was set (e.g. package_path: myorganization), generated wire tests and README/reference snippets would import types from the root package (e.g. from auth0 import OrgBranding) instead of the nested module (e.g. from auth0.myorganization import OrgBranding), causing mypy and pytest failures.

5.3.5

(fix): Fix wire test generation producing invalid syntax (e.g. strategy=,) for object properties with literal/const types. Literal properties that resolve to nop values are now filtered out of generated constructor arguments.

5.3.4

(fix): Fix boolean path parameters being serialized as Python-style True/False instead of JSON-style true/false in URL paths. Adds encode_path_param utility that ensures proper lowercase boolean encoding for path segments.