From 6cabbbbb18d393c5cab699c60c08aa4b35bff51b Mon Sep 17 00:00:00 2001 From: Varpuspaavi Date: Mon, 7 Sep 2026 11:45:10 +0200 Subject: [PATCH 1/2] feat(API): add created_since filter to check issues list #STRINGS-3043 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add optional created_since query param to GET /api/v2/projects/{project_id}/checks/issues. When set, only issues with created_at >= created_since are returned; invalid ISO 8601 → 400. Syncs strings-app#18631. Co-Authored-By: Claude Opus 4.8 (1M context) --- doc/compiled.json | 10 ++++++++++ paths/checks/index.yaml | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/doc/compiled.json b/doc/compiled.json index 7927c283..e7a63f70 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -23663,6 +23663,16 @@ "translation_placeholder_usage" ] } + }, + { + "name": "created_since", + "in": "query", + "required": false, + "schema": { + "type": "string" + }, + "example": "2026-01-01T12:00:00Z", + "description": "Return only check issues created on or after this ISO 8601 datetime. Returns 400 if the value is not a valid date-time." } ], "responses": { diff --git a/paths/checks/index.yaml b/paths/checks/index.yaml index ef6b2a1f..cb84f01f 100644 --- a/paths/checks/index.yaml +++ b/paths/checks/index.yaml @@ -54,6 +54,13 @@ parameters: - translation_glossary_usage example: - translation_placeholder_usage +- name: created_since + in: query + required: false + schema: + type: string + example: "2026-01-01T12:00:00Z" + description: Return only check issues created on or after this ISO 8601 datetime. Returns 400 if the value is not a valid date-time. responses: '200': description: OK From d1b0a85163215c0ea379556f7ed6e1c17a4fa55f Mon Sep 17 00:00:00 2001 From: Varpuspaavi Date: Mon, 7 Sep 2026 13:37:06 +0200 Subject: [PATCH 2/2] chore: retrigger CI after lawa token restore