authhero 8.14.1 → 8.16.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/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +109 -109
- package/dist/authhero.d.ts +159 -132
- package/dist/authhero.mjs +8675 -8363
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/constants.d.ts +1 -1
- package/dist/types/index.d.ts +121 -121
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +51 -51
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +3 -3
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/index.d.ts +162 -162
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenant-operations.d.ts +128 -0
- package/dist/types/routes/management-api/tenants.d.ts +37 -28
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +4 -4
- package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-routes.d.ts +2 -2
- package/dist/types/types/AuthHeroConfig.d.ts +35 -9
- package/dist/types/types/Bindings.d.ts +2 -1
- package/dist/types/utils/username-password-provider.d.ts +19 -5
- package/package.json +5 -5
- package/dist/stats.html +0 -4949
package/dist/authhero.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_utils_types from 'hono/utils/types';
|
|
2
2
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
3
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
4
|
export * from '@authhero/adapter-interfaces';
|
|
5
5
|
import * as hono_types from 'hono/types';
|
|
6
6
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
@@ -1008,6 +1008,21 @@ interface ManagementApiExtension {
|
|
|
1008
1008
|
*/
|
|
1009
1009
|
router: OpenAPIHono<any, any, any>;
|
|
1010
1010
|
}
|
|
1011
|
+
/**
|
|
1012
|
+
* Enqueues a durable tenant lifecycle operation (issue #1026): creates
|
|
1013
|
+
* the `tenant_operations` row and starts execution on the configured
|
|
1014
|
+
* engine. The inline engine resolves with a terminal row; durable engines
|
|
1015
|
+
* resolve as soon as the run is enqueued — clients poll
|
|
1016
|
+
* `GET /api/v2/operations/{id}`.
|
|
1017
|
+
*/
|
|
1018
|
+
interface TenantOperationExecutorBinding {
|
|
1019
|
+
engine: string;
|
|
1020
|
+
enqueue(params: {
|
|
1021
|
+
kind: TenantOperationKind;
|
|
1022
|
+
tenant_id: string | null;
|
|
1023
|
+
initiated_by?: string;
|
|
1024
|
+
}): Promise<TenantOperation>;
|
|
1025
|
+
}
|
|
1011
1026
|
/**
|
|
1012
1027
|
* Configuration for the transactional outbox pattern.
|
|
1013
1028
|
* When enabled, audit events are written atomically with entity mutations
|
|
@@ -1055,11 +1070,11 @@ type UserLinkingModeOption = UserLinkingMode | UserLinkingModeResolver;
|
|
|
1055
1070
|
/**
|
|
1056
1071
|
* Resolver for the per-tenant username/password provider value.
|
|
1057
1072
|
*
|
|
1058
|
-
* The native database provider has historically been written as `"auth2"
|
|
1059
|
-
*
|
|
1060
|
-
*
|
|
1061
|
-
*
|
|
1062
|
-
*
|
|
1073
|
+
* The native database provider has historically been written as `"auth2"`;
|
|
1074
|
+
* new rows now default to `"auth0"`. Returning `"auth2"` for selected
|
|
1075
|
+
* tenants pins them on the legacy value during a staged cutover. Reads
|
|
1076
|
+
* always accept both values, so existing `auth2|*` rows keep resolving
|
|
1077
|
+
* during and after the cutover.
|
|
1063
1078
|
*
|
|
1064
1079
|
* TRANSITIONAL: this resolver and the dual-read fallback can be removed
|
|
1065
1080
|
* once every tenant has been migrated to a single value.
|
|
@@ -1289,6 +1304,16 @@ interface AuthHeroConfig {
|
|
|
1289
1304
|
* ```
|
|
1290
1305
|
*/
|
|
1291
1306
|
tenantUpgrade?: (tenantId: string) => Promise<void>;
|
|
1307
|
+
/**
|
|
1308
|
+
* Optional executor for durable tenant lifecycle operations (issue
|
|
1309
|
+
* #1026). When set together with the `tenantOperations` /
|
|
1310
|
+
* `tenantOperationEvents` adapters, `POST /api/v2/tenants/{id}/operations`
|
|
1311
|
+
* enqueues operations through it. Kept structural so authhero core
|
|
1312
|
+
* depends on neither `@authhero/multi-tenancy` nor any engine —
|
|
1313
|
+
* `@authhero/multi-tenancy`'s `enqueueTenantOperation` + executors
|
|
1314
|
+
* satisfy this shape.
|
|
1315
|
+
*/
|
|
1316
|
+
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
1292
1317
|
/**
|
|
1293
1318
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1294
1319
|
* This is only configurable in code, not stored in the database.
|
|
@@ -1398,11 +1423,12 @@ interface AuthHeroConfig {
|
|
|
1398
1423
|
userLinkingMode?: UserLinkingModeOption;
|
|
1399
1424
|
/**
|
|
1400
1425
|
* Per-tenant override for the username/password provider value used on
|
|
1401
|
-
* NEW user rows.
|
|
1402
|
-
* password resets, etc.
|
|
1426
|
+
* NEW user rows. Omit to write `"auth0"` for every tenant — new signups,
|
|
1427
|
+
* password resets, etc. use the `auth0|*` user_id format. Existing
|
|
1403
1428
|
* `auth2|*` rows keep working — reads accept either value.
|
|
1404
1429
|
*
|
|
1405
|
-
*
|
|
1430
|
+
* Returning `"auth2"` pins a tenant on the legacy value during a staged
|
|
1431
|
+
* cutover.
|
|
1406
1432
|
*
|
|
1407
1433
|
* TRANSITIONAL: this hook and the dual-read fallback in the password
|
|
1408
1434
|
* flows can be removed once all tenants have been backfilled.
|
|
@@ -1554,6 +1580,7 @@ type Bindings = {
|
|
|
1554
1580
|
codeExecutor?: CodeExecutor;
|
|
1555
1581
|
webhookInvoker?: WebhookInvoker;
|
|
1556
1582
|
tenantUpgrade?: (tenantId: string) => Promise<void>;
|
|
1583
|
+
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
1557
1584
|
outbox?: OutboxConfig;
|
|
1558
1585
|
userLinkingMode?: UserLinkingModeOption;
|
|
1559
1586
|
usernamePasswordProvider?: UsernamePasswordProviderResolver;
|
|
@@ -2800,7 +2827,7 @@ interface ResolveSigningKeysOptions {
|
|
|
2800
2827
|
}
|
|
2801
2828
|
declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
|
|
2802
2829
|
|
|
2803
|
-
declare const USERNAME_PASSWORD_PROVIDER = "
|
|
2830
|
+
declare const USERNAME_PASSWORD_PROVIDER = "auth0";
|
|
2804
2831
|
|
|
2805
2832
|
interface EnsureUsernameOptions {
|
|
2806
2833
|
/**
|
|
@@ -3015,8 +3042,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3015
3042
|
$get: {
|
|
3016
3043
|
input: {
|
|
3017
3044
|
query: {
|
|
3018
|
-
include_password_hashes?: "
|
|
3019
|
-
gzip?: "
|
|
3045
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3046
|
+
gzip?: "true" | "false" | undefined;
|
|
3020
3047
|
};
|
|
3021
3048
|
} & {
|
|
3022
3049
|
header: {
|
|
@@ -3029,8 +3056,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3029
3056
|
} | {
|
|
3030
3057
|
input: {
|
|
3031
3058
|
query: {
|
|
3032
|
-
include_password_hashes?: "
|
|
3033
|
-
gzip?: "
|
|
3059
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3060
|
+
gzip?: "true" | "false" | undefined;
|
|
3034
3061
|
};
|
|
3035
3062
|
} & {
|
|
3036
3063
|
header: {
|
|
@@ -3049,7 +3076,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3049
3076
|
$post: {
|
|
3050
3077
|
input: {
|
|
3051
3078
|
query: {
|
|
3052
|
-
include_password_hashes?: "
|
|
3079
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3053
3080
|
};
|
|
3054
3081
|
} & {
|
|
3055
3082
|
header: {
|
|
@@ -3103,7 +3130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3103
3130
|
};
|
|
3104
3131
|
} & {
|
|
3105
3132
|
json: {
|
|
3106
|
-
type: "push" | "email" | "passkey" | "
|
|
3133
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
3107
3134
|
phone_number?: string | undefined;
|
|
3108
3135
|
totp_secret?: string | undefined;
|
|
3109
3136
|
credential_id?: string | undefined;
|
|
@@ -3243,7 +3270,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3243
3270
|
};
|
|
3244
3271
|
};
|
|
3245
3272
|
output: {
|
|
3246
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3273
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3247
3274
|
enabled: boolean;
|
|
3248
3275
|
trial_expired?: boolean | undefined;
|
|
3249
3276
|
}[];
|
|
@@ -3398,7 +3425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3398
3425
|
$get: {
|
|
3399
3426
|
input: {
|
|
3400
3427
|
param: {
|
|
3401
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3428
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3402
3429
|
};
|
|
3403
3430
|
} & {
|
|
3404
3431
|
header: {
|
|
@@ -3406,7 +3433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3406
3433
|
};
|
|
3407
3434
|
};
|
|
3408
3435
|
output: {
|
|
3409
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3436
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3410
3437
|
enabled: boolean;
|
|
3411
3438
|
trial_expired?: boolean | undefined;
|
|
3412
3439
|
};
|
|
@@ -3419,7 +3446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3419
3446
|
$put: {
|
|
3420
3447
|
input: {
|
|
3421
3448
|
param: {
|
|
3422
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3449
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3423
3450
|
};
|
|
3424
3451
|
} & {
|
|
3425
3452
|
header: {
|
|
@@ -3431,7 +3458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3431
3458
|
};
|
|
3432
3459
|
};
|
|
3433
3460
|
output: {
|
|
3434
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3461
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3435
3462
|
enabled: boolean;
|
|
3436
3463
|
trial_expired?: boolean | undefined;
|
|
3437
3464
|
};
|
|
@@ -5031,7 +5058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5031
5058
|
type: "REDIRECT";
|
|
5032
5059
|
action: "REDIRECT_USER";
|
|
5033
5060
|
params: {
|
|
5034
|
-
target: "custom" | "
|
|
5061
|
+
target: "custom" | "change-email" | "account";
|
|
5035
5062
|
custom_url?: string | undefined;
|
|
5036
5063
|
};
|
|
5037
5064
|
alias?: string | undefined;
|
|
@@ -5084,7 +5111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5084
5111
|
type: "REDIRECT";
|
|
5085
5112
|
action: "REDIRECT_USER";
|
|
5086
5113
|
params: {
|
|
5087
|
-
target: "custom" | "
|
|
5114
|
+
target: "custom" | "change-email" | "account";
|
|
5088
5115
|
custom_url?: string | undefined;
|
|
5089
5116
|
};
|
|
5090
5117
|
alias?: string | undefined;
|
|
@@ -5152,7 +5179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5152
5179
|
type: "REDIRECT";
|
|
5153
5180
|
action: "REDIRECT_USER";
|
|
5154
5181
|
params: {
|
|
5155
|
-
target: "custom" | "
|
|
5182
|
+
target: "custom" | "change-email" | "account";
|
|
5156
5183
|
custom_url?: string | undefined;
|
|
5157
5184
|
};
|
|
5158
5185
|
alias?: string | undefined;
|
|
@@ -5233,7 +5260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5233
5260
|
type: "REDIRECT";
|
|
5234
5261
|
action: "REDIRECT_USER";
|
|
5235
5262
|
params: {
|
|
5236
|
-
target: "custom" | "
|
|
5263
|
+
target: "custom" | "change-email" | "account";
|
|
5237
5264
|
custom_url?: string | undefined;
|
|
5238
5265
|
};
|
|
5239
5266
|
alias?: string | undefined;
|
|
@@ -5281,7 +5308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5281
5308
|
type: "REDIRECT";
|
|
5282
5309
|
action: "REDIRECT_USER";
|
|
5283
5310
|
params: {
|
|
5284
|
-
target: "custom" | "
|
|
5311
|
+
target: "custom" | "change-email" | "account";
|
|
5285
5312
|
custom_url?: string | undefined;
|
|
5286
5313
|
};
|
|
5287
5314
|
alias?: string | undefined;
|
|
@@ -5341,7 +5368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5341
5368
|
type: "REDIRECT";
|
|
5342
5369
|
action: "REDIRECT_USER";
|
|
5343
5370
|
params: {
|
|
5344
|
-
target: "custom" | "
|
|
5371
|
+
target: "custom" | "change-email" | "account";
|
|
5345
5372
|
custom_url?: string | undefined;
|
|
5346
5373
|
};
|
|
5347
5374
|
alias?: string | undefined;
|
|
@@ -5389,7 +5416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5389
5416
|
type: "REDIRECT";
|
|
5390
5417
|
action: "REDIRECT_USER";
|
|
5391
5418
|
params: {
|
|
5392
|
-
target: "custom" | "
|
|
5419
|
+
target: "custom" | "change-email" | "account";
|
|
5393
5420
|
custom_url?: string | undefined;
|
|
5394
5421
|
};
|
|
5395
5422
|
alias?: string | undefined;
|
|
@@ -9835,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9835
9862
|
};
|
|
9836
9863
|
};
|
|
9837
9864
|
output: {
|
|
9838
|
-
prompt: "
|
|
9865
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9839
9866
|
language: string;
|
|
9840
9867
|
}[];
|
|
9841
9868
|
outputFormat: "json";
|
|
@@ -9873,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9873
9900
|
$get: {
|
|
9874
9901
|
input: {
|
|
9875
9902
|
param: {
|
|
9876
|
-
prompt: "
|
|
9903
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9877
9904
|
language: string;
|
|
9878
9905
|
};
|
|
9879
9906
|
} & {
|
|
@@ -9895,7 +9922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9895
9922
|
$put: {
|
|
9896
9923
|
input: {
|
|
9897
9924
|
param: {
|
|
9898
|
-
prompt: "
|
|
9925
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9899
9926
|
language: string;
|
|
9900
9927
|
};
|
|
9901
9928
|
} & {
|
|
@@ -9919,7 +9946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9919
9946
|
$delete: {
|
|
9920
9947
|
input: {
|
|
9921
9948
|
param: {
|
|
9922
|
-
prompt: "
|
|
9949
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9923
9950
|
language: string;
|
|
9924
9951
|
};
|
|
9925
9952
|
} & {
|
|
@@ -10011,7 +10038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10011
10038
|
active?: boolean | undefined;
|
|
10012
10039
|
} | undefined;
|
|
10013
10040
|
signup?: {
|
|
10014
|
-
status?: "
|
|
10041
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10015
10042
|
verification?: {
|
|
10016
10043
|
active?: boolean | undefined;
|
|
10017
10044
|
} | undefined;
|
|
@@ -10028,7 +10055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10028
10055
|
active?: boolean | undefined;
|
|
10029
10056
|
} | undefined;
|
|
10030
10057
|
signup?: {
|
|
10031
|
-
status?: "
|
|
10058
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10032
10059
|
} | undefined;
|
|
10033
10060
|
validation?: {
|
|
10034
10061
|
max_length?: number | undefined;
|
|
@@ -10045,7 +10072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10045
10072
|
active?: boolean | undefined;
|
|
10046
10073
|
} | undefined;
|
|
10047
10074
|
signup?: {
|
|
10048
|
-
status?: "
|
|
10075
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10049
10076
|
} | undefined;
|
|
10050
10077
|
} | undefined;
|
|
10051
10078
|
} | undefined;
|
|
@@ -10145,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10145
10172
|
active?: boolean | undefined;
|
|
10146
10173
|
} | undefined;
|
|
10147
10174
|
signup?: {
|
|
10148
|
-
status?: "
|
|
10175
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10149
10176
|
verification?: {
|
|
10150
10177
|
active?: boolean | undefined;
|
|
10151
10178
|
} | undefined;
|
|
@@ -10162,7 +10189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10162
10189
|
active?: boolean | undefined;
|
|
10163
10190
|
} | undefined;
|
|
10164
10191
|
signup?: {
|
|
10165
|
-
status?: "
|
|
10192
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10166
10193
|
} | undefined;
|
|
10167
10194
|
validation?: {
|
|
10168
10195
|
max_length?: number | undefined;
|
|
@@ -10179,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10179
10206
|
active?: boolean | undefined;
|
|
10180
10207
|
} | undefined;
|
|
10181
10208
|
signup?: {
|
|
10182
|
-
status?: "
|
|
10209
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10183
10210
|
} | undefined;
|
|
10184
10211
|
} | undefined;
|
|
10185
10212
|
} | undefined;
|
|
@@ -10294,7 +10321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10294
10321
|
active?: boolean | undefined;
|
|
10295
10322
|
} | undefined;
|
|
10296
10323
|
signup?: {
|
|
10297
|
-
status?: "
|
|
10324
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10298
10325
|
verification?: {
|
|
10299
10326
|
active?: boolean | undefined;
|
|
10300
10327
|
} | undefined;
|
|
@@ -10311,7 +10338,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10311
10338
|
active?: boolean | undefined;
|
|
10312
10339
|
} | undefined;
|
|
10313
10340
|
signup?: {
|
|
10314
|
-
status?: "
|
|
10341
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10315
10342
|
} | undefined;
|
|
10316
10343
|
validation?: {
|
|
10317
10344
|
max_length?: number | undefined;
|
|
@@ -10328,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10328
10355
|
active?: boolean | undefined;
|
|
10329
10356
|
} | undefined;
|
|
10330
10357
|
signup?: {
|
|
10331
|
-
status?: "
|
|
10358
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10332
10359
|
} | undefined;
|
|
10333
10360
|
} | undefined;
|
|
10334
10361
|
} | undefined;
|
|
@@ -10473,7 +10500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10473
10500
|
active?: boolean | undefined;
|
|
10474
10501
|
} | undefined;
|
|
10475
10502
|
signup?: {
|
|
10476
|
-
status?: "
|
|
10503
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10477
10504
|
verification?: {
|
|
10478
10505
|
active?: boolean | undefined;
|
|
10479
10506
|
} | undefined;
|
|
@@ -10490,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10490
10517
|
active?: boolean | undefined;
|
|
10491
10518
|
} | undefined;
|
|
10492
10519
|
signup?: {
|
|
10493
|
-
status?: "
|
|
10520
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10494
10521
|
} | undefined;
|
|
10495
10522
|
validation?: {
|
|
10496
10523
|
max_length?: number | undefined;
|
|
@@ -10507,7 +10534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10507
10534
|
active?: boolean | undefined;
|
|
10508
10535
|
} | undefined;
|
|
10509
10536
|
signup?: {
|
|
10510
|
-
status?: "
|
|
10537
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10511
10538
|
} | undefined;
|
|
10512
10539
|
} | undefined;
|
|
10513
10540
|
} | undefined;
|
|
@@ -10631,7 +10658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10631
10658
|
active?: boolean | undefined;
|
|
10632
10659
|
} | undefined;
|
|
10633
10660
|
signup?: {
|
|
10634
|
-
status?: "
|
|
10661
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10635
10662
|
verification?: {
|
|
10636
10663
|
active?: boolean | undefined;
|
|
10637
10664
|
} | undefined;
|
|
@@ -10648,7 +10675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10648
10675
|
active?: boolean | undefined;
|
|
10649
10676
|
} | undefined;
|
|
10650
10677
|
signup?: {
|
|
10651
|
-
status?: "
|
|
10678
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10652
10679
|
} | undefined;
|
|
10653
10680
|
validation?: {
|
|
10654
10681
|
max_length?: number | undefined;
|
|
@@ -10665,7 +10692,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10665
10692
|
active?: boolean | undefined;
|
|
10666
10693
|
} | undefined;
|
|
10667
10694
|
signup?: {
|
|
10668
|
-
status?: "
|
|
10695
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10669
10696
|
} | undefined;
|
|
10670
10697
|
} | undefined;
|
|
10671
10698
|
} | undefined;
|
|
@@ -11420,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11420
11447
|
log_type: string;
|
|
11421
11448
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11422
11449
|
actor: {
|
|
11423
|
-
type: "
|
|
11450
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
11424
11451
|
id?: string | undefined;
|
|
11425
11452
|
email?: string | undefined;
|
|
11426
11453
|
org_id?: string | undefined;
|
|
@@ -12068,7 +12095,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12068
12095
|
};
|
|
12069
12096
|
};
|
|
12070
12097
|
output: {
|
|
12071
|
-
type: "fn" | "
|
|
12098
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12072
12099
|
date: string;
|
|
12073
12100
|
isMobile: boolean;
|
|
12074
12101
|
log_id: string;
|
|
@@ -12107,7 +12134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12107
12134
|
limit: number;
|
|
12108
12135
|
length: number;
|
|
12109
12136
|
logs: {
|
|
12110
|
-
type: "fn" | "
|
|
12137
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12111
12138
|
date: string;
|
|
12112
12139
|
isMobile: boolean;
|
|
12113
12140
|
log_id: string;
|
|
@@ -12161,7 +12188,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12161
12188
|
};
|
|
12162
12189
|
};
|
|
12163
12190
|
output: {
|
|
12164
|
-
type: "fn" | "
|
|
12191
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12165
12192
|
date: string;
|
|
12166
12193
|
isMobile: boolean;
|
|
12167
12194
|
log_id: string;
|
|
@@ -12549,7 +12576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12549
12576
|
addons?: {
|
|
12550
12577
|
[x: string]: any;
|
|
12551
12578
|
} | undefined;
|
|
12552
|
-
token_endpoint_auth_method?: "none" | "
|
|
12579
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12553
12580
|
client_metadata?: {
|
|
12554
12581
|
[x: string]: string;
|
|
12555
12582
|
} | undefined;
|
|
@@ -12645,7 +12672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12645
12672
|
addons?: {
|
|
12646
12673
|
[x: string]: any;
|
|
12647
12674
|
} | undefined;
|
|
12648
|
-
token_endpoint_auth_method?: "none" | "
|
|
12675
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12649
12676
|
client_metadata?: {
|
|
12650
12677
|
[x: string]: string;
|
|
12651
12678
|
} | undefined;
|
|
@@ -12756,7 +12783,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12756
12783
|
addons?: {
|
|
12757
12784
|
[x: string]: any;
|
|
12758
12785
|
} | undefined;
|
|
12759
|
-
token_endpoint_auth_method?: "none" | "
|
|
12786
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12760
12787
|
client_metadata?: {
|
|
12761
12788
|
[x: string]: string;
|
|
12762
12789
|
} | undefined;
|
|
@@ -12866,7 +12893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12866
12893
|
custom_login_page_preview?: string | undefined;
|
|
12867
12894
|
form_template?: string | undefined;
|
|
12868
12895
|
addons?: Record<string, any> | undefined;
|
|
12869
|
-
token_endpoint_auth_method?: "none" | "
|
|
12896
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12870
12897
|
client_metadata?: Record<string, string> | undefined;
|
|
12871
12898
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12872
12899
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12946,7 +12973,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12946
12973
|
addons?: {
|
|
12947
12974
|
[x: string]: any;
|
|
12948
12975
|
} | undefined;
|
|
12949
|
-
token_endpoint_auth_method?: "none" | "
|
|
12976
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12950
12977
|
client_metadata?: {
|
|
12951
12978
|
[x: string]: string;
|
|
12952
12979
|
} | undefined;
|
|
@@ -13035,7 +13062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13035
13062
|
custom_login_page_preview?: string | undefined;
|
|
13036
13063
|
form_template?: string | undefined;
|
|
13037
13064
|
addons?: Record<string, any> | undefined;
|
|
13038
|
-
token_endpoint_auth_method?: "none" | "
|
|
13065
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13039
13066
|
client_metadata?: Record<string, string> | undefined;
|
|
13040
13067
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13041
13068
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13115,7 +13142,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13115
13142
|
addons?: {
|
|
13116
13143
|
[x: string]: any;
|
|
13117
13144
|
} | undefined;
|
|
13118
|
-
token_endpoint_auth_method?: "none" | "
|
|
13145
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13119
13146
|
client_metadata?: {
|
|
13120
13147
|
[x: string]: string;
|
|
13121
13148
|
} | undefined;
|
|
@@ -13237,7 +13264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13237
13264
|
active?: boolean | undefined;
|
|
13238
13265
|
} | undefined;
|
|
13239
13266
|
signup?: {
|
|
13240
|
-
status?: "
|
|
13267
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13241
13268
|
verification?: {
|
|
13242
13269
|
active?: boolean | undefined;
|
|
13243
13270
|
} | undefined;
|
|
@@ -13254,7 +13281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13254
13281
|
active?: boolean | undefined;
|
|
13255
13282
|
} | undefined;
|
|
13256
13283
|
signup?: {
|
|
13257
|
-
status?: "
|
|
13284
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13258
13285
|
} | undefined;
|
|
13259
13286
|
validation?: {
|
|
13260
13287
|
max_length?: number | undefined;
|
|
@@ -13271,7 +13298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13271
13298
|
active?: boolean | undefined;
|
|
13272
13299
|
} | undefined;
|
|
13273
13300
|
signup?: {
|
|
13274
|
-
status?: "
|
|
13301
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13275
13302
|
} | undefined;
|
|
13276
13303
|
} | undefined;
|
|
13277
13304
|
} | undefined;
|
|
@@ -13391,7 +13418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13391
13418
|
active?: boolean | undefined;
|
|
13392
13419
|
} | undefined;
|
|
13393
13420
|
signup?: {
|
|
13394
|
-
status?: "
|
|
13421
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13395
13422
|
verification?: {
|
|
13396
13423
|
active?: boolean | undefined;
|
|
13397
13424
|
} | undefined;
|
|
@@ -13408,7 +13435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13408
13435
|
active?: boolean | undefined;
|
|
13409
13436
|
} | undefined;
|
|
13410
13437
|
signup?: {
|
|
13411
|
-
status?: "
|
|
13438
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13412
13439
|
} | undefined;
|
|
13413
13440
|
validation?: {
|
|
13414
13441
|
max_length?: number | undefined;
|
|
@@ -13425,7 +13452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13425
13452
|
active?: boolean | undefined;
|
|
13426
13453
|
} | undefined;
|
|
13427
13454
|
signup?: {
|
|
13428
|
-
status?: "
|
|
13455
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13429
13456
|
} | undefined;
|
|
13430
13457
|
} | undefined;
|
|
13431
13458
|
} | undefined;
|
|
@@ -14379,7 +14406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14379
14406
|
};
|
|
14380
14407
|
};
|
|
14381
14408
|
output: {
|
|
14382
|
-
type: "fn" | "
|
|
14409
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14383
14410
|
date: string;
|
|
14384
14411
|
isMobile: boolean;
|
|
14385
14412
|
log_id: string;
|
|
@@ -14418,7 +14445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14418
14445
|
limit: number;
|
|
14419
14446
|
length: number;
|
|
14420
14447
|
logs: {
|
|
14421
|
-
type: "fn" | "
|
|
14448
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14422
14449
|
date: string;
|
|
14423
14450
|
isMobile: boolean;
|
|
14424
14451
|
log_id: string;
|
|
@@ -15927,7 +15954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15927
15954
|
} & {
|
|
15928
15955
|
json: {
|
|
15929
15956
|
body?: string | undefined;
|
|
15930
|
-
screen?: "password" | "
|
|
15957
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
15931
15958
|
branding?: {
|
|
15932
15959
|
colors?: {
|
|
15933
15960
|
primary: string;
|
|
@@ -17196,7 +17223,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17196
17223
|
scope?: string | undefined;
|
|
17197
17224
|
grant_types?: string[] | undefined;
|
|
17198
17225
|
response_types?: string[] | undefined;
|
|
17199
|
-
token_endpoint_auth_method?: "none" | "
|
|
17226
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
17200
17227
|
jwks_uri?: string | undefined;
|
|
17201
17228
|
jwks?: Record<string, unknown> | undefined;
|
|
17202
17229
|
software_id?: string | undefined;
|
|
@@ -17285,7 +17312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17285
17312
|
scope?: string | undefined;
|
|
17286
17313
|
grant_types?: string[] | undefined;
|
|
17287
17314
|
response_types?: string[] | undefined;
|
|
17288
|
-
token_endpoint_auth_method?: "none" | "
|
|
17315
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
17289
17316
|
jwks_uri?: string | undefined;
|
|
17290
17317
|
jwks?: Record<string, unknown> | undefined;
|
|
17291
17318
|
software_id?: string | undefined;
|
|
@@ -17342,7 +17369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17342
17369
|
client_id: string;
|
|
17343
17370
|
redirect_url?: string | undefined;
|
|
17344
17371
|
login_hint?: string | undefined;
|
|
17345
|
-
screen_hint?: "
|
|
17372
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
17346
17373
|
};
|
|
17347
17374
|
};
|
|
17348
17375
|
output: {};
|
|
@@ -17354,7 +17381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17354
17381
|
client_id: string;
|
|
17355
17382
|
redirect_url?: string | undefined;
|
|
17356
17383
|
login_hint?: string | undefined;
|
|
17357
|
-
screen_hint?: "
|
|
17384
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
17358
17385
|
};
|
|
17359
17386
|
};
|
|
17360
17387
|
output: {
|
|
@@ -17431,17 +17458,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17431
17458
|
request_uri?: string | undefined;
|
|
17432
17459
|
};
|
|
17433
17460
|
};
|
|
17434
|
-
output:
|
|
17435
|
-
|
|
17436
|
-
|
|
17437
|
-
expires_in: number;
|
|
17438
|
-
id_token?: string | undefined;
|
|
17439
|
-
scope?: string | undefined;
|
|
17440
|
-
state?: string | undefined;
|
|
17441
|
-
refresh_token?: string | undefined;
|
|
17442
|
-
};
|
|
17443
|
-
outputFormat: "json";
|
|
17444
|
-
status: 200;
|
|
17461
|
+
output: {};
|
|
17462
|
+
outputFormat: string;
|
|
17463
|
+
status: 302;
|
|
17445
17464
|
} | {
|
|
17446
17465
|
input: {
|
|
17447
17466
|
query: {
|
|
@@ -17473,9 +17492,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17473
17492
|
request_uri?: string | undefined;
|
|
17474
17493
|
};
|
|
17475
17494
|
};
|
|
17476
|
-
output: {
|
|
17477
|
-
|
|
17478
|
-
|
|
17495
|
+
output: string | {
|
|
17496
|
+
access_token: string;
|
|
17497
|
+
token_type: string;
|
|
17498
|
+
expires_in: number;
|
|
17499
|
+
id_token?: string | undefined;
|
|
17500
|
+
scope?: string | undefined;
|
|
17501
|
+
state?: string | undefined;
|
|
17502
|
+
refresh_token?: string | undefined;
|
|
17503
|
+
};
|
|
17504
|
+
outputFormat: "json";
|
|
17505
|
+
status: 200;
|
|
17479
17506
|
} | {
|
|
17480
17507
|
input: {
|
|
17481
17508
|
query: {
|
|
@@ -17631,21 +17658,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17631
17658
|
email: string;
|
|
17632
17659
|
send: "code" | "link";
|
|
17633
17660
|
authParams: {
|
|
17634
|
-
|
|
17635
|
-
redirect_uri?: string | undefined;
|
|
17636
|
-
scope?: string | undefined;
|
|
17661
|
+
username?: string | undefined;
|
|
17637
17662
|
state?: string | undefined;
|
|
17638
|
-
prompt?: string | undefined;
|
|
17639
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17640
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17641
17663
|
audience?: string | undefined;
|
|
17664
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17665
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17666
|
+
scope?: string | undefined;
|
|
17667
|
+
organization?: string | undefined;
|
|
17642
17668
|
nonce?: string | undefined;
|
|
17643
|
-
|
|
17644
|
-
|
|
17669
|
+
act_as?: string | undefined;
|
|
17670
|
+
redirect_uri?: string | undefined;
|
|
17671
|
+
prompt?: string | undefined;
|
|
17645
17672
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17646
17673
|
code_challenge?: string | undefined;
|
|
17647
|
-
organization?: string | undefined;
|
|
17648
17674
|
ui_locales?: string | undefined;
|
|
17675
|
+
max_age?: number | undefined;
|
|
17676
|
+
acr_values?: string | undefined;
|
|
17649
17677
|
claims?: {
|
|
17650
17678
|
userinfo?: Record<string, {
|
|
17651
17679
|
essential?: boolean | undefined;
|
|
@@ -17658,8 +17686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17658
17686
|
values?: unknown[] | undefined;
|
|
17659
17687
|
} | null> | undefined;
|
|
17660
17688
|
} | undefined;
|
|
17661
|
-
|
|
17662
|
-
username?: string | undefined;
|
|
17689
|
+
vendor_id?: string | undefined;
|
|
17663
17690
|
};
|
|
17664
17691
|
} | {
|
|
17665
17692
|
client_id: string;
|
|
@@ -17667,21 +17694,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17667
17694
|
phone_number: string;
|
|
17668
17695
|
send: "code" | "link";
|
|
17669
17696
|
authParams: {
|
|
17670
|
-
|
|
17671
|
-
redirect_uri?: string | undefined;
|
|
17672
|
-
scope?: string | undefined;
|
|
17697
|
+
username?: string | undefined;
|
|
17673
17698
|
state?: string | undefined;
|
|
17674
|
-
prompt?: string | undefined;
|
|
17675
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17676
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17677
17699
|
audience?: string | undefined;
|
|
17700
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17701
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17702
|
+
scope?: string | undefined;
|
|
17703
|
+
organization?: string | undefined;
|
|
17678
17704
|
nonce?: string | undefined;
|
|
17679
|
-
|
|
17680
|
-
|
|
17705
|
+
act_as?: string | undefined;
|
|
17706
|
+
redirect_uri?: string | undefined;
|
|
17707
|
+
prompt?: string | undefined;
|
|
17681
17708
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17682
17709
|
code_challenge?: string | undefined;
|
|
17683
|
-
organization?: string | undefined;
|
|
17684
17710
|
ui_locales?: string | undefined;
|
|
17711
|
+
max_age?: number | undefined;
|
|
17712
|
+
acr_values?: string | undefined;
|
|
17685
17713
|
claims?: {
|
|
17686
17714
|
userinfo?: Record<string, {
|
|
17687
17715
|
essential?: boolean | undefined;
|
|
@@ -17694,8 +17722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17694
17722
|
values?: unknown[] | undefined;
|
|
17695
17723
|
} | null> | undefined;
|
|
17696
17724
|
} | undefined;
|
|
17697
|
-
|
|
17698
|
-
username?: string | undefined;
|
|
17725
|
+
vendor_id?: string | undefined;
|
|
17699
17726
|
};
|
|
17700
17727
|
};
|
|
17701
17728
|
};
|
|
@@ -17811,14 +17838,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17811
17838
|
input: {
|
|
17812
17839
|
form: {
|
|
17813
17840
|
token: string;
|
|
17814
|
-
token_type_hint?: "
|
|
17841
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17815
17842
|
client_id?: string | undefined;
|
|
17816
17843
|
client_secret?: string | undefined;
|
|
17817
17844
|
};
|
|
17818
17845
|
} & {
|
|
17819
17846
|
json: {
|
|
17820
17847
|
token: string;
|
|
17821
|
-
token_type_hint?: "
|
|
17848
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17822
17849
|
client_id?: string | undefined;
|
|
17823
17850
|
client_secret?: string | undefined;
|
|
17824
17851
|
};
|
|
@@ -17830,14 +17857,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17830
17857
|
input: {
|
|
17831
17858
|
form: {
|
|
17832
17859
|
token: string;
|
|
17833
|
-
token_type_hint?: "
|
|
17860
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17834
17861
|
client_id?: string | undefined;
|
|
17835
17862
|
client_secret?: string | undefined;
|
|
17836
17863
|
};
|
|
17837
17864
|
} & {
|
|
17838
17865
|
json: {
|
|
17839
17866
|
token: string;
|
|
17840
|
-
token_type_hint?: "
|
|
17867
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17841
17868
|
client_id?: string | undefined;
|
|
17842
17869
|
client_secret?: string | undefined;
|
|
17843
17870
|
};
|
|
@@ -17852,14 +17879,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17852
17879
|
input: {
|
|
17853
17880
|
form: {
|
|
17854
17881
|
token: string;
|
|
17855
|
-
token_type_hint?: "
|
|
17882
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17856
17883
|
client_id?: string | undefined;
|
|
17857
17884
|
client_secret?: string | undefined;
|
|
17858
17885
|
};
|
|
17859
17886
|
} & {
|
|
17860
17887
|
json: {
|
|
17861
17888
|
token: string;
|
|
17862
|
-
token_type_hint?: "
|
|
17889
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17863
17890
|
client_id?: string | undefined;
|
|
17864
17891
|
client_secret?: string | undefined;
|
|
17865
17892
|
};
|
|
@@ -18283,7 +18310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18283
18310
|
error_description?: string | undefined;
|
|
18284
18311
|
};
|
|
18285
18312
|
outputFormat: "json";
|
|
18286
|
-
status:
|
|
18313
|
+
status: 401;
|
|
18287
18314
|
} | {
|
|
18288
18315
|
input: {
|
|
18289
18316
|
form: {
|
|
@@ -18385,7 +18412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18385
18412
|
error_description?: string | undefined;
|
|
18386
18413
|
};
|
|
18387
18414
|
outputFormat: "json";
|
|
18388
|
-
status:
|
|
18415
|
+
status: 403;
|
|
18389
18416
|
};
|
|
18390
18417
|
};
|
|
18391
18418
|
}, "/oauth/token"> & hono_types.MergeSchemaPath<{
|
|
@@ -18584,7 +18611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18584
18611
|
};
|
|
18585
18612
|
output: {};
|
|
18586
18613
|
outputFormat: string;
|
|
18587
|
-
status:
|
|
18614
|
+
status: 200;
|
|
18588
18615
|
} | {
|
|
18589
18616
|
input: {
|
|
18590
18617
|
query: {
|
|
@@ -18598,7 +18625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18598
18625
|
};
|
|
18599
18626
|
output: {};
|
|
18600
18627
|
outputFormat: string;
|
|
18601
|
-
status:
|
|
18628
|
+
status: 400;
|
|
18602
18629
|
} | {
|
|
18603
18630
|
input: {
|
|
18604
18631
|
query: {
|
|
@@ -18612,7 +18639,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18612
18639
|
};
|
|
18613
18640
|
output: {};
|
|
18614
18641
|
outputFormat: string;
|
|
18615
|
-
status:
|
|
18642
|
+
status: 302;
|
|
18616
18643
|
};
|
|
18617
18644
|
};
|
|
18618
18645
|
}, "/oidc/logout"> & hono_types.MergeSchemaPath<{
|
|
@@ -18719,7 +18746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18719
18746
|
};
|
|
18720
18747
|
output: {};
|
|
18721
18748
|
outputFormat: string;
|
|
18722
|
-
status:
|
|
18749
|
+
status: 400;
|
|
18723
18750
|
} | {
|
|
18724
18751
|
input: {
|
|
18725
18752
|
query: {
|
|
@@ -18728,7 +18755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18728
18755
|
};
|
|
18729
18756
|
output: {};
|
|
18730
18757
|
outputFormat: string;
|
|
18731
|
-
status:
|
|
18758
|
+
status: 302;
|
|
18732
18759
|
} | {
|
|
18733
18760
|
input: {
|
|
18734
18761
|
query: {
|
|
@@ -18857,7 +18884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18857
18884
|
};
|
|
18858
18885
|
output: {};
|
|
18859
18886
|
outputFormat: string;
|
|
18860
|
-
status:
|
|
18887
|
+
status: 400;
|
|
18861
18888
|
} | {
|
|
18862
18889
|
input: {
|
|
18863
18890
|
query: {
|
|
@@ -18870,7 +18897,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18870
18897
|
};
|
|
18871
18898
|
output: {};
|
|
18872
18899
|
outputFormat: string;
|
|
18873
|
-
status:
|
|
18900
|
+
status: 302;
|
|
18874
18901
|
};
|
|
18875
18902
|
};
|
|
18876
18903
|
}, "/impersonate"> & hono_types.MergeSchemaPath<{
|
|
@@ -19212,7 +19239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19212
19239
|
};
|
|
19213
19240
|
output: {};
|
|
19214
19241
|
outputFormat: string;
|
|
19215
|
-
status:
|
|
19242
|
+
status: 400;
|
|
19216
19243
|
} | {
|
|
19217
19244
|
input: {
|
|
19218
19245
|
query: {
|
|
@@ -19226,7 +19253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19226
19253
|
};
|
|
19227
19254
|
output: {};
|
|
19228
19255
|
outputFormat: string;
|
|
19229
|
-
status:
|
|
19256
|
+
status: 302;
|
|
19230
19257
|
};
|
|
19231
19258
|
};
|
|
19232
19259
|
}, "/login/identifier"> & hono_types.MergeSchemaPath<{
|
|
@@ -19586,7 +19613,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19586
19613
|
$get: {
|
|
19587
19614
|
input: {
|
|
19588
19615
|
param: {
|
|
19589
|
-
screen: "signup" | "
|
|
19616
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19590
19617
|
};
|
|
19591
19618
|
} & {
|
|
19592
19619
|
query: {
|
|
@@ -19602,7 +19629,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19602
19629
|
} | {
|
|
19603
19630
|
input: {
|
|
19604
19631
|
param: {
|
|
19605
|
-
screen: "signup" | "
|
|
19632
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19606
19633
|
};
|
|
19607
19634
|
} & {
|
|
19608
19635
|
query: {
|
|
@@ -19614,11 +19641,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19614
19641
|
};
|
|
19615
19642
|
output: {};
|
|
19616
19643
|
outputFormat: string;
|
|
19617
|
-
status:
|
|
19644
|
+
status: 400;
|
|
19618
19645
|
} | {
|
|
19619
19646
|
input: {
|
|
19620
19647
|
param: {
|
|
19621
|
-
screen: "signup" | "
|
|
19648
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19622
19649
|
};
|
|
19623
19650
|
} & {
|
|
19624
19651
|
query: {
|
|
@@ -19630,7 +19657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19630
19657
|
};
|
|
19631
19658
|
output: {};
|
|
19632
19659
|
outputFormat: string;
|
|
19633
|
-
status:
|
|
19660
|
+
status: 302;
|
|
19634
19661
|
};
|
|
19635
19662
|
};
|
|
19636
19663
|
} & {
|
|
@@ -19638,7 +19665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19638
19665
|
$post: {
|
|
19639
19666
|
input: {
|
|
19640
19667
|
param: {
|
|
19641
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
19668
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19642
19669
|
};
|
|
19643
19670
|
} & {
|
|
19644
19671
|
query: {
|
|
@@ -19656,7 +19683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19656
19683
|
} | {
|
|
19657
19684
|
input: {
|
|
19658
19685
|
param: {
|
|
19659
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
19686
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19660
19687
|
};
|
|
19661
19688
|
} & {
|
|
19662
19689
|
query: {
|
|
@@ -19755,4 +19782,4 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19755
19782
|
};
|
|
19756
19783
|
|
|
19757
19784
|
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
|
|
19758
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|
|
19785
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|