diff --git a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts index f79cfabcd..1751c9adf 100644 --- a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts @@ -134,6 +134,7 @@ const unmarshalDnsRecord = (data: unknown): DnsRecord => { return { name: data.name, priority: data.priority, + rawData: data.raw_data, status: data.status, ttl: data.ttl, type: data.type, diff --git a/packages/clients/src/api/webhosting/v1/types.gen.ts b/packages/clients/src/api/webhosting/v1/types.gen.ts index 62f0de368..293bed21e 100644 --- a/packages/clients/src/api/webhosting/v1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1/types.gen.ts @@ -149,6 +149,11 @@ export interface DnsRecord { priority?: number /** Record status. */ status: DnsRecordStatus + /** + * Record representation as it appears in the zone file or DNS management + * system. + */ + rawData: string } export interface Nameserver {