Skip to content

Commit

Permalink
feat(sdk): add client gen (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
paanSinghCoder authored Aug 26, 2024
1 parent cc0bfd5 commit 3e6a680
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
10 changes: 10 additions & 0 deletions sdks/js/packages/core/api-client/V1Beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,16 @@ export class V1Beta1<SecurityDataType = unknown> extends HttpClient<SecurityData
user_id?: string;
/** The state to filter by. It can be enabled or disabled. */
state?: string;
/**
* The maximum number of organizations to return per page. The default is 50.
* @format int32
*/
page_size?: number;
/**
* The page number to return. The default is 1.
* @format int32
*/
page_num?: number;
},
params: RequestParams = {}
) =>
Expand Down
7 changes: 6 additions & 1 deletion sdks/js/packages/core/api-client/data-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export interface ProtobufAny {
* `NullValue` is a singleton enumeration to represent the null value for the
* `Value` type union.
*
* The JSON representation for `NullValue` is JSON `null`.
* The JSON representation for `NullValue` is JSON `null`.
*
* - NULL_VALUE: Null value.
* @default "NULL_VALUE"
Expand Down Expand Up @@ -953,6 +953,11 @@ export interface V1Beta1ListAllInvoicesResponse {

export interface V1Beta1ListAllOrganizationsResponse {
organizations?: V1Beta1Organization[];
/**
* Total number of pages in response
* @format int32
*/
total_pages?: number;
}

export interface V1Beta1ListAllUsersResponse {
Expand Down

0 comments on commit 3e6a680

Please sign in to comment.