fix: update cli create command to use bigint title ID

This commit is contained in:
Jonathan Barrow 2025-10-14 14:47:25 -04:00
parent 1f5455219b
commit 22f3016f50
No known key found for this signature in database
GPG Key ID: 2A7DAA6DED5A77E5

View File

@ -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'
});