pl-api: fix circles methods

Signed-off-by: Nicole Mikołajczyk <git@mkljczk.pl>
This commit is contained in:
Nicole Mikołajczyk
2025-04-21 23:40:18 +02:00
parent 491621c876
commit f747f9b9dd
2 changed files with 2 additions and 1 deletions

View File

@ -5283,7 +5283,7 @@ class PlApiClient {
/**
* Requires features{@link Features['circles']}.
*/
getCircles: async (circleId: string) => {
getCircle: async (circleId: string) => {
const response = await this.request(`/api/v1/circles/${circleId}`);
return v.parse(circleSchema, response.json);

View File

@ -27,6 +27,7 @@ export * from './backup';
export * from './bookmark-folder';
export * from './chat';
export * from './chat-message';
export * from './circle';
export * from './context';
export * from './conversation';
export * from './custom-emoji';