@tim-smart/openapi-gen 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/main.js +2 -1
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -34919,7 +34919,8 @@ var make64 = gen2(function* () {
34919
34919
  key,
34920
34920
  source,
34921
34921
  isOptional,
34922
- isNullable: "nullable" in fullSchema && fullSchema.nullable === true || "default" in fullSchema && fullSchema.default === null
34922
+ isNullable: "nullable" in fullSchema && fullSchema.nullable === true || "default" in fullSchema && fullSchema.default === null,
34923
+ default: fullSchema.default
34923
34924
  })
34924
34925
  )
34925
34926
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tim-smart/openapi-gen",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Generate Effect http clients from OpenAPI specs",
5
5
  "bin": "main.js",
6
6
  "repository": {