From 3f7055a0a856897529ea85d05f37cfaf218734cf Mon Sep 17 00:00:00 2001 From: Francis Dinh Date: Tue, 6 Sep 2022 14:51:20 -0400 Subject: [PATCH] foundkey-js: remove room api endpoints Changelog: Removed --- packages/foundkey-js/src/api.types.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/foundkey-js/src/api.types.ts b/packages/foundkey-js/src/api.types.ts index 2a08af7d6..8f81fc2d1 100644 --- a/packages/foundkey-js/src/api.types.ts +++ b/packages/foundkey-js/src/api.types.ts @@ -544,10 +544,6 @@ export type Endpoints = { // reset-password 'reset-password': { req: { token: string; password: string; }; res: null; }; - // room - 'room/show': { req: TODO; res: TODO; }; - 'room/update': { req: TODO; res: TODO; }; - // stats 'stats': { req: NoParams; res: Stats; };