Skip to content

Commit e06a7a9

Browse files
feat(iam): add visible and deletable on product api keys (#1483)
Co-authored-by: Jonathan R. <[email protected]>
1 parent a483682 commit e06a7a9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export const unmarshalAPIKey = (data: unknown): APIKey => {
8787
createdAt: unmarshalDate(data.created_at),
8888
creationIp: data.creation_ip,
8989
defaultProjectId: data.default_project_id,
90+
deletable: data.deletable,
9091
description: data.description,
9192
editable: data.editable,
9293
expiresAt: unmarshalDate(data.expires_at),

packages/clients/src/api/iam/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ export interface APIKey {
169169
defaultProjectId: string
170170
/** Defines whether or not the API key is editable. */
171171
editable: boolean
172+
/** Defines whether or not the API key is deletable. */
173+
deletable: boolean
172174
/** Defines whether or not the API key is managed. */
173175
managed: boolean
174176
/** IP address of the device that created the API key. */

0 commit comments

Comments
 (0)