From 655c225bcba9ade0afca322dbd4a271b16f36c64 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Thu, 15 Aug 2024 21:32:35 +0200 Subject: [PATCH] fix type def --- src/types/heartbeats.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/heartbeats.ts b/src/types/heartbeats.ts index 6973414..4897eaa 100644 --- a/src/types/heartbeats.ts +++ b/src/types/heartbeats.ts @@ -28,9 +28,9 @@ export interface Datum { } export interface SendHeartbeat { - branch: string | null; + branch?: string | null; hostname: string; - project: string | null; + project?: string | null; url: string; }