Skip to content

Commit

Permalink
added optional to password in zoom response
Browse files Browse the repository at this point in the history
  • Loading branch information
alannnc authored and zomars committed Jul 18, 2022
1 parent 3843c5a commit 8d249ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-store/zoomvideo/lib/VideoApiAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { getZoomAppKeys } from "./getZoomAppKeys";
const zoomEventResultSchema = z.object({
id: z.number(),
join_url: z.string(),
password: z.string(),
password: z.string().optional().default(""),
});

export type ZoomEventResult = z.infer<typeof zoomEventResultSchema>;
Expand Down

0 comments on commit 8d249ea

Please sign in to comment.