authhero 0.246.0 → 0.247.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.
- package/dist/authhero.cjs +48 -48
- package/dist/authhero.d.ts +452 -0
- package/dist/authhero.mjs +4695 -4556
- package/dist/stats.html +1 -1
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -15079,6 +15079,254 @@ export declare const userOrganizationSchema: z.ZodObject<{
|
|
|
15079
15079
|
organization_id: string;
|
|
15080
15080
|
}>;
|
|
15081
15081
|
export type UserOrganization = z.infer<typeof userOrganizationSchema>;
|
|
15082
|
+
export declare const tenantSettingsSchema: z.ZodObject<{
|
|
15083
|
+
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
15084
|
+
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
15085
|
+
session_cookie: z.ZodOptional<z.ZodObject<{
|
|
15086
|
+
mode: z.ZodOptional<z.ZodEnum<[
|
|
15087
|
+
"persistent",
|
|
15088
|
+
"non-persistent"
|
|
15089
|
+
]>>;
|
|
15090
|
+
}, "strip", z.ZodTypeAny, {
|
|
15091
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
15092
|
+
}, {
|
|
15093
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
15094
|
+
}>>;
|
|
15095
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
15096
|
+
default_redirection_uri: z.ZodOptional<z.ZodString>;
|
|
15097
|
+
enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15098
|
+
default_directory: z.ZodOptional<z.ZodString>;
|
|
15099
|
+
error_page: z.ZodOptional<z.ZodObject<{
|
|
15100
|
+
html: z.ZodOptional<z.ZodString>;
|
|
15101
|
+
show_log_link: z.ZodOptional<z.ZodBoolean>;
|
|
15102
|
+
url: z.ZodOptional<z.ZodString>;
|
|
15103
|
+
}, "strip", z.ZodTypeAny, {
|
|
15104
|
+
url?: string | undefined;
|
|
15105
|
+
html?: string | undefined;
|
|
15106
|
+
show_log_link?: boolean | undefined;
|
|
15107
|
+
}, {
|
|
15108
|
+
url?: string | undefined;
|
|
15109
|
+
html?: string | undefined;
|
|
15110
|
+
show_log_link?: boolean | undefined;
|
|
15111
|
+
}>>;
|
|
15112
|
+
flags: z.ZodOptional<z.ZodObject<{
|
|
15113
|
+
allow_legacy_delegation_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
15114
|
+
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
15115
|
+
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
15116
|
+
disable_clickjack_protection_headers: z.ZodOptional<z.ZodBoolean>;
|
|
15117
|
+
enable_apis_section: z.ZodOptional<z.ZodBoolean>;
|
|
15118
|
+
enable_client_connections: z.ZodOptional<z.ZodBoolean>;
|
|
15119
|
+
enable_custom_domain_in_emails: z.ZodOptional<z.ZodBoolean>;
|
|
15120
|
+
enable_dynamic_client_registration: z.ZodOptional<z.ZodBoolean>;
|
|
15121
|
+
enable_idtoken_api2: z.ZodOptional<z.ZodBoolean>;
|
|
15122
|
+
enable_legacy_logs_search_v2: z.ZodOptional<z.ZodBoolean>;
|
|
15123
|
+
enable_legacy_profile: z.ZodOptional<z.ZodBoolean>;
|
|
15124
|
+
enable_pipeline2: z.ZodOptional<z.ZodBoolean>;
|
|
15125
|
+
enable_public_signup_user_exists_error: z.ZodOptional<z.ZodBoolean>;
|
|
15126
|
+
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
15127
|
+
disable_management_api_sms_obfuscation: z.ZodOptional<z.ZodBoolean>;
|
|
15128
|
+
enable_adfs_waad_email_verification: z.ZodOptional<z.ZodBoolean>;
|
|
15129
|
+
revoke_refresh_token_grant: z.ZodOptional<z.ZodBoolean>;
|
|
15130
|
+
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
15131
|
+
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
15132
|
+
disable_fields_map_fix: z.ZodOptional<z.ZodBoolean>;
|
|
15133
|
+
mfa_show_factor_list_on_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
15134
|
+
}, "strip", z.ZodTypeAny, {
|
|
15135
|
+
enable_client_connections?: boolean | undefined;
|
|
15136
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15137
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15138
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
15139
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
15140
|
+
enable_apis_section?: boolean | undefined;
|
|
15141
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15142
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
15143
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
15144
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
15145
|
+
enable_legacy_profile?: boolean | undefined;
|
|
15146
|
+
enable_pipeline2?: boolean | undefined;
|
|
15147
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15148
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15149
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15150
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15151
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
15152
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15153
|
+
dashboard_insights_view?: boolean | undefined;
|
|
15154
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
15155
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
15156
|
+
}, {
|
|
15157
|
+
enable_client_connections?: boolean | undefined;
|
|
15158
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15159
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15160
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
15161
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
15162
|
+
enable_apis_section?: boolean | undefined;
|
|
15163
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15164
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
15165
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
15166
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
15167
|
+
enable_legacy_profile?: boolean | undefined;
|
|
15168
|
+
enable_pipeline2?: boolean | undefined;
|
|
15169
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15170
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15171
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15172
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15173
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
15174
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15175
|
+
dashboard_insights_view?: boolean | undefined;
|
|
15176
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
15177
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
15178
|
+
}>>;
|
|
15179
|
+
friendly_name: z.ZodOptional<z.ZodString>;
|
|
15180
|
+
picture_url: z.ZodOptional<z.ZodString>;
|
|
15181
|
+
support_email: z.ZodOptional<z.ZodString>;
|
|
15182
|
+
support_url: z.ZodOptional<z.ZodString>;
|
|
15183
|
+
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
15184
|
+
sandbox_versions_available: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15185
|
+
change_password: z.ZodOptional<z.ZodObject<{
|
|
15186
|
+
enabled: z.ZodBoolean;
|
|
15187
|
+
html: z.ZodString;
|
|
15188
|
+
}, "strip", z.ZodTypeAny, {
|
|
15189
|
+
html: string;
|
|
15190
|
+
enabled: boolean;
|
|
15191
|
+
}, {
|
|
15192
|
+
html: string;
|
|
15193
|
+
enabled: boolean;
|
|
15194
|
+
}>>;
|
|
15195
|
+
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
15196
|
+
enabled: z.ZodBoolean;
|
|
15197
|
+
html: z.ZodString;
|
|
15198
|
+
}, "strip", z.ZodTypeAny, {
|
|
15199
|
+
html: string;
|
|
15200
|
+
enabled: boolean;
|
|
15201
|
+
}, {
|
|
15202
|
+
html: string;
|
|
15203
|
+
enabled: boolean;
|
|
15204
|
+
}>>;
|
|
15205
|
+
default_audience: z.ZodOptional<z.ZodString>;
|
|
15206
|
+
default_organization: z.ZodOptional<z.ZodString>;
|
|
15207
|
+
sessions: z.ZodOptional<z.ZodObject<{
|
|
15208
|
+
oidc_logout_prompt_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
15209
|
+
}, "strip", z.ZodTypeAny, {
|
|
15210
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
15211
|
+
}, {
|
|
15212
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
15213
|
+
}>>;
|
|
15214
|
+
}, "strip", z.ZodTypeAny, {
|
|
15215
|
+
default_organization?: string | undefined;
|
|
15216
|
+
support_url?: string | undefined;
|
|
15217
|
+
idle_session_lifetime?: number | undefined;
|
|
15218
|
+
session_lifetime?: number | undefined;
|
|
15219
|
+
session_cookie?: {
|
|
15220
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
15221
|
+
} | undefined;
|
|
15222
|
+
enable_client_connections?: boolean | undefined;
|
|
15223
|
+
default_redirection_uri?: string | undefined;
|
|
15224
|
+
enabled_locales?: string[] | undefined;
|
|
15225
|
+
default_directory?: string | undefined;
|
|
15226
|
+
error_page?: {
|
|
15227
|
+
url?: string | undefined;
|
|
15228
|
+
html?: string | undefined;
|
|
15229
|
+
show_log_link?: boolean | undefined;
|
|
15230
|
+
} | undefined;
|
|
15231
|
+
flags?: {
|
|
15232
|
+
enable_client_connections?: boolean | undefined;
|
|
15233
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15234
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15235
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
15236
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
15237
|
+
enable_apis_section?: boolean | undefined;
|
|
15238
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15239
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
15240
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
15241
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
15242
|
+
enable_legacy_profile?: boolean | undefined;
|
|
15243
|
+
enable_pipeline2?: boolean | undefined;
|
|
15244
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15245
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15246
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15247
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15248
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
15249
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15250
|
+
dashboard_insights_view?: boolean | undefined;
|
|
15251
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
15252
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
15253
|
+
} | undefined;
|
|
15254
|
+
friendly_name?: string | undefined;
|
|
15255
|
+
picture_url?: string | undefined;
|
|
15256
|
+
support_email?: string | undefined;
|
|
15257
|
+
sandbox_version?: string | undefined;
|
|
15258
|
+
sandbox_versions_available?: string[] | undefined;
|
|
15259
|
+
change_password?: {
|
|
15260
|
+
html: string;
|
|
15261
|
+
enabled: boolean;
|
|
15262
|
+
} | undefined;
|
|
15263
|
+
guardian_mfa_page?: {
|
|
15264
|
+
html: string;
|
|
15265
|
+
enabled: boolean;
|
|
15266
|
+
} | undefined;
|
|
15267
|
+
default_audience?: string | undefined;
|
|
15268
|
+
sessions?: {
|
|
15269
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
15270
|
+
} | undefined;
|
|
15271
|
+
}, {
|
|
15272
|
+
default_organization?: string | undefined;
|
|
15273
|
+
support_url?: string | undefined;
|
|
15274
|
+
idle_session_lifetime?: number | undefined;
|
|
15275
|
+
session_lifetime?: number | undefined;
|
|
15276
|
+
session_cookie?: {
|
|
15277
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
15278
|
+
} | undefined;
|
|
15279
|
+
enable_client_connections?: boolean | undefined;
|
|
15280
|
+
default_redirection_uri?: string | undefined;
|
|
15281
|
+
enabled_locales?: string[] | undefined;
|
|
15282
|
+
default_directory?: string | undefined;
|
|
15283
|
+
error_page?: {
|
|
15284
|
+
url?: string | undefined;
|
|
15285
|
+
html?: string | undefined;
|
|
15286
|
+
show_log_link?: boolean | undefined;
|
|
15287
|
+
} | undefined;
|
|
15288
|
+
flags?: {
|
|
15289
|
+
enable_client_connections?: boolean | undefined;
|
|
15290
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
15291
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
15292
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
15293
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
15294
|
+
enable_apis_section?: boolean | undefined;
|
|
15295
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
15296
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
15297
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
15298
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
15299
|
+
enable_legacy_profile?: boolean | undefined;
|
|
15300
|
+
enable_pipeline2?: boolean | undefined;
|
|
15301
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
15302
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
15303
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
15304
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
15305
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
15306
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
15307
|
+
dashboard_insights_view?: boolean | undefined;
|
|
15308
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
15309
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
15310
|
+
} | undefined;
|
|
15311
|
+
friendly_name?: string | undefined;
|
|
15312
|
+
picture_url?: string | undefined;
|
|
15313
|
+
support_email?: string | undefined;
|
|
15314
|
+
sandbox_version?: string | undefined;
|
|
15315
|
+
sandbox_versions_available?: string[] | undefined;
|
|
15316
|
+
change_password?: {
|
|
15317
|
+
html: string;
|
|
15318
|
+
enabled: boolean;
|
|
15319
|
+
} | undefined;
|
|
15320
|
+
guardian_mfa_page?: {
|
|
15321
|
+
html: string;
|
|
15322
|
+
enabled: boolean;
|
|
15323
|
+
} | undefined;
|
|
15324
|
+
default_audience?: string | undefined;
|
|
15325
|
+
sessions?: {
|
|
15326
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
15327
|
+
} | undefined;
|
|
15328
|
+
}>;
|
|
15329
|
+
export type TenantSettings = z.infer<typeof tenantSettingsSchema>;
|
|
15082
15330
|
export declare function parseUserId(user_id: string): {
|
|
15083
15331
|
connection: string;
|
|
15084
15332
|
id: string;
|
|
@@ -15351,6 +15599,10 @@ export interface UserOrganizationsAdapter {
|
|
|
15351
15599
|
} & Totals>;
|
|
15352
15600
|
update(tenantId: string, id: string, params: Partial<UserOrganizationInsert>): Promise<boolean>;
|
|
15353
15601
|
}
|
|
15602
|
+
export interface TenantSettingsAdapter {
|
|
15603
|
+
set: (tenant_id: string, settings: TenantSettings) => Promise<void>;
|
|
15604
|
+
get: (tenant_id: string) => Promise<TenantSettings | null>;
|
|
15605
|
+
}
|
|
15354
15606
|
export interface DataAdapters {
|
|
15355
15607
|
branding: BrandingAdapter;
|
|
15356
15608
|
cache?: CacheAdapter;
|
|
@@ -15375,6 +15627,7 @@ export interface DataAdapters {
|
|
|
15375
15627
|
roles: RolesAdapter;
|
|
15376
15628
|
sessions: SessionsAdapter;
|
|
15377
15629
|
tenants: TenantsDataAdapter;
|
|
15630
|
+
tenantSettings: TenantSettingsAdapter;
|
|
15378
15631
|
themes: ThemesAdapter;
|
|
15379
15632
|
users: UserDataAdapter;
|
|
15380
15633
|
userRoles: UserRolesAdapter;
|
|
@@ -18807,6 +19060,205 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18807
19060
|
};
|
|
18808
19061
|
};
|
|
18809
19062
|
}, "/logs"> & import("hono/types").MergeSchemaPath<{
|
|
19063
|
+
"/": {
|
|
19064
|
+
$get: {
|
|
19065
|
+
input: {
|
|
19066
|
+
header: {
|
|
19067
|
+
"tenant-id": string;
|
|
19068
|
+
};
|
|
19069
|
+
};
|
|
19070
|
+
output: {
|
|
19071
|
+
default_organization?: string | undefined | undefined;
|
|
19072
|
+
support_url?: string | undefined | undefined;
|
|
19073
|
+
idle_session_lifetime?: number | undefined | undefined;
|
|
19074
|
+
session_lifetime?: number | undefined | undefined;
|
|
19075
|
+
session_cookie?: {
|
|
19076
|
+
mode?: "persistent" | "non-persistent" | undefined | undefined;
|
|
19077
|
+
} | undefined;
|
|
19078
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
19079
|
+
default_redirection_uri?: string | undefined | undefined;
|
|
19080
|
+
enabled_locales?: string[] | undefined | undefined;
|
|
19081
|
+
default_directory?: string | undefined | undefined;
|
|
19082
|
+
error_page?: {
|
|
19083
|
+
url?: string | undefined | undefined;
|
|
19084
|
+
html?: string | undefined | undefined;
|
|
19085
|
+
show_log_link?: boolean | undefined | undefined;
|
|
19086
|
+
} | undefined;
|
|
19087
|
+
flags?: {
|
|
19088
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
19089
|
+
allow_legacy_delegation_grant_types?: boolean | undefined | undefined;
|
|
19090
|
+
allow_legacy_ro_grant_types?: boolean | undefined | undefined;
|
|
19091
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined | undefined;
|
|
19092
|
+
disable_clickjack_protection_headers?: boolean | undefined | undefined;
|
|
19093
|
+
enable_apis_section?: boolean | undefined | undefined;
|
|
19094
|
+
enable_custom_domain_in_emails?: boolean | undefined | undefined;
|
|
19095
|
+
enable_dynamic_client_registration?: boolean | undefined | undefined;
|
|
19096
|
+
enable_idtoken_api2?: boolean | undefined | undefined;
|
|
19097
|
+
enable_legacy_logs_search_v2?: boolean | undefined | undefined;
|
|
19098
|
+
enable_legacy_profile?: boolean | undefined | undefined;
|
|
19099
|
+
enable_pipeline2?: boolean | undefined | undefined;
|
|
19100
|
+
enable_public_signup_user_exists_error?: boolean | undefined | undefined;
|
|
19101
|
+
use_scope_descriptions_for_consent?: boolean | undefined | undefined;
|
|
19102
|
+
disable_management_api_sms_obfuscation?: boolean | undefined | undefined;
|
|
19103
|
+
enable_adfs_waad_email_verification?: boolean | undefined | undefined;
|
|
19104
|
+
revoke_refresh_token_grant?: boolean | undefined | undefined;
|
|
19105
|
+
dashboard_log_streams_next?: boolean | undefined | undefined;
|
|
19106
|
+
dashboard_insights_view?: boolean | undefined | undefined;
|
|
19107
|
+
disable_fields_map_fix?: boolean | undefined | undefined;
|
|
19108
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined | undefined;
|
|
19109
|
+
} | undefined;
|
|
19110
|
+
friendly_name?: string | undefined | undefined;
|
|
19111
|
+
picture_url?: string | undefined | undefined;
|
|
19112
|
+
support_email?: string | undefined | undefined;
|
|
19113
|
+
sandbox_version?: string | undefined | undefined;
|
|
19114
|
+
sandbox_versions_available?: string[] | undefined | undefined;
|
|
19115
|
+
change_password?: {
|
|
19116
|
+
html: string;
|
|
19117
|
+
enabled: boolean;
|
|
19118
|
+
} | undefined;
|
|
19119
|
+
guardian_mfa_page?: {
|
|
19120
|
+
html: string;
|
|
19121
|
+
enabled: boolean;
|
|
19122
|
+
} | undefined;
|
|
19123
|
+
default_audience?: string | undefined | undefined;
|
|
19124
|
+
sessions?: {
|
|
19125
|
+
oidc_logout_prompt_enabled?: boolean | undefined | undefined;
|
|
19126
|
+
} | undefined;
|
|
19127
|
+
};
|
|
19128
|
+
outputFormat: "json";
|
|
19129
|
+
status: 200;
|
|
19130
|
+
};
|
|
19131
|
+
};
|
|
19132
|
+
} & {
|
|
19133
|
+
"/": {
|
|
19134
|
+
$patch: {
|
|
19135
|
+
input: {
|
|
19136
|
+
header: {
|
|
19137
|
+
"tenant-id": string;
|
|
19138
|
+
};
|
|
19139
|
+
} & {
|
|
19140
|
+
json: {
|
|
19141
|
+
sessions?: {
|
|
19142
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
19143
|
+
} | undefined;
|
|
19144
|
+
default_organization?: string | undefined;
|
|
19145
|
+
support_url?: string | undefined;
|
|
19146
|
+
idle_session_lifetime?: number | undefined;
|
|
19147
|
+
session_lifetime?: number | undefined;
|
|
19148
|
+
session_cookie?: {
|
|
19149
|
+
mode?: "persistent" | "non-persistent" | undefined;
|
|
19150
|
+
} | undefined;
|
|
19151
|
+
enable_client_connections?: boolean | undefined;
|
|
19152
|
+
default_redirection_uri?: string | undefined;
|
|
19153
|
+
enabled_locales?: string[] | undefined;
|
|
19154
|
+
default_directory?: string | undefined;
|
|
19155
|
+
error_page?: {
|
|
19156
|
+
url?: string | undefined;
|
|
19157
|
+
html?: string | undefined;
|
|
19158
|
+
show_log_link?: boolean | undefined;
|
|
19159
|
+
} | undefined;
|
|
19160
|
+
flags?: {
|
|
19161
|
+
enable_client_connections?: boolean | undefined;
|
|
19162
|
+
allow_legacy_delegation_grant_types?: boolean | undefined;
|
|
19163
|
+
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
19164
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
19165
|
+
disable_clickjack_protection_headers?: boolean | undefined;
|
|
19166
|
+
enable_apis_section?: boolean | undefined;
|
|
19167
|
+
enable_custom_domain_in_emails?: boolean | undefined;
|
|
19168
|
+
enable_dynamic_client_registration?: boolean | undefined;
|
|
19169
|
+
enable_idtoken_api2?: boolean | undefined;
|
|
19170
|
+
enable_legacy_logs_search_v2?: boolean | undefined;
|
|
19171
|
+
enable_legacy_profile?: boolean | undefined;
|
|
19172
|
+
enable_pipeline2?: boolean | undefined;
|
|
19173
|
+
enable_public_signup_user_exists_error?: boolean | undefined;
|
|
19174
|
+
use_scope_descriptions_for_consent?: boolean | undefined;
|
|
19175
|
+
disable_management_api_sms_obfuscation?: boolean | undefined;
|
|
19176
|
+
enable_adfs_waad_email_verification?: boolean | undefined;
|
|
19177
|
+
revoke_refresh_token_grant?: boolean | undefined;
|
|
19178
|
+
dashboard_log_streams_next?: boolean | undefined;
|
|
19179
|
+
dashboard_insights_view?: boolean | undefined;
|
|
19180
|
+
disable_fields_map_fix?: boolean | undefined;
|
|
19181
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined;
|
|
19182
|
+
} | undefined;
|
|
19183
|
+
friendly_name?: string | undefined;
|
|
19184
|
+
picture_url?: string | undefined;
|
|
19185
|
+
support_email?: string | undefined;
|
|
19186
|
+
sandbox_version?: string | undefined;
|
|
19187
|
+
sandbox_versions_available?: string[] | undefined;
|
|
19188
|
+
change_password?: {
|
|
19189
|
+
html: string;
|
|
19190
|
+
enabled: boolean;
|
|
19191
|
+
} | undefined;
|
|
19192
|
+
guardian_mfa_page?: {
|
|
19193
|
+
html: string;
|
|
19194
|
+
enabled: boolean;
|
|
19195
|
+
} | undefined;
|
|
19196
|
+
default_audience?: string | undefined;
|
|
19197
|
+
};
|
|
19198
|
+
};
|
|
19199
|
+
output: {
|
|
19200
|
+
default_organization?: string | undefined | undefined;
|
|
19201
|
+
support_url?: string | undefined | undefined;
|
|
19202
|
+
idle_session_lifetime?: number | undefined | undefined;
|
|
19203
|
+
session_lifetime?: number | undefined | undefined;
|
|
19204
|
+
session_cookie?: {
|
|
19205
|
+
mode?: "persistent" | "non-persistent" | undefined | undefined;
|
|
19206
|
+
} | undefined;
|
|
19207
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
19208
|
+
default_redirection_uri?: string | undefined | undefined;
|
|
19209
|
+
enabled_locales?: string[] | undefined | undefined;
|
|
19210
|
+
default_directory?: string | undefined | undefined;
|
|
19211
|
+
error_page?: {
|
|
19212
|
+
url?: string | undefined | undefined;
|
|
19213
|
+
html?: string | undefined | undefined;
|
|
19214
|
+
show_log_link?: boolean | undefined | undefined;
|
|
19215
|
+
} | undefined;
|
|
19216
|
+
flags?: {
|
|
19217
|
+
enable_client_connections?: boolean | undefined | undefined;
|
|
19218
|
+
allow_legacy_delegation_grant_types?: boolean | undefined | undefined;
|
|
19219
|
+
allow_legacy_ro_grant_types?: boolean | undefined | undefined;
|
|
19220
|
+
allow_legacy_tokeninfo_endpoint?: boolean | undefined | undefined;
|
|
19221
|
+
disable_clickjack_protection_headers?: boolean | undefined | undefined;
|
|
19222
|
+
enable_apis_section?: boolean | undefined | undefined;
|
|
19223
|
+
enable_custom_domain_in_emails?: boolean | undefined | undefined;
|
|
19224
|
+
enable_dynamic_client_registration?: boolean | undefined | undefined;
|
|
19225
|
+
enable_idtoken_api2?: boolean | undefined | undefined;
|
|
19226
|
+
enable_legacy_logs_search_v2?: boolean | undefined | undefined;
|
|
19227
|
+
enable_legacy_profile?: boolean | undefined | undefined;
|
|
19228
|
+
enable_pipeline2?: boolean | undefined | undefined;
|
|
19229
|
+
enable_public_signup_user_exists_error?: boolean | undefined | undefined;
|
|
19230
|
+
use_scope_descriptions_for_consent?: boolean | undefined | undefined;
|
|
19231
|
+
disable_management_api_sms_obfuscation?: boolean | undefined | undefined;
|
|
19232
|
+
enable_adfs_waad_email_verification?: boolean | undefined | undefined;
|
|
19233
|
+
revoke_refresh_token_grant?: boolean | undefined | undefined;
|
|
19234
|
+
dashboard_log_streams_next?: boolean | undefined | undefined;
|
|
19235
|
+
dashboard_insights_view?: boolean | undefined | undefined;
|
|
19236
|
+
disable_fields_map_fix?: boolean | undefined | undefined;
|
|
19237
|
+
mfa_show_factor_list_on_enrollment?: boolean | undefined | undefined;
|
|
19238
|
+
} | undefined;
|
|
19239
|
+
friendly_name?: string | undefined | undefined;
|
|
19240
|
+
picture_url?: string | undefined | undefined;
|
|
19241
|
+
support_email?: string | undefined | undefined;
|
|
19242
|
+
sandbox_version?: string | undefined | undefined;
|
|
19243
|
+
sandbox_versions_available?: string[] | undefined | undefined;
|
|
19244
|
+
change_password?: {
|
|
19245
|
+
html: string;
|
|
19246
|
+
enabled: boolean;
|
|
19247
|
+
} | undefined;
|
|
19248
|
+
guardian_mfa_page?: {
|
|
19249
|
+
html: string;
|
|
19250
|
+
enabled: boolean;
|
|
19251
|
+
} | undefined;
|
|
19252
|
+
default_audience?: string | undefined | undefined;
|
|
19253
|
+
sessions?: {
|
|
19254
|
+
oidc_logout_prompt_enabled?: boolean | undefined | undefined;
|
|
19255
|
+
} | undefined;
|
|
19256
|
+
};
|
|
19257
|
+
outputFormat: "json";
|
|
19258
|
+
status: 200;
|
|
19259
|
+
};
|
|
19260
|
+
};
|
|
19261
|
+
}, "/settings"> & import("hono/types").MergeSchemaPath<{
|
|
18810
19262
|
"/": {
|
|
18811
19263
|
$get: {
|
|
18812
19264
|
input: {
|