From f9ef3758f44fbd13623d22aa4865f1c5bed2f3e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Thu, 22 Jan 2026 11:53:11 +0100 Subject: [PATCH] pl-api: fix kmyblue stuff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-api/lib/client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pl-api/lib/client.ts b/packages/pl-api/lib/client.ts index 23be2b895..ebbe1a8f4 100644 --- a/packages/pl-api/lib/client.ts +++ b/packages/pl-api/lib/client.ts @@ -750,7 +750,7 @@ class PlApiClient { * Requires features{@link Features.antennas}. */ getAccountExcludeAntennas: async (accountId: string) => { - const response = await this.request(`/api/v1/accounts/${accountId}/circles`); + const response = await this.request(`/api/v1/accounts/${accountId}/exclude_antennas`); return v.parse(filteredArray(circleSchema), response.json); }, @@ -761,7 +761,7 @@ class PlApiClient { * Requires features{@link Features.circles}. */ getAccountCircles: async (accountId: string) => { - const response = await this.request(`/api/v1/accounts/${accountId}/exclude_antennas`); + const response = await this.request(`/api/v1/accounts/${accountId}/circles`); return v.parse(filteredArray(antennaSchema), response.json); },