From 935da12ab60c0441b1d724ee907a3a0929f6d935 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Mar 2026 18:52:48 +0000 Subject: [PATCH 1/2] Initial plan From 92924d4919cc85a38071224194e2fcb1fe2c0677 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Mar 2026 19:01:06 +0000 Subject: [PATCH 2/2] fix(backend): correct jsonRequestSchema comment typo Co-authored-by: WcaleNieWolny <50914789+WcaleNieWolny@users.noreply.github.com> --- supabase/functions/_backend/plugins/channel_self.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/functions/_backend/plugins/channel_self.ts b/supabase/functions/_backend/plugins/channel_self.ts index 9e22c187f6..67cfffb9ba 100644 --- a/supabase/functions/_backend/plugins/channel_self.ts +++ b/supabase/functions/_backend/plugins/channel_self.ts @@ -163,7 +163,7 @@ export const jsonRequestSchema = z.looseObject({ key_id: z.optional(z.string().check(z.maxLength(20))), }) -// TODO: delete when all mirgrated to jsonRequestSchema +// TODO: delete when all migrated to jsonRequestSchema export const jsonRequestSchemaGet = z.looseObject({ app_id: z.string({ error: issue => issue.input === undefined ? MISSING_STRING_APP_ID : NON_STRING_APP_ID,