Skip to content

Commit 54ef7a6

Browse files
authored
Merge pull request #252 from Web3-API/prealpha-dev
Prep 0.0.1-prealpha.10
2 parents 8efa3ec + 521871b commit 54ef7a6

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Web3API 0.0.1-prealpha.9
2+
## Bug Fixes
3+
* `@web3api/ens-plugin-js`: Fix the schema.
4+
15
# Web3API 0.0.1-prealpha.9
26
## Features
37
* `@web3api/cli`: CLI Internalized Text Support

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.1-prealpha.9
1+
0.0.1-prealpha.10
Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
1-
#import { Query } into ApiResolver from "w3/api-resolver"
1+
# TODO: should import and "implements" the api-resolver core-api schema
2+
# https://github.com/Web3-API/monorepo/issues/75
23

3-
type Query implements ApiResolver_Query {
4+
type Query {
45
tryResolveUri(
56
authority: String!
67
path: String!
78
): ApiResolver_MaybeUriOrManifest
89

910
getFile(
1011
path: String!
11-
): Bytes # TODO: https://github.com/web3-api/monorepo/issues/100
12+
): Bytes
13+
}
14+
15+
# TODO: should get replaced with an import
16+
# https://github.com/Web3-API/monorepo/issues/75
17+
type ApiResolver_MaybeUriOrManifest {
18+
uri: String
19+
manifest: String
1220
}

0 commit comments

Comments
 (0)