We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d998c27 commit c51e994Copy full SHA for c51e994
src/lib/zod/workspace.ts
@@ -11,10 +11,9 @@ export const hex_color_code = z.string().refine((value) => {
11
export const workspace = z.object({
12
workspace_id: z.string(),
13
name: z.string(),
14
- publishable_key: z.string(),
15
created_at: z.string(),
16
is_sandbox: z.boolean(),
17
- publishable_key: z.string().optional(),
+ publishable_key: z.string(),
18
is_publishable_key_auth_enabled: z.boolean(),
19
is_suspended: z.boolean(),
20
company_name: z.string(),
0 commit comments