Skip to content

Releases: astahmer/openapi-zod-client

openapi-zod-client@1.9.0

14 Jul 09:00
Compare
Choose a tag to compare

Minor Changes

  • #163 0270e4c Thanks @WickyNilliams! - treat additionalProperties as defaulting to true, allowing passthrough() unless explicitly opting-out

  • #174 b12151d Thanks @imballinst! - feat: add endpointDefinitionRefiner to TemplateContext options

openapi-zod-client@1.8.0

30 Jun 14:43
Compare
Choose a tag to compare

Minor Changes

openapi-zod-client@1.7.2

26 Jun 09:26
Compare
Choose a tag to compare

Patch Changes

openapi-zod-client@1.7.1

06 Jun 14:41
Compare
Choose a tag to compare

Patch Changes

openapi-zod-client@1.7.0

01 Jun 18:21
d3c2304
Compare
Choose a tag to compare

Minor Changes

Patch Changes

openapi-zod-client@1.6.4

05 May 21:21
Compare
Choose a tag to compare

Patch Changes

openapi-zod-client@1.6.3

19 Apr 18:05
Compare
Choose a tag to compare

Patch Changes

openapi-zod-client@1.6.2

18 Apr 09:06
Compare
Choose a tag to compare

Patch Changes

openapi-zod-client@1.6.1

31 Mar 15:12
Compare
Choose a tag to compare

Patch Changes

openapi-zod-client@1.6.0

17 Mar 16:20
Compare
Choose a tag to compare

Minor Changes

  • #98 3e2406d Thanks @sirtimbly! - ## Feature: Support for Datetime string format

    Warning

    Upgrade your zod package to version >= 3.2.0

    Because zod now supports validating strings as proper ISO datetimes with .datetime() since Zod 3.2.0, and 'date-time' is one of the supported string format values in the OpenAPI and JSON Schema spec. Any string with that datetime format will now be validated as being a ISO UTC datetime string.

    Fixed: Minimum 0 and MinLength 0

    Minimum 0 and MinLength 0 were not being converted to .gte() and .min() because of a type coercion bug.