From dcf0e4a52c89211dfc8b10c632e44c9630f512f8 Mon Sep 17 00:00:00 2001 From: rachit367 Date: Mon, 18 May 2026 19:19:56 +0530 Subject: [PATCH] fix(types): allow string '0' | '1' for fail_existing on customers.create --- lib/types/customers.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/customers.d.ts b/lib/types/customers.d.ts index c18d5c6..ebf39fe 100644 --- a/lib/types/customers.d.ts +++ b/lib/types/customers.d.ts @@ -25,7 +25,7 @@ export declare namespace Customers { * * `1` (default): If a customer with the same details already exists, throws an error. */ - fail_existing?: boolean | 0 | 1; + fail_existing?: boolean | 0 | 1 | '0' | '1'; /** * Customer's GST number, if available */