From b6d601ebc4747d0cfa2cfcc80b32f3489c0d1c02 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 31 Oct 2024 09:20:14 -0700 Subject: [PATCH] sdk: add boolean to SerializableType --- sdk/types/src/types.input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/types/src/types.input.ts b/sdk/types/src/types.input.ts index 14e8289986..758aa1f6b3 100644 --- a/sdk/types/src/types.input.ts +++ b/sdk/types/src/types.input.ts @@ -1779,7 +1779,7 @@ export interface OauthClient { onOauthCallback(callbackUrl: string): Promise; } -export type SerializableType = null | undefined | number | string | { [key: string]: SerializableType } | SerializableType[]; +export type SerializableType = null | undefined | boolean | number | string | { [key: string]: SerializableType } | SerializableType[]; export type TopLevelSerializableType = Function | Buffer | SerializableType; export interface MediaObjectOptions {