From e23dfe5fc2c39e0b3c966b48d24c46a621b08bfa Mon Sep 17 00:00:00 2001 From: kanat Date: Thu, 12 Dec 2024 20:00:17 -0500 Subject: [PATCH 1/2] [CHA-344] add team to channel template --- src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.ts b/src/types.ts index 8a7c01e8c..dfc6c5ebd 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2966,6 +2966,7 @@ export type CampaignFilters = {}; export type CampaignData = { channel_template?: { + team: string; type: string; custom?: {}; id?: string; From 07e4bb8de5993675e04a286e361142604471e5aa Mon Sep 17 00:00:00 2001 From: Lennart Kuijs Date: Fri, 13 Dec 2024 09:25:40 +0100 Subject: [PATCH 2/2] made team optional --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index dfc6c5ebd..a2405b966 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2966,11 +2966,11 @@ export type CampaignFilters = {}; export type CampaignData = { channel_template?: { - team: string; type: string; custom?: {}; id?: string; members?: string[]; + team?: string; }; create_channels?: boolean; deleted_at?: string;