Skip to content

Commit 238da86

Browse files
committed
nothing
1 parent 2769bd2 commit 238da86

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

examples/typescript-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-node",
3-
"version": "3.0.6",
3+
"version": "3.0.7",
44
"description": "",
55
"private": true,
66
"main": "index.js",

examples/typescript-node/src/zeus/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,9 @@ type IsScalar<S, SCLR extends ScalarDefinition> = S extends 'scalar' & { name: i
743743
? ReturnType<SCLR[T]['decode']>
744744
: unknown
745745
: unknown
746-
: S extends Array<infer R> ? Array<IsScalar<R,SCLR>> : S;
746+
: S extends Array<infer R>
747+
? Array<IsScalar<R, SCLR>>
748+
: S;
747749

748750
type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R>
749751
? InputType<R, U, SCLR>[]

packages/graphql-zeus-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-zeus-core",
3-
"version": "7.0.6",
3+
"version": "7.0.7",
44
"private": false,
55
"main": "./lib/index.js",
66
"author": "GraphQL Editor, Artur Czemiel",

packages/graphql-zeus-jsonschema/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-zeus-jsonschema",
3-
"version": "7.0.6",
3+
"version": "7.0.7",
44
"private": false,
55
"main": "./lib/index.js",
66
"author": "GraphQL Editor, Artur Czemiel",

packages/graphql-zeus/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-zeus",
3-
"version": "7.0.6",
3+
"version": "7.0.7",
44
"private": false,
55
"scripts": {
66
"start": "ttsc --watch",
@@ -26,8 +26,8 @@
2626
"dependencies": {
2727
"config-maker": "^0.0.6",
2828
"cross-fetch": "^3.0.4",
29-
"graphql-zeus-core": "^7.0.6",
30-
"graphql-zeus-jsonschema": "^7.0.6",
29+
"graphql-zeus-core": "^7.0.7",
30+
"graphql-zeus-jsonschema": "^7.0.7",
3131
"yargs": "^16.1.1"
3232
}
3333
}

0 commit comments

Comments
 (0)