Split user remove and archive actions

Restore RemoveUser as a hard delete operation and surface dependency\nconflicts with a dedicated IAM error.\n\nAdd a new ArchiveUser flow that deactivates profiles while keeping the\nmember in the organization, then expose both actions across Connect, MCP,\nCLI, n8n, console UI, and e2e coverage.

Signed-off-by: Cursor Agent <cursoragent@cursor.com>

Co-authored-by: Bryan FRIMIN <bryan@frimin.fr>
This commit is contained in:
Cursor Agent
2026-05-27 18:26:33 +00:00
committed by Bryan Frimin
parent a71a7bb56f
commit 1e08a23ddc
15 changed files with 628 additions and 48 deletions

View File

@@ -41,7 +41,7 @@ export const description: INodeProperties[] = [
},
},
default: '',
description: 'The ID of the user (profile) to archive in the organization',
description: 'The ID of the user (profile) to remove from the organization',
required: true,
},
];
@@ -56,7 +56,7 @@ export async function execute(
const query = `
mutation RemoveUser($input: RemoveUserInput!) {
removeUser(input: $input) {
archivedProfileId: deletedProfileId
deletedProfileId
}
}
`;