@@ -104,6 +104,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
104104 appleClientId: z .ZodOptional <z .ZodString >;
105105 facebookClientId: z .ZodOptional <z .ZodString >;
106106 googleClientId: z .ZodOptional <z .ZodString >;
107+ allowUnauthenticatedIdentities: z .ZodOptional <z .ZodString >;
107108 usernameAttributes: z .ZodOptional <z .ZodString >;
108109 signupAttributes: z .ZodOptional <z .ZodString >;
109110 passwordPolicyMinLength: z .ZodOptional <z .ZodString >;
@@ -113,7 +114,9 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
113114 verificationMechanisms: z .ZodOptional <z .ZodString >;
114115 socialProviders: z .ZodOptional <z .ZodString >;
115116 oauthDomain: z .ZodOptional <z .ZodString >;
116- oauthScope: z .ZodOptional <z .ZodString >;
117+ oauthScope: z .ZodOptional <z .ZodString >; /**
118+ * re-export the storage output schema
119+ */
117120 oauthRedirectSignIn: z .ZodOptional <z .ZodString >;
118121 oauthRedirectSignOut: z .ZodOptional <z .ZodString >;
119122 oauthClientId: z .ZodOptional <z .ZodString >;
@@ -127,6 +130,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
127130 appleClientId? : string | undefined ;
128131 facebookClientId? : string | undefined ;
129132 googleClientId? : string | undefined ;
133+ allowUnauthenticatedIdentities? : string | undefined ;
130134 usernameAttributes? : string | undefined ;
131135 signupAttributes? : string | undefined ;
132136 passwordPolicyMinLength? : string | undefined ;
@@ -150,6 +154,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
150154 appleClientId? : string | undefined ;
151155 facebookClientId? : string | undefined ;
152156 googleClientId? : string | undefined ;
157+ allowUnauthenticatedIdentities? : string | undefined ;
153158 usernameAttributes? : string | undefined ;
154159 signupAttributes? : string | undefined ;
155160 passwordPolicyMinLength? : string | undefined ;
@@ -176,6 +181,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
176181 appleClientId? : string | undefined ;
177182 facebookClientId? : string | undefined ;
178183 googleClientId? : string | undefined ;
184+ allowUnauthenticatedIdentities? : string | undefined ;
179185 usernameAttributes? : string | undefined ;
180186 signupAttributes? : string | undefined ;
181187 passwordPolicyMinLength? : string | undefined ;
@@ -202,6 +208,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
202208 appleClientId? : string | undefined ;
203209 facebookClientId? : string | undefined ;
204210 googleClientId? : string | undefined ;
211+ allowUnauthenticatedIdentities? : string | undefined ;
205212 usernameAttributes? : string | undefined ;
206213 signupAttributes? : string | undefined ;
207214 passwordPolicyMinLength? : string | undefined ;
@@ -317,6 +324,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
317324 appleClientId? : string | undefined ;
318325 facebookClientId? : string | undefined ;
319326 googleClientId? : string | undefined ;
327+ allowUnauthenticatedIdentities? : string | undefined ;
320328 usernameAttributes? : string | undefined ;
321329 signupAttributes? : string | undefined ;
322330 passwordPolicyMinLength? : string | undefined ;
@@ -372,6 +380,7 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
372380 appleClientId? : string | undefined ;
373381 facebookClientId? : string | undefined ;
374382 googleClientId? : string | undefined ;
383+ allowUnauthenticatedIdentities? : string | undefined ;
375384 usernameAttributes? : string | undefined ;
376385 signupAttributes? : string | undefined ;
377386 passwordPolicyMinLength? : string | undefined ;
@@ -422,6 +431,7 @@ export const versionedAuthOutputSchema: z.ZodDiscriminatedUnion<"version", [z.Zo
422431 appleClientId: z .ZodOptional <z .ZodString >;
423432 facebookClientId: z .ZodOptional <z .ZodString >;
424433 googleClientId: z .ZodOptional <z .ZodString >;
434+ allowUnauthenticatedIdentities: z .ZodOptional <z .ZodString >;
425435 usernameAttributes: z .ZodOptional <z .ZodString >;
426436 signupAttributes: z .ZodOptional <z .ZodString >;
427437 passwordPolicyMinLength: z .ZodOptional <z .ZodString >;
@@ -445,6 +455,7 @@ export const versionedAuthOutputSchema: z.ZodDiscriminatedUnion<"version", [z.Zo
445455 appleClientId? : string | undefined ;
446456 facebookClientId? : string | undefined ;
447457 googleClientId? : string | undefined ;
458+ allowUnauthenticatedIdentities? : string | undefined ;
448459 usernameAttributes? : string | undefined ;
449460 signupAttributes? : string | undefined ;
450461 passwordPolicyMinLength? : string | undefined ;
@@ -468,6 +479,7 @@ export const versionedAuthOutputSchema: z.ZodDiscriminatedUnion<"version", [z.Zo
468479 appleClientId? : string | undefined ;
469480 facebookClientId? : string | undefined ;
470481 googleClientId? : string | undefined ;
482+ allowUnauthenticatedIdentities? : string | undefined ;
471483 usernameAttributes? : string | undefined ;
472484 signupAttributes? : string | undefined ;
473485 passwordPolicyMinLength? : string | undefined ;
@@ -494,6 +506,7 @@ export const versionedAuthOutputSchema: z.ZodDiscriminatedUnion<"version", [z.Zo
494506 appleClientId? : string | undefined ;
495507 facebookClientId? : string | undefined ;
496508 googleClientId? : string | undefined ;
509+ allowUnauthenticatedIdentities? : string | undefined ;
497510 usernameAttributes? : string | undefined ;
498511 signupAttributes? : string | undefined ;
499512 passwordPolicyMinLength? : string | undefined ;
@@ -520,6 +533,7 @@ export const versionedAuthOutputSchema: z.ZodDiscriminatedUnion<"version", [z.Zo
520533 appleClientId? : string | undefined ;
521534 facebookClientId? : string | undefined ;
522535 googleClientId? : string | undefined ;
536+ allowUnauthenticatedIdentities? : string | undefined ;
523537 usernameAttributes? : string | undefined ;
524538 signupAttributes? : string | undefined ;
525539 passwordPolicyMinLength? : string | undefined ;
0 commit comments