Skip to content

Commit

Permalink
sdk: add boolean to SerializableType
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Oct 31, 2024
1 parent 1b58b0d commit b6d601e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/types/src/types.input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1779,7 +1779,7 @@ export interface OauthClient {
onOauthCallback(callbackUrl: string): Promise<void>;

}
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 {
Expand Down

0 comments on commit b6d601e

Please sign in to comment.