File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -528,6 +528,7 @@ export const unmarshalNodeMetadata = (data: unknown): NodeMetadata => {
528528 externalIp : data . external_ip ,
529529 hasGpu : data . has_gpu ,
530530 id : data . id ,
531+ installerTags : data . installer_tags ,
531532 kubeletConfig : data . kubelet_config ,
532533 name : data . name ,
533534 nodeLabels : data . node_labels ,
@@ -536,7 +537,12 @@ export const unmarshalNodeMetadata = (data: unknown): NodeMetadata => {
536537 unmarshalNodeMetadataCoreV1Taint ,
537538 ) ,
538539 poolVersion : data . pool_version ,
540+ providerId : data . provider_id ,
539541 repoUri : data . repo_uri ,
542+ resolvconfPath : data . resolvconf_path ,
543+ updaterBinPath : data . updater_bin_path ,
544+ updaterBinUrl : data . updater_bin_url ,
545+ updaterBinVersion : data . updater_bin_version ,
540546 } as NodeMetadata
541547}
542548
Original file line number Diff line number Diff line change @@ -1500,9 +1500,15 @@ export interface NodeMetadata {
15001500 kubeletConfig : string
15011501 nodeLabels : Record < string , string >
15021502 nodeTaints : NodeMetadataCoreV1Taint [ ]
1503+ providerId : string
1504+ resolvconfPath : string
15031505 hasGpu : boolean
15041506 externalIp : string
15051507 repoUri : string
1508+ installerTags : string
1509+ updaterBinUrl : string
1510+ updaterBinVersion : string
1511+ updaterBinPath : string
15061512}
15071513
15081514export type RebootNodeRequest = {
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export const CreateDomainRequest = {
1616
1717export const CreateEmailRequest = {
1818 subject : {
19+ maxLength : 998 ,
1920 minLength : 6 ,
2021 } ,
2122}
@@ -88,6 +89,7 @@ export const ListEmailsRequest = {
8889 minLength : 3 ,
8990 } ,
9091 subject : {
92+ maxLength : 998 ,
9193 minLength : 6 ,
9294 } ,
9395}
You can’t perform that action at this time.
0 commit comments