From e4ddc2161350fea05021446f66a2ca1ff34f43ab Mon Sep 17 00:00:00 2001 From: Aashish John Date: Fri, 19 Jun 2026 16:20:41 -0400 Subject: [PATCH] fix(backfill-telnyx): assert yargs type --- scripts/backfill-telnyx-sending-accounts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/backfill-telnyx-sending-accounts.ts b/scripts/backfill-telnyx-sending-accounts.ts index 0837f56..817887c 100644 --- a/scripts/backfill-telnyx-sending-accounts.ts +++ b/scripts/backfill-telnyx-sending-accounts.ts @@ -25,7 +25,7 @@ const argv = yargs 'The ID of the Switchboard sending account to use as a template for new sending accounts', type: 'string', }) - .help().argv; + .help().argv as yargs.Arguments<{ 'template-sending-account-id'?: string }>; const templateAccountId = argv['template-sending-account-id']; const pool = new Pool({ connectionString: config.databaseUrl });