-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(api): use generated code by version from akash-api #182
Conversation
13938f2
to
7cf4757
Compare
Also remove relevant local barrel index files. refs akash-network/support#184
7cf4757
to
6234224
Compare
deploy-web/src/utils/proto/index.ts
Outdated
|
||
const mainnetTypes = { ...v1beta3, ...v1beta4 }; | ||
const sandboxTypes = { ...v1beta3, ...v1beta4 }; | ||
const commonTypes = { ...omit(v1beta3, "GPU"), ...v1beta4 }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we omitting GPU again?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah we are not using it in the deploy-web
project. We can keep it ommited, but I don't think it's that bad if it gets included here anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Redm4x I can add it back, should I?
deploy-web/src/utils/proto/index.ts
Outdated
|
||
const mainnetTypes = { ...v1beta3, ...v1beta4 }; | ||
const sandboxTypes = { ...v1beta3, ...v1beta4 }; | ||
const commonTypes = { ...omit(v1beta3, "GPU"), ...v1beta4 }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah we are not using it in the deploy-web
project. We can keep it ommited, but I don't think it's that bad if it gets included here anyway.
Also remove relevant local barrel index files.
refs akash-network/support#184