Skip to content

Commit 5327dc1

Browse files
authored
feat(webhosting): add domain selected dns configuration (#1831)
1 parent 44184c2 commit 5327dc1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/webhosting/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ export const unmarshalDnsRecords = (data: unknown): DnsRecords => {
167167
}
168168

169169
return {
170+
dnsConfig: data.dns_config,
170171
nameServers: unmarshalArrayOfObject(data.name_servers, unmarshalNameserver),
171172
records: unmarshalArrayOfObject(data.records, unmarshalDnsRecord),
172173
status: data.status,

packages/clients/src/api/webhosting/v1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,8 @@ export interface DnsRecords {
615615
nameServers: Nameserver[]
616616
/** Status of the records. */
617617
status: DnsRecordsStatus
618+
/** Records dns auto configuration settings. */
619+
dnsConfig: DomainDnsAction[]
618620
}
619621

620622
export interface Domain {

0 commit comments

Comments
 (0)