@graphprotocol/graph-cli 0.50.1 → 0.51.0-alpha-20230528161031-ede80fb
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/CHANGELOG.md +9 -0
- package/dist/validation/schema.js +10 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.51.0-alpha-20230528161031-ede80fb
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1296](https://github.com/graphprotocol/graph-tooling/pull/1296)
|
|
8
|
+
[`ede80fb`](https://github.com/graphprotocol/graph-tooling/commit/ede80fbf0aceac2729c209ebb2c6e20f10894837)
|
|
9
|
+
Thanks [@dotansimha](https://github.com/dotansimha)! - Added support for handling GraphQL `Int8`
|
|
10
|
+
scalar as `i64` (AssemblyScript)
|
|
11
|
+
|
|
3
12
|
## 0.50.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -33,7 +33,16 @@ const immutable_1 = __importDefault(require("immutable"));
|
|
|
33
33
|
const List = immutable_1.default.List;
|
|
34
34
|
const Set = immutable_1.default.Set;
|
|
35
35
|
// Builtin scalar types
|
|
36
|
-
const BUILTIN_SCALAR_TYPES = [
|
|
36
|
+
const BUILTIN_SCALAR_TYPES = [
|
|
37
|
+
'Boolean',
|
|
38
|
+
'Int',
|
|
39
|
+
'BigDecimal',
|
|
40
|
+
'String',
|
|
41
|
+
'BigInt',
|
|
42
|
+
'Bytes',
|
|
43
|
+
'ID',
|
|
44
|
+
'Int8',
|
|
45
|
+
];
|
|
37
46
|
// Type suggestions for common mistakes
|
|
38
47
|
const TYPE_SUGGESTIONS = [
|
|
39
48
|
['Address', 'Bytes'],
|
package/oclif.manifest.json
CHANGED