Resolve stash merge conflicts: keep both inline-task and billing features

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
tusharmagar 2026-03-13 10:44:48 +05:30 committed by Ramnique Singh
parent e27a93d051
commit 27e8fe0f22
6 changed files with 117 additions and 0 deletions

View file

@ -516,6 +516,17 @@ const ipcSchemas = {
]).nullable(),
}),
},
// Billing channels
'billing:getInfo': {
req: z.null(),
res: z.object({
subscriptionPlan: z.string().nullable(),
subscriptionStatus: z.string().nullable(),
trialUsed: z.boolean(),
sanctionedCredits: z.number(),
availableCredits: z.number(),
}),
},
} as const;
// ============================================================================