@subsquid/openreader 4.3.0 → 4.3.1
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/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subsquid/openreader",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "GraphQL server for postgres-compatible databases",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphql",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"@graphql-tools/merge": "^8",
|
|
25
25
|
"@subsquid/graphiql-console": "^0.3.0",
|
|
26
26
|
"@subsquid/logger": "^1.3.0",
|
|
27
|
-
"@subsquid/util-internal": "^2.
|
|
28
|
-
"@subsquid/util-internal-commander": "^1.
|
|
27
|
+
"@subsquid/util-internal": "^2.4.0",
|
|
28
|
+
"@subsquid/util-internal-commander": "^1.3.0",
|
|
29
29
|
"@subsquid/util-internal-hex": "^1.2.0",
|
|
30
30
|
"@subsquid/util-internal-http-server": "^1.2.0",
|
|
31
31
|
"@subsquid/util-naming": "^1.2.0",
|
|
32
32
|
"apollo-server-core": "^3.12.0",
|
|
33
33
|
"apollo-server-express": "^3.12.0",
|
|
34
|
-
"commander": "^
|
|
34
|
+
"commander": "^11.0.0",
|
|
35
35
|
"deep-equal": "^2.2.1",
|
|
36
36
|
"express": "^4.18.2",
|
|
37
37
|
"graphql": "^15.8.0",
|
|
@@ -64,6 +64,5 @@
|
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build": "rm -rf lib && tsc",
|
|
66
66
|
"test": "make up && sleep 2 && make test test-cockroach && make down || (make down && exit 1)"
|
|
67
|
-
}
|
|
68
|
-
"readme": "# OpenReader\n\nGraphQL server for squid framework. Given [data schema](https://docs.subsquid.io/reference/openreader-schema) \nand compatible Postgres database it serves \"read part\" of [OpenCRUD spec](https://www.opencrud.org).\n\n## Usage\n\n```bash\nopenreader schema.graphql\n```\n\nDatabase connection and server port are configured via environment variables:\n\n```\nDB_NAME\nDB_USER\nDB_PASS\nDB_HOST\nDB_PORT\nGRAPHQL_SERVER_PORT\n```\n"
|
|
67
|
+
}
|
|
69
68
|
}
|