@graphitation/supermassive
Advanced tools
Comparing version 3.4.0 to 3.4.1
# Change Log - @graphitation/supermassive | ||
This log was last generated on Wed, 10 Jan 2024 12:26:44 GMT and should not be manually modified. | ||
This log was last generated on Mon, 15 Jan 2024 17:31:14 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 3.4.1 | ||
Mon, 15 Jan 2024 17:31:14 GMT | ||
### Patches | ||
- Properly decode boolean in schema (mark@thedutchies.com) | ||
## 3.4.0 | ||
Wed, 10 Jan 2024 12:26:44 GMT | ||
Wed, 10 Jan 2024 12:26:58 GMT | ||
@@ -11,0 +19,0 @@ ### Minor changes |
@@ -156,2 +156,5 @@ "use strict"; | ||
} | ||
if (typeof jsValue === "boolean") { | ||
return { kind: import_graphql.Kind.BOOLEAN, value: jsValue }; | ||
} | ||
if (typeof jsValue === "number") { | ||
@@ -158,0 +161,0 @@ return { kind: import_graphql.Kind.FLOAT, value: String(jsValue) }; |
{ | ||
"name": "@graphitation/supermassive", | ||
"license": "MIT", | ||
"version": "3.4.0", | ||
"version": "3.4.1", | ||
"main": "./lib/index", | ||
@@ -6,0 +6,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1579580
15735