From b7e6170b770bdd2495a793256178bd1d06928f21 Mon Sep 17 00:00:00 2001 From: Scaleway Bot Date: Mon, 27 Jan 2025 16:42:17 +0100 Subject: [PATCH] fix(edge_services): rename locality imports (#1746) --- .../src/api/edge_services/v1alpha1/types.gen.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages/clients/src/api/edge_services/v1alpha1/types.gen.ts b/packages/clients/src/api/edge_services/v1alpha1/types.gen.ts index 1012209ec..8ec548349 100644 --- a/packages/clients/src/api/edge_services/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/edge_services/v1alpha1/types.gen.ts @@ -1,6 +1,10 @@ // This file was automatically generated. DO NOT EDIT. // If you have any remark or suggestion do not hesitate to open an issue. -import type { Money, Region, Zone } from '../../../bridge' +import type { + Money, + Region as ScwRegion, + Zone as ScwZone, +} from '../../../bridge' export type DNSStageType = 'unknown_type' | 'auto' | 'managed' | 'custom' @@ -91,7 +95,7 @@ export interface ScalewayLb { /** ID of the Load Balancer. */ id: string /** Zone of the Load Balancer. */ - zone: Zone + zone: ScwZone /** ID of the frontend linked to the Load Balancer. */ frontendId: string /** Defines whether the Load Balancer's frontend handles SSL connections. */ @@ -129,7 +133,7 @@ export interface TLSSecret { /** ID of the Secret. */ secretId: string /** Region of the Secret. */ - region: Region + region: ScwRegion } export interface BackendStage {