From 1da129378934c55902bfe8d3a0f5437f1ab3fcea Mon Sep 17 00:00:00 2001 From: tzhangchi Date: Fri, 6 Jan 2023 00:18:43 +0800 Subject: [PATCH] feat: add removeMember api --- packages/data-center/src/apis/business.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages/data-center/src/apis/business.ts b/packages/data-center/src/apis/business.ts index e364f01a60..ababd0e28a 100644 --- a/packages/data-center/src/apis/business.ts +++ b/packages/data-center/src/apis/business.ts @@ -130,6 +130,19 @@ export class Business { void 0; } + /** + * remove the new member to the workspace + * @param {string} workspaceId ID of workspace. + * @param {string} memberId ID of member + */ + removeMember(workspaceId: string, memberId: string) { + void 0; + } + + /** + * A new member click the invite link, finish to join the workspace + * @param {string} inviteCode token for invitation. + */ async acceptInvitation(invitingCode: string) { const dc = await this._getDc(); dc.apis.acceptInviting({ invitingCode });