Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/clients/src/api/iam/v1alpha1/index.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type {
APIKey,
AddGroupMemberRequest,
Application,
BearerType,
ClonePolicyRequest,
CreateAPIKeyRequest,
CreateApplicationRequest,
Expand All @@ -25,7 +26,6 @@ export type {
GetUserRequest,
Group,
ListAPIKeysRequest,
ListAPIKeysRequestBearerType,
ListAPIKeysRequestOrderBy,
ListAPIKeysResponse,
ListApplicationsRequest,
Expand Down
7 changes: 2 additions & 5 deletions packages/clients/src/api/iam/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
// This file was automatically generated. DO NOT EDIT.
// If you have any remark or suggestion do not hesitate to open an issue.

export type ListAPIKeysRequestBearerType =
| 'unknown_bearer_type'
| 'user'
| 'application'
export type BearerType = 'unknown_bearer_type' | 'user' | 'application'

export type ListAPIKeysRequestOrderBy =
| 'created_at_asc'
Expand Down Expand Up @@ -758,7 +755,7 @@ export type ListAPIKeysRequest = {
/** Filter out by bearer ID */
bearerId?: string
/** Filter out by type of bearer */
bearerType?: ListAPIKeysRequestBearerType
bearerType?: BearerType
}

export type CreateAPIKeyRequest = {
Expand Down