@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 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 = ['Boolean', 'Int', 'BigDecimal', 'String', 'BigInt', 'Bytes', 'ID'];
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'],
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.50.1",
2
+ "version": "0.51.0-alpha-20230528161031-ede80fb",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.50.1",
3
+ "version": "0.51.0-alpha-20230528161031-ede80fb",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {