From 4b88ba567f7ed54b4c32a1fbcdddf66ea13d1b37 Mon Sep 17 00:00:00 2001 From: Neven Date: Tue, 7 Jan 2025 19:58:02 +0100 Subject: [PATCH] Add comment --- packages/core-mobile/app/services/fcm/types.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/core-mobile/app/services/fcm/types.ts b/packages/core-mobile/app/services/fcm/types.ts index 2ce505212..420a8b4b1 100644 --- a/packages/core-mobile/app/services/fcm/types.ts +++ b/packages/core-mobile/app/services/fcm/types.ts @@ -17,7 +17,11 @@ export const NotificationsBalanceChangeSchema = object({ sound: string().optional(), android: object({ channelId: nativeEnum(ChannelId).optional() - }).optional() + }) + .optional() + .describe( + 'Deprecated: this is for backward compatibility, remove when https://github.com/ava-labs/core-notification-sender-service/pull/62 is released to prod ' + ) //TODO }).optional() })