Skip to content

Commit

Permalink
Update SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-chambers committed Nov 29, 2023
1 parent 987a1ad commit 791d594
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/infer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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>;

Expand Down
2 changes: 1 addition & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 791d594

Please sign in to comment.