@authhero/kysely-adapter 11.5.0 → 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
|
@@ -435,6 +435,7 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
435
435
|
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
436
436
|
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
437
437
|
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
438
|
+
client_id_metadata_document_registration: z.ZodOptional<z.ZodBoolean>;
|
|
438
439
|
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
439
440
|
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
440
441
|
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -466,6 +467,7 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
466
467
|
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
467
468
|
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
468
469
|
inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
|
|
470
|
+
restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
|
|
469
471
|
}, z.core.$strip>>;
|
|
470
472
|
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
471
473
|
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
package/dist/types/src/db.d.ts
CHANGED
|
@@ -435,6 +435,7 @@ export declare const sqlTenantSchema: z.ZodObject<{
|
|
|
435
435
|
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
436
436
|
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
437
437
|
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
438
|
+
client_id_metadata_document_registration: z.ZodOptional<z.ZodBoolean>;
|
|
438
439
|
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
439
440
|
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
440
441
|
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -466,6 +467,7 @@ export declare const sqlTenantSchema: z.ZodObject<{
|
|
|
466
467
|
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
467
468
|
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
468
469
|
inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
|
|
470
|
+
restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
|
|
469
471
|
}, z.core.$strip>>;
|
|
470
472
|
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
471
473
|
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
@@ -36,6 +36,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
36
36
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
37
37
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
38
38
|
change_pwd_flow_v1?: boolean | undefined;
|
|
39
|
+
client_id_metadata_document_registration?: boolean | undefined;
|
|
39
40
|
custom_domains_provisioning?: boolean | undefined;
|
|
40
41
|
dashboard_insights_view?: boolean | undefined;
|
|
41
42
|
dashboard_log_streams_next?: boolean | undefined;
|
|
@@ -67,6 +68,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
67
68
|
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
68
69
|
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
69
70
|
inherit_global_permissions_in_organizations?: boolean | undefined;
|
|
71
|
+
restrict_undefined_scopes?: boolean | undefined;
|
|
70
72
|
} | undefined;
|
|
71
73
|
sandbox_version?: string | undefined;
|
|
72
74
|
legacy_sandbox_version?: string | undefined;
|
|
@@ -210,6 +212,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
210
212
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
211
213
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
212
214
|
change_pwd_flow_v1?: boolean | undefined;
|
|
215
|
+
client_id_metadata_document_registration?: boolean | undefined;
|
|
213
216
|
custom_domains_provisioning?: boolean | undefined;
|
|
214
217
|
dashboard_insights_view?: boolean | undefined;
|
|
215
218
|
dashboard_log_streams_next?: boolean | undefined;
|
|
@@ -241,6 +244,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
241
244
|
trust_azure_adfs_email_verified_connection_property?: boolean | undefined;
|
|
242
245
|
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
243
246
|
inherit_global_permissions_in_organizations?: boolean | undefined;
|
|
247
|
+
restrict_undefined_scopes?: boolean | undefined;
|
|
244
248
|
} | undefined;
|
|
245
249
|
sandbox_version?: string | undefined;
|
|
246
250
|
legacy_sandbox_version?: string | undefined;
|