@graphprotocol/graph-cli 0.54.0-alpha-20230801202859-9fcb823 → 0.54.0
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,11 +1,11 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.54.0
|
|
3
|
+
## 0.54.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- [#1411](https://github.com/graphprotocol/graph-tooling/pull/1411)
|
|
8
|
-
[`
|
|
8
|
+
[`0ae0625`](https://github.com/graphprotocol/graph-tooling/commit/0ae06258b31c979c8e83922be77021bc004a0d12)
|
|
9
9
|
Thanks [@saihaj](https://github.com/saihaj)! - add support for arweave file datasource
|
|
10
10
|
|
|
11
11
|
- [#1407](https://github.com/graphprotocol/graph-tooling/pull/1407)
|
package/dist/codegen/template.js
CHANGED
|
@@ -27,7 +27,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
const immutable_1 = __importDefault(require("immutable"));
|
|
30
|
-
const file_template_1 = __importDefault(require("../protocols/
|
|
30
|
+
const file_template_1 = __importDefault(require("../protocols/file_template"));
|
|
31
31
|
const tsCodegen = __importStar(require("./typescript"));
|
|
32
32
|
class DataSourceTemplateCodeGenerator {
|
|
33
33
|
constructor(template, protocol) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import immutable from 'immutable';
|
|
2
|
-
import * as tsCodegen from '
|
|
3
|
-
export default class
|
|
2
|
+
import * as tsCodegen from '../codegen/typescript';
|
|
3
|
+
export default class FileTemplateCodeGen {
|
|
4
4
|
private template;
|
|
5
5
|
constructor(template: immutable.Map<any, any>);
|
|
6
6
|
generateModuleImports(): never[];
|
|
@@ -24,8 +24,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
return result;
|
|
25
25
|
};
|
|
26
26
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
-
const tsCodegen = __importStar(require("
|
|
28
|
-
class
|
|
27
|
+
const tsCodegen = __importStar(require("../codegen/typescript"));
|
|
28
|
+
class FileTemplateCodeGen {
|
|
29
29
|
constructor(template) {
|
|
30
30
|
this.template = template;
|
|
31
31
|
this.template = template;
|
|
@@ -49,4 +49,4 @@ class IpfsFileTemplateCodeGen {
|
|
|
49
49
|
`);
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
|
-
exports.default =
|
|
52
|
+
exports.default = FileTemplateCodeGen;
|
package/oclif.manifest.json
CHANGED