From 22f3016f5057f6c888100e7c4e982bf110e35bd9 Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Tue, 14 Oct 2025 14:47:25 -0400 Subject: [PATCH] fix: update cli create command to use bigint title ID --- src/cli/tasks.cmd.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/tasks.cmd.ts b/src/cli/tasks.cmd.ts index ef41894..13b4282 100644 --- a/src/cli/tasks.cmd.ts +++ b/src/cli/tasks.cmd.ts @@ -62,7 +62,7 @@ const createCmd = new Command('create') const { task } = await ctx.grpc.registerTask({ bossAppId: appId, id: opts.id, - titleId: opts.titleId, + titleId: BigInt(parseInt(opts.titleId, 16)), description: opts.desc ?? '', country: 'This value isnt used' });