Skip to content

Commit

Permalink
chore: update generated test client
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Nov 9, 2022
1 parent 87d1299 commit faf2eff
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions spec/generated/e2e/tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,17 @@ export const foo: TableRef<{
id2: t.int4
json: t.json | t.null
jsonb: t.jsonb | t.null
lastSeenAt: t.date | t.null
}, "foo", [
"id",
"id2"
], "json" | "jsonb" | "lastSeenAt"> = /*#__PURE__*/ makeTableRef("foo", [
], "json" | "jsonb"> = /*#__PURE__*/ makeTableRef("foo", [
"id",
"id2"
], {
id: t.int4,
id2: t.int4,
json: t.option(t.json),
jsonb: t.option(t.jsonb),
lastSeenAt: t.option(t.date),
})

export const like: TableRef<{
Expand Down

0 comments on commit faf2eff

Please sign in to comment.