@graphprotocol/graph-cli 0.65.0 → 0.66.0-alpha-20240115115801-d1f2d40

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,13 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.66.0-alpha-20240115115801-d1f2d40
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1561](https://github.com/graphprotocol/graph-tooling/pull/1561)
8
+ [`d1f2d40`](https://github.com/graphprotocol/graph-tooling/commit/d1f2d404d4b2fb719b626758114577d8bdbc683b)
9
+ Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for indexerHints in manifest
10
+
3
11
  ## 0.65.0
4
12
 
5
13
  ### Minor Changes
@@ -16,6 +16,7 @@ type SubgraphManifest {
16
16
  repository: String
17
17
  graft: Graft
18
18
  dataSources: [DataSource!]!
19
+ indexerHints: IndexerHints
19
20
  }
20
21
 
21
22
  type Schema {
@@ -17,12 +17,17 @@ type SubgraphManifest {
17
17
  repository: String
18
18
  graft: Graft
19
19
  dataSources: [DataSource!]!
20
+ indexerHints: IndexerHints
20
21
  }
21
22
 
22
23
  type Schema {
23
24
  file: File!
24
25
  }
25
26
 
27
+ type IndexerHints {
28
+ prune: String
29
+ }
30
+
26
31
  type DataSource {
27
32
  kind: String!
28
33
  name: String!
@@ -19,12 +19,17 @@ type SubgraphManifest {
19
19
  graft: Graft
20
20
  dataSources: [DataSource!]!
21
21
  templates: [DataSourceTemplate!]
22
+ indexerHints: IndexerHints
22
23
  }
23
24
 
24
25
  type Schema {
25
26
  file: File!
26
27
  }
27
28
 
29
+ type IndexerHints {
30
+ prune: String
31
+ }
32
+
28
33
  type DataSource {
29
34
  kind: String!
30
35
  name: String!
@@ -17,12 +17,17 @@ type SubgraphManifest {
17
17
  repository: String
18
18
  graft: Graft
19
19
  dataSources: [DataSource!]!
20
+ indexerHints: IndexerHints
20
21
  }
21
22
 
22
23
  type Schema {
23
24
  file: File!
24
25
  }
25
26
 
27
+ type IndexerHints {
28
+ prune: String
29
+ }
30
+
26
31
  type DataSource {
27
32
  kind: String!
28
33
  name: String!
@@ -16,12 +16,17 @@ type SubgraphManifest {
16
16
  repository: String
17
17
  graft: Graft
18
18
  dataSources: [DataSource!]!
19
+ indexerHints: IndexerHints
19
20
  }
20
21
 
21
22
  type Schema {
22
23
  file: File!
23
24
  }
24
25
 
26
+ type IndexerHints {
27
+ prune: String
28
+ }
29
+
25
30
  type DataSource {
26
31
  kind: String!
27
32
  name: String!
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.65.0",
2
+ "version": "0.66.0-alpha-20240115115801-d1f2d40",
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.65.0",
3
+ "version": "0.66.0-alpha-20240115115801-d1f2d40",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {