From 31076c5c0a77ecfb94b4a8ea5b4ed10b80f4071c Mon Sep 17 00:00:00 2001 From: Kristaps Fabians Geikins Date: Fri, 27 Sep 2024 12:34:54 +0300 Subject: [PATCH] minor fix --- packages/server/modules/core/domain/branches/operations.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/server/modules/core/domain/branches/operations.ts b/packages/server/modules/core/domain/branches/operations.ts index 9fe334f6f..0fbab01a3 100644 --- a/packages/server/modules/core/domain/branches/operations.ts +++ b/packages/server/modules/core/domain/branches/operations.ts @@ -141,6 +141,8 @@ export type UpdateBranch = ( branch: Partial ) => Promise +export type DeleteBranchById = (branchId: string) => Promise + export type UpdateBranchAndNotify = ( input: BranchUpdateInput | UpdateModelInput, userId: string