File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
packages/clients/src/api/iam/v1alpha1 Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export type {
55 APIKey ,
66 AddGroupMemberRequest ,
77 Application ,
8+ BearerType ,
89 ClonePolicyRequest ,
910 CreateAPIKeyRequest ,
1011 CreateApplicationRequest ,
@@ -25,7 +26,6 @@ export type {
2526 GetUserRequest ,
2627 Group ,
2728 ListAPIKeysRequest ,
28- ListAPIKeysRequestBearerType ,
2929 ListAPIKeysRequestOrderBy ,
3030 ListAPIKeysResponse ,
3131 ListApplicationsRequest ,
Original file line number Diff line number Diff line change 11// This file was automatically generated. DO NOT EDIT.
22// If you have any remark or suggestion do not hesitate to open an issue.
33
4- export type ListAPIKeysRequestBearerType =
5- | 'unknown_bearer_type'
6- | 'user'
7- | 'application'
4+ export type BearerType = 'unknown_bearer_type' | 'user' | 'application'
85
96export type ListAPIKeysRequestOrderBy =
107 | 'created_at_asc'
@@ -758,7 +755,7 @@ export type ListAPIKeysRequest = {
758755 /** Filter out by bearer ID */
759756 bearerId ?: string
760757 /** Filter out by type of bearer */
761- bearerType ?: ListAPIKeysRequestBearerType
758+ bearerType ?: BearerType
762759}
763760
764761export type CreateAPIKeyRequest = {
You can’t perform that action at this time.
0 commit comments