From e5e91e91f0e81fe1b2f00294a565384b0ebc59cb Mon Sep 17 00:00:00 2001 From: Andrew Schlackman <72105194+sei-aschlackman@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:02:57 -0400 Subject: [PATCH] fixed vlan delete paths (#563) --- src/app/generated/caster-api/api/vlans.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/generated/caster-api/api/vlans.service.ts b/src/app/generated/caster-api/api/vlans.service.ts index a7ec3525..d4911e80 100644 --- a/src/app/generated/caster-api/api/vlans.service.ts +++ b/src/app/generated/caster-api/api/vlans.service.ts @@ -576,7 +576,7 @@ export class VlansService { } } - let localVarPath = `/vlans/partitions/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`; + let localVarPath = `/api/vlans/partitions/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`; return this.httpClient.request('delete', `${this.configuration.basePath}${localVarPath}`, { context: localVarHttpContext, @@ -653,7 +653,7 @@ export class VlansService { } } - let localVarPath = `/vlans/pools/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`; + let localVarPath = `/api/vlans/pools/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`; return this.httpClient.request('delete', `${this.configuration.basePath}${localVarPath}`, { context: localVarHttpContext,