authhero 0.245.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 +51 -51
- package/dist/authhero.d.ts +453 -1
- package/dist/authhero.mjs +8116 -8052
- package/dist/stats.html +4949 -0
- package/dist/tailwind.css +1 -1
- package/package.json +4 -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;
|
|
@@ -15970,7 +16223,7 @@ export interface LabelProps {
|
|
|
15970
16223
|
style?: Record<string, string | number>;
|
|
15971
16224
|
}
|
|
15972
16225
|
declare const Label: FC<PropsWithChildren<LabelProps>>;
|
|
15973
|
-
export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}\n\n/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.z-10{z-index:10}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0{margin-top:0}.mt-0\\.5{margin-top:.125rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.\\!hidden{display:none!important}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.max-h-full{max-height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-700){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-400){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:ring-offset-gray-900){--tw-ring-offset-color:#08080e}:is(.dark .dark\\:placeholder\\:text-gray-400)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}:is(.dark .dark\\:placeholder\\:text-gray-400)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:hover\\:bg-gray-700:hover){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity))}:is(.dark .dark\\:hover\\:bg-gray-800:hover){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
|
|
16226
|
+
export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}\n\n/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0{margin-top:0}.mt-0\\.5{margin-top:.125rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.\\!hidden{display:none!important}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-700){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-400){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:ring-offset-gray-900){--tw-ring-offset-color:#08080e}:is(.dark .dark\\:placeholder\\:text-gray-400)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}:is(.dark .dark\\:placeholder\\:text-gray-400)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:hover\\:bg-gray-700:hover){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity))}:is(.dark .dark\\:hover\\:bg-gray-800:hover){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
|
|
15974
16227
|
export declare function injectTailwindCSS(): void;
|
|
15975
16228
|
export interface MainTenantAdapterConfig {
|
|
15976
16229
|
mainTenantId?: string;
|
|
@@ -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: {
|