From 701cc5d4633381830a75cf6f13be9b5f70e75400 Mon Sep 17 00:00:00 2001 From: SharanRP Date: Thu, 25 Sep 2025 10:53:45 +0530 Subject: [PATCH] fix: add missing 'active' status to DatabaseExportResponse type --- src/resources/d1/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/d1/database.ts b/src/resources/d1/database.ts index 905848c187..79bfdffb9e 100644 --- a/src/resources/d1/database.ts +++ b/src/resources/d1/database.ts @@ -404,7 +404,7 @@ export interface DatabaseExportResponse { */ result?: DatabaseExportResponse.Result; - status?: 'complete' | 'error'; + status?: 'complete' | 'error' | 'active'; success?: boolean;