Skip to content

Commit 19582eb

Browse files
authored
Merge pull request #45 from tablelandnetwork/camelize-schema
Camelize schema export
2 parents d808c4d + 1c33402 commit 19582eb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tableland/sdk",
3-
"version": "4.5.2",
3+
"version": "4.5.3-dev.0",
44
"description": "A database client and helpers for the Tableland network",
55
"publishConfig": {
66
"access": "public"

packages/sdk/src/validator/tables.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export type Params =
1717

1818
export type Column = Components["schemas"]["Column"];
1919
type BaseSchema = Components["schemas"]["Schema"];
20-
export interface Schema extends BaseSchema {
20+
export interface Schema extends Camelize<BaseSchema> {
2121
readonly columns: Array<PartialRequired<Column, "constraints">>;
2222
}
2323

0 commit comments

Comments
 (0)