authhero 8.21.0 → 8.22.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 +112 -112
- package/dist/authhero.d.ts +385 -132
- package/dist/authhero.mjs +11626 -11473
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/errors/is-http-exception-like.d.ts +11 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/index.d.ts +263 -129
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +102 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +213 -80
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +41 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, }
|
|
|
30
30
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
31
31
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
32
32
|
export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
|
|
33
|
+
export { createWfpTenantHostResolver, wrapTenantsAdapterWithWfpKvPublish, composeHostResolvers, wfpTenantHost, isWfpSubdomainSafeTenantId, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, type WfpTenantHostResolverOptions, type WfpTenantsKvPublishOptions, } from "./routes/proxy-control-plane/wfp-tenant-hosts";
|
|
33
34
|
export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
|
|
34
35
|
export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
35
36
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
@@ -150,7 +151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
150
151
|
};
|
|
151
152
|
} & {
|
|
152
153
|
json: {
|
|
153
|
-
type: "
|
|
154
|
+
type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
154
155
|
phone_number?: string | undefined;
|
|
155
156
|
totp_secret?: string | undefined;
|
|
156
157
|
credential_id?: string | undefined;
|
|
@@ -290,7 +291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
290
291
|
};
|
|
291
292
|
};
|
|
292
293
|
output: {
|
|
293
|
-
name: "
|
|
294
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
294
295
|
enabled: boolean;
|
|
295
296
|
trial_expired?: boolean | undefined;
|
|
296
297
|
}[];
|
|
@@ -445,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
445
446
|
$get: {
|
|
446
447
|
input: {
|
|
447
448
|
param: {
|
|
448
|
-
factor_name: "
|
|
449
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
449
450
|
};
|
|
450
451
|
} & {
|
|
451
452
|
header: {
|
|
@@ -453,7 +454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
453
454
|
};
|
|
454
455
|
};
|
|
455
456
|
output: {
|
|
456
|
-
name: "
|
|
457
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
457
458
|
enabled: boolean;
|
|
458
459
|
trial_expired?: boolean | undefined;
|
|
459
460
|
};
|
|
@@ -466,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
466
467
|
$put: {
|
|
467
468
|
input: {
|
|
468
469
|
param: {
|
|
469
|
-
factor_name: "
|
|
470
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
470
471
|
};
|
|
471
472
|
} & {
|
|
472
473
|
header: {
|
|
@@ -478,7 +479,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
478
479
|
};
|
|
479
480
|
};
|
|
480
481
|
output: {
|
|
481
|
-
name: "
|
|
482
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
482
483
|
enabled: boolean;
|
|
483
484
|
trial_expired?: boolean | undefined;
|
|
484
485
|
};
|
|
@@ -1257,10 +1258,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1257
1258
|
email?: string | undefined;
|
|
1258
1259
|
};
|
|
1259
1260
|
id?: string | undefined;
|
|
1260
|
-
connection_id?: string | undefined;
|
|
1261
|
-
roles?: string[] | undefined;
|
|
1262
1261
|
app_metadata?: Record<string, any> | undefined;
|
|
1263
1262
|
user_metadata?: Record<string, any> | undefined;
|
|
1263
|
+
connection_id?: string | undefined;
|
|
1264
|
+
roles?: string[] | undefined;
|
|
1264
1265
|
ttl_sec?: number | undefined;
|
|
1265
1266
|
send_invitation_email?: boolean | undefined;
|
|
1266
1267
|
};
|
|
@@ -6921,7 +6922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6921
6922
|
};
|
|
6922
6923
|
};
|
|
6923
6924
|
output: {
|
|
6924
|
-
prompt: "
|
|
6925
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6925
6926
|
language: string;
|
|
6926
6927
|
}[];
|
|
6927
6928
|
outputFormat: "json";
|
|
@@ -6959,7 +6960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6959
6960
|
$get: {
|
|
6960
6961
|
input: {
|
|
6961
6962
|
param: {
|
|
6962
|
-
prompt: "
|
|
6963
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6963
6964
|
language: string;
|
|
6964
6965
|
};
|
|
6965
6966
|
} & {
|
|
@@ -6981,7 +6982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6981
6982
|
$put: {
|
|
6982
6983
|
input: {
|
|
6983
6984
|
param: {
|
|
6984
|
-
prompt: "
|
|
6985
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6985
6986
|
language: string;
|
|
6986
6987
|
};
|
|
6987
6988
|
} & {
|
|
@@ -7005,7 +7006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7005
7006
|
$delete: {
|
|
7006
7007
|
input: {
|
|
7007
7008
|
param: {
|
|
7008
|
-
prompt: "
|
|
7009
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7009
7010
|
language: string;
|
|
7010
7011
|
};
|
|
7011
7012
|
} & {
|
|
@@ -7097,7 +7098,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7097
7098
|
active?: boolean | undefined;
|
|
7098
7099
|
} | undefined;
|
|
7099
7100
|
signup?: {
|
|
7100
|
-
status?: "
|
|
7101
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7101
7102
|
verification?: {
|
|
7102
7103
|
active?: boolean | undefined;
|
|
7103
7104
|
} | undefined;
|
|
@@ -7114,7 +7115,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7114
7115
|
active?: boolean | undefined;
|
|
7115
7116
|
} | undefined;
|
|
7116
7117
|
signup?: {
|
|
7117
|
-
status?: "
|
|
7118
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7118
7119
|
} | undefined;
|
|
7119
7120
|
validation?: {
|
|
7120
7121
|
max_length?: number | undefined;
|
|
@@ -7131,7 +7132,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7131
7132
|
active?: boolean | undefined;
|
|
7132
7133
|
} | undefined;
|
|
7133
7134
|
signup?: {
|
|
7134
|
-
status?: "
|
|
7135
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7135
7136
|
} | undefined;
|
|
7136
7137
|
} | undefined;
|
|
7137
7138
|
} | undefined;
|
|
@@ -7231,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7231
7232
|
active?: boolean | undefined;
|
|
7232
7233
|
} | undefined;
|
|
7233
7234
|
signup?: {
|
|
7234
|
-
status?: "
|
|
7235
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7235
7236
|
verification?: {
|
|
7236
7237
|
active?: boolean | undefined;
|
|
7237
7238
|
} | undefined;
|
|
@@ -7248,7 +7249,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7248
7249
|
active?: boolean | undefined;
|
|
7249
7250
|
} | undefined;
|
|
7250
7251
|
signup?: {
|
|
7251
|
-
status?: "
|
|
7252
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7252
7253
|
} | undefined;
|
|
7253
7254
|
validation?: {
|
|
7254
7255
|
max_length?: number | undefined;
|
|
@@ -7265,7 +7266,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7265
7266
|
active?: boolean | undefined;
|
|
7266
7267
|
} | undefined;
|
|
7267
7268
|
signup?: {
|
|
7268
|
-
status?: "
|
|
7269
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7269
7270
|
} | undefined;
|
|
7270
7271
|
} | undefined;
|
|
7271
7272
|
} | undefined;
|
|
@@ -7381,7 +7382,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7381
7382
|
active?: boolean | undefined;
|
|
7382
7383
|
} | undefined;
|
|
7383
7384
|
signup?: {
|
|
7384
|
-
status?: "
|
|
7385
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7385
7386
|
verification?: {
|
|
7386
7387
|
active?: boolean | undefined;
|
|
7387
7388
|
} | undefined;
|
|
@@ -7398,7 +7399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7398
7399
|
active?: boolean | undefined;
|
|
7399
7400
|
} | undefined;
|
|
7400
7401
|
signup?: {
|
|
7401
|
-
status?: "
|
|
7402
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7402
7403
|
} | undefined;
|
|
7403
7404
|
validation?: {
|
|
7404
7405
|
max_length?: number | undefined;
|
|
@@ -7415,7 +7416,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7415
7416
|
active?: boolean | undefined;
|
|
7416
7417
|
} | undefined;
|
|
7417
7418
|
signup?: {
|
|
7418
|
-
status?: "
|
|
7419
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7419
7420
|
} | undefined;
|
|
7420
7421
|
} | undefined;
|
|
7421
7422
|
} | undefined;
|
|
@@ -7560,7 +7561,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7560
7561
|
active?: boolean | undefined;
|
|
7561
7562
|
} | undefined;
|
|
7562
7563
|
signup?: {
|
|
7563
|
-
status?: "
|
|
7564
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7564
7565
|
verification?: {
|
|
7565
7566
|
active?: boolean | undefined;
|
|
7566
7567
|
} | undefined;
|
|
@@ -7577,7 +7578,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7577
7578
|
active?: boolean | undefined;
|
|
7578
7579
|
} | undefined;
|
|
7579
7580
|
signup?: {
|
|
7580
|
-
status?: "
|
|
7581
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7581
7582
|
} | undefined;
|
|
7582
7583
|
validation?: {
|
|
7583
7584
|
max_length?: number | undefined;
|
|
@@ -7594,7 +7595,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7594
7595
|
active?: boolean | undefined;
|
|
7595
7596
|
} | undefined;
|
|
7596
7597
|
signup?: {
|
|
7597
|
-
status?: "
|
|
7598
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7598
7599
|
} | undefined;
|
|
7599
7600
|
} | undefined;
|
|
7600
7601
|
} | undefined;
|
|
@@ -7718,7 +7719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7718
7719
|
active?: boolean | undefined;
|
|
7719
7720
|
} | undefined;
|
|
7720
7721
|
signup?: {
|
|
7721
|
-
status?: "
|
|
7722
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7722
7723
|
verification?: {
|
|
7723
7724
|
active?: boolean | undefined;
|
|
7724
7725
|
} | undefined;
|
|
@@ -7735,7 +7736,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7735
7736
|
active?: boolean | undefined;
|
|
7736
7737
|
} | undefined;
|
|
7737
7738
|
signup?: {
|
|
7738
|
-
status?: "
|
|
7739
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7739
7740
|
} | undefined;
|
|
7740
7741
|
validation?: {
|
|
7741
7742
|
max_length?: number | undefined;
|
|
@@ -7752,7 +7753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7752
7753
|
active?: boolean | undefined;
|
|
7753
7754
|
} | undefined;
|
|
7754
7755
|
signup?: {
|
|
7755
|
-
status?: "
|
|
7756
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7756
7757
|
} | undefined;
|
|
7757
7758
|
} | undefined;
|
|
7758
7759
|
} | undefined;
|
|
@@ -8508,7 +8509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8508
8509
|
log_type: string;
|
|
8509
8510
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8510
8511
|
actor: {
|
|
8511
|
-
type: "
|
|
8512
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8512
8513
|
id?: string | undefined;
|
|
8513
8514
|
email?: string | undefined;
|
|
8514
8515
|
org_id?: string | undefined;
|
|
@@ -8818,7 +8819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8818
8819
|
created_at: string;
|
|
8819
8820
|
updated_at: string;
|
|
8820
8821
|
name: string;
|
|
8821
|
-
provider: "auth0" | "
|
|
8822
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8822
8823
|
connection: string;
|
|
8823
8824
|
enabled: boolean;
|
|
8824
8825
|
credentials: {
|
|
@@ -8850,7 +8851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8850
8851
|
created_at: string;
|
|
8851
8852
|
updated_at: string;
|
|
8852
8853
|
name: string;
|
|
8853
|
-
provider: "auth0" | "
|
|
8854
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8854
8855
|
connection: string;
|
|
8855
8856
|
enabled: boolean;
|
|
8856
8857
|
credentials: {
|
|
@@ -8876,7 +8877,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8876
8877
|
} & {
|
|
8877
8878
|
json: {
|
|
8878
8879
|
name: string;
|
|
8879
|
-
provider: "auth0" | "
|
|
8880
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8880
8881
|
connection: string;
|
|
8881
8882
|
credentials: {
|
|
8882
8883
|
domain: string;
|
|
@@ -8893,7 +8894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8893
8894
|
created_at: string;
|
|
8894
8895
|
updated_at: string;
|
|
8895
8896
|
name: string;
|
|
8896
|
-
provider: "auth0" | "
|
|
8897
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8897
8898
|
connection: string;
|
|
8898
8899
|
enabled: boolean;
|
|
8899
8900
|
credentials: {
|
|
@@ -8924,7 +8925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8924
8925
|
json: {
|
|
8925
8926
|
id?: string | undefined;
|
|
8926
8927
|
name?: string | undefined;
|
|
8927
|
-
provider?: "auth0" | "
|
|
8928
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8928
8929
|
connection?: string | undefined;
|
|
8929
8930
|
enabled?: boolean | undefined;
|
|
8930
8931
|
credentials?: {
|
|
@@ -8940,7 +8941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8940
8941
|
created_at: string;
|
|
8941
8942
|
updated_at: string;
|
|
8942
8943
|
name: string;
|
|
8943
|
-
provider: "auth0" | "
|
|
8944
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8944
8945
|
connection: string;
|
|
8945
8946
|
enabled: boolean;
|
|
8946
8947
|
credentials: {
|
|
@@ -8988,7 +8989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8988
8989
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8989
8990
|
};
|
|
8990
8991
|
id: string;
|
|
8991
|
-
status: "
|
|
8992
|
+
status: "suspended" | "active" | "paused";
|
|
8992
8993
|
filters?: {
|
|
8993
8994
|
type: string;
|
|
8994
8995
|
name: string;
|
|
@@ -9020,7 +9021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9020
9021
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9021
9022
|
};
|
|
9022
9023
|
id: string;
|
|
9023
|
-
status: "
|
|
9024
|
+
status: "suspended" | "active" | "paused";
|
|
9024
9025
|
filters?: {
|
|
9025
9026
|
type: string;
|
|
9026
9027
|
name: string;
|
|
@@ -9045,7 +9046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9045
9046
|
name: string;
|
|
9046
9047
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9047
9048
|
sink: Record<string, unknown>;
|
|
9048
|
-
status?: "
|
|
9049
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9049
9050
|
filters?: {
|
|
9050
9051
|
type: string;
|
|
9051
9052
|
name: string;
|
|
@@ -9060,7 +9061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9060
9061
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9061
9062
|
};
|
|
9062
9063
|
id: string;
|
|
9063
|
-
status: "
|
|
9064
|
+
status: "suspended" | "active" | "paused";
|
|
9064
9065
|
filters?: {
|
|
9065
9066
|
type: string;
|
|
9066
9067
|
name: string;
|
|
@@ -9095,7 +9096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9095
9096
|
}[] | undefined;
|
|
9096
9097
|
isPriority?: boolean | undefined;
|
|
9097
9098
|
id?: string | undefined;
|
|
9098
|
-
status?: "
|
|
9099
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9099
9100
|
created_at?: string | undefined;
|
|
9100
9101
|
updated_at?: string | undefined;
|
|
9101
9102
|
};
|
|
@@ -9107,7 +9108,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9107
9108
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9108
9109
|
};
|
|
9109
9110
|
id: string;
|
|
9110
|
-
status: "
|
|
9111
|
+
status: "suspended" | "active" | "paused";
|
|
9111
9112
|
filters?: {
|
|
9112
9113
|
type: string;
|
|
9113
9114
|
name: string;
|
|
@@ -9158,7 +9159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9158
9159
|
};
|
|
9159
9160
|
};
|
|
9160
9161
|
output: {
|
|
9161
|
-
type: "fn" | "i" | "
|
|
9162
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9162
9163
|
date: string;
|
|
9163
9164
|
isMobile: boolean;
|
|
9164
9165
|
log_id: string;
|
|
@@ -9197,7 +9198,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9197
9198
|
limit: number;
|
|
9198
9199
|
length: number;
|
|
9199
9200
|
logs: {
|
|
9200
|
-
type: "fn" | "i" | "
|
|
9201
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9201
9202
|
date: string;
|
|
9202
9203
|
isMobile: boolean;
|
|
9203
9204
|
log_id: string;
|
|
@@ -9234,6 +9235,44 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9234
9235
|
}[];
|
|
9235
9236
|
total?: number | undefined;
|
|
9236
9237
|
next?: string | undefined;
|
|
9238
|
+
} | {
|
|
9239
|
+
logs: {
|
|
9240
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9241
|
+
date: string;
|
|
9242
|
+
isMobile: boolean;
|
|
9243
|
+
log_id: string;
|
|
9244
|
+
description?: string | undefined;
|
|
9245
|
+
ip?: string | undefined;
|
|
9246
|
+
user_agent?: string | undefined;
|
|
9247
|
+
details?: any;
|
|
9248
|
+
user_id?: string | undefined;
|
|
9249
|
+
user_name?: string | undefined;
|
|
9250
|
+
connection?: string | undefined;
|
|
9251
|
+
connection_id?: string | undefined;
|
|
9252
|
+
client_id?: string | undefined;
|
|
9253
|
+
client_name?: string | undefined;
|
|
9254
|
+
audience?: string | undefined;
|
|
9255
|
+
scope?: string | undefined;
|
|
9256
|
+
strategy?: string | undefined;
|
|
9257
|
+
strategy_type?: string | undefined;
|
|
9258
|
+
hostname?: string | undefined;
|
|
9259
|
+
auth0_client?: {
|
|
9260
|
+
name: string;
|
|
9261
|
+
version: string;
|
|
9262
|
+
env?: {
|
|
9263
|
+
node?: string | undefined;
|
|
9264
|
+
} | undefined;
|
|
9265
|
+
} | undefined;
|
|
9266
|
+
location_info?: {
|
|
9267
|
+
country_code: string;
|
|
9268
|
+
city_name: string;
|
|
9269
|
+
latitude: string;
|
|
9270
|
+
longitude: string;
|
|
9271
|
+
time_zone: string;
|
|
9272
|
+
continent_code: string;
|
|
9273
|
+
} | undefined;
|
|
9274
|
+
}[];
|
|
9275
|
+
next?: string | undefined;
|
|
9237
9276
|
};
|
|
9238
9277
|
outputFormat: "json";
|
|
9239
9278
|
status: 200;
|
|
@@ -9252,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9252
9291
|
};
|
|
9253
9292
|
};
|
|
9254
9293
|
output: {
|
|
9255
|
-
type: "fn" | "i" | "
|
|
9294
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9256
9295
|
date: string;
|
|
9257
9296
|
isMobile: boolean;
|
|
9258
9297
|
log_id: string;
|
|
@@ -9408,7 +9447,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9408
9447
|
audience?: string | undefined;
|
|
9409
9448
|
client_id?: string | undefined;
|
|
9410
9449
|
allow_any_organization?: string | undefined;
|
|
9411
|
-
subject_type?: "
|
|
9450
|
+
subject_type?: "user" | "client" | undefined;
|
|
9412
9451
|
};
|
|
9413
9452
|
} & {
|
|
9414
9453
|
header: {
|
|
@@ -9423,7 +9462,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9423
9462
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9424
9463
|
allow_any_organization?: boolean | undefined;
|
|
9425
9464
|
is_system?: boolean | undefined;
|
|
9426
|
-
subject_type?: "
|
|
9465
|
+
subject_type?: "user" | "client" | undefined;
|
|
9427
9466
|
authorization_details_types?: string[] | undefined;
|
|
9428
9467
|
created_at?: string | undefined;
|
|
9429
9468
|
updated_at?: string | undefined;
|
|
@@ -9439,7 +9478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9439
9478
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9440
9479
|
allow_any_organization?: boolean | undefined;
|
|
9441
9480
|
is_system?: boolean | undefined;
|
|
9442
|
-
subject_type?: "
|
|
9481
|
+
subject_type?: "user" | "client" | undefined;
|
|
9443
9482
|
authorization_details_types?: string[] | undefined;
|
|
9444
9483
|
created_at?: string | undefined;
|
|
9445
9484
|
updated_at?: string | undefined;
|
|
@@ -9455,7 +9494,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9455
9494
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9456
9495
|
allow_any_organization?: boolean | undefined;
|
|
9457
9496
|
is_system?: boolean | undefined;
|
|
9458
|
-
subject_type?: "
|
|
9497
|
+
subject_type?: "user" | "client" | undefined;
|
|
9459
9498
|
authorization_details_types?: string[] | undefined;
|
|
9460
9499
|
created_at?: string | undefined;
|
|
9461
9500
|
updated_at?: string | undefined;
|
|
@@ -9486,7 +9525,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9486
9525
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9487
9526
|
allow_any_organization?: boolean | undefined;
|
|
9488
9527
|
is_system?: boolean | undefined;
|
|
9489
|
-
subject_type?: "
|
|
9528
|
+
subject_type?: "user" | "client" | undefined;
|
|
9490
9529
|
authorization_details_types?: string[] | undefined;
|
|
9491
9530
|
created_at?: string | undefined;
|
|
9492
9531
|
updated_at?: string | undefined;
|
|
@@ -9531,7 +9570,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9531
9570
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9532
9571
|
allow_any_organization?: boolean | undefined;
|
|
9533
9572
|
is_system?: boolean | undefined;
|
|
9534
|
-
subject_type?: "
|
|
9573
|
+
subject_type?: "user" | "client" | undefined;
|
|
9535
9574
|
authorization_details_types?: string[] | undefined;
|
|
9536
9575
|
};
|
|
9537
9576
|
};
|
|
@@ -9543,7 +9582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9543
9582
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9544
9583
|
allow_any_organization?: boolean | undefined;
|
|
9545
9584
|
is_system?: boolean | undefined;
|
|
9546
|
-
subject_type?: "
|
|
9585
|
+
subject_type?: "user" | "client" | undefined;
|
|
9547
9586
|
authorization_details_types?: string[] | undefined;
|
|
9548
9587
|
created_at?: string | undefined;
|
|
9549
9588
|
updated_at?: string | undefined;
|
|
@@ -9567,7 +9606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9567
9606
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9568
9607
|
allow_any_organization?: boolean | undefined;
|
|
9569
9608
|
is_system?: boolean | undefined;
|
|
9570
|
-
subject_type?: "
|
|
9609
|
+
subject_type?: "user" | "client" | undefined;
|
|
9571
9610
|
authorization_details_types?: string[] | undefined;
|
|
9572
9611
|
};
|
|
9573
9612
|
};
|
|
@@ -9579,7 +9618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9579
9618
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9580
9619
|
allow_any_organization?: boolean | undefined;
|
|
9581
9620
|
is_system?: boolean | undefined;
|
|
9582
|
-
subject_type?: "
|
|
9621
|
+
subject_type?: "user" | "client" | undefined;
|
|
9583
9622
|
authorization_details_types?: string[] | undefined;
|
|
9584
9623
|
created_at?: string | undefined;
|
|
9585
9624
|
updated_at?: string | undefined;
|
|
@@ -9657,7 +9696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9657
9696
|
addons?: {
|
|
9658
9697
|
[x: string]: any;
|
|
9659
9698
|
} | undefined;
|
|
9660
|
-
token_endpoint_auth_method?: "
|
|
9699
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9661
9700
|
client_metadata?: {
|
|
9662
9701
|
[x: string]: string;
|
|
9663
9702
|
} | undefined;
|
|
@@ -9753,7 +9792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9753
9792
|
addons?: {
|
|
9754
9793
|
[x: string]: any;
|
|
9755
9794
|
} | undefined;
|
|
9756
|
-
token_endpoint_auth_method?: "
|
|
9795
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9757
9796
|
client_metadata?: {
|
|
9758
9797
|
[x: string]: string;
|
|
9759
9798
|
} | undefined;
|
|
@@ -9799,6 +9838,101 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9799
9838
|
}[];
|
|
9800
9839
|
total?: number | undefined;
|
|
9801
9840
|
next?: string | undefined;
|
|
9841
|
+
} | {
|
|
9842
|
+
clients: {
|
|
9843
|
+
created_at: string;
|
|
9844
|
+
updated_at: string;
|
|
9845
|
+
name: string;
|
|
9846
|
+
global: boolean;
|
|
9847
|
+
is_first_party: boolean;
|
|
9848
|
+
oidc_conformant: boolean;
|
|
9849
|
+
auth0_conformant: boolean;
|
|
9850
|
+
sso: boolean;
|
|
9851
|
+
sso_disabled: boolean;
|
|
9852
|
+
cross_origin_authentication: boolean;
|
|
9853
|
+
custom_login_page_on: boolean;
|
|
9854
|
+
require_pushed_authorization_requests: boolean;
|
|
9855
|
+
require_proof_of_possession: boolean;
|
|
9856
|
+
client_id: string;
|
|
9857
|
+
description?: string | undefined;
|
|
9858
|
+
client_secret?: string | undefined;
|
|
9859
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9860
|
+
logo_uri?: string | undefined;
|
|
9861
|
+
callbacks?: string[] | undefined;
|
|
9862
|
+
allowed_origins?: string[] | undefined;
|
|
9863
|
+
web_origins?: string[] | undefined;
|
|
9864
|
+
client_aliases?: string[] | undefined;
|
|
9865
|
+
allowed_clients?: string[] | undefined;
|
|
9866
|
+
connections?: string[] | undefined;
|
|
9867
|
+
allowed_logout_urls?: string[] | undefined;
|
|
9868
|
+
session_transfer?: {
|
|
9869
|
+
[x: string]: any;
|
|
9870
|
+
} | undefined;
|
|
9871
|
+
oidc_logout?: {
|
|
9872
|
+
[x: string]: any;
|
|
9873
|
+
} | undefined;
|
|
9874
|
+
grant_types?: string[] | undefined;
|
|
9875
|
+
jwt_configuration?: {
|
|
9876
|
+
[x: string]: any;
|
|
9877
|
+
} | undefined;
|
|
9878
|
+
signing_keys?: {
|
|
9879
|
+
[x: string]: any;
|
|
9880
|
+
}[] | undefined;
|
|
9881
|
+
encryption_key?: {
|
|
9882
|
+
[x: string]: any;
|
|
9883
|
+
} | undefined;
|
|
9884
|
+
cross_origin_loc?: string | undefined;
|
|
9885
|
+
custom_login_page?: string | undefined;
|
|
9886
|
+
custom_login_page_preview?: string | undefined;
|
|
9887
|
+
form_template?: string | undefined;
|
|
9888
|
+
addons?: {
|
|
9889
|
+
[x: string]: any;
|
|
9890
|
+
} | undefined;
|
|
9891
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9892
|
+
client_metadata?: {
|
|
9893
|
+
[x: string]: string;
|
|
9894
|
+
} | undefined;
|
|
9895
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9896
|
+
mobile?: {
|
|
9897
|
+
[x: string]: any;
|
|
9898
|
+
} | undefined;
|
|
9899
|
+
initiate_login_uri?: string | undefined;
|
|
9900
|
+
native_social_login?: {
|
|
9901
|
+
[x: string]: any;
|
|
9902
|
+
} | undefined;
|
|
9903
|
+
refresh_token?: {
|
|
9904
|
+
rotation_type?: "rotating" | "non-rotating" | undefined;
|
|
9905
|
+
leeway?: number | undefined;
|
|
9906
|
+
expiration_type?: "expiring" | "non-expiring" | undefined;
|
|
9907
|
+
token_lifetime?: number | undefined;
|
|
9908
|
+
infinite_token_lifetime?: boolean | undefined;
|
|
9909
|
+
idle_token_lifetime?: number | undefined;
|
|
9910
|
+
infinite_idle_token_lifetime?: boolean | undefined;
|
|
9911
|
+
} | undefined;
|
|
9912
|
+
default_organization?: {
|
|
9913
|
+
[x: string]: any;
|
|
9914
|
+
} | undefined;
|
|
9915
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9916
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
9917
|
+
client_authentication_methods?: {
|
|
9918
|
+
[x: string]: any;
|
|
9919
|
+
} | undefined;
|
|
9920
|
+
signed_request_object?: {
|
|
9921
|
+
[x: string]: any;
|
|
9922
|
+
} | undefined;
|
|
9923
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
9924
|
+
par_request_expiry?: number | undefined;
|
|
9925
|
+
token_quota?: {
|
|
9926
|
+
[x: string]: any;
|
|
9927
|
+
} | undefined;
|
|
9928
|
+
owner_user_id?: string | undefined;
|
|
9929
|
+
registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
|
|
9930
|
+
registration_metadata?: {
|
|
9931
|
+
[x: string]: any;
|
|
9932
|
+
} | undefined;
|
|
9933
|
+
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9934
|
+
}[];
|
|
9935
|
+
next?: string | undefined;
|
|
9802
9936
|
};
|
|
9803
9937
|
outputFormat: "json";
|
|
9804
9938
|
status: 200;
|
|
@@ -9865,7 +9999,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9865
9999
|
addons?: {
|
|
9866
10000
|
[x: string]: any;
|
|
9867
10001
|
} | undefined;
|
|
9868
|
-
token_endpoint_auth_method?: "
|
|
10002
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9869
10003
|
client_metadata?: {
|
|
9870
10004
|
[x: string]: string;
|
|
9871
10005
|
} | undefined;
|
|
@@ -9975,7 +10109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9975
10109
|
custom_login_page_preview?: string | undefined;
|
|
9976
10110
|
form_template?: string | undefined;
|
|
9977
10111
|
addons?: Record<string, any> | undefined;
|
|
9978
|
-
token_endpoint_auth_method?: "
|
|
10112
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9979
10113
|
client_metadata?: Record<string, string> | undefined;
|
|
9980
10114
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9981
10115
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10055,7 +10189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10055
10189
|
addons?: {
|
|
10056
10190
|
[x: string]: any;
|
|
10057
10191
|
} | undefined;
|
|
10058
|
-
token_endpoint_auth_method?: "
|
|
10192
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10059
10193
|
client_metadata?: {
|
|
10060
10194
|
[x: string]: string;
|
|
10061
10195
|
} | undefined;
|
|
@@ -10144,7 +10278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10144
10278
|
custom_login_page_preview?: string | undefined;
|
|
10145
10279
|
form_template?: string | undefined;
|
|
10146
10280
|
addons?: Record<string, any> | undefined;
|
|
10147
|
-
token_endpoint_auth_method?: "
|
|
10281
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10148
10282
|
client_metadata?: Record<string, string> | undefined;
|
|
10149
10283
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10150
10284
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10224,7 +10358,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10224
10358
|
addons?: {
|
|
10225
10359
|
[x: string]: any;
|
|
10226
10360
|
} | undefined;
|
|
10227
|
-
token_endpoint_auth_method?: "
|
|
10361
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10228
10362
|
client_metadata?: {
|
|
10229
10363
|
[x: string]: string;
|
|
10230
10364
|
} | undefined;
|
|
@@ -10346,7 +10480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10346
10480
|
active?: boolean | undefined;
|
|
10347
10481
|
} | undefined;
|
|
10348
10482
|
signup?: {
|
|
10349
|
-
status?: "
|
|
10483
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10350
10484
|
verification?: {
|
|
10351
10485
|
active?: boolean | undefined;
|
|
10352
10486
|
} | undefined;
|
|
@@ -10363,7 +10497,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10363
10497
|
active?: boolean | undefined;
|
|
10364
10498
|
} | undefined;
|
|
10365
10499
|
signup?: {
|
|
10366
|
-
status?: "
|
|
10500
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10367
10501
|
} | undefined;
|
|
10368
10502
|
validation?: {
|
|
10369
10503
|
max_length?: number | undefined;
|
|
@@ -10380,7 +10514,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10380
10514
|
active?: boolean | undefined;
|
|
10381
10515
|
} | undefined;
|
|
10382
10516
|
signup?: {
|
|
10383
|
-
status?: "
|
|
10517
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10384
10518
|
} | undefined;
|
|
10385
10519
|
} | undefined;
|
|
10386
10520
|
} | undefined;
|
|
@@ -10500,7 +10634,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10500
10634
|
active?: boolean | undefined;
|
|
10501
10635
|
} | undefined;
|
|
10502
10636
|
signup?: {
|
|
10503
|
-
status?: "
|
|
10637
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10504
10638
|
verification?: {
|
|
10505
10639
|
active?: boolean | undefined;
|
|
10506
10640
|
} | undefined;
|
|
@@ -10517,7 +10651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10517
10651
|
active?: boolean | undefined;
|
|
10518
10652
|
} | undefined;
|
|
10519
10653
|
signup?: {
|
|
10520
|
-
status?: "
|
|
10654
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10521
10655
|
} | undefined;
|
|
10522
10656
|
validation?: {
|
|
10523
10657
|
max_length?: number | undefined;
|
|
@@ -10534,7 +10668,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10534
10668
|
active?: boolean | undefined;
|
|
10535
10669
|
} | undefined;
|
|
10536
10670
|
signup?: {
|
|
10537
|
-
status?: "
|
|
10671
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10538
10672
|
} | undefined;
|
|
10539
10673
|
} | undefined;
|
|
10540
10674
|
} | undefined;
|
|
@@ -11491,7 +11625,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11491
11625
|
};
|
|
11492
11626
|
};
|
|
11493
11627
|
output: {
|
|
11494
|
-
type: "fn" | "i" | "
|
|
11628
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11495
11629
|
date: string;
|
|
11496
11630
|
isMobile: boolean;
|
|
11497
11631
|
log_id: string;
|
|
@@ -11530,7 +11664,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11530
11664
|
limit: number;
|
|
11531
11665
|
length: number;
|
|
11532
11666
|
logs: {
|
|
11533
|
-
type: "fn" | "i" | "
|
|
11667
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11534
11668
|
date: string;
|
|
11535
11669
|
isMobile: boolean;
|
|
11536
11670
|
log_id: string;
|
|
@@ -11849,7 +11983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11849
11983
|
};
|
|
11850
11984
|
} & {
|
|
11851
11985
|
json: {
|
|
11852
|
-
template: "
|
|
11986
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11853
11987
|
body: string;
|
|
11854
11988
|
from: string;
|
|
11855
11989
|
subject: string;
|
|
@@ -11870,7 +12004,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11870
12004
|
};
|
|
11871
12005
|
} & {
|
|
11872
12006
|
json: {
|
|
11873
|
-
template: "
|
|
12007
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11874
12008
|
body: string;
|
|
11875
12009
|
from: string;
|
|
11876
12010
|
subject: string;
|
|
@@ -11882,7 +12016,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11882
12016
|
};
|
|
11883
12017
|
};
|
|
11884
12018
|
output: {
|
|
11885
|
-
template: "
|
|
12019
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11886
12020
|
body: string;
|
|
11887
12021
|
from: string;
|
|
11888
12022
|
subject: string;
|
|
@@ -11905,7 +12039,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11905
12039
|
};
|
|
11906
12040
|
};
|
|
11907
12041
|
output: {
|
|
11908
|
-
name: "
|
|
12042
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11909
12043
|
body: string;
|
|
11910
12044
|
subject: string;
|
|
11911
12045
|
}[];
|
|
@@ -11918,7 +12052,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11918
12052
|
$get: {
|
|
11919
12053
|
input: {
|
|
11920
12054
|
param: {
|
|
11921
|
-
templateName: "
|
|
12055
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11922
12056
|
};
|
|
11923
12057
|
} & {
|
|
11924
12058
|
header: {
|
|
@@ -11931,7 +12065,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11931
12065
|
} | {
|
|
11932
12066
|
input: {
|
|
11933
12067
|
param: {
|
|
11934
|
-
templateName: "
|
|
12068
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11935
12069
|
};
|
|
11936
12070
|
} & {
|
|
11937
12071
|
header: {
|
|
@@ -11939,7 +12073,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11939
12073
|
};
|
|
11940
12074
|
};
|
|
11941
12075
|
output: {
|
|
11942
|
-
template: "
|
|
12076
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11943
12077
|
body: string;
|
|
11944
12078
|
from: string;
|
|
11945
12079
|
subject: string;
|
|
@@ -11958,7 +12092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11958
12092
|
$put: {
|
|
11959
12093
|
input: {
|
|
11960
12094
|
param: {
|
|
11961
|
-
templateName: "
|
|
12095
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11962
12096
|
};
|
|
11963
12097
|
} & {
|
|
11964
12098
|
header: {
|
|
@@ -11966,7 +12100,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11966
12100
|
};
|
|
11967
12101
|
} & {
|
|
11968
12102
|
json: {
|
|
11969
|
-
template: "
|
|
12103
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11970
12104
|
body: string;
|
|
11971
12105
|
subject: string;
|
|
11972
12106
|
syntax?: "liquid" | undefined;
|
|
@@ -11978,7 +12112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11978
12112
|
};
|
|
11979
12113
|
};
|
|
11980
12114
|
output: {
|
|
11981
|
-
template: "
|
|
12115
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11982
12116
|
body: string;
|
|
11983
12117
|
from: string;
|
|
11984
12118
|
subject: string;
|
|
@@ -11997,7 +12131,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11997
12131
|
$patch: {
|
|
11998
12132
|
input: {
|
|
11999
12133
|
param: {
|
|
12000
|
-
templateName: "
|
|
12134
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12001
12135
|
};
|
|
12002
12136
|
} & {
|
|
12003
12137
|
header: {
|
|
@@ -12005,7 +12139,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12005
12139
|
};
|
|
12006
12140
|
} & {
|
|
12007
12141
|
json: {
|
|
12008
|
-
template?: "
|
|
12142
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12009
12143
|
body?: string | undefined;
|
|
12010
12144
|
from?: string | undefined;
|
|
12011
12145
|
subject?: string | undefined;
|
|
@@ -12022,7 +12156,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12022
12156
|
} | {
|
|
12023
12157
|
input: {
|
|
12024
12158
|
param: {
|
|
12025
|
-
templateName: "
|
|
12159
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12026
12160
|
};
|
|
12027
12161
|
} & {
|
|
12028
12162
|
header: {
|
|
@@ -12030,7 +12164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12030
12164
|
};
|
|
12031
12165
|
} & {
|
|
12032
12166
|
json: {
|
|
12033
|
-
template?: "
|
|
12167
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12034
12168
|
body?: string | undefined;
|
|
12035
12169
|
from?: string | undefined;
|
|
12036
12170
|
subject?: string | undefined;
|
|
@@ -12042,7 +12176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12042
12176
|
};
|
|
12043
12177
|
};
|
|
12044
12178
|
output: {
|
|
12045
|
-
template: "
|
|
12179
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12046
12180
|
body: string;
|
|
12047
12181
|
from: string;
|
|
12048
12182
|
subject: string;
|
|
@@ -12061,7 +12195,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12061
12195
|
$delete: {
|
|
12062
12196
|
input: {
|
|
12063
12197
|
param: {
|
|
12064
|
-
templateName: "
|
|
12198
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12065
12199
|
};
|
|
12066
12200
|
} & {
|
|
12067
12201
|
header: {
|
|
@@ -12074,7 +12208,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12074
12208
|
} | {
|
|
12075
12209
|
input: {
|
|
12076
12210
|
param: {
|
|
12077
|
-
templateName: "
|
|
12211
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12078
12212
|
};
|
|
12079
12213
|
} & {
|
|
12080
12214
|
header: {
|
|
@@ -12091,7 +12225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12091
12225
|
$post: {
|
|
12092
12226
|
input: {
|
|
12093
12227
|
param: {
|
|
12094
|
-
templateName: "
|
|
12228
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12095
12229
|
};
|
|
12096
12230
|
} & {
|
|
12097
12231
|
header: {
|
|
@@ -12374,7 +12508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12374
12508
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12375
12509
|
custom_domain_id: string;
|
|
12376
12510
|
primary: boolean;
|
|
12377
|
-
status: "
|
|
12511
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12378
12512
|
verification_method?: "txt" | undefined;
|
|
12379
12513
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12380
12514
|
domain_metadata?: {
|
|
@@ -12415,7 +12549,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12415
12549
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12416
12550
|
custom_domain_id: string;
|
|
12417
12551
|
primary: boolean;
|
|
12418
|
-
status: "
|
|
12552
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12419
12553
|
verification_method?: "txt" | undefined;
|
|
12420
12554
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12421
12555
|
domain_metadata?: {
|
|
@@ -12479,7 +12613,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12479
12613
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12480
12614
|
custom_domain_id: string;
|
|
12481
12615
|
primary: boolean;
|
|
12482
|
-
status: "
|
|
12616
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12483
12617
|
verification_method?: "txt" | undefined;
|
|
12484
12618
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12485
12619
|
domain_metadata?: {
|
|
@@ -12526,7 +12660,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12526
12660
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12527
12661
|
custom_domain_id: string;
|
|
12528
12662
|
primary: boolean;
|
|
12529
|
-
status: "
|
|
12663
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12530
12664
|
verification_method?: "txt" | undefined;
|
|
12531
12665
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12532
12666
|
domain_metadata?: {
|
|
@@ -12572,7 +12706,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12572
12706
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12573
12707
|
custom_domain_id: string;
|
|
12574
12708
|
primary: boolean;
|
|
12575
|
-
status: "
|
|
12709
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12576
12710
|
verification_method?: "txt" | undefined;
|
|
12577
12711
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12578
12712
|
domain_metadata?: {
|
|
@@ -12613,7 +12747,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12613
12747
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12614
12748
|
custom_domain_id: string;
|
|
12615
12749
|
primary: boolean;
|
|
12616
|
-
status: "
|
|
12750
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12617
12751
|
verification_method?: "txt" | undefined;
|
|
12618
12752
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12619
12753
|
domain_metadata?: {
|
|
@@ -12712,12 +12846,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12712
12846
|
background_color: string;
|
|
12713
12847
|
background_image_url: string;
|
|
12714
12848
|
page_layout: "center" | "left" | "right";
|
|
12715
|
-
logo_placement?: "
|
|
12849
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12716
12850
|
};
|
|
12717
12851
|
widget: {
|
|
12718
12852
|
header_text_alignment: "center" | "left" | "right";
|
|
12719
12853
|
logo_height: number;
|
|
12720
|
-
logo_position: "
|
|
12854
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12721
12855
|
logo_url: string;
|
|
12722
12856
|
social_buttons_layout: "bottom" | "top";
|
|
12723
12857
|
};
|
|
@@ -12802,12 +12936,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12802
12936
|
background_color: string;
|
|
12803
12937
|
background_image_url: string;
|
|
12804
12938
|
page_layout: "center" | "left" | "right";
|
|
12805
|
-
logo_placement?: "
|
|
12939
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12806
12940
|
};
|
|
12807
12941
|
widget: {
|
|
12808
12942
|
header_text_alignment: "center" | "left" | "right";
|
|
12809
12943
|
logo_height: number;
|
|
12810
|
-
logo_position: "
|
|
12944
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12811
12945
|
logo_url: string;
|
|
12812
12946
|
social_buttons_layout: "bottom" | "top";
|
|
12813
12947
|
};
|
|
@@ -12881,12 +13015,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12881
13015
|
background_color: string;
|
|
12882
13016
|
background_image_url: string;
|
|
12883
13017
|
page_layout: "center" | "left" | "right";
|
|
12884
|
-
logo_placement?: "
|
|
13018
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12885
13019
|
};
|
|
12886
13020
|
widget: {
|
|
12887
13021
|
header_text_alignment: "center" | "left" | "right";
|
|
12888
13022
|
logo_height: number;
|
|
12889
|
-
logo_position: "
|
|
13023
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12890
13024
|
logo_url: string;
|
|
12891
13025
|
social_buttons_layout: "bottom" | "top";
|
|
12892
13026
|
};
|
|
@@ -13043,7 +13177,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13043
13177
|
} & {
|
|
13044
13178
|
json: {
|
|
13045
13179
|
body?: string | undefined;
|
|
13046
|
-
screen?: "password" | "
|
|
13180
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
13047
13181
|
branding?: {
|
|
13048
13182
|
colors?: {
|
|
13049
13183
|
primary: string;
|
|
@@ -13129,12 +13263,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13129
13263
|
background_color: string;
|
|
13130
13264
|
background_image_url: string;
|
|
13131
13265
|
page_layout: "center" | "left" | "right";
|
|
13132
|
-
logo_placement?: "
|
|
13266
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13133
13267
|
} | undefined;
|
|
13134
13268
|
widget?: {
|
|
13135
13269
|
header_text_alignment: "center" | "left" | "right";
|
|
13136
13270
|
logo_height: number;
|
|
13137
|
-
logo_position: "
|
|
13271
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13138
13272
|
logo_url: string;
|
|
13139
13273
|
social_buttons_layout: "bottom" | "top";
|
|
13140
13274
|
} | undefined;
|
|
@@ -14314,7 +14448,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14314
14448
|
scope?: string | undefined;
|
|
14315
14449
|
grant_types?: string[] | undefined;
|
|
14316
14450
|
response_types?: string[] | undefined;
|
|
14317
|
-
token_endpoint_auth_method?: "
|
|
14451
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14318
14452
|
jwks_uri?: string | undefined;
|
|
14319
14453
|
jwks?: Record<string, unknown> | undefined;
|
|
14320
14454
|
software_id?: string | undefined;
|
|
@@ -14403,7 +14537,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14403
14537
|
scope?: string | undefined;
|
|
14404
14538
|
grant_types?: string[] | undefined;
|
|
14405
14539
|
response_types?: string[] | undefined;
|
|
14406
|
-
token_endpoint_auth_method?: "
|
|
14540
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14407
14541
|
jwks_uri?: string | undefined;
|
|
14408
14542
|
jwks?: Record<string, unknown> | undefined;
|
|
14409
14543
|
software_id?: string | undefined;
|
|
@@ -14750,19 +14884,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14750
14884
|
send: "code" | "link";
|
|
14751
14885
|
authParams: {
|
|
14752
14886
|
audience?: string | undefined;
|
|
14753
|
-
scope?: string | undefined;
|
|
14754
14887
|
username?: string | undefined;
|
|
14755
|
-
|
|
14888
|
+
scope?: string | undefined;
|
|
14756
14889
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14757
14890
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14758
14891
|
state?: string | undefined;
|
|
14759
|
-
nonce?: string | undefined;
|
|
14760
|
-
act_as?: string | undefined;
|
|
14761
|
-
redirect_uri?: string | undefined;
|
|
14762
14892
|
prompt?: string | undefined;
|
|
14893
|
+
ui_locales?: string | undefined;
|
|
14894
|
+
organization?: string | undefined;
|
|
14895
|
+
redirect_uri?: string | undefined;
|
|
14896
|
+
act_as?: string | undefined;
|
|
14897
|
+
nonce?: string | undefined;
|
|
14763
14898
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14764
14899
|
code_challenge?: string | undefined;
|
|
14765
|
-
ui_locales?: string | undefined;
|
|
14766
14900
|
max_age?: number | undefined;
|
|
14767
14901
|
acr_values?: string | undefined;
|
|
14768
14902
|
claims?: {
|
|
@@ -14786,19 +14920,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14786
14920
|
send: "code" | "link";
|
|
14787
14921
|
authParams: {
|
|
14788
14922
|
audience?: string | undefined;
|
|
14789
|
-
scope?: string | undefined;
|
|
14790
14923
|
username?: string | undefined;
|
|
14791
|
-
|
|
14924
|
+
scope?: string | undefined;
|
|
14792
14925
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14793
14926
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14794
14927
|
state?: string | undefined;
|
|
14795
|
-
nonce?: string | undefined;
|
|
14796
|
-
act_as?: string | undefined;
|
|
14797
|
-
redirect_uri?: string | undefined;
|
|
14798
14928
|
prompt?: string | undefined;
|
|
14929
|
+
ui_locales?: string | undefined;
|
|
14930
|
+
organization?: string | undefined;
|
|
14931
|
+
redirect_uri?: string | undefined;
|
|
14932
|
+
act_as?: string | undefined;
|
|
14933
|
+
nonce?: string | undefined;
|
|
14799
14934
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14800
14935
|
code_challenge?: string | undefined;
|
|
14801
|
-
ui_locales?: string | undefined;
|
|
14802
14936
|
max_age?: number | undefined;
|
|
14803
14937
|
acr_values?: string | undefined;
|
|
14804
14938
|
claims?: {
|
|
@@ -15027,7 +15161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15027
15161
|
client_id: string;
|
|
15028
15162
|
username: string;
|
|
15029
15163
|
otp: string;
|
|
15030
|
-
realm: "
|
|
15164
|
+
realm: "sms" | "email";
|
|
15031
15165
|
} | {
|
|
15032
15166
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15033
15167
|
subject_token: string;
|
|
@@ -15074,7 +15208,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15074
15208
|
client_id: string;
|
|
15075
15209
|
username: string;
|
|
15076
15210
|
otp: string;
|
|
15077
|
-
realm: "
|
|
15211
|
+
realm: "sms" | "email";
|
|
15078
15212
|
} | {
|
|
15079
15213
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15080
15214
|
subject_token: string;
|
|
@@ -15126,7 +15260,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15126
15260
|
client_id: string;
|
|
15127
15261
|
username: string;
|
|
15128
15262
|
otp: string;
|
|
15129
|
-
realm: "
|
|
15263
|
+
realm: "sms" | "email";
|
|
15130
15264
|
} | {
|
|
15131
15265
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15132
15266
|
subject_token: string;
|
|
@@ -15173,7 +15307,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15173
15307
|
client_id: string;
|
|
15174
15308
|
username: string;
|
|
15175
15309
|
otp: string;
|
|
15176
|
-
realm: "
|
|
15310
|
+
realm: "sms" | "email";
|
|
15177
15311
|
} | {
|
|
15178
15312
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15179
15313
|
subject_token: string;
|
|
@@ -15233,7 +15367,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15233
15367
|
client_id: string;
|
|
15234
15368
|
username: string;
|
|
15235
15369
|
otp: string;
|
|
15236
|
-
realm: "
|
|
15370
|
+
realm: "sms" | "email";
|
|
15237
15371
|
} | {
|
|
15238
15372
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15239
15373
|
subject_token: string;
|
|
@@ -15280,7 +15414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15280
15414
|
client_id: string;
|
|
15281
15415
|
username: string;
|
|
15282
15416
|
otp: string;
|
|
15283
|
-
realm: "
|
|
15417
|
+
realm: "sms" | "email";
|
|
15284
15418
|
} | {
|
|
15285
15419
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15286
15420
|
subject_token: string;
|
|
@@ -15335,7 +15469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15335
15469
|
client_id: string;
|
|
15336
15470
|
username: string;
|
|
15337
15471
|
otp: string;
|
|
15338
|
-
realm: "
|
|
15472
|
+
realm: "sms" | "email";
|
|
15339
15473
|
} | {
|
|
15340
15474
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15341
15475
|
subject_token: string;
|
|
@@ -15382,7 +15516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15382
15516
|
client_id: string;
|
|
15383
15517
|
username: string;
|
|
15384
15518
|
otp: string;
|
|
15385
|
-
realm: "
|
|
15519
|
+
realm: "sms" | "email";
|
|
15386
15520
|
} | {
|
|
15387
15521
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15388
15522
|
subject_token: string;
|
|
@@ -15437,7 +15571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15437
15571
|
client_id: string;
|
|
15438
15572
|
username: string;
|
|
15439
15573
|
otp: string;
|
|
15440
|
-
realm: "
|
|
15574
|
+
realm: "sms" | "email";
|
|
15441
15575
|
} | {
|
|
15442
15576
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15443
15577
|
subject_token: string;
|
|
@@ -15484,7 +15618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15484
15618
|
client_id: string;
|
|
15485
15619
|
username: string;
|
|
15486
15620
|
otp: string;
|
|
15487
|
-
realm: "
|
|
15621
|
+
realm: "sms" | "email";
|
|
15488
15622
|
} | {
|
|
15489
15623
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15490
15624
|
subject_token: string;
|
|
@@ -16704,7 +16838,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16704
16838
|
$get: {
|
|
16705
16839
|
input: {
|
|
16706
16840
|
param: {
|
|
16707
|
-
screen: "
|
|
16841
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16708
16842
|
};
|
|
16709
16843
|
} & {
|
|
16710
16844
|
query: {
|
|
@@ -16720,7 +16854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16720
16854
|
} | {
|
|
16721
16855
|
input: {
|
|
16722
16856
|
param: {
|
|
16723
|
-
screen: "
|
|
16857
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16724
16858
|
};
|
|
16725
16859
|
} & {
|
|
16726
16860
|
query: {
|
|
@@ -16736,7 +16870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16736
16870
|
} | {
|
|
16737
16871
|
input: {
|
|
16738
16872
|
param: {
|
|
16739
|
-
screen: "
|
|
16873
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16740
16874
|
};
|
|
16741
16875
|
} & {
|
|
16742
16876
|
query: {
|
|
@@ -16756,7 +16890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16756
16890
|
$post: {
|
|
16757
16891
|
input: {
|
|
16758
16892
|
param: {
|
|
16759
|
-
screen: "
|
|
16893
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16760
16894
|
};
|
|
16761
16895
|
} & {
|
|
16762
16896
|
query: {
|
|
@@ -16774,7 +16908,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16774
16908
|
} | {
|
|
16775
16909
|
input: {
|
|
16776
16910
|
param: {
|
|
16777
|
-
screen: "
|
|
16911
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16778
16912
|
};
|
|
16779
16913
|
} & {
|
|
16780
16914
|
query: {
|