-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
987a1ad
commit 791d594
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ import { FunctionPositions, ProgramInfo, programInfo, Struct } from "./infer.ts" | |
import { resolve } from "https://deno.land/[email protected]/path/mod.ts"; | ||
import { JSONSchemaObject } from "npm:@json-schema-tools/meta-schema"; | ||
|
||
import * as sdk from 'npm:@hasura/[email protected].4'; | ||
export * as sdk from 'npm:@hasura/[email protected].4'; | ||
import * as sdk from 'npm:@hasura/[email protected].5'; | ||
export * as sdk from 'npm:@hasura/[email protected].5'; | ||
|
||
export type State = { | ||
functions: any | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
import ts, { FunctionDeclaration, StringLiteralLike } from "npm:[email protected]"; | ||
import { resolve, dirname } from "https://deno.land/[email protected]/path/mod.ts"; | ||
import { existsSync } from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import * as sdk from 'npm:@hasura/[email protected].4'; | ||
import * as sdk from 'npm:@hasura/[email protected].5'; | ||
|
||
export type Struct<X> = Record<string, X>; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
import * as commander from 'npm:[email protected]'; | ||
import { programInfo } from './infer.ts' | ||
import { connector } from './connector.ts' | ||
import sdk from 'npm:@hasura/[email protected].4'; | ||
import sdk from 'npm:@hasura/[email protected].5'; | ||
|
||
const inferCommand = new commander.Command("infer") | ||
.argument('<path>', 'TypeScript source entrypoint') | ||
|