authhero 7.0.0 → 7.2.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 +94 -94
- package/dist/authhero.d.ts +224 -244
- package/dist/authhero.mjs +7590 -7572
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/signing-keys.d.ts +1 -0
- package/dist/types/index.d.ts +203 -221
- package/dist/types/routes/auth-api/index.d.ts +32 -32
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -25
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +165 -183
- package/dist/types/routes/management-api/logs.d.ts +3 -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/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +10 -15
- package/dist/types/routes/proxy-control-plane/verify.d.ts +10 -5
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +11 -13
- package/dist/types/types/Bindings.d.ts +0 -6
- package/dist/types/utils/jwks.d.ts +10 -11
- package/dist/types/utils/jwt.d.ts +21 -1
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -1196,23 +1196,21 @@ interface AuthHeroConfig {
|
|
|
1196
1196
|
* which returns the cross-tenant `ResolvedHost` for the given hostname.
|
|
1197
1197
|
*
|
|
1198
1198
|
* Authentication is opinionated and built in: incoming requests must
|
|
1199
|
-
* carry a `Bearer` JWT
|
|
1200
|
-
* the
|
|
1201
|
-
*
|
|
1202
|
-
*
|
|
1199
|
+
* carry a `Bearer` JWT whose `iss` is either the runtime `env.ISSUER`
|
|
1200
|
+
* or the host the request landed on (tenant subdomain or registered
|
|
1201
|
+
* custom domain). The verifier fetches `<iss>/.well-known/jwks.json` to
|
|
1202
|
+
* validate the signature, so each accepted host must publish its own
|
|
1203
|
+
* JWKS at that path. Tokens must also carry the `proxy:resolve_host`
|
|
1204
|
+
* scope. The matching client-side helper is `createHttpProxyAdapter`
|
|
1205
|
+
* in `@authhero/proxy`.
|
|
1203
1206
|
*/
|
|
1204
1207
|
proxyControlPlane?: {
|
|
1205
1208
|
resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
|
|
1206
1209
|
/**
|
|
1207
|
-
*
|
|
1208
|
-
*
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
/**
|
|
1212
|
-
* Optional fetch override for `jwksUrl`. Defaults to global `fetch`.
|
|
1213
|
-
* Hosts on Cloudflare Workers can pass
|
|
1214
|
-
* `(url) => env.JWKS_SERVICE.fetch(url)` to route through a service
|
|
1215
|
-
* binding instead of the public network.
|
|
1210
|
+
* Optional fetch override for the per-issuer JWKS document. Called
|
|
1211
|
+
* with the derived URL (`<iss>/.well-known/jwks.json`); defaults to
|
|
1212
|
+
* global `fetch`. Hosts on Cloudflare Workers can route specific
|
|
1213
|
+
* hosts through a service binding by inspecting the URL.
|
|
1216
1214
|
*/
|
|
1217
1215
|
jwksFetch?: (url: string) => Promise<Response>;
|
|
1218
1216
|
/**
|
|
@@ -1462,14 +1460,9 @@ type StrategyHandler = {
|
|
|
1462
1460
|
disableEmbeddedBrowsers?: boolean;
|
|
1463
1461
|
};
|
|
1464
1462
|
|
|
1465
|
-
declare type Fetcher = {
|
|
1466
|
-
fetch: typeof fetch;
|
|
1467
|
-
};
|
|
1468
1463
|
type Bindings = {
|
|
1469
1464
|
ENVIRONMENT: string;
|
|
1470
1465
|
AUTH_URL: string;
|
|
1471
|
-
JWKS_URL?: string;
|
|
1472
|
-
JWKS_SERVICE?: Fetcher;
|
|
1473
1466
|
ISSUER: string;
|
|
1474
1467
|
UNIVERSAL_LOGIN_URL?: string;
|
|
1475
1468
|
OAUTH_API_URL?: string;
|
|
@@ -2295,12 +2288,15 @@ type VerifyControlPlaneTokenResult = {
|
|
|
2295
2288
|
interface VerifyControlPlaneTokenOptions {
|
|
2296
2289
|
/** Compact JWS to verify. */
|
|
2297
2290
|
token: string;
|
|
2298
|
-
/** JWKS document URL. */
|
|
2299
|
-
jwksUrl: string;
|
|
2300
2291
|
/** Optional fetch override — defaults to global `fetch`. */
|
|
2301
2292
|
jwksFetch?: (url: string) => Promise<Response>;
|
|
2302
|
-
/**
|
|
2303
|
-
|
|
2293
|
+
/**
|
|
2294
|
+
* Set of acceptable `iss` claim values. Comparison is strict URL equality
|
|
2295
|
+
* (after trailing-slash normalization) via {@link isAllowedIssuer}. The
|
|
2296
|
+
* verifier fetches the per-issuer JWKS from `<iss>/.well-known/jwks.json`,
|
|
2297
|
+
* so any host you list here must publish its own JWKS at that path.
|
|
2298
|
+
*/
|
|
2299
|
+
expectedIssuers: string[];
|
|
2304
2300
|
/** Required `scope` (space-separated). Defaults to `proxy:resolve_host`. */
|
|
2305
2301
|
requiredScope?: string;
|
|
2306
2302
|
}
|
|
@@ -2312,7 +2308,9 @@ interface VerifyControlPlaneTokenOptions {
|
|
|
2312
2308
|
* Accepted algs: RS256/384/512, ES256/384/512. The JWK's `alg` must match
|
|
2313
2309
|
* the token header's `alg`. The token must carry the configured required
|
|
2314
2310
|
* scope (`proxy:resolve_host` by default) and an `iss` that strictly equals
|
|
2315
|
-
* `
|
|
2311
|
+
* one of `expectedIssuers` after URL normalization. The JWKS document is
|
|
2312
|
+
* fetched from `<iss>/.well-known/jwks.json` AFTER the `iss` is allow-listed,
|
|
2313
|
+
* so an attacker cannot redirect the verifier to a JWKS they control.
|
|
2316
2314
|
*/
|
|
2317
2315
|
declare function verifyControlPlaneToken(options: VerifyControlPlaneTokenOptions): Promise<VerifyControlPlaneTokenResult>;
|
|
2318
2316
|
|
|
@@ -2772,7 +2770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2772
2770
|
};
|
|
2773
2771
|
} & {
|
|
2774
2772
|
json: {
|
|
2775
|
-
type: "
|
|
2773
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2776
2774
|
phone_number?: string | undefined;
|
|
2777
2775
|
totp_secret?: string | undefined;
|
|
2778
2776
|
credential_id?: string | undefined;
|
|
@@ -2912,7 +2910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2912
2910
|
};
|
|
2913
2911
|
};
|
|
2914
2912
|
output: {
|
|
2915
|
-
name: "
|
|
2913
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2916
2914
|
enabled: boolean;
|
|
2917
2915
|
trial_expired?: boolean | undefined;
|
|
2918
2916
|
}[];
|
|
@@ -3067,7 +3065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3067
3065
|
$get: {
|
|
3068
3066
|
input: {
|
|
3069
3067
|
param: {
|
|
3070
|
-
factor_name: "
|
|
3068
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3071
3069
|
};
|
|
3072
3070
|
} & {
|
|
3073
3071
|
header: {
|
|
@@ -3075,7 +3073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3075
3073
|
};
|
|
3076
3074
|
};
|
|
3077
3075
|
output: {
|
|
3078
|
-
name: "
|
|
3076
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3079
3077
|
enabled: boolean;
|
|
3080
3078
|
trial_expired?: boolean | undefined;
|
|
3081
3079
|
};
|
|
@@ -3088,7 +3086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3088
3086
|
$put: {
|
|
3089
3087
|
input: {
|
|
3090
3088
|
param: {
|
|
3091
|
-
factor_name: "
|
|
3089
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3092
3090
|
};
|
|
3093
3091
|
} & {
|
|
3094
3092
|
header: {
|
|
@@ -3100,7 +3098,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3100
3098
|
};
|
|
3101
3099
|
};
|
|
3102
3100
|
output: {
|
|
3103
|
-
name: "
|
|
3101
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3104
3102
|
enabled: boolean;
|
|
3105
3103
|
trial_expired?: boolean | undefined;
|
|
3106
3104
|
};
|
|
@@ -4033,8 +4031,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4033
4031
|
};
|
|
4034
4032
|
} & {
|
|
4035
4033
|
json: {
|
|
4036
|
-
show_as_button?: boolean | undefined;
|
|
4037
4034
|
assign_membership_on_login?: boolean | undefined;
|
|
4035
|
+
show_as_button?: boolean | undefined;
|
|
4038
4036
|
is_signup_enabled?: boolean | undefined;
|
|
4039
4037
|
};
|
|
4040
4038
|
};
|
|
@@ -5276,7 +5274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5276
5274
|
hint?: string | undefined;
|
|
5277
5275
|
messages?: {
|
|
5278
5276
|
text: string;
|
|
5279
|
-
type: "
|
|
5277
|
+
type: "error" | "success" | "info" | "warning";
|
|
5280
5278
|
id?: number | undefined;
|
|
5281
5279
|
}[] | undefined;
|
|
5282
5280
|
required?: boolean | undefined;
|
|
@@ -5294,7 +5292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5294
5292
|
hint?: string | undefined;
|
|
5295
5293
|
messages?: {
|
|
5296
5294
|
text: string;
|
|
5297
|
-
type: "
|
|
5295
|
+
type: "error" | "success" | "info" | "warning";
|
|
5298
5296
|
id?: number | undefined;
|
|
5299
5297
|
}[] | undefined;
|
|
5300
5298
|
required?: boolean | undefined;
|
|
@@ -5318,7 +5316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5318
5316
|
hint?: string | undefined;
|
|
5319
5317
|
messages?: {
|
|
5320
5318
|
text: string;
|
|
5321
|
-
type: "
|
|
5319
|
+
type: "error" | "success" | "info" | "warning";
|
|
5322
5320
|
id?: number | undefined;
|
|
5323
5321
|
}[] | undefined;
|
|
5324
5322
|
required?: boolean | undefined;
|
|
@@ -5342,7 +5340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5342
5340
|
hint?: string | undefined;
|
|
5343
5341
|
messages?: {
|
|
5344
5342
|
text: string;
|
|
5345
|
-
type: "
|
|
5343
|
+
type: "error" | "success" | "info" | "warning";
|
|
5346
5344
|
id?: number | undefined;
|
|
5347
5345
|
}[] | undefined;
|
|
5348
5346
|
required?: boolean | undefined;
|
|
@@ -5371,7 +5369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5371
5369
|
hint?: string | undefined;
|
|
5372
5370
|
messages?: {
|
|
5373
5371
|
text: string;
|
|
5374
|
-
type: "
|
|
5372
|
+
type: "error" | "success" | "info" | "warning";
|
|
5375
5373
|
id?: number | undefined;
|
|
5376
5374
|
}[] | undefined;
|
|
5377
5375
|
required?: boolean | undefined;
|
|
@@ -5386,7 +5384,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5386
5384
|
hint?: string | undefined;
|
|
5387
5385
|
messages?: {
|
|
5388
5386
|
text: string;
|
|
5389
|
-
type: "
|
|
5387
|
+
type: "error" | "success" | "info" | "warning";
|
|
5390
5388
|
id?: number | undefined;
|
|
5391
5389
|
}[] | undefined;
|
|
5392
5390
|
required?: boolean | undefined;
|
|
@@ -5407,7 +5405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5407
5405
|
hint?: string | undefined;
|
|
5408
5406
|
messages?: {
|
|
5409
5407
|
text: string;
|
|
5410
|
-
type: "
|
|
5408
|
+
type: "error" | "success" | "info" | "warning";
|
|
5411
5409
|
id?: number | undefined;
|
|
5412
5410
|
}[] | undefined;
|
|
5413
5411
|
required?: boolean | undefined;
|
|
@@ -5432,7 +5430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5432
5430
|
hint?: string | undefined;
|
|
5433
5431
|
messages?: {
|
|
5434
5432
|
text: string;
|
|
5435
|
-
type: "
|
|
5433
|
+
type: "error" | "success" | "info" | "warning";
|
|
5436
5434
|
id?: number | undefined;
|
|
5437
5435
|
}[] | undefined;
|
|
5438
5436
|
required?: boolean | undefined;
|
|
@@ -5451,7 +5449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5451
5449
|
hint?: string | undefined;
|
|
5452
5450
|
messages?: {
|
|
5453
5451
|
text: string;
|
|
5454
|
-
type: "
|
|
5452
|
+
type: "error" | "success" | "info" | "warning";
|
|
5455
5453
|
id?: number | undefined;
|
|
5456
5454
|
}[] | undefined;
|
|
5457
5455
|
required?: boolean | undefined;
|
|
@@ -5471,7 +5469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5471
5469
|
hint?: string | undefined;
|
|
5472
5470
|
messages?: {
|
|
5473
5471
|
text: string;
|
|
5474
|
-
type: "
|
|
5472
|
+
type: "error" | "success" | "info" | "warning";
|
|
5475
5473
|
id?: number | undefined;
|
|
5476
5474
|
}[] | undefined;
|
|
5477
5475
|
required?: boolean | undefined;
|
|
@@ -5490,7 +5488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5490
5488
|
hint?: string | undefined;
|
|
5491
5489
|
messages?: {
|
|
5492
5490
|
text: string;
|
|
5493
|
-
type: "
|
|
5491
|
+
type: "error" | "success" | "info" | "warning";
|
|
5494
5492
|
id?: number | undefined;
|
|
5495
5493
|
}[] | undefined;
|
|
5496
5494
|
required?: boolean | undefined;
|
|
@@ -5512,7 +5510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5512
5510
|
hint?: string | undefined;
|
|
5513
5511
|
messages?: {
|
|
5514
5512
|
text: string;
|
|
5515
|
-
type: "
|
|
5513
|
+
type: "error" | "success" | "info" | "warning";
|
|
5516
5514
|
id?: number | undefined;
|
|
5517
5515
|
}[] | undefined;
|
|
5518
5516
|
required?: boolean | undefined;
|
|
@@ -5534,7 +5532,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5534
5532
|
hint?: string | undefined;
|
|
5535
5533
|
messages?: {
|
|
5536
5534
|
text: string;
|
|
5537
|
-
type: "
|
|
5535
|
+
type: "error" | "success" | "info" | "warning";
|
|
5538
5536
|
id?: number | undefined;
|
|
5539
5537
|
}[] | undefined;
|
|
5540
5538
|
required?: boolean | undefined;
|
|
@@ -5553,7 +5551,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5553
5551
|
hint?: string | undefined;
|
|
5554
5552
|
messages?: {
|
|
5555
5553
|
text: string;
|
|
5556
|
-
type: "
|
|
5554
|
+
type: "error" | "success" | "info" | "warning";
|
|
5557
5555
|
id?: number | undefined;
|
|
5558
5556
|
}[] | undefined;
|
|
5559
5557
|
required?: boolean | undefined;
|
|
@@ -5578,7 +5576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5578
5576
|
hint?: string | undefined;
|
|
5579
5577
|
messages?: {
|
|
5580
5578
|
text: string;
|
|
5581
|
-
type: "
|
|
5579
|
+
type: "error" | "success" | "info" | "warning";
|
|
5582
5580
|
id?: number | undefined;
|
|
5583
5581
|
}[] | undefined;
|
|
5584
5582
|
required?: boolean | undefined;
|
|
@@ -5599,7 +5597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5599
5597
|
hint?: string | undefined;
|
|
5600
5598
|
messages?: {
|
|
5601
5599
|
text: string;
|
|
5602
|
-
type: "
|
|
5600
|
+
type: "error" | "success" | "info" | "warning";
|
|
5603
5601
|
id?: number | undefined;
|
|
5604
5602
|
}[] | undefined;
|
|
5605
5603
|
required?: boolean | undefined;
|
|
@@ -5620,7 +5618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5620
5618
|
hint?: string | undefined;
|
|
5621
5619
|
messages?: {
|
|
5622
5620
|
text: string;
|
|
5623
|
-
type: "
|
|
5621
|
+
type: "error" | "success" | "info" | "warning";
|
|
5624
5622
|
id?: number | undefined;
|
|
5625
5623
|
}[] | undefined;
|
|
5626
5624
|
required?: boolean | undefined;
|
|
@@ -5853,7 +5851,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5853
5851
|
hint?: string | undefined;
|
|
5854
5852
|
messages?: {
|
|
5855
5853
|
text: string;
|
|
5856
|
-
type: "
|
|
5854
|
+
type: "error" | "success" | "info" | "warning";
|
|
5857
5855
|
id?: number | undefined;
|
|
5858
5856
|
}[] | undefined;
|
|
5859
5857
|
required?: boolean | undefined;
|
|
@@ -5871,7 +5869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5871
5869
|
hint?: string | undefined;
|
|
5872
5870
|
messages?: {
|
|
5873
5871
|
text: string;
|
|
5874
|
-
type: "
|
|
5872
|
+
type: "error" | "success" | "info" | "warning";
|
|
5875
5873
|
id?: number | undefined;
|
|
5876
5874
|
}[] | undefined;
|
|
5877
5875
|
required?: boolean | undefined;
|
|
@@ -5895,7 +5893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5895
5893
|
hint?: string | undefined;
|
|
5896
5894
|
messages?: {
|
|
5897
5895
|
text: string;
|
|
5898
|
-
type: "
|
|
5896
|
+
type: "error" | "success" | "info" | "warning";
|
|
5899
5897
|
id?: number | undefined;
|
|
5900
5898
|
}[] | undefined;
|
|
5901
5899
|
required?: boolean | undefined;
|
|
@@ -5919,7 +5917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5919
5917
|
hint?: string | undefined;
|
|
5920
5918
|
messages?: {
|
|
5921
5919
|
text: string;
|
|
5922
|
-
type: "
|
|
5920
|
+
type: "error" | "success" | "info" | "warning";
|
|
5923
5921
|
id?: number | undefined;
|
|
5924
5922
|
}[] | undefined;
|
|
5925
5923
|
required?: boolean | undefined;
|
|
@@ -5948,7 +5946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5948
5946
|
hint?: string | undefined;
|
|
5949
5947
|
messages?: {
|
|
5950
5948
|
text: string;
|
|
5951
|
-
type: "
|
|
5949
|
+
type: "error" | "success" | "info" | "warning";
|
|
5952
5950
|
id?: number | undefined;
|
|
5953
5951
|
}[] | undefined;
|
|
5954
5952
|
required?: boolean | undefined;
|
|
@@ -5963,7 +5961,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5963
5961
|
hint?: string | undefined;
|
|
5964
5962
|
messages?: {
|
|
5965
5963
|
text: string;
|
|
5966
|
-
type: "
|
|
5964
|
+
type: "error" | "success" | "info" | "warning";
|
|
5967
5965
|
id?: number | undefined;
|
|
5968
5966
|
}[] | undefined;
|
|
5969
5967
|
required?: boolean | undefined;
|
|
@@ -5984,7 +5982,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5984
5982
|
hint?: string | undefined;
|
|
5985
5983
|
messages?: {
|
|
5986
5984
|
text: string;
|
|
5987
|
-
type: "
|
|
5985
|
+
type: "error" | "success" | "info" | "warning";
|
|
5988
5986
|
id?: number | undefined;
|
|
5989
5987
|
}[] | undefined;
|
|
5990
5988
|
required?: boolean | undefined;
|
|
@@ -6009,7 +6007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6009
6007
|
hint?: string | undefined;
|
|
6010
6008
|
messages?: {
|
|
6011
6009
|
text: string;
|
|
6012
|
-
type: "
|
|
6010
|
+
type: "error" | "success" | "info" | "warning";
|
|
6013
6011
|
id?: number | undefined;
|
|
6014
6012
|
}[] | undefined;
|
|
6015
6013
|
required?: boolean | undefined;
|
|
@@ -6028,7 +6026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6028
6026
|
hint?: string | undefined;
|
|
6029
6027
|
messages?: {
|
|
6030
6028
|
text: string;
|
|
6031
|
-
type: "
|
|
6029
|
+
type: "error" | "success" | "info" | "warning";
|
|
6032
6030
|
id?: number | undefined;
|
|
6033
6031
|
}[] | undefined;
|
|
6034
6032
|
required?: boolean | undefined;
|
|
@@ -6048,7 +6046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6048
6046
|
hint?: string | undefined;
|
|
6049
6047
|
messages?: {
|
|
6050
6048
|
text: string;
|
|
6051
|
-
type: "
|
|
6049
|
+
type: "error" | "success" | "info" | "warning";
|
|
6052
6050
|
id?: number | undefined;
|
|
6053
6051
|
}[] | undefined;
|
|
6054
6052
|
required?: boolean | undefined;
|
|
@@ -6067,7 +6065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6067
6065
|
hint?: string | undefined;
|
|
6068
6066
|
messages?: {
|
|
6069
6067
|
text: string;
|
|
6070
|
-
type: "
|
|
6068
|
+
type: "error" | "success" | "info" | "warning";
|
|
6071
6069
|
id?: number | undefined;
|
|
6072
6070
|
}[] | undefined;
|
|
6073
6071
|
required?: boolean | undefined;
|
|
@@ -6089,7 +6087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6089
6087
|
hint?: string | undefined;
|
|
6090
6088
|
messages?: {
|
|
6091
6089
|
text: string;
|
|
6092
|
-
type: "
|
|
6090
|
+
type: "error" | "success" | "info" | "warning";
|
|
6093
6091
|
id?: number | undefined;
|
|
6094
6092
|
}[] | undefined;
|
|
6095
6093
|
required?: boolean | undefined;
|
|
@@ -6111,7 +6109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6111
6109
|
hint?: string | undefined;
|
|
6112
6110
|
messages?: {
|
|
6113
6111
|
text: string;
|
|
6114
|
-
type: "
|
|
6112
|
+
type: "error" | "success" | "info" | "warning";
|
|
6115
6113
|
id?: number | undefined;
|
|
6116
6114
|
}[] | undefined;
|
|
6117
6115
|
required?: boolean | undefined;
|
|
@@ -6130,7 +6128,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6130
6128
|
hint?: string | undefined;
|
|
6131
6129
|
messages?: {
|
|
6132
6130
|
text: string;
|
|
6133
|
-
type: "
|
|
6131
|
+
type: "error" | "success" | "info" | "warning";
|
|
6134
6132
|
id?: number | undefined;
|
|
6135
6133
|
}[] | undefined;
|
|
6136
6134
|
required?: boolean | undefined;
|
|
@@ -6155,7 +6153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6155
6153
|
hint?: string | undefined;
|
|
6156
6154
|
messages?: {
|
|
6157
6155
|
text: string;
|
|
6158
|
-
type: "
|
|
6156
|
+
type: "error" | "success" | "info" | "warning";
|
|
6159
6157
|
id?: number | undefined;
|
|
6160
6158
|
}[] | undefined;
|
|
6161
6159
|
required?: boolean | undefined;
|
|
@@ -6176,7 +6174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6176
6174
|
hint?: string | undefined;
|
|
6177
6175
|
messages?: {
|
|
6178
6176
|
text: string;
|
|
6179
|
-
type: "
|
|
6177
|
+
type: "error" | "success" | "info" | "warning";
|
|
6180
6178
|
id?: number | undefined;
|
|
6181
6179
|
}[] | undefined;
|
|
6182
6180
|
required?: boolean | undefined;
|
|
@@ -6197,7 +6195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6197
6195
|
hint?: string | undefined;
|
|
6198
6196
|
messages?: {
|
|
6199
6197
|
text: string;
|
|
6200
|
-
type: "
|
|
6198
|
+
type: "error" | "success" | "info" | "warning";
|
|
6201
6199
|
id?: number | undefined;
|
|
6202
6200
|
}[] | undefined;
|
|
6203
6201
|
required?: boolean | undefined;
|
|
@@ -6445,7 +6443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6445
6443
|
hint?: string | undefined;
|
|
6446
6444
|
messages?: {
|
|
6447
6445
|
text: string;
|
|
6448
|
-
type: "
|
|
6446
|
+
type: "error" | "success" | "info" | "warning";
|
|
6449
6447
|
id?: number | undefined;
|
|
6450
6448
|
}[] | undefined;
|
|
6451
6449
|
required?: boolean | undefined;
|
|
@@ -6463,7 +6461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6463
6461
|
hint?: string | undefined;
|
|
6464
6462
|
messages?: {
|
|
6465
6463
|
text: string;
|
|
6466
|
-
type: "
|
|
6464
|
+
type: "error" | "success" | "info" | "warning";
|
|
6467
6465
|
id?: number | undefined;
|
|
6468
6466
|
}[] | undefined;
|
|
6469
6467
|
required?: boolean | undefined;
|
|
@@ -6487,7 +6485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6487
6485
|
hint?: string | undefined;
|
|
6488
6486
|
messages?: {
|
|
6489
6487
|
text: string;
|
|
6490
|
-
type: "
|
|
6488
|
+
type: "error" | "success" | "info" | "warning";
|
|
6491
6489
|
id?: number | undefined;
|
|
6492
6490
|
}[] | undefined;
|
|
6493
6491
|
required?: boolean | undefined;
|
|
@@ -6511,7 +6509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6511
6509
|
hint?: string | undefined;
|
|
6512
6510
|
messages?: {
|
|
6513
6511
|
text: string;
|
|
6514
|
-
type: "
|
|
6512
|
+
type: "error" | "success" | "info" | "warning";
|
|
6515
6513
|
id?: number | undefined;
|
|
6516
6514
|
}[] | undefined;
|
|
6517
6515
|
required?: boolean | undefined;
|
|
@@ -6540,7 +6538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6540
6538
|
hint?: string | undefined;
|
|
6541
6539
|
messages?: {
|
|
6542
6540
|
text: string;
|
|
6543
|
-
type: "
|
|
6541
|
+
type: "error" | "success" | "info" | "warning";
|
|
6544
6542
|
id?: number | undefined;
|
|
6545
6543
|
}[] | undefined;
|
|
6546
6544
|
required?: boolean | undefined;
|
|
@@ -6555,7 +6553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6555
6553
|
hint?: string | undefined;
|
|
6556
6554
|
messages?: {
|
|
6557
6555
|
text: string;
|
|
6558
|
-
type: "
|
|
6556
|
+
type: "error" | "success" | "info" | "warning";
|
|
6559
6557
|
id?: number | undefined;
|
|
6560
6558
|
}[] | undefined;
|
|
6561
6559
|
required?: boolean | undefined;
|
|
@@ -6576,7 +6574,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6576
6574
|
hint?: string | undefined;
|
|
6577
6575
|
messages?: {
|
|
6578
6576
|
text: string;
|
|
6579
|
-
type: "
|
|
6577
|
+
type: "error" | "success" | "info" | "warning";
|
|
6580
6578
|
id?: number | undefined;
|
|
6581
6579
|
}[] | undefined;
|
|
6582
6580
|
required?: boolean | undefined;
|
|
@@ -6601,7 +6599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6601
6599
|
hint?: string | undefined;
|
|
6602
6600
|
messages?: {
|
|
6603
6601
|
text: string;
|
|
6604
|
-
type: "
|
|
6602
|
+
type: "error" | "success" | "info" | "warning";
|
|
6605
6603
|
id?: number | undefined;
|
|
6606
6604
|
}[] | undefined;
|
|
6607
6605
|
required?: boolean | undefined;
|
|
@@ -6620,7 +6618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6620
6618
|
hint?: string | undefined;
|
|
6621
6619
|
messages?: {
|
|
6622
6620
|
text: string;
|
|
6623
|
-
type: "
|
|
6621
|
+
type: "error" | "success" | "info" | "warning";
|
|
6624
6622
|
id?: number | undefined;
|
|
6625
6623
|
}[] | undefined;
|
|
6626
6624
|
required?: boolean | undefined;
|
|
@@ -6640,7 +6638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6640
6638
|
hint?: string | undefined;
|
|
6641
6639
|
messages?: {
|
|
6642
6640
|
text: string;
|
|
6643
|
-
type: "
|
|
6641
|
+
type: "error" | "success" | "info" | "warning";
|
|
6644
6642
|
id?: number | undefined;
|
|
6645
6643
|
}[] | undefined;
|
|
6646
6644
|
required?: boolean | undefined;
|
|
@@ -6659,7 +6657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6659
6657
|
hint?: string | undefined;
|
|
6660
6658
|
messages?: {
|
|
6661
6659
|
text: string;
|
|
6662
|
-
type: "
|
|
6660
|
+
type: "error" | "success" | "info" | "warning";
|
|
6663
6661
|
id?: number | undefined;
|
|
6664
6662
|
}[] | undefined;
|
|
6665
6663
|
required?: boolean | undefined;
|
|
@@ -6681,7 +6679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6681
6679
|
hint?: string | undefined;
|
|
6682
6680
|
messages?: {
|
|
6683
6681
|
text: string;
|
|
6684
|
-
type: "
|
|
6682
|
+
type: "error" | "success" | "info" | "warning";
|
|
6685
6683
|
id?: number | undefined;
|
|
6686
6684
|
}[] | undefined;
|
|
6687
6685
|
required?: boolean | undefined;
|
|
@@ -6703,7 +6701,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6703
6701
|
hint?: string | undefined;
|
|
6704
6702
|
messages?: {
|
|
6705
6703
|
text: string;
|
|
6706
|
-
type: "
|
|
6704
|
+
type: "error" | "success" | "info" | "warning";
|
|
6707
6705
|
id?: number | undefined;
|
|
6708
6706
|
}[] | undefined;
|
|
6709
6707
|
required?: boolean | undefined;
|
|
@@ -6722,7 +6720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6722
6720
|
hint?: string | undefined;
|
|
6723
6721
|
messages?: {
|
|
6724
6722
|
text: string;
|
|
6725
|
-
type: "
|
|
6723
|
+
type: "error" | "success" | "info" | "warning";
|
|
6726
6724
|
id?: number | undefined;
|
|
6727
6725
|
}[] | undefined;
|
|
6728
6726
|
required?: boolean | undefined;
|
|
@@ -6747,7 +6745,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6747
6745
|
hint?: string | undefined;
|
|
6748
6746
|
messages?: {
|
|
6749
6747
|
text: string;
|
|
6750
|
-
type: "
|
|
6748
|
+
type: "error" | "success" | "info" | "warning";
|
|
6751
6749
|
id?: number | undefined;
|
|
6752
6750
|
}[] | undefined;
|
|
6753
6751
|
required?: boolean | undefined;
|
|
@@ -6768,7 +6766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6768
6766
|
hint?: string | undefined;
|
|
6769
6767
|
messages?: {
|
|
6770
6768
|
text: string;
|
|
6771
|
-
type: "
|
|
6769
|
+
type: "error" | "success" | "info" | "warning";
|
|
6772
6770
|
id?: number | undefined;
|
|
6773
6771
|
}[] | undefined;
|
|
6774
6772
|
required?: boolean | undefined;
|
|
@@ -6789,7 +6787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6789
6787
|
hint?: string | undefined;
|
|
6790
6788
|
messages?: {
|
|
6791
6789
|
text: string;
|
|
6792
|
-
type: "
|
|
6790
|
+
type: "error" | "success" | "info" | "warning";
|
|
6793
6791
|
id?: number | undefined;
|
|
6794
6792
|
}[] | undefined;
|
|
6795
6793
|
required?: boolean | undefined;
|
|
@@ -7043,7 +7041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7043
7041
|
hint?: string | undefined;
|
|
7044
7042
|
messages?: {
|
|
7045
7043
|
text: string;
|
|
7046
|
-
type: "
|
|
7044
|
+
type: "error" | "success" | "info" | "warning";
|
|
7047
7045
|
id?: number | undefined;
|
|
7048
7046
|
}[] | undefined;
|
|
7049
7047
|
required?: boolean | undefined;
|
|
@@ -7061,7 +7059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7061
7059
|
hint?: string | undefined;
|
|
7062
7060
|
messages?: {
|
|
7063
7061
|
text: string;
|
|
7064
|
-
type: "
|
|
7062
|
+
type: "error" | "success" | "info" | "warning";
|
|
7065
7063
|
id?: number | undefined;
|
|
7066
7064
|
}[] | undefined;
|
|
7067
7065
|
required?: boolean | undefined;
|
|
@@ -7085,7 +7083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7085
7083
|
hint?: string | undefined;
|
|
7086
7084
|
messages?: {
|
|
7087
7085
|
text: string;
|
|
7088
|
-
type: "
|
|
7086
|
+
type: "error" | "success" | "info" | "warning";
|
|
7089
7087
|
id?: number | undefined;
|
|
7090
7088
|
}[] | undefined;
|
|
7091
7089
|
required?: boolean | undefined;
|
|
@@ -7109,7 +7107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7109
7107
|
hint?: string | undefined;
|
|
7110
7108
|
messages?: {
|
|
7111
7109
|
text: string;
|
|
7112
|
-
type: "
|
|
7110
|
+
type: "error" | "success" | "info" | "warning";
|
|
7113
7111
|
id?: number | undefined;
|
|
7114
7112
|
}[] | undefined;
|
|
7115
7113
|
required?: boolean | undefined;
|
|
@@ -7134,7 +7132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7134
7132
|
hint?: string | undefined;
|
|
7135
7133
|
messages?: {
|
|
7136
7134
|
text: string;
|
|
7137
|
-
type: "
|
|
7135
|
+
type: "error" | "success" | "info" | "warning";
|
|
7138
7136
|
id?: number | undefined;
|
|
7139
7137
|
}[] | undefined;
|
|
7140
7138
|
required?: boolean | undefined;
|
|
@@ -7149,7 +7147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7149
7147
|
hint?: string | undefined;
|
|
7150
7148
|
messages?: {
|
|
7151
7149
|
text: string;
|
|
7152
|
-
type: "
|
|
7150
|
+
type: "error" | "success" | "info" | "warning";
|
|
7153
7151
|
id?: number | undefined;
|
|
7154
7152
|
}[] | undefined;
|
|
7155
7153
|
required?: boolean | undefined;
|
|
@@ -7170,7 +7168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7170
7168
|
hint?: string | undefined;
|
|
7171
7169
|
messages?: {
|
|
7172
7170
|
text: string;
|
|
7173
|
-
type: "
|
|
7171
|
+
type: "error" | "success" | "info" | "warning";
|
|
7174
7172
|
id?: number | undefined;
|
|
7175
7173
|
}[] | undefined;
|
|
7176
7174
|
required?: boolean | undefined;
|
|
@@ -7195,7 +7193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7195
7193
|
hint?: string | undefined;
|
|
7196
7194
|
messages?: {
|
|
7197
7195
|
text: string;
|
|
7198
|
-
type: "
|
|
7196
|
+
type: "error" | "success" | "info" | "warning";
|
|
7199
7197
|
id?: number | undefined;
|
|
7200
7198
|
}[] | undefined;
|
|
7201
7199
|
required?: boolean | undefined;
|
|
@@ -7214,7 +7212,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7214
7212
|
hint?: string | undefined;
|
|
7215
7213
|
messages?: {
|
|
7216
7214
|
text: string;
|
|
7217
|
-
type: "
|
|
7215
|
+
type: "error" | "success" | "info" | "warning";
|
|
7218
7216
|
id?: number | undefined;
|
|
7219
7217
|
}[] | undefined;
|
|
7220
7218
|
required?: boolean | undefined;
|
|
@@ -7234,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7234
7232
|
hint?: string | undefined;
|
|
7235
7233
|
messages?: {
|
|
7236
7234
|
text: string;
|
|
7237
|
-
type: "
|
|
7235
|
+
type: "error" | "success" | "info" | "warning";
|
|
7238
7236
|
id?: number | undefined;
|
|
7239
7237
|
}[] | undefined;
|
|
7240
7238
|
required?: boolean | undefined;
|
|
@@ -7253,7 +7251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7253
7251
|
hint?: string | undefined;
|
|
7254
7252
|
messages?: {
|
|
7255
7253
|
text: string;
|
|
7256
|
-
type: "
|
|
7254
|
+
type: "error" | "success" | "info" | "warning";
|
|
7257
7255
|
id?: number | undefined;
|
|
7258
7256
|
}[] | undefined;
|
|
7259
7257
|
required?: boolean | undefined;
|
|
@@ -7275,7 +7273,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7275
7273
|
hint?: string | undefined;
|
|
7276
7274
|
messages?: {
|
|
7277
7275
|
text: string;
|
|
7278
|
-
type: "
|
|
7276
|
+
type: "error" | "success" | "info" | "warning";
|
|
7279
7277
|
id?: number | undefined;
|
|
7280
7278
|
}[] | undefined;
|
|
7281
7279
|
required?: boolean | undefined;
|
|
@@ -7297,7 +7295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7297
7295
|
hint?: string | undefined;
|
|
7298
7296
|
messages?: {
|
|
7299
7297
|
text: string;
|
|
7300
|
-
type: "
|
|
7298
|
+
type: "error" | "success" | "info" | "warning";
|
|
7301
7299
|
id?: number | undefined;
|
|
7302
7300
|
}[] | undefined;
|
|
7303
7301
|
required?: boolean | undefined;
|
|
@@ -7316,7 +7314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7316
7314
|
hint?: string | undefined;
|
|
7317
7315
|
messages?: {
|
|
7318
7316
|
text: string;
|
|
7319
|
-
type: "
|
|
7317
|
+
type: "error" | "success" | "info" | "warning";
|
|
7320
7318
|
id?: number | undefined;
|
|
7321
7319
|
}[] | undefined;
|
|
7322
7320
|
required?: boolean | undefined;
|
|
@@ -7341,7 +7339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7341
7339
|
hint?: string | undefined;
|
|
7342
7340
|
messages?: {
|
|
7343
7341
|
text: string;
|
|
7344
|
-
type: "
|
|
7342
|
+
type: "error" | "success" | "info" | "warning";
|
|
7345
7343
|
id?: number | undefined;
|
|
7346
7344
|
}[] | undefined;
|
|
7347
7345
|
required?: boolean | undefined;
|
|
@@ -7362,7 +7360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7362
7360
|
hint?: string | undefined;
|
|
7363
7361
|
messages?: {
|
|
7364
7362
|
text: string;
|
|
7365
|
-
type: "
|
|
7363
|
+
type: "error" | "success" | "info" | "warning";
|
|
7366
7364
|
id?: number | undefined;
|
|
7367
7365
|
}[] | undefined;
|
|
7368
7366
|
required?: boolean | undefined;
|
|
@@ -7383,7 +7381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7383
7381
|
hint?: string | undefined;
|
|
7384
7382
|
messages?: {
|
|
7385
7383
|
text: string;
|
|
7386
|
-
type: "
|
|
7384
|
+
type: "error" | "success" | "info" | "warning";
|
|
7387
7385
|
id?: number | undefined;
|
|
7388
7386
|
}[] | undefined;
|
|
7389
7387
|
required?: boolean | undefined;
|
|
@@ -7614,7 +7612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7614
7612
|
hint?: string | undefined;
|
|
7615
7613
|
messages?: {
|
|
7616
7614
|
text: string;
|
|
7617
|
-
type: "
|
|
7615
|
+
type: "error" | "success" | "info" | "warning";
|
|
7618
7616
|
id?: number | undefined;
|
|
7619
7617
|
}[] | undefined;
|
|
7620
7618
|
required?: boolean | undefined;
|
|
@@ -7632,7 +7630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7632
7630
|
hint?: string | undefined;
|
|
7633
7631
|
messages?: {
|
|
7634
7632
|
text: string;
|
|
7635
|
-
type: "
|
|
7633
|
+
type: "error" | "success" | "info" | "warning";
|
|
7636
7634
|
id?: number | undefined;
|
|
7637
7635
|
}[] | undefined;
|
|
7638
7636
|
required?: boolean | undefined;
|
|
@@ -7656,7 +7654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7656
7654
|
hint?: string | undefined;
|
|
7657
7655
|
messages?: {
|
|
7658
7656
|
text: string;
|
|
7659
|
-
type: "
|
|
7657
|
+
type: "error" | "success" | "info" | "warning";
|
|
7660
7658
|
id?: number | undefined;
|
|
7661
7659
|
}[] | undefined;
|
|
7662
7660
|
required?: boolean | undefined;
|
|
@@ -7680,7 +7678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7680
7678
|
hint?: string | undefined;
|
|
7681
7679
|
messages?: {
|
|
7682
7680
|
text: string;
|
|
7683
|
-
type: "
|
|
7681
|
+
type: "error" | "success" | "info" | "warning";
|
|
7684
7682
|
id?: number | undefined;
|
|
7685
7683
|
}[] | undefined;
|
|
7686
7684
|
required?: boolean | undefined;
|
|
@@ -7709,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7709
7707
|
hint?: string | undefined;
|
|
7710
7708
|
messages?: {
|
|
7711
7709
|
text: string;
|
|
7712
|
-
type: "
|
|
7710
|
+
type: "error" | "success" | "info" | "warning";
|
|
7713
7711
|
id?: number | undefined;
|
|
7714
7712
|
}[] | undefined;
|
|
7715
7713
|
required?: boolean | undefined;
|
|
@@ -7724,7 +7722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7724
7722
|
hint?: string | undefined;
|
|
7725
7723
|
messages?: {
|
|
7726
7724
|
text: string;
|
|
7727
|
-
type: "
|
|
7725
|
+
type: "error" | "success" | "info" | "warning";
|
|
7728
7726
|
id?: number | undefined;
|
|
7729
7727
|
}[] | undefined;
|
|
7730
7728
|
required?: boolean | undefined;
|
|
@@ -7745,7 +7743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7745
7743
|
hint?: string | undefined;
|
|
7746
7744
|
messages?: {
|
|
7747
7745
|
text: string;
|
|
7748
|
-
type: "
|
|
7746
|
+
type: "error" | "success" | "info" | "warning";
|
|
7749
7747
|
id?: number | undefined;
|
|
7750
7748
|
}[] | undefined;
|
|
7751
7749
|
required?: boolean | undefined;
|
|
@@ -7770,7 +7768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7770
7768
|
hint?: string | undefined;
|
|
7771
7769
|
messages?: {
|
|
7772
7770
|
text: string;
|
|
7773
|
-
type: "
|
|
7771
|
+
type: "error" | "success" | "info" | "warning";
|
|
7774
7772
|
id?: number | undefined;
|
|
7775
7773
|
}[] | undefined;
|
|
7776
7774
|
required?: boolean | undefined;
|
|
@@ -7789,7 +7787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7789
7787
|
hint?: string | undefined;
|
|
7790
7788
|
messages?: {
|
|
7791
7789
|
text: string;
|
|
7792
|
-
type: "
|
|
7790
|
+
type: "error" | "success" | "info" | "warning";
|
|
7793
7791
|
id?: number | undefined;
|
|
7794
7792
|
}[] | undefined;
|
|
7795
7793
|
required?: boolean | undefined;
|
|
@@ -7809,7 +7807,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7809
7807
|
hint?: string | undefined;
|
|
7810
7808
|
messages?: {
|
|
7811
7809
|
text: string;
|
|
7812
|
-
type: "
|
|
7810
|
+
type: "error" | "success" | "info" | "warning";
|
|
7813
7811
|
id?: number | undefined;
|
|
7814
7812
|
}[] | undefined;
|
|
7815
7813
|
required?: boolean | undefined;
|
|
@@ -7828,7 +7826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7828
7826
|
hint?: string | undefined;
|
|
7829
7827
|
messages?: {
|
|
7830
7828
|
text: string;
|
|
7831
|
-
type: "
|
|
7829
|
+
type: "error" | "success" | "info" | "warning";
|
|
7832
7830
|
id?: number | undefined;
|
|
7833
7831
|
}[] | undefined;
|
|
7834
7832
|
required?: boolean | undefined;
|
|
@@ -7850,7 +7848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7850
7848
|
hint?: string | undefined;
|
|
7851
7849
|
messages?: {
|
|
7852
7850
|
text: string;
|
|
7853
|
-
type: "
|
|
7851
|
+
type: "error" | "success" | "info" | "warning";
|
|
7854
7852
|
id?: number | undefined;
|
|
7855
7853
|
}[] | undefined;
|
|
7856
7854
|
required?: boolean | undefined;
|
|
@@ -7872,7 +7870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7872
7870
|
hint?: string | undefined;
|
|
7873
7871
|
messages?: {
|
|
7874
7872
|
text: string;
|
|
7875
|
-
type: "
|
|
7873
|
+
type: "error" | "success" | "info" | "warning";
|
|
7876
7874
|
id?: number | undefined;
|
|
7877
7875
|
}[] | undefined;
|
|
7878
7876
|
required?: boolean | undefined;
|
|
@@ -7891,7 +7889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7891
7889
|
hint?: string | undefined;
|
|
7892
7890
|
messages?: {
|
|
7893
7891
|
text: string;
|
|
7894
|
-
type: "
|
|
7892
|
+
type: "error" | "success" | "info" | "warning";
|
|
7895
7893
|
id?: number | undefined;
|
|
7896
7894
|
}[] | undefined;
|
|
7897
7895
|
required?: boolean | undefined;
|
|
@@ -7916,7 +7914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7916
7914
|
hint?: string | undefined;
|
|
7917
7915
|
messages?: {
|
|
7918
7916
|
text: string;
|
|
7919
|
-
type: "
|
|
7917
|
+
type: "error" | "success" | "info" | "warning";
|
|
7920
7918
|
id?: number | undefined;
|
|
7921
7919
|
}[] | undefined;
|
|
7922
7920
|
required?: boolean | undefined;
|
|
@@ -7937,7 +7935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7937
7935
|
hint?: string | undefined;
|
|
7938
7936
|
messages?: {
|
|
7939
7937
|
text: string;
|
|
7940
|
-
type: "
|
|
7938
|
+
type: "error" | "success" | "info" | "warning";
|
|
7941
7939
|
id?: number | undefined;
|
|
7942
7940
|
}[] | undefined;
|
|
7943
7941
|
required?: boolean | undefined;
|
|
@@ -7958,7 +7956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7958
7956
|
hint?: string | undefined;
|
|
7959
7957
|
messages?: {
|
|
7960
7958
|
text: string;
|
|
7961
|
-
type: "
|
|
7959
|
+
type: "error" | "success" | "info" | "warning";
|
|
7962
7960
|
id?: number | undefined;
|
|
7963
7961
|
}[] | undefined;
|
|
7964
7962
|
required?: boolean | undefined;
|
|
@@ -8191,7 +8189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8191
8189
|
hint?: string | undefined;
|
|
8192
8190
|
messages?: {
|
|
8193
8191
|
text: string;
|
|
8194
|
-
type: "
|
|
8192
|
+
type: "error" | "success" | "info" | "warning";
|
|
8195
8193
|
id?: number | undefined;
|
|
8196
8194
|
}[] | undefined;
|
|
8197
8195
|
required?: boolean | undefined;
|
|
@@ -8209,7 +8207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8209
8207
|
hint?: string | undefined;
|
|
8210
8208
|
messages?: {
|
|
8211
8209
|
text: string;
|
|
8212
|
-
type: "
|
|
8210
|
+
type: "error" | "success" | "info" | "warning";
|
|
8213
8211
|
id?: number | undefined;
|
|
8214
8212
|
}[] | undefined;
|
|
8215
8213
|
required?: boolean | undefined;
|
|
@@ -8233,7 +8231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8233
8231
|
hint?: string | undefined;
|
|
8234
8232
|
messages?: {
|
|
8235
8233
|
text: string;
|
|
8236
|
-
type: "
|
|
8234
|
+
type: "error" | "success" | "info" | "warning";
|
|
8237
8235
|
id?: number | undefined;
|
|
8238
8236
|
}[] | undefined;
|
|
8239
8237
|
required?: boolean | undefined;
|
|
@@ -8257,7 +8255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8257
8255
|
hint?: string | undefined;
|
|
8258
8256
|
messages?: {
|
|
8259
8257
|
text: string;
|
|
8260
|
-
type: "
|
|
8258
|
+
type: "error" | "success" | "info" | "warning";
|
|
8261
8259
|
id?: number | undefined;
|
|
8262
8260
|
}[] | undefined;
|
|
8263
8261
|
required?: boolean | undefined;
|
|
@@ -8282,7 +8280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8282
8280
|
hint?: string | undefined;
|
|
8283
8281
|
messages?: {
|
|
8284
8282
|
text: string;
|
|
8285
|
-
type: "
|
|
8283
|
+
type: "error" | "success" | "info" | "warning";
|
|
8286
8284
|
id?: number | undefined;
|
|
8287
8285
|
}[] | undefined;
|
|
8288
8286
|
required?: boolean | undefined;
|
|
@@ -8297,7 +8295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8297
8295
|
hint?: string | undefined;
|
|
8298
8296
|
messages?: {
|
|
8299
8297
|
text: string;
|
|
8300
|
-
type: "
|
|
8298
|
+
type: "error" | "success" | "info" | "warning";
|
|
8301
8299
|
id?: number | undefined;
|
|
8302
8300
|
}[] | undefined;
|
|
8303
8301
|
required?: boolean | undefined;
|
|
@@ -8318,7 +8316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8318
8316
|
hint?: string | undefined;
|
|
8319
8317
|
messages?: {
|
|
8320
8318
|
text: string;
|
|
8321
|
-
type: "
|
|
8319
|
+
type: "error" | "success" | "info" | "warning";
|
|
8322
8320
|
id?: number | undefined;
|
|
8323
8321
|
}[] | undefined;
|
|
8324
8322
|
required?: boolean | undefined;
|
|
@@ -8343,7 +8341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8343
8341
|
hint?: string | undefined;
|
|
8344
8342
|
messages?: {
|
|
8345
8343
|
text: string;
|
|
8346
|
-
type: "
|
|
8344
|
+
type: "error" | "success" | "info" | "warning";
|
|
8347
8345
|
id?: number | undefined;
|
|
8348
8346
|
}[] | undefined;
|
|
8349
8347
|
required?: boolean | undefined;
|
|
@@ -8362,7 +8360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8362
8360
|
hint?: string | undefined;
|
|
8363
8361
|
messages?: {
|
|
8364
8362
|
text: string;
|
|
8365
|
-
type: "
|
|
8363
|
+
type: "error" | "success" | "info" | "warning";
|
|
8366
8364
|
id?: number | undefined;
|
|
8367
8365
|
}[] | undefined;
|
|
8368
8366
|
required?: boolean | undefined;
|
|
@@ -8382,7 +8380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8382
8380
|
hint?: string | undefined;
|
|
8383
8381
|
messages?: {
|
|
8384
8382
|
text: string;
|
|
8385
|
-
type: "
|
|
8383
|
+
type: "error" | "success" | "info" | "warning";
|
|
8386
8384
|
id?: number | undefined;
|
|
8387
8385
|
}[] | undefined;
|
|
8388
8386
|
required?: boolean | undefined;
|
|
@@ -8401,7 +8399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8401
8399
|
hint?: string | undefined;
|
|
8402
8400
|
messages?: {
|
|
8403
8401
|
text: string;
|
|
8404
|
-
type: "
|
|
8402
|
+
type: "error" | "success" | "info" | "warning";
|
|
8405
8403
|
id?: number | undefined;
|
|
8406
8404
|
}[] | undefined;
|
|
8407
8405
|
required?: boolean | undefined;
|
|
@@ -8423,7 +8421,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8423
8421
|
hint?: string | undefined;
|
|
8424
8422
|
messages?: {
|
|
8425
8423
|
text: string;
|
|
8426
|
-
type: "
|
|
8424
|
+
type: "error" | "success" | "info" | "warning";
|
|
8427
8425
|
id?: number | undefined;
|
|
8428
8426
|
}[] | undefined;
|
|
8429
8427
|
required?: boolean | undefined;
|
|
@@ -8445,7 +8443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8445
8443
|
hint?: string | undefined;
|
|
8446
8444
|
messages?: {
|
|
8447
8445
|
text: string;
|
|
8448
|
-
type: "
|
|
8446
|
+
type: "error" | "success" | "info" | "warning";
|
|
8449
8447
|
id?: number | undefined;
|
|
8450
8448
|
}[] | undefined;
|
|
8451
8449
|
required?: boolean | undefined;
|
|
@@ -8464,7 +8462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8464
8462
|
hint?: string | undefined;
|
|
8465
8463
|
messages?: {
|
|
8466
8464
|
text: string;
|
|
8467
|
-
type: "
|
|
8465
|
+
type: "error" | "success" | "info" | "warning";
|
|
8468
8466
|
id?: number | undefined;
|
|
8469
8467
|
}[] | undefined;
|
|
8470
8468
|
required?: boolean | undefined;
|
|
@@ -8489,7 +8487,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8489
8487
|
hint?: string | undefined;
|
|
8490
8488
|
messages?: {
|
|
8491
8489
|
text: string;
|
|
8492
|
-
type: "
|
|
8490
|
+
type: "error" | "success" | "info" | "warning";
|
|
8493
8491
|
id?: number | undefined;
|
|
8494
8492
|
}[] | undefined;
|
|
8495
8493
|
required?: boolean | undefined;
|
|
@@ -8510,7 +8508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8510
8508
|
hint?: string | undefined;
|
|
8511
8509
|
messages?: {
|
|
8512
8510
|
text: string;
|
|
8513
|
-
type: "
|
|
8511
|
+
type: "error" | "success" | "info" | "warning";
|
|
8514
8512
|
id?: number | undefined;
|
|
8515
8513
|
}[] | undefined;
|
|
8516
8514
|
required?: boolean | undefined;
|
|
@@ -8531,7 +8529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8531
8529
|
hint?: string | undefined;
|
|
8532
8530
|
messages?: {
|
|
8533
8531
|
text: string;
|
|
8534
|
-
type: "
|
|
8532
|
+
type: "error" | "success" | "info" | "warning";
|
|
8535
8533
|
id?: number | undefined;
|
|
8536
8534
|
}[] | undefined;
|
|
8537
8535
|
required?: boolean | undefined;
|
|
@@ -8762,7 +8760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8762
8760
|
hint?: string | undefined;
|
|
8763
8761
|
messages?: {
|
|
8764
8762
|
text: string;
|
|
8765
|
-
type: "
|
|
8763
|
+
type: "error" | "success" | "info" | "warning";
|
|
8766
8764
|
id?: number | undefined;
|
|
8767
8765
|
}[] | undefined;
|
|
8768
8766
|
required?: boolean | undefined;
|
|
@@ -8780,7 +8778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8780
8778
|
hint?: string | undefined;
|
|
8781
8779
|
messages?: {
|
|
8782
8780
|
text: string;
|
|
8783
|
-
type: "
|
|
8781
|
+
type: "error" | "success" | "info" | "warning";
|
|
8784
8782
|
id?: number | undefined;
|
|
8785
8783
|
}[] | undefined;
|
|
8786
8784
|
required?: boolean | undefined;
|
|
@@ -8804,7 +8802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8804
8802
|
hint?: string | undefined;
|
|
8805
8803
|
messages?: {
|
|
8806
8804
|
text: string;
|
|
8807
|
-
type: "
|
|
8805
|
+
type: "error" | "success" | "info" | "warning";
|
|
8808
8806
|
id?: number | undefined;
|
|
8809
8807
|
}[] | undefined;
|
|
8810
8808
|
required?: boolean | undefined;
|
|
@@ -8828,7 +8826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8828
8826
|
hint?: string | undefined;
|
|
8829
8827
|
messages?: {
|
|
8830
8828
|
text: string;
|
|
8831
|
-
type: "
|
|
8829
|
+
type: "error" | "success" | "info" | "warning";
|
|
8832
8830
|
id?: number | undefined;
|
|
8833
8831
|
}[] | undefined;
|
|
8834
8832
|
required?: boolean | undefined;
|
|
@@ -8857,7 +8855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8857
8855
|
hint?: string | undefined;
|
|
8858
8856
|
messages?: {
|
|
8859
8857
|
text: string;
|
|
8860
|
-
type: "
|
|
8858
|
+
type: "error" | "success" | "info" | "warning";
|
|
8861
8859
|
id?: number | undefined;
|
|
8862
8860
|
}[] | undefined;
|
|
8863
8861
|
required?: boolean | undefined;
|
|
@@ -8872,7 +8870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8872
8870
|
hint?: string | undefined;
|
|
8873
8871
|
messages?: {
|
|
8874
8872
|
text: string;
|
|
8875
|
-
type: "
|
|
8873
|
+
type: "error" | "success" | "info" | "warning";
|
|
8876
8874
|
id?: number | undefined;
|
|
8877
8875
|
}[] | undefined;
|
|
8878
8876
|
required?: boolean | undefined;
|
|
@@ -8893,7 +8891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8893
8891
|
hint?: string | undefined;
|
|
8894
8892
|
messages?: {
|
|
8895
8893
|
text: string;
|
|
8896
|
-
type: "
|
|
8894
|
+
type: "error" | "success" | "info" | "warning";
|
|
8897
8895
|
id?: number | undefined;
|
|
8898
8896
|
}[] | undefined;
|
|
8899
8897
|
required?: boolean | undefined;
|
|
@@ -8918,7 +8916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8918
8916
|
hint?: string | undefined;
|
|
8919
8917
|
messages?: {
|
|
8920
8918
|
text: string;
|
|
8921
|
-
type: "
|
|
8919
|
+
type: "error" | "success" | "info" | "warning";
|
|
8922
8920
|
id?: number | undefined;
|
|
8923
8921
|
}[] | undefined;
|
|
8924
8922
|
required?: boolean | undefined;
|
|
@@ -8937,7 +8935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8937
8935
|
hint?: string | undefined;
|
|
8938
8936
|
messages?: {
|
|
8939
8937
|
text: string;
|
|
8940
|
-
type: "
|
|
8938
|
+
type: "error" | "success" | "info" | "warning";
|
|
8941
8939
|
id?: number | undefined;
|
|
8942
8940
|
}[] | undefined;
|
|
8943
8941
|
required?: boolean | undefined;
|
|
@@ -8957,7 +8955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8957
8955
|
hint?: string | undefined;
|
|
8958
8956
|
messages?: {
|
|
8959
8957
|
text: string;
|
|
8960
|
-
type: "
|
|
8958
|
+
type: "error" | "success" | "info" | "warning";
|
|
8961
8959
|
id?: number | undefined;
|
|
8962
8960
|
}[] | undefined;
|
|
8963
8961
|
required?: boolean | undefined;
|
|
@@ -8976,7 +8974,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8976
8974
|
hint?: string | undefined;
|
|
8977
8975
|
messages?: {
|
|
8978
8976
|
text: string;
|
|
8979
|
-
type: "
|
|
8977
|
+
type: "error" | "success" | "info" | "warning";
|
|
8980
8978
|
id?: number | undefined;
|
|
8981
8979
|
}[] | undefined;
|
|
8982
8980
|
required?: boolean | undefined;
|
|
@@ -8998,7 +8996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8998
8996
|
hint?: string | undefined;
|
|
8999
8997
|
messages?: {
|
|
9000
8998
|
text: string;
|
|
9001
|
-
type: "
|
|
8999
|
+
type: "error" | "success" | "info" | "warning";
|
|
9002
9000
|
id?: number | undefined;
|
|
9003
9001
|
}[] | undefined;
|
|
9004
9002
|
required?: boolean | undefined;
|
|
@@ -9020,7 +9018,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9020
9018
|
hint?: string | undefined;
|
|
9021
9019
|
messages?: {
|
|
9022
9020
|
text: string;
|
|
9023
|
-
type: "
|
|
9021
|
+
type: "error" | "success" | "info" | "warning";
|
|
9024
9022
|
id?: number | undefined;
|
|
9025
9023
|
}[] | undefined;
|
|
9026
9024
|
required?: boolean | undefined;
|
|
@@ -9039,7 +9037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9039
9037
|
hint?: string | undefined;
|
|
9040
9038
|
messages?: {
|
|
9041
9039
|
text: string;
|
|
9042
|
-
type: "
|
|
9040
|
+
type: "error" | "success" | "info" | "warning";
|
|
9043
9041
|
id?: number | undefined;
|
|
9044
9042
|
}[] | undefined;
|
|
9045
9043
|
required?: boolean | undefined;
|
|
@@ -9064,7 +9062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9064
9062
|
hint?: string | undefined;
|
|
9065
9063
|
messages?: {
|
|
9066
9064
|
text: string;
|
|
9067
|
-
type: "
|
|
9065
|
+
type: "error" | "success" | "info" | "warning";
|
|
9068
9066
|
id?: number | undefined;
|
|
9069
9067
|
}[] | undefined;
|
|
9070
9068
|
required?: boolean | undefined;
|
|
@@ -9085,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9085
9083
|
hint?: string | undefined;
|
|
9086
9084
|
messages?: {
|
|
9087
9085
|
text: string;
|
|
9088
|
-
type: "
|
|
9086
|
+
type: "error" | "success" | "info" | "warning";
|
|
9089
9087
|
id?: number | undefined;
|
|
9090
9088
|
}[] | undefined;
|
|
9091
9089
|
required?: boolean | undefined;
|
|
@@ -9106,7 +9104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9106
9104
|
hint?: string | undefined;
|
|
9107
9105
|
messages?: {
|
|
9108
9106
|
text: string;
|
|
9109
|
-
type: "
|
|
9107
|
+
type: "error" | "success" | "info" | "warning";
|
|
9110
9108
|
id?: number | undefined;
|
|
9111
9109
|
}[] | undefined;
|
|
9112
9110
|
required?: boolean | undefined;
|
|
@@ -9336,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9336
9334
|
};
|
|
9337
9335
|
};
|
|
9338
9336
|
output: {
|
|
9339
|
-
prompt: "
|
|
9337
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9340
9338
|
language: string;
|
|
9341
9339
|
}[];
|
|
9342
9340
|
outputFormat: "json";
|
|
@@ -9374,7 +9372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9374
9372
|
$get: {
|
|
9375
9373
|
input: {
|
|
9376
9374
|
param: {
|
|
9377
|
-
prompt: "
|
|
9375
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9378
9376
|
language: string;
|
|
9379
9377
|
};
|
|
9380
9378
|
} & {
|
|
@@ -9396,7 +9394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9396
9394
|
$put: {
|
|
9397
9395
|
input: {
|
|
9398
9396
|
param: {
|
|
9399
|
-
prompt: "
|
|
9397
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9400
9398
|
language: string;
|
|
9401
9399
|
};
|
|
9402
9400
|
} & {
|
|
@@ -9420,7 +9418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9420
9418
|
$delete: {
|
|
9421
9419
|
input: {
|
|
9422
9420
|
param: {
|
|
9423
|
-
prompt: "
|
|
9421
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9424
9422
|
language: string;
|
|
9425
9423
|
};
|
|
9426
9424
|
} & {
|
|
@@ -10282,7 +10280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10282
10280
|
};
|
|
10283
10281
|
} | {
|
|
10284
10282
|
mode: "inline";
|
|
10285
|
-
status: "
|
|
10283
|
+
status: "error" | "success";
|
|
10286
10284
|
connection_id: string;
|
|
10287
10285
|
connection_name: string;
|
|
10288
10286
|
strategy: string;
|
|
@@ -10861,7 +10859,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10861
10859
|
log_type: string;
|
|
10862
10860
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10863
10861
|
actor: {
|
|
10864
|
-
type: "
|
|
10862
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10865
10863
|
id?: string | undefined;
|
|
10866
10864
|
email?: string | undefined;
|
|
10867
10865
|
org_id?: string | undefined;
|
|
@@ -11169,7 +11167,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11169
11167
|
created_at: string;
|
|
11170
11168
|
updated_at: string;
|
|
11171
11169
|
name: string;
|
|
11172
|
-
provider: "auth0" | "
|
|
11170
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11173
11171
|
connection: string;
|
|
11174
11172
|
enabled: boolean;
|
|
11175
11173
|
credentials: {
|
|
@@ -11201,7 +11199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11201
11199
|
created_at: string;
|
|
11202
11200
|
updated_at: string;
|
|
11203
11201
|
name: string;
|
|
11204
|
-
provider: "auth0" | "
|
|
11202
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11205
11203
|
connection: string;
|
|
11206
11204
|
enabled: boolean;
|
|
11207
11205
|
credentials: {
|
|
@@ -11227,7 +11225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11227
11225
|
} & {
|
|
11228
11226
|
json: {
|
|
11229
11227
|
name: string;
|
|
11230
|
-
provider: "auth0" | "
|
|
11228
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11231
11229
|
connection: string;
|
|
11232
11230
|
credentials: {
|
|
11233
11231
|
domain: string;
|
|
@@ -11244,7 +11242,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11244
11242
|
created_at: string;
|
|
11245
11243
|
updated_at: string;
|
|
11246
11244
|
name: string;
|
|
11247
|
-
provider: "auth0" | "
|
|
11245
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11248
11246
|
connection: string;
|
|
11249
11247
|
enabled: boolean;
|
|
11250
11248
|
credentials: {
|
|
@@ -11275,7 +11273,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11275
11273
|
json: {
|
|
11276
11274
|
id?: string | undefined;
|
|
11277
11275
|
name?: string | undefined;
|
|
11278
|
-
provider?: "auth0" | "
|
|
11276
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
11279
11277
|
connection?: string | undefined;
|
|
11280
11278
|
enabled?: boolean | undefined;
|
|
11281
11279
|
credentials?: {
|
|
@@ -11291,7 +11289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11291
11289
|
created_at: string;
|
|
11292
11290
|
updated_at: string;
|
|
11293
11291
|
name: string;
|
|
11294
|
-
provider: "auth0" | "
|
|
11292
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11295
11293
|
connection: string;
|
|
11296
11294
|
enabled: boolean;
|
|
11297
11295
|
credentials: {
|
|
@@ -11509,7 +11507,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11509
11507
|
};
|
|
11510
11508
|
};
|
|
11511
11509
|
output: {
|
|
11512
|
-
type: "
|
|
11510
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11513
11511
|
date: string;
|
|
11514
11512
|
isMobile: boolean;
|
|
11515
11513
|
log_id: string;
|
|
@@ -11548,7 +11546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11548
11546
|
limit: number;
|
|
11549
11547
|
length: number;
|
|
11550
11548
|
logs: {
|
|
11551
|
-
type: "
|
|
11549
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11552
11550
|
date: string;
|
|
11553
11551
|
isMobile: boolean;
|
|
11554
11552
|
log_id: string;
|
|
@@ -11602,7 +11600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11602
11600
|
};
|
|
11603
11601
|
};
|
|
11604
11602
|
output: {
|
|
11605
|
-
type: "
|
|
11603
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11606
11604
|
date: string;
|
|
11607
11605
|
isMobile: boolean;
|
|
11608
11606
|
log_id: string;
|
|
@@ -11757,7 +11755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11757
11755
|
audience?: string | undefined;
|
|
11758
11756
|
client_id?: string | undefined;
|
|
11759
11757
|
allow_any_organization?: string | undefined;
|
|
11760
|
-
subject_type?: "
|
|
11758
|
+
subject_type?: "user" | "client" | undefined;
|
|
11761
11759
|
};
|
|
11762
11760
|
} & {
|
|
11763
11761
|
header: {
|
|
@@ -11772,7 +11770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11772
11770
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11773
11771
|
allow_any_organization?: boolean | undefined;
|
|
11774
11772
|
is_system?: boolean | undefined;
|
|
11775
|
-
subject_type?: "
|
|
11773
|
+
subject_type?: "user" | "client" | undefined;
|
|
11776
11774
|
authorization_details_types?: string[] | undefined;
|
|
11777
11775
|
created_at?: string | undefined;
|
|
11778
11776
|
updated_at?: string | undefined;
|
|
@@ -11788,7 +11786,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11788
11786
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11789
11787
|
allow_any_organization?: boolean | undefined;
|
|
11790
11788
|
is_system?: boolean | undefined;
|
|
11791
|
-
subject_type?: "
|
|
11789
|
+
subject_type?: "user" | "client" | undefined;
|
|
11792
11790
|
authorization_details_types?: string[] | undefined;
|
|
11793
11791
|
created_at?: string | undefined;
|
|
11794
11792
|
updated_at?: string | undefined;
|
|
@@ -11819,7 +11817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11819
11817
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11820
11818
|
allow_any_organization?: boolean | undefined;
|
|
11821
11819
|
is_system?: boolean | undefined;
|
|
11822
|
-
subject_type?: "
|
|
11820
|
+
subject_type?: "user" | "client" | undefined;
|
|
11823
11821
|
authorization_details_types?: string[] | undefined;
|
|
11824
11822
|
created_at?: string | undefined;
|
|
11825
11823
|
updated_at?: string | undefined;
|
|
@@ -11864,7 +11862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11864
11862
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11865
11863
|
allow_any_organization?: boolean | undefined;
|
|
11866
11864
|
is_system?: boolean | undefined;
|
|
11867
|
-
subject_type?: "
|
|
11865
|
+
subject_type?: "user" | "client" | undefined;
|
|
11868
11866
|
authorization_details_types?: string[] | undefined;
|
|
11869
11867
|
};
|
|
11870
11868
|
};
|
|
@@ -11876,7 +11874,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11876
11874
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11877
11875
|
allow_any_organization?: boolean | undefined;
|
|
11878
11876
|
is_system?: boolean | undefined;
|
|
11879
|
-
subject_type?: "
|
|
11877
|
+
subject_type?: "user" | "client" | undefined;
|
|
11880
11878
|
authorization_details_types?: string[] | undefined;
|
|
11881
11879
|
created_at?: string | undefined;
|
|
11882
11880
|
updated_at?: string | undefined;
|
|
@@ -11900,7 +11898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11900
11898
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11901
11899
|
allow_any_organization?: boolean | undefined;
|
|
11902
11900
|
is_system?: boolean | undefined;
|
|
11903
|
-
subject_type?: "
|
|
11901
|
+
subject_type?: "user" | "client" | undefined;
|
|
11904
11902
|
authorization_details_types?: string[] | undefined;
|
|
11905
11903
|
};
|
|
11906
11904
|
};
|
|
@@ -11912,7 +11910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11912
11910
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11913
11911
|
allow_any_organization?: boolean | undefined;
|
|
11914
11912
|
is_system?: boolean | undefined;
|
|
11915
|
-
subject_type?: "
|
|
11913
|
+
subject_type?: "user" | "client" | undefined;
|
|
11916
11914
|
authorization_details_types?: string[] | undefined;
|
|
11917
11915
|
created_at?: string | undefined;
|
|
11918
11916
|
updated_at?: string | undefined;
|
|
@@ -11990,7 +11988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11990
11988
|
addons?: {
|
|
11991
11989
|
[x: string]: any;
|
|
11992
11990
|
} | undefined;
|
|
11993
|
-
token_endpoint_auth_method?: "
|
|
11991
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11994
11992
|
client_metadata?: {
|
|
11995
11993
|
[x: string]: string;
|
|
11996
11994
|
} | undefined;
|
|
@@ -12086,7 +12084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12086
12084
|
addons?: {
|
|
12087
12085
|
[x: string]: any;
|
|
12088
12086
|
} | undefined;
|
|
12089
|
-
token_endpoint_auth_method?: "
|
|
12087
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12090
12088
|
client_metadata?: {
|
|
12091
12089
|
[x: string]: string;
|
|
12092
12090
|
} | undefined;
|
|
@@ -12197,7 +12195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12197
12195
|
addons?: {
|
|
12198
12196
|
[x: string]: any;
|
|
12199
12197
|
} | undefined;
|
|
12200
|
-
token_endpoint_auth_method?: "
|
|
12198
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12201
12199
|
client_metadata?: {
|
|
12202
12200
|
[x: string]: string;
|
|
12203
12201
|
} | undefined;
|
|
@@ -12307,7 +12305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12307
12305
|
custom_login_page_preview?: string | undefined;
|
|
12308
12306
|
form_template?: string | undefined;
|
|
12309
12307
|
addons?: Record<string, any> | undefined;
|
|
12310
|
-
token_endpoint_auth_method?: "
|
|
12308
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12311
12309
|
client_metadata?: Record<string, string> | undefined;
|
|
12312
12310
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12313
12311
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12387,7 +12385,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12387
12385
|
addons?: {
|
|
12388
12386
|
[x: string]: any;
|
|
12389
12387
|
} | undefined;
|
|
12390
|
-
token_endpoint_auth_method?: "
|
|
12388
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12391
12389
|
client_metadata?: {
|
|
12392
12390
|
[x: string]: string;
|
|
12393
12391
|
} | undefined;
|
|
@@ -12476,7 +12474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12476
12474
|
custom_login_page_preview?: string | undefined;
|
|
12477
12475
|
form_template?: string | undefined;
|
|
12478
12476
|
addons?: Record<string, any> | undefined;
|
|
12479
|
-
token_endpoint_auth_method?: "
|
|
12477
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12480
12478
|
client_metadata?: Record<string, string> | undefined;
|
|
12481
12479
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12482
12480
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12556,7 +12554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12556
12554
|
addons?: {
|
|
12557
12555
|
[x: string]: any;
|
|
12558
12556
|
} | undefined;
|
|
12559
|
-
token_endpoint_auth_method?: "
|
|
12557
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12560
12558
|
client_metadata?: {
|
|
12561
12559
|
[x: string]: string;
|
|
12562
12560
|
} | undefined;
|
|
@@ -13820,7 +13818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13820
13818
|
};
|
|
13821
13819
|
};
|
|
13822
13820
|
output: {
|
|
13823
|
-
type: "
|
|
13821
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13824
13822
|
date: string;
|
|
13825
13823
|
isMobile: boolean;
|
|
13826
13824
|
log_id: string;
|
|
@@ -13859,7 +13857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13859
13857
|
limit: number;
|
|
13860
13858
|
length: number;
|
|
13861
13859
|
logs: {
|
|
13862
|
-
type: "
|
|
13860
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13863
13861
|
date: string;
|
|
13864
13862
|
isMobile: boolean;
|
|
13865
13863
|
log_id: string;
|
|
@@ -14699,7 +14697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14699
14697
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14700
14698
|
custom_domain_id: string;
|
|
14701
14699
|
primary: boolean;
|
|
14702
|
-
status: "
|
|
14700
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14703
14701
|
verification_method?: "txt" | undefined;
|
|
14704
14702
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14705
14703
|
domain_metadata?: {
|
|
@@ -14740,7 +14738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14740
14738
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14741
14739
|
custom_domain_id: string;
|
|
14742
14740
|
primary: boolean;
|
|
14743
|
-
status: "
|
|
14741
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14744
14742
|
verification_method?: "txt" | undefined;
|
|
14745
14743
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14746
14744
|
domain_metadata?: {
|
|
@@ -14794,27 +14792,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14794
14792
|
};
|
|
14795
14793
|
} & {
|
|
14796
14794
|
json: {
|
|
14797
|
-
|
|
14798
|
-
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
14799
|
-
verification_method?: "txt" | undefined;
|
|
14795
|
+
tls_policy?: "recommended" | undefined;
|
|
14800
14796
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14801
14797
|
domain_metadata?: Record<string, string> | undefined;
|
|
14802
|
-
custom_domain_id?: string | undefined;
|
|
14803
|
-
primary?: boolean | undefined;
|
|
14804
|
-
status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
|
|
14805
|
-
origin_domain_name?: string | undefined;
|
|
14806
|
-
verification?: {
|
|
14807
|
-
methods: ({
|
|
14808
|
-
name: "txt";
|
|
14809
|
-
record: string;
|
|
14810
|
-
domain: string;
|
|
14811
|
-
} | {
|
|
14812
|
-
name: "http";
|
|
14813
|
-
http_body: string;
|
|
14814
|
-
http_url: string;
|
|
14815
|
-
})[];
|
|
14816
|
-
} | undefined;
|
|
14817
|
-
tls_policy?: string | undefined;
|
|
14818
14798
|
};
|
|
14819
14799
|
};
|
|
14820
14800
|
output: {
|
|
@@ -14822,7 +14802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14822
14802
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14823
14803
|
custom_domain_id: string;
|
|
14824
14804
|
primary: boolean;
|
|
14825
|
-
status: "
|
|
14805
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14826
14806
|
verification_method?: "txt" | undefined;
|
|
14827
14807
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14828
14808
|
domain_metadata?: {
|
|
@@ -14869,7 +14849,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14869
14849
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14870
14850
|
custom_domain_id: string;
|
|
14871
14851
|
primary: boolean;
|
|
14872
|
-
status: "
|
|
14852
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14873
14853
|
verification_method?: "txt" | undefined;
|
|
14874
14854
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14875
14855
|
domain_metadata?: {
|
|
@@ -14915,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14915
14895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14916
14896
|
custom_domain_id: string;
|
|
14917
14897
|
primary: boolean;
|
|
14918
|
-
status: "
|
|
14898
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14919
14899
|
verification_method?: "txt" | undefined;
|
|
14920
14900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14921
14901
|
domain_metadata?: {
|
|
@@ -14956,7 +14936,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14956
14936
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14957
14937
|
custom_domain_id: string;
|
|
14958
14938
|
primary: boolean;
|
|
14959
|
-
status: "
|
|
14939
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14960
14940
|
verification_method?: "txt" | undefined;
|
|
14961
14941
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14962
14942
|
domain_metadata?: {
|
|
@@ -16528,7 +16508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16528
16508
|
scope?: string | undefined;
|
|
16529
16509
|
grant_types?: string[] | undefined;
|
|
16530
16510
|
response_types?: string[] | undefined;
|
|
16531
|
-
token_endpoint_auth_method?: "
|
|
16511
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16532
16512
|
jwks_uri?: string | undefined;
|
|
16533
16513
|
jwks?: Record<string, unknown> | undefined;
|
|
16534
16514
|
software_id?: string | undefined;
|
|
@@ -16617,7 +16597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16617
16597
|
scope?: string | undefined;
|
|
16618
16598
|
grant_types?: string[] | undefined;
|
|
16619
16599
|
response_types?: string[] | undefined;
|
|
16620
|
-
token_endpoint_auth_method?: "
|
|
16600
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16621
16601
|
jwks_uri?: string | undefined;
|
|
16622
16602
|
jwks?: Record<string, unknown> | undefined;
|
|
16623
16603
|
software_id?: string | undefined;
|
|
@@ -16963,20 +16943,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16963
16943
|
email: string;
|
|
16964
16944
|
send: "code" | "link";
|
|
16965
16945
|
authParams: {
|
|
16966
|
-
|
|
16967
|
-
|
|
16946
|
+
organization?: string | undefined;
|
|
16947
|
+
audience?: string | undefined;
|
|
16968
16948
|
scope?: string | undefined;
|
|
16969
16949
|
username?: string | undefined;
|
|
16970
|
-
audience?: string | undefined;
|
|
16971
16950
|
state?: string | undefined;
|
|
16972
|
-
prompt?: string | undefined;
|
|
16973
|
-
ui_locales?: string | undefined;
|
|
16974
|
-
organization?: string | undefined;
|
|
16975
|
-
redirect_uri?: string | undefined;
|
|
16976
16951
|
act_as?: string | undefined;
|
|
16952
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16953
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16954
|
+
redirect_uri?: string | undefined;
|
|
16977
16955
|
nonce?: string | undefined;
|
|
16956
|
+
prompt?: string | undefined;
|
|
16978
16957
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16979
16958
|
code_challenge?: string | undefined;
|
|
16959
|
+
ui_locales?: string | undefined;
|
|
16980
16960
|
max_age?: number | undefined;
|
|
16981
16961
|
acr_values?: string | undefined;
|
|
16982
16962
|
claims?: {
|
|
@@ -16999,20 +16979,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16999
16979
|
phone_number: string;
|
|
17000
16980
|
send: "code" | "link";
|
|
17001
16981
|
authParams: {
|
|
17002
|
-
|
|
17003
|
-
|
|
16982
|
+
organization?: string | undefined;
|
|
16983
|
+
audience?: string | undefined;
|
|
17004
16984
|
scope?: string | undefined;
|
|
17005
16985
|
username?: string | undefined;
|
|
17006
|
-
audience?: string | undefined;
|
|
17007
16986
|
state?: string | undefined;
|
|
17008
|
-
prompt?: string | undefined;
|
|
17009
|
-
ui_locales?: string | undefined;
|
|
17010
|
-
organization?: string | undefined;
|
|
17011
|
-
redirect_uri?: string | undefined;
|
|
17012
16987
|
act_as?: string | undefined;
|
|
16988
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16989
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16990
|
+
redirect_uri?: string | undefined;
|
|
17013
16991
|
nonce?: string | undefined;
|
|
16992
|
+
prompt?: string | undefined;
|
|
17014
16993
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17015
16994
|
code_challenge?: string | undefined;
|
|
16995
|
+
ui_locales?: string | undefined;
|
|
17016
16996
|
max_age?: number | undefined;
|
|
17017
16997
|
acr_values?: string | undefined;
|
|
17018
16998
|
claims?: {
|
|
@@ -17143,14 +17123,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17143
17123
|
input: {
|
|
17144
17124
|
form: {
|
|
17145
17125
|
token: string;
|
|
17146
|
-
token_type_hint?: "
|
|
17126
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17147
17127
|
client_id?: string | undefined;
|
|
17148
17128
|
client_secret?: string | undefined;
|
|
17149
17129
|
};
|
|
17150
17130
|
} & {
|
|
17151
17131
|
json: {
|
|
17152
17132
|
token: string;
|
|
17153
|
-
token_type_hint?: "
|
|
17133
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17154
17134
|
client_id?: string | undefined;
|
|
17155
17135
|
client_secret?: string | undefined;
|
|
17156
17136
|
};
|
|
@@ -17162,14 +17142,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17162
17142
|
input: {
|
|
17163
17143
|
form: {
|
|
17164
17144
|
token: string;
|
|
17165
|
-
token_type_hint?: "
|
|
17145
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17166
17146
|
client_id?: string | undefined;
|
|
17167
17147
|
client_secret?: string | undefined;
|
|
17168
17148
|
};
|
|
17169
17149
|
} & {
|
|
17170
17150
|
json: {
|
|
17171
17151
|
token: string;
|
|
17172
|
-
token_type_hint?: "
|
|
17152
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17173
17153
|
client_id?: string | undefined;
|
|
17174
17154
|
client_secret?: string | undefined;
|
|
17175
17155
|
};
|
|
@@ -17184,14 +17164,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17184
17164
|
input: {
|
|
17185
17165
|
form: {
|
|
17186
17166
|
token: string;
|
|
17187
|
-
token_type_hint?: "
|
|
17167
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17188
17168
|
client_id?: string | undefined;
|
|
17189
17169
|
client_secret?: string | undefined;
|
|
17190
17170
|
};
|
|
17191
17171
|
} & {
|
|
17192
17172
|
json: {
|
|
17193
17173
|
token: string;
|
|
17194
|
-
token_type_hint?: "
|
|
17174
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17195
17175
|
client_id?: string | undefined;
|
|
17196
17176
|
client_secret?: string | undefined;
|
|
17197
17177
|
};
|
|
@@ -17241,7 +17221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17241
17221
|
client_id: string;
|
|
17242
17222
|
username: string;
|
|
17243
17223
|
otp: string;
|
|
17244
|
-
realm: "
|
|
17224
|
+
realm: "sms" | "email";
|
|
17245
17225
|
} | {
|
|
17246
17226
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17247
17227
|
subject_token: string;
|
|
@@ -17288,7 +17268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17288
17268
|
client_id: string;
|
|
17289
17269
|
username: string;
|
|
17290
17270
|
otp: string;
|
|
17291
|
-
realm: "
|
|
17271
|
+
realm: "sms" | "email";
|
|
17292
17272
|
} | {
|
|
17293
17273
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17294
17274
|
subject_token: string;
|
|
@@ -17340,7 +17320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17340
17320
|
client_id: string;
|
|
17341
17321
|
username: string;
|
|
17342
17322
|
otp: string;
|
|
17343
|
-
realm: "
|
|
17323
|
+
realm: "sms" | "email";
|
|
17344
17324
|
} | {
|
|
17345
17325
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17346
17326
|
subject_token: string;
|
|
@@ -17387,7 +17367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17387
17367
|
client_id: string;
|
|
17388
17368
|
username: string;
|
|
17389
17369
|
otp: string;
|
|
17390
|
-
realm: "
|
|
17370
|
+
realm: "sms" | "email";
|
|
17391
17371
|
} | {
|
|
17392
17372
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17393
17373
|
subject_token: string;
|
|
@@ -17447,7 +17427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17447
17427
|
client_id: string;
|
|
17448
17428
|
username: string;
|
|
17449
17429
|
otp: string;
|
|
17450
|
-
realm: "
|
|
17430
|
+
realm: "sms" | "email";
|
|
17451
17431
|
} | {
|
|
17452
17432
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17453
17433
|
subject_token: string;
|
|
@@ -17494,7 +17474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17494
17474
|
client_id: string;
|
|
17495
17475
|
username: string;
|
|
17496
17476
|
otp: string;
|
|
17497
|
-
realm: "
|
|
17477
|
+
realm: "sms" | "email";
|
|
17498
17478
|
} | {
|
|
17499
17479
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17500
17480
|
subject_token: string;
|
|
@@ -17549,7 +17529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17549
17529
|
client_id: string;
|
|
17550
17530
|
username: string;
|
|
17551
17531
|
otp: string;
|
|
17552
|
-
realm: "
|
|
17532
|
+
realm: "sms" | "email";
|
|
17553
17533
|
} | {
|
|
17554
17534
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17555
17535
|
subject_token: string;
|
|
@@ -17596,7 +17576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17596
17576
|
client_id: string;
|
|
17597
17577
|
username: string;
|
|
17598
17578
|
otp: string;
|
|
17599
|
-
realm: "
|
|
17579
|
+
realm: "sms" | "email";
|
|
17600
17580
|
} | {
|
|
17601
17581
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17602
17582
|
subject_token: string;
|
|
@@ -17651,7 +17631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17651
17631
|
client_id: string;
|
|
17652
17632
|
username: string;
|
|
17653
17633
|
otp: string;
|
|
17654
|
-
realm: "
|
|
17634
|
+
realm: "sms" | "email";
|
|
17655
17635
|
} | {
|
|
17656
17636
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17657
17637
|
subject_token: string;
|
|
@@ -17698,7 +17678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17698
17678
|
client_id: string;
|
|
17699
17679
|
username: string;
|
|
17700
17680
|
otp: string;
|
|
17701
|
-
realm: "
|
|
17681
|
+
realm: "sms" | "email";
|
|
17702
17682
|
} | {
|
|
17703
17683
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17704
17684
|
subject_token: string;
|
|
@@ -18918,7 +18898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18918
18898
|
$get: {
|
|
18919
18899
|
input: {
|
|
18920
18900
|
param: {
|
|
18921
|
-
screen: "signup" | "
|
|
18901
|
+
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";
|
|
18922
18902
|
};
|
|
18923
18903
|
} & {
|
|
18924
18904
|
query: {
|
|
@@ -18934,7 +18914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18934
18914
|
} | {
|
|
18935
18915
|
input: {
|
|
18936
18916
|
param: {
|
|
18937
|
-
screen: "signup" | "
|
|
18917
|
+
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";
|
|
18938
18918
|
};
|
|
18939
18919
|
} & {
|
|
18940
18920
|
query: {
|
|
@@ -18950,7 +18930,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18950
18930
|
} | {
|
|
18951
18931
|
input: {
|
|
18952
18932
|
param: {
|
|
18953
|
-
screen: "signup" | "
|
|
18933
|
+
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";
|
|
18954
18934
|
};
|
|
18955
18935
|
} & {
|
|
18956
18936
|
query: {
|
|
@@ -18970,7 +18950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18970
18950
|
$post: {
|
|
18971
18951
|
input: {
|
|
18972
18952
|
param: {
|
|
18973
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
18953
|
+
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";
|
|
18974
18954
|
};
|
|
18975
18955
|
} & {
|
|
18976
18956
|
query: {
|
|
@@ -18988,7 +18968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18988
18968
|
} | {
|
|
18989
18969
|
input: {
|
|
18990
18970
|
param: {
|
|
18991
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
18971
|
+
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";
|
|
18992
18972
|
};
|
|
18993
18973
|
} & {
|
|
18994
18974
|
query: {
|
|
@@ -19006,7 +18986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19006
18986
|
} | {
|
|
19007
18987
|
input: {
|
|
19008
18988
|
param: {
|
|
19009
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
18989
|
+
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";
|
|
19010
18990
|
};
|
|
19011
18991
|
} & {
|
|
19012
18992
|
query: {
|