From acbd301d35b6ab63737bc765a69de512c2744f01 Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Fri, 21 Feb 2025 15:45:09 +0000 Subject: [PATCH] feat: update generated APIs --- packages/clients/src/api/webhosting/v1/marshalling.gen.ts | 1 + packages/clients/src/api/webhosting/v1/types.gen.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts index fedf852dc..39c41b2b8 100644 --- a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts @@ -167,6 +167,7 @@ export const unmarshalDnsRecords = (data: unknown): DnsRecords => { } return { + dnsConfig: data.dns_config, nameServers: unmarshalArrayOfObject(data.name_servers, unmarshalNameserver), records: unmarshalArrayOfObject(data.records, unmarshalDnsRecord), status: data.status, diff --git a/packages/clients/src/api/webhosting/v1/types.gen.ts b/packages/clients/src/api/webhosting/v1/types.gen.ts index e840b8b44..faf422d7c 100644 --- a/packages/clients/src/api/webhosting/v1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1/types.gen.ts @@ -615,6 +615,8 @@ export interface DnsRecords { nameServers: Nameserver[] /** Status of the records. */ status: DnsRecordsStatus + /** Records dns auto configuration settings. */ + dnsConfig: DomainDnsAction[] } export interface Domain {