@authhero/kysely-adapter 11.5.1 → 11.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -467,6 +467,7 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
467
467
|
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
468
468
|
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
469
469
|
inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
|
|
470
|
+
restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
|
|
470
471
|
}, z.core.$strip>>;
|
|
471
472
|
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
472
473
|
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
package/dist/types/src/db.d.ts
CHANGED
|
@@ -467,6 +467,7 @@ export declare const sqlTenantSchema: z.ZodObject<{
|
|
|
467
467
|
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
468
468
|
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
469
469
|
inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
|
|
470
|
+
restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
|
|
470
471
|
}, z.core.$strip>>;
|
|
471
472
|
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
472
473
|
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
@@ -68,6 +68,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
68
68
|
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
69
69
|
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
70
70
|
inherit_global_permissions_in_organizations?: boolean | undefined;
|
|
71
|
+
restrict_undefined_scopes?: boolean | undefined;
|
|
71
72
|
} | undefined;
|
|
72
73
|
sandbox_version?: string | undefined;
|
|
73
74
|
legacy_sandbox_version?: string | undefined;
|
|
@@ -243,6 +244,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
243
244
|
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
244
245
|
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
245
246
|
inherit_global_permissions_in_organizations?: boolean | undefined;
|
|
247
|
+
restrict_undefined_scopes?: boolean | undefined;
|
|
246
248
|
} | undefined;
|
|
247
249
|
sandbox_version?: string | undefined;
|
|
248
250
|
legacy_sandbox_version?: string | undefined;
|