Skip to content

Commit 867d1fb

Browse files
committed
fix: fix generated code and update client and models
1 parent 3a1b12d commit 867d1fb

13 files changed

Lines changed: 1146 additions & 1531 deletions

File tree

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/generated/

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"parser": "typescript",
33
"semi": true,
44
"singleQuote": true,
5-
"trailingComma": "all"
5+
"trailingComma": "all",
66
}

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export default tseslint.config(
1919
'src/athena/**',
2020
'athena-protobufs/**',
2121
'docs/**',
22+
'**/generated/**',
2223
],
2324
},
2425
eslint.configs.recommended,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"build": "tsc -p tsconfig.json",
5151
"build:watch": "tsc -w -p tsconfig.json",
5252
"build:release": "npm run clean && tsc -p tsconfig.release.json",
53-
"codegen": "npx protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=import_style=module,client_grpc1:./src/athena --proto_path=./athena-protobufs/athena ./athena-protobufs/athena/athena.proto",
53+
"codegen": "npx protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=client_grpc1:./src/generated --proto_path=./athena-protobufs ./athena-protobufs/athena/**.proto",
5454
"lint": "eslint .",
5555
"lint:all": "npm run lint && npm run prettier:check && npx tsc --noEmit",
5656
"precommit:setup": "echo 'To install pre-commit hooks, run: uv tool install pre-commit && uvx pre-commit install'",

src/athena/athena.grpc-client.ts

Lines changed: 0 additions & 159 deletions
This file was deleted.

0 commit comments

Comments
 (0)