File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export type SamlStatus =
114114
115115export type UserStatus = 'unknown_status' | 'invitation_pending' | 'activated'
116116
117- export type UserType = 'unknown_type' | 'guest' | ' owner' | 'member'
117+ export type UserType = 'unknown_type' | 'owner' | 'member'
118118
119119export interface ConnectionConnectedOrganization {
120120 id : string
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ export const unmarshalVersion = (data: unknown): Version => {
127127 label : data . label ,
128128 name : data . name ,
129129 region : data . region ,
130+ releasedAt : unmarshalDate ( data . released_at ) ,
130131 } as Version
131132}
132133
Original file line number Diff line number Diff line change @@ -632,6 +632,10 @@ export interface Version {
632632 * Date from which any remaining clusters on this version will begin to be forcibly upgraded to the next minor version.
633633 */
634634 endOfLifeAt ?: Date
635+ /**
636+ * Date at which this version was made available by Kapsule product.
637+ */
638+ releasedAt ?: Date
635639}
636640
637641export interface Cluster {
You can’t perform that action at this time.
0 commit comments