-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Our generation process was broken because it was missing the new file `portfolio.proto` from `buf.gen.rewards.yaml`. This PR fixes that problem and regenerated the protos with `npm run gen`
- Loading branch information
Showing
5 changed files
with
237 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
/* | ||
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY | ||
*/ | ||
export type Portfolio = { | ||
name?: string | ||
addresses?: Address[] | ||
} | ||
|
||
export type Address = { | ||
address?: string | ||
} | ||
|
||
export type GetPortfolioRequest = { | ||
name?: string | ||
} | ||
|
||
export type ListPortfoliosRequest = { | ||
pageSize?: number | ||
pageToken?: string | ||
} | ||
|
||
export type ListPortfoliosResponse = { | ||
portfolios?: Portfolio[] | ||
nextPageToken?: string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters