@authhero/kysely-adapter 10.52.0 → 10.53.0

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.
@@ -8216,28 +8216,28 @@ declare const sqlTenantSchema: z.ZodObject<{
8216
8216
  idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
8217
8217
  ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
8218
8218
  idle_ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
8219
- session_cookie: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8220
- allowed_logout_urls: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8219
+ session_cookie: z.ZodOptional<z.ZodString>;
8220
+ allowed_logout_urls: z.ZodOptional<z.ZodString>;
8221
8221
  default_redirection_uri: z.ZodOptional<z.ZodString>;
8222
- enabled_locales: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8222
+ enabled_locales: z.ZodOptional<z.ZodString>;
8223
8223
  default_directory: z.ZodOptional<z.ZodString>;
8224
- error_page: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8225
- flags: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8224
+ error_page: z.ZodOptional<z.ZodString>;
8225
+ flags: z.ZodOptional<z.ZodString>;
8226
8226
  sandbox_version: z.ZodOptional<z.ZodString>;
8227
8227
  legacy_sandbox_version: z.ZodOptional<z.ZodString>;
8228
- sandbox_versions_available: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8229
- change_password: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8230
- guardian_mfa_page: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8231
- device_flow: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8232
- default_token_quota: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8228
+ sandbox_versions_available: z.ZodOptional<z.ZodString>;
8229
+ change_password: z.ZodOptional<z.ZodString>;
8230
+ guardian_mfa_page: z.ZodOptional<z.ZodString>;
8231
+ device_flow: z.ZodOptional<z.ZodString>;
8232
+ default_token_quota: z.ZodOptional<z.ZodString>;
8233
8233
  default_audience: z.ZodOptional<z.ZodString>;
8234
8234
  default_organization: z.ZodOptional<z.ZodString>;
8235
- sessions: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8236
- oidc_logout: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8235
+ sessions: z.ZodOptional<z.ZodString>;
8236
+ oidc_logout: z.ZodOptional<z.ZodString>;
8237
8237
  allow_organization_name_in_authentication_api: z.ZodOptional<z.ZodNumber>;
8238
8238
  customize_mfa_in_postlogin_action: z.ZodOptional<z.ZodNumber>;
8239
- acr_values_supported: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8240
- mtls: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8239
+ acr_values_supported: z.ZodOptional<z.ZodString>;
8240
+ mtls: z.ZodOptional<z.ZodString>;
8241
8241
  pushed_authorization_requests_supported: z.ZodOptional<z.ZodNumber>;
8242
8242
  authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodNumber>;
8243
8243
  }, "strip", z.ZodTypeAny, {
@@ -8248,20 +8248,6 @@ declare const sqlTenantSchema: z.ZodObject<{
8248
8248
  sender_email: string;
8249
8249
  sender_name: string;
8250
8250
  friendly_name: string;
8251
- session_cookie: string;
8252
- allowed_logout_urls: string;
8253
- enabled_locales: string;
8254
- error_page: string;
8255
- flags: string;
8256
- sandbox_versions_available: string;
8257
- change_password: string;
8258
- guardian_mfa_page: string;
8259
- device_flow: string;
8260
- default_token_quota: string;
8261
- sessions: string;
8262
- oidc_logout: string;
8263
- acr_values_supported: string;
8264
- mtls: string;
8265
8251
  support_url?: string | undefined;
8266
8252
  picture_url?: string | undefined;
8267
8253
  support_email?: string | undefined;
@@ -8269,14 +8255,28 @@ declare const sqlTenantSchema: z.ZodObject<{
8269
8255
  idle_session_lifetime?: number | undefined;
8270
8256
  ephemeral_session_lifetime?: number | undefined;
8271
8257
  idle_ephemeral_session_lifetime?: number | undefined;
8258
+ session_cookie?: string | undefined;
8259
+ allowed_logout_urls?: string | undefined;
8272
8260
  default_redirection_uri?: string | undefined;
8261
+ enabled_locales?: string | undefined;
8273
8262
  default_directory?: string | undefined;
8263
+ error_page?: string | undefined;
8264
+ flags?: string | undefined;
8274
8265
  sandbox_version?: string | undefined;
8275
8266
  legacy_sandbox_version?: string | undefined;
8267
+ sandbox_versions_available?: string | undefined;
8268
+ change_password?: string | undefined;
8269
+ guardian_mfa_page?: string | undefined;
8270
+ device_flow?: string | undefined;
8271
+ default_token_quota?: string | undefined;
8276
8272
  default_audience?: string | undefined;
8277
8273
  default_organization?: string | undefined;
8274
+ sessions?: string | undefined;
8275
+ oidc_logout?: string | undefined;
8278
8276
  allow_organization_name_in_authentication_api?: number | undefined;
8279
8277
  customize_mfa_in_postlogin_action?: number | undefined;
8278
+ acr_values_supported?: string | undefined;
8279
+ mtls?: string | undefined;
8280
8280
  pushed_authorization_requests_supported?: number | undefined;
8281
8281
  authorization_response_iss_parameter_supported?: number | undefined;
8282
8282
  }, {