@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.
- package/main.js +2 -1
- 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
|
);
|