From cffa1ef8f1ed49cd120fb32287a260c61ab17516 Mon Sep 17 00:00:00 2001 From: kushalshit27 <43465488+kushalshit27@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:46:51 +0530 Subject: [PATCH] Remove account_name from create connection object in Flow Vault Connections --- src/tools/auth0/handlers/flowVaultConnections.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tools/auth0/handlers/flowVaultConnections.ts b/src/tools/auth0/handlers/flowVaultConnections.ts index 7cb7d4b1..b659528a 100644 --- a/src/tools/auth0/handlers/flowVaultConnections.ts +++ b/src/tools/auth0/handlers/flowVaultConnections.ts @@ -125,6 +125,9 @@ export default class FlowVaultHandler extends DefaultHandler { if ('ready' in conn) { delete conn.ready; } + if ('account_name' in conn) { + delete conn.account_name; + } const { data: created } = await this.client.flows.createConnection(conn); return created; }