From c304dca94d75559329683b64eca248c2b119fee4 Mon Sep 17 00:00:00 2001 From: Veloi <85405932+veloii@users.noreply.github.com> Date: Sat, 23 Sep 2023 17:58:04 +0100 Subject: [PATCH] Update types.ts fix: last_id can be number or boolean --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 31ebe87..8117abe 100644 --- a/src/types.ts +++ b/src/types.ts @@ -138,7 +138,7 @@ export type ActivityResponseData = Array; interface ActivityResponseMeta { start_date: string; end_date: string; - last_id: number; + last_id: number | boolean; step_size: string; detention_alias_uc: string; }