From c9c12886b85e322d360bb82a5f42be27621860a6 Mon Sep 17 00:00:00 2001 From: Scott Lovegrove Date: Wed, 19 Nov 2025 15:28:11 +0000 Subject: [PATCH] fix: Remove dependency on `projectId` for GetSectionsArgs --- src/types/requests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/requests.ts b/src/types/requests.ts index 17ebf97..3a15cc3 100644 --- a/src/types/requests.ts +++ b/src/types/requests.ts @@ -259,7 +259,7 @@ export type GetProjectCollaboratorsResponse = { * @see https://todoist.com/api/v1/docs#tag/Sections/operation/get_sections_api_v1_sections_get */ export type GetSectionsArgs = { - projectId: string | null + projectId?: string | null cursor?: string | null limit?: number }