authhero 6.0.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +105 -105
- package/dist/authhero.d.ts +261 -210
- package/dist/authhero.mjs +12607 -9956
- 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/index.d.ts +204 -203
- package/dist/types/routes/auth-api/index.d.ts +31 -31
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- 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/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/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 -7
- 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 +166 -166
- 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/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 +21 -7
- package/dist/types/routes/proxy-control-plane/verify.d.ts +39 -0
- 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 +17 -5
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { SamlSigner } from '@authhero/saml/core';
|
|
|
10
10
|
export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
|
|
11
11
|
import { Context, Next, Handler, MiddlewareHandler } from 'hono';
|
|
12
12
|
import * as _authhero_proxy from '@authhero/proxy';
|
|
13
|
+
export { PROXY_RESOLVE_HOST_SCOPE } from '@authhero/proxy';
|
|
13
14
|
import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
|
|
14
15
|
import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
|
|
15
16
|
|
|
@@ -1194,14 +1195,26 @@ interface AuthHeroConfig {
|
|
|
1194
1195
|
* data plane. When set, mounts `GET /api/v2/proxy/control-plane/hosts/:host`
|
|
1195
1196
|
* which returns the cross-tenant `ResolvedHost` for the given hostname.
|
|
1196
1197
|
*
|
|
1197
|
-
*
|
|
1198
|
-
* `
|
|
1199
|
-
*
|
|
1200
|
-
* `proxy:resolve_host`
|
|
1198
|
+
* Authentication is opinionated and built in: incoming requests must
|
|
1199
|
+
* carry a `Bearer` JWT signed by a key in `jwksUrl`, with `iss` matching
|
|
1200
|
+
* the runtime `env.ISSUER` (strict URL equality after trailing-slash
|
|
1201
|
+
* normalization) and the `proxy:resolve_host` scope. The matching
|
|
1202
|
+
* client-side helper is `createHttpProxyAdapter` in `@authhero/proxy`.
|
|
1201
1203
|
*/
|
|
1202
1204
|
proxyControlPlane?: {
|
|
1203
1205
|
resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
|
|
1204
|
-
|
|
1206
|
+
/**
|
|
1207
|
+
* JWKS document URL used to verify the bearer token. On a single-shard
|
|
1208
|
+
* deployment this is typically `${env.ISSUER}/.well-known/jwks.json`.
|
|
1209
|
+
*/
|
|
1210
|
+
jwksUrl: string;
|
|
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.
|
|
1216
|
+
*/
|
|
1217
|
+
jwksFetch?: (url: string) => Promise<Response>;
|
|
1205
1218
|
/**
|
|
1206
1219
|
* Optional receiver for `POST /sync` events emitted by tenant shards via
|
|
1207
1220
|
* the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
|
|
@@ -2265,6 +2278,44 @@ interface CreateApplySyncEventsOptions {
|
|
|
2265
2278
|
*/
|
|
2266
2279
|
declare function createApplySyncEvents(options: CreateApplySyncEventsOptions): (events: SyncEvent[]) => Promise<void>;
|
|
2267
2280
|
|
|
2281
|
+
/**
|
|
2282
|
+
* Strict issuer equality: parse both `iss` and `expected` as URLs and compare
|
|
2283
|
+
* the resulting hrefs after stripping any single trailing slash. No host-only
|
|
2284
|
+
* match, no subdomain match — a token issued by `https://a.example.com/` and
|
|
2285
|
+
* an expected `https://b.example.com/` (or `https://example.com/x/`) must NOT
|
|
2286
|
+
* be treated as equivalent.
|
|
2287
|
+
*/
|
|
2288
|
+
declare function isAllowedIssuer(iss: string, expected: string): boolean;
|
|
2289
|
+
type VerifyControlPlaneTokenResult = {
|
|
2290
|
+
ok: true;
|
|
2291
|
+
} | {
|
|
2292
|
+
ok: false;
|
|
2293
|
+
reason: string;
|
|
2294
|
+
};
|
|
2295
|
+
interface VerifyControlPlaneTokenOptions {
|
|
2296
|
+
/** Compact JWS to verify. */
|
|
2297
|
+
token: string;
|
|
2298
|
+
/** JWKS document URL. */
|
|
2299
|
+
jwksUrl: string;
|
|
2300
|
+
/** Optional fetch override — defaults to global `fetch`. */
|
|
2301
|
+
jwksFetch?: (url: string) => Promise<Response>;
|
|
2302
|
+
/** Expected `iss` claim (compared via {@link isAllowedIssuer}). */
|
|
2303
|
+
expectedIssuer: string;
|
|
2304
|
+
/** Required `scope` (space-separated). Defaults to `proxy:resolve_host`. */
|
|
2305
|
+
requiredScope?: string;
|
|
2306
|
+
}
|
|
2307
|
+
/**
|
|
2308
|
+
* Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
|
|
2309
|
+
* on success, `{ ok: false, reason }` on any failure — the reason is for
|
|
2310
|
+
* logs only and must not be surfaced to the caller.
|
|
2311
|
+
*
|
|
2312
|
+
* Accepted algs: RS256/384/512, ES256/384/512. The JWK's `alg` must match
|
|
2313
|
+
* the token header's `alg`. The token must carry the configured required
|
|
2314
|
+
* scope (`proxy:resolve_host` by default) and an `iss` that strictly equals
|
|
2315
|
+
* `expectedIssuer` after URL normalization.
|
|
2316
|
+
*/
|
|
2317
|
+
declare function verifyControlPlaneToken(options: VerifyControlPlaneTokenOptions): Promise<VerifyControlPlaneTokenResult>;
|
|
2318
|
+
|
|
2268
2319
|
/**
|
|
2269
2320
|
* Options for the entity hooks wrapper
|
|
2270
2321
|
*/
|
|
@@ -2721,7 +2772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2721
2772
|
};
|
|
2722
2773
|
} & {
|
|
2723
2774
|
json: {
|
|
2724
|
-
type: "
|
|
2775
|
+
type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
2725
2776
|
phone_number?: string | undefined;
|
|
2726
2777
|
totp_secret?: string | undefined;
|
|
2727
2778
|
credential_id?: string | undefined;
|
|
@@ -2861,7 +2912,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2861
2912
|
};
|
|
2862
2913
|
};
|
|
2863
2914
|
output: {
|
|
2864
|
-
name: "
|
|
2915
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2865
2916
|
enabled: boolean;
|
|
2866
2917
|
trial_expired?: boolean | undefined;
|
|
2867
2918
|
}[];
|
|
@@ -3016,7 +3067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3016
3067
|
$get: {
|
|
3017
3068
|
input: {
|
|
3018
3069
|
param: {
|
|
3019
|
-
factor_name: "
|
|
3070
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3020
3071
|
};
|
|
3021
3072
|
} & {
|
|
3022
3073
|
header: {
|
|
@@ -3024,7 +3075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3024
3075
|
};
|
|
3025
3076
|
};
|
|
3026
3077
|
output: {
|
|
3027
|
-
name: "
|
|
3078
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3028
3079
|
enabled: boolean;
|
|
3029
3080
|
trial_expired?: boolean | undefined;
|
|
3030
3081
|
};
|
|
@@ -3037,7 +3088,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3037
3088
|
$put: {
|
|
3038
3089
|
input: {
|
|
3039
3090
|
param: {
|
|
3040
|
-
factor_name: "
|
|
3091
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3041
3092
|
};
|
|
3042
3093
|
} & {
|
|
3043
3094
|
header: {
|
|
@@ -3049,7 +3100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3049
3100
|
};
|
|
3050
3101
|
};
|
|
3051
3102
|
output: {
|
|
3052
|
-
name: "
|
|
3103
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3053
3104
|
enabled: boolean;
|
|
3054
3105
|
trial_expired?: boolean | undefined;
|
|
3055
3106
|
};
|
|
@@ -5225,7 +5276,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5225
5276
|
hint?: string | undefined;
|
|
5226
5277
|
messages?: {
|
|
5227
5278
|
text: string;
|
|
5228
|
-
type: "
|
|
5279
|
+
type: "success" | "error" | "info" | "warning";
|
|
5229
5280
|
id?: number | undefined;
|
|
5230
5281
|
}[] | undefined;
|
|
5231
5282
|
required?: boolean | undefined;
|
|
@@ -5243,7 +5294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5243
5294
|
hint?: string | undefined;
|
|
5244
5295
|
messages?: {
|
|
5245
5296
|
text: string;
|
|
5246
|
-
type: "
|
|
5297
|
+
type: "success" | "error" | "info" | "warning";
|
|
5247
5298
|
id?: number | undefined;
|
|
5248
5299
|
}[] | undefined;
|
|
5249
5300
|
required?: boolean | undefined;
|
|
@@ -5267,7 +5318,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5267
5318
|
hint?: string | undefined;
|
|
5268
5319
|
messages?: {
|
|
5269
5320
|
text: string;
|
|
5270
|
-
type: "
|
|
5321
|
+
type: "success" | "error" | "info" | "warning";
|
|
5271
5322
|
id?: number | undefined;
|
|
5272
5323
|
}[] | undefined;
|
|
5273
5324
|
required?: boolean | undefined;
|
|
@@ -5291,7 +5342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5291
5342
|
hint?: string | undefined;
|
|
5292
5343
|
messages?: {
|
|
5293
5344
|
text: string;
|
|
5294
|
-
type: "
|
|
5345
|
+
type: "success" | "error" | "info" | "warning";
|
|
5295
5346
|
id?: number | undefined;
|
|
5296
5347
|
}[] | undefined;
|
|
5297
5348
|
required?: boolean | undefined;
|
|
@@ -5320,7 +5371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5320
5371
|
hint?: string | undefined;
|
|
5321
5372
|
messages?: {
|
|
5322
5373
|
text: string;
|
|
5323
|
-
type: "
|
|
5374
|
+
type: "success" | "error" | "info" | "warning";
|
|
5324
5375
|
id?: number | undefined;
|
|
5325
5376
|
}[] | undefined;
|
|
5326
5377
|
required?: boolean | undefined;
|
|
@@ -5335,7 +5386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5335
5386
|
hint?: string | undefined;
|
|
5336
5387
|
messages?: {
|
|
5337
5388
|
text: string;
|
|
5338
|
-
type: "
|
|
5389
|
+
type: "success" | "error" | "info" | "warning";
|
|
5339
5390
|
id?: number | undefined;
|
|
5340
5391
|
}[] | undefined;
|
|
5341
5392
|
required?: boolean | undefined;
|
|
@@ -5356,7 +5407,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5356
5407
|
hint?: string | undefined;
|
|
5357
5408
|
messages?: {
|
|
5358
5409
|
text: string;
|
|
5359
|
-
type: "
|
|
5410
|
+
type: "success" | "error" | "info" | "warning";
|
|
5360
5411
|
id?: number | undefined;
|
|
5361
5412
|
}[] | undefined;
|
|
5362
5413
|
required?: boolean | undefined;
|
|
@@ -5381,7 +5432,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5381
5432
|
hint?: string | undefined;
|
|
5382
5433
|
messages?: {
|
|
5383
5434
|
text: string;
|
|
5384
|
-
type: "
|
|
5435
|
+
type: "success" | "error" | "info" | "warning";
|
|
5385
5436
|
id?: number | undefined;
|
|
5386
5437
|
}[] | undefined;
|
|
5387
5438
|
required?: boolean | undefined;
|
|
@@ -5400,7 +5451,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5400
5451
|
hint?: string | undefined;
|
|
5401
5452
|
messages?: {
|
|
5402
5453
|
text: string;
|
|
5403
|
-
type: "
|
|
5454
|
+
type: "success" | "error" | "info" | "warning";
|
|
5404
5455
|
id?: number | undefined;
|
|
5405
5456
|
}[] | undefined;
|
|
5406
5457
|
required?: boolean | undefined;
|
|
@@ -5420,7 +5471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5420
5471
|
hint?: string | undefined;
|
|
5421
5472
|
messages?: {
|
|
5422
5473
|
text: string;
|
|
5423
|
-
type: "
|
|
5474
|
+
type: "success" | "error" | "info" | "warning";
|
|
5424
5475
|
id?: number | undefined;
|
|
5425
5476
|
}[] | undefined;
|
|
5426
5477
|
required?: boolean | undefined;
|
|
@@ -5439,7 +5490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5439
5490
|
hint?: string | undefined;
|
|
5440
5491
|
messages?: {
|
|
5441
5492
|
text: string;
|
|
5442
|
-
type: "
|
|
5493
|
+
type: "success" | "error" | "info" | "warning";
|
|
5443
5494
|
id?: number | undefined;
|
|
5444
5495
|
}[] | undefined;
|
|
5445
5496
|
required?: boolean | undefined;
|
|
@@ -5461,7 +5512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5461
5512
|
hint?: string | undefined;
|
|
5462
5513
|
messages?: {
|
|
5463
5514
|
text: string;
|
|
5464
|
-
type: "
|
|
5515
|
+
type: "success" | "error" | "info" | "warning";
|
|
5465
5516
|
id?: number | undefined;
|
|
5466
5517
|
}[] | undefined;
|
|
5467
5518
|
required?: boolean | undefined;
|
|
@@ -5483,7 +5534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5483
5534
|
hint?: string | undefined;
|
|
5484
5535
|
messages?: {
|
|
5485
5536
|
text: string;
|
|
5486
|
-
type: "
|
|
5537
|
+
type: "success" | "error" | "info" | "warning";
|
|
5487
5538
|
id?: number | undefined;
|
|
5488
5539
|
}[] | undefined;
|
|
5489
5540
|
required?: boolean | undefined;
|
|
@@ -5502,7 +5553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5502
5553
|
hint?: string | undefined;
|
|
5503
5554
|
messages?: {
|
|
5504
5555
|
text: string;
|
|
5505
|
-
type: "
|
|
5556
|
+
type: "success" | "error" | "info" | "warning";
|
|
5506
5557
|
id?: number | undefined;
|
|
5507
5558
|
}[] | undefined;
|
|
5508
5559
|
required?: boolean | undefined;
|
|
@@ -5527,7 +5578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5527
5578
|
hint?: string | undefined;
|
|
5528
5579
|
messages?: {
|
|
5529
5580
|
text: string;
|
|
5530
|
-
type: "
|
|
5581
|
+
type: "success" | "error" | "info" | "warning";
|
|
5531
5582
|
id?: number | undefined;
|
|
5532
5583
|
}[] | undefined;
|
|
5533
5584
|
required?: boolean | undefined;
|
|
@@ -5548,7 +5599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5548
5599
|
hint?: string | undefined;
|
|
5549
5600
|
messages?: {
|
|
5550
5601
|
text: string;
|
|
5551
|
-
type: "
|
|
5602
|
+
type: "success" | "error" | "info" | "warning";
|
|
5552
5603
|
id?: number | undefined;
|
|
5553
5604
|
}[] | undefined;
|
|
5554
5605
|
required?: boolean | undefined;
|
|
@@ -5569,7 +5620,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5569
5620
|
hint?: string | undefined;
|
|
5570
5621
|
messages?: {
|
|
5571
5622
|
text: string;
|
|
5572
|
-
type: "
|
|
5623
|
+
type: "success" | "error" | "info" | "warning";
|
|
5573
5624
|
id?: number | undefined;
|
|
5574
5625
|
}[] | undefined;
|
|
5575
5626
|
required?: boolean | undefined;
|
|
@@ -5802,7 +5853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5802
5853
|
hint?: string | undefined;
|
|
5803
5854
|
messages?: {
|
|
5804
5855
|
text: string;
|
|
5805
|
-
type: "
|
|
5856
|
+
type: "success" | "error" | "info" | "warning";
|
|
5806
5857
|
id?: number | undefined;
|
|
5807
5858
|
}[] | undefined;
|
|
5808
5859
|
required?: boolean | undefined;
|
|
@@ -5820,7 +5871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5820
5871
|
hint?: string | undefined;
|
|
5821
5872
|
messages?: {
|
|
5822
5873
|
text: string;
|
|
5823
|
-
type: "
|
|
5874
|
+
type: "success" | "error" | "info" | "warning";
|
|
5824
5875
|
id?: number | undefined;
|
|
5825
5876
|
}[] | undefined;
|
|
5826
5877
|
required?: boolean | undefined;
|
|
@@ -5844,7 +5895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5844
5895
|
hint?: string | undefined;
|
|
5845
5896
|
messages?: {
|
|
5846
5897
|
text: string;
|
|
5847
|
-
type: "
|
|
5898
|
+
type: "success" | "error" | "info" | "warning";
|
|
5848
5899
|
id?: number | undefined;
|
|
5849
5900
|
}[] | undefined;
|
|
5850
5901
|
required?: boolean | undefined;
|
|
@@ -5868,7 +5919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5868
5919
|
hint?: string | undefined;
|
|
5869
5920
|
messages?: {
|
|
5870
5921
|
text: string;
|
|
5871
|
-
type: "
|
|
5922
|
+
type: "success" | "error" | "info" | "warning";
|
|
5872
5923
|
id?: number | undefined;
|
|
5873
5924
|
}[] | undefined;
|
|
5874
5925
|
required?: boolean | undefined;
|
|
@@ -5897,7 +5948,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5897
5948
|
hint?: string | undefined;
|
|
5898
5949
|
messages?: {
|
|
5899
5950
|
text: string;
|
|
5900
|
-
type: "
|
|
5951
|
+
type: "success" | "error" | "info" | "warning";
|
|
5901
5952
|
id?: number | undefined;
|
|
5902
5953
|
}[] | undefined;
|
|
5903
5954
|
required?: boolean | undefined;
|
|
@@ -5912,7 +5963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5912
5963
|
hint?: string | undefined;
|
|
5913
5964
|
messages?: {
|
|
5914
5965
|
text: string;
|
|
5915
|
-
type: "
|
|
5966
|
+
type: "success" | "error" | "info" | "warning";
|
|
5916
5967
|
id?: number | undefined;
|
|
5917
5968
|
}[] | undefined;
|
|
5918
5969
|
required?: boolean | undefined;
|
|
@@ -5933,7 +5984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5933
5984
|
hint?: string | undefined;
|
|
5934
5985
|
messages?: {
|
|
5935
5986
|
text: string;
|
|
5936
|
-
type: "
|
|
5987
|
+
type: "success" | "error" | "info" | "warning";
|
|
5937
5988
|
id?: number | undefined;
|
|
5938
5989
|
}[] | undefined;
|
|
5939
5990
|
required?: boolean | undefined;
|
|
@@ -5958,7 +6009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5958
6009
|
hint?: string | undefined;
|
|
5959
6010
|
messages?: {
|
|
5960
6011
|
text: string;
|
|
5961
|
-
type: "
|
|
6012
|
+
type: "success" | "error" | "info" | "warning";
|
|
5962
6013
|
id?: number | undefined;
|
|
5963
6014
|
}[] | undefined;
|
|
5964
6015
|
required?: boolean | undefined;
|
|
@@ -5977,7 +6028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5977
6028
|
hint?: string | undefined;
|
|
5978
6029
|
messages?: {
|
|
5979
6030
|
text: string;
|
|
5980
|
-
type: "
|
|
6031
|
+
type: "success" | "error" | "info" | "warning";
|
|
5981
6032
|
id?: number | undefined;
|
|
5982
6033
|
}[] | undefined;
|
|
5983
6034
|
required?: boolean | undefined;
|
|
@@ -5997,7 +6048,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5997
6048
|
hint?: string | undefined;
|
|
5998
6049
|
messages?: {
|
|
5999
6050
|
text: string;
|
|
6000
|
-
type: "
|
|
6051
|
+
type: "success" | "error" | "info" | "warning";
|
|
6001
6052
|
id?: number | undefined;
|
|
6002
6053
|
}[] | undefined;
|
|
6003
6054
|
required?: boolean | undefined;
|
|
@@ -6016,7 +6067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6016
6067
|
hint?: string | undefined;
|
|
6017
6068
|
messages?: {
|
|
6018
6069
|
text: string;
|
|
6019
|
-
type: "
|
|
6070
|
+
type: "success" | "error" | "info" | "warning";
|
|
6020
6071
|
id?: number | undefined;
|
|
6021
6072
|
}[] | undefined;
|
|
6022
6073
|
required?: boolean | undefined;
|
|
@@ -6038,7 +6089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6038
6089
|
hint?: string | undefined;
|
|
6039
6090
|
messages?: {
|
|
6040
6091
|
text: string;
|
|
6041
|
-
type: "
|
|
6092
|
+
type: "success" | "error" | "info" | "warning";
|
|
6042
6093
|
id?: number | undefined;
|
|
6043
6094
|
}[] | undefined;
|
|
6044
6095
|
required?: boolean | undefined;
|
|
@@ -6060,7 +6111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6060
6111
|
hint?: string | undefined;
|
|
6061
6112
|
messages?: {
|
|
6062
6113
|
text: string;
|
|
6063
|
-
type: "
|
|
6114
|
+
type: "success" | "error" | "info" | "warning";
|
|
6064
6115
|
id?: number | undefined;
|
|
6065
6116
|
}[] | undefined;
|
|
6066
6117
|
required?: boolean | undefined;
|
|
@@ -6079,7 +6130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6079
6130
|
hint?: string | undefined;
|
|
6080
6131
|
messages?: {
|
|
6081
6132
|
text: string;
|
|
6082
|
-
type: "
|
|
6133
|
+
type: "success" | "error" | "info" | "warning";
|
|
6083
6134
|
id?: number | undefined;
|
|
6084
6135
|
}[] | undefined;
|
|
6085
6136
|
required?: boolean | undefined;
|
|
@@ -6104,7 +6155,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6104
6155
|
hint?: string | undefined;
|
|
6105
6156
|
messages?: {
|
|
6106
6157
|
text: string;
|
|
6107
|
-
type: "
|
|
6158
|
+
type: "success" | "error" | "info" | "warning";
|
|
6108
6159
|
id?: number | undefined;
|
|
6109
6160
|
}[] | undefined;
|
|
6110
6161
|
required?: boolean | undefined;
|
|
@@ -6125,7 +6176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6125
6176
|
hint?: string | undefined;
|
|
6126
6177
|
messages?: {
|
|
6127
6178
|
text: string;
|
|
6128
|
-
type: "
|
|
6179
|
+
type: "success" | "error" | "info" | "warning";
|
|
6129
6180
|
id?: number | undefined;
|
|
6130
6181
|
}[] | undefined;
|
|
6131
6182
|
required?: boolean | undefined;
|
|
@@ -6146,7 +6197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6146
6197
|
hint?: string | undefined;
|
|
6147
6198
|
messages?: {
|
|
6148
6199
|
text: string;
|
|
6149
|
-
type: "
|
|
6200
|
+
type: "success" | "error" | "info" | "warning";
|
|
6150
6201
|
id?: number | undefined;
|
|
6151
6202
|
}[] | undefined;
|
|
6152
6203
|
required?: boolean | undefined;
|
|
@@ -6394,7 +6445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6394
6445
|
hint?: string | undefined;
|
|
6395
6446
|
messages?: {
|
|
6396
6447
|
text: string;
|
|
6397
|
-
type: "
|
|
6448
|
+
type: "success" | "error" | "info" | "warning";
|
|
6398
6449
|
id?: number | undefined;
|
|
6399
6450
|
}[] | undefined;
|
|
6400
6451
|
required?: boolean | undefined;
|
|
@@ -6412,7 +6463,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6412
6463
|
hint?: string | undefined;
|
|
6413
6464
|
messages?: {
|
|
6414
6465
|
text: string;
|
|
6415
|
-
type: "
|
|
6466
|
+
type: "success" | "error" | "info" | "warning";
|
|
6416
6467
|
id?: number | undefined;
|
|
6417
6468
|
}[] | undefined;
|
|
6418
6469
|
required?: boolean | undefined;
|
|
@@ -6436,7 +6487,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6436
6487
|
hint?: string | undefined;
|
|
6437
6488
|
messages?: {
|
|
6438
6489
|
text: string;
|
|
6439
|
-
type: "
|
|
6490
|
+
type: "success" | "error" | "info" | "warning";
|
|
6440
6491
|
id?: number | undefined;
|
|
6441
6492
|
}[] | undefined;
|
|
6442
6493
|
required?: boolean | undefined;
|
|
@@ -6460,7 +6511,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6460
6511
|
hint?: string | undefined;
|
|
6461
6512
|
messages?: {
|
|
6462
6513
|
text: string;
|
|
6463
|
-
type: "
|
|
6514
|
+
type: "success" | "error" | "info" | "warning";
|
|
6464
6515
|
id?: number | undefined;
|
|
6465
6516
|
}[] | undefined;
|
|
6466
6517
|
required?: boolean | undefined;
|
|
@@ -6489,7 +6540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6489
6540
|
hint?: string | undefined;
|
|
6490
6541
|
messages?: {
|
|
6491
6542
|
text: string;
|
|
6492
|
-
type: "
|
|
6543
|
+
type: "success" | "error" | "info" | "warning";
|
|
6493
6544
|
id?: number | undefined;
|
|
6494
6545
|
}[] | undefined;
|
|
6495
6546
|
required?: boolean | undefined;
|
|
@@ -6504,7 +6555,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6504
6555
|
hint?: string | undefined;
|
|
6505
6556
|
messages?: {
|
|
6506
6557
|
text: string;
|
|
6507
|
-
type: "
|
|
6558
|
+
type: "success" | "error" | "info" | "warning";
|
|
6508
6559
|
id?: number | undefined;
|
|
6509
6560
|
}[] | undefined;
|
|
6510
6561
|
required?: boolean | undefined;
|
|
@@ -6525,7 +6576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6525
6576
|
hint?: string | undefined;
|
|
6526
6577
|
messages?: {
|
|
6527
6578
|
text: string;
|
|
6528
|
-
type: "
|
|
6579
|
+
type: "success" | "error" | "info" | "warning";
|
|
6529
6580
|
id?: number | undefined;
|
|
6530
6581
|
}[] | undefined;
|
|
6531
6582
|
required?: boolean | undefined;
|
|
@@ -6550,7 +6601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6550
6601
|
hint?: string | undefined;
|
|
6551
6602
|
messages?: {
|
|
6552
6603
|
text: string;
|
|
6553
|
-
type: "
|
|
6604
|
+
type: "success" | "error" | "info" | "warning";
|
|
6554
6605
|
id?: number | undefined;
|
|
6555
6606
|
}[] | undefined;
|
|
6556
6607
|
required?: boolean | undefined;
|
|
@@ -6569,7 +6620,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6569
6620
|
hint?: string | undefined;
|
|
6570
6621
|
messages?: {
|
|
6571
6622
|
text: string;
|
|
6572
|
-
type: "
|
|
6623
|
+
type: "success" | "error" | "info" | "warning";
|
|
6573
6624
|
id?: number | undefined;
|
|
6574
6625
|
}[] | undefined;
|
|
6575
6626
|
required?: boolean | undefined;
|
|
@@ -6589,7 +6640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6589
6640
|
hint?: string | undefined;
|
|
6590
6641
|
messages?: {
|
|
6591
6642
|
text: string;
|
|
6592
|
-
type: "
|
|
6643
|
+
type: "success" | "error" | "info" | "warning";
|
|
6593
6644
|
id?: number | undefined;
|
|
6594
6645
|
}[] | undefined;
|
|
6595
6646
|
required?: boolean | undefined;
|
|
@@ -6608,7 +6659,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6608
6659
|
hint?: string | undefined;
|
|
6609
6660
|
messages?: {
|
|
6610
6661
|
text: string;
|
|
6611
|
-
type: "
|
|
6662
|
+
type: "success" | "error" | "info" | "warning";
|
|
6612
6663
|
id?: number | undefined;
|
|
6613
6664
|
}[] | undefined;
|
|
6614
6665
|
required?: boolean | undefined;
|
|
@@ -6630,7 +6681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6630
6681
|
hint?: string | undefined;
|
|
6631
6682
|
messages?: {
|
|
6632
6683
|
text: string;
|
|
6633
|
-
type: "
|
|
6684
|
+
type: "success" | "error" | "info" | "warning";
|
|
6634
6685
|
id?: number | undefined;
|
|
6635
6686
|
}[] | undefined;
|
|
6636
6687
|
required?: boolean | undefined;
|
|
@@ -6652,7 +6703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6652
6703
|
hint?: string | undefined;
|
|
6653
6704
|
messages?: {
|
|
6654
6705
|
text: string;
|
|
6655
|
-
type: "
|
|
6706
|
+
type: "success" | "error" | "info" | "warning";
|
|
6656
6707
|
id?: number | undefined;
|
|
6657
6708
|
}[] | undefined;
|
|
6658
6709
|
required?: boolean | undefined;
|
|
@@ -6671,7 +6722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6671
6722
|
hint?: string | undefined;
|
|
6672
6723
|
messages?: {
|
|
6673
6724
|
text: string;
|
|
6674
|
-
type: "
|
|
6725
|
+
type: "success" | "error" | "info" | "warning";
|
|
6675
6726
|
id?: number | undefined;
|
|
6676
6727
|
}[] | undefined;
|
|
6677
6728
|
required?: boolean | undefined;
|
|
@@ -6696,7 +6747,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6696
6747
|
hint?: string | undefined;
|
|
6697
6748
|
messages?: {
|
|
6698
6749
|
text: string;
|
|
6699
|
-
type: "
|
|
6750
|
+
type: "success" | "error" | "info" | "warning";
|
|
6700
6751
|
id?: number | undefined;
|
|
6701
6752
|
}[] | undefined;
|
|
6702
6753
|
required?: boolean | undefined;
|
|
@@ -6717,7 +6768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6717
6768
|
hint?: string | undefined;
|
|
6718
6769
|
messages?: {
|
|
6719
6770
|
text: string;
|
|
6720
|
-
type: "
|
|
6771
|
+
type: "success" | "error" | "info" | "warning";
|
|
6721
6772
|
id?: number | undefined;
|
|
6722
6773
|
}[] | undefined;
|
|
6723
6774
|
required?: boolean | undefined;
|
|
@@ -6738,7 +6789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6738
6789
|
hint?: string | undefined;
|
|
6739
6790
|
messages?: {
|
|
6740
6791
|
text: string;
|
|
6741
|
-
type: "
|
|
6792
|
+
type: "success" | "error" | "info" | "warning";
|
|
6742
6793
|
id?: number | undefined;
|
|
6743
6794
|
}[] | undefined;
|
|
6744
6795
|
required?: boolean | undefined;
|
|
@@ -6992,7 +7043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6992
7043
|
hint?: string | undefined;
|
|
6993
7044
|
messages?: {
|
|
6994
7045
|
text: string;
|
|
6995
|
-
type: "
|
|
7046
|
+
type: "success" | "error" | "info" | "warning";
|
|
6996
7047
|
id?: number | undefined;
|
|
6997
7048
|
}[] | undefined;
|
|
6998
7049
|
required?: boolean | undefined;
|
|
@@ -7010,7 +7061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7010
7061
|
hint?: string | undefined;
|
|
7011
7062
|
messages?: {
|
|
7012
7063
|
text: string;
|
|
7013
|
-
type: "
|
|
7064
|
+
type: "success" | "error" | "info" | "warning";
|
|
7014
7065
|
id?: number | undefined;
|
|
7015
7066
|
}[] | undefined;
|
|
7016
7067
|
required?: boolean | undefined;
|
|
@@ -7034,7 +7085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7034
7085
|
hint?: string | undefined;
|
|
7035
7086
|
messages?: {
|
|
7036
7087
|
text: string;
|
|
7037
|
-
type: "
|
|
7088
|
+
type: "success" | "error" | "info" | "warning";
|
|
7038
7089
|
id?: number | undefined;
|
|
7039
7090
|
}[] | undefined;
|
|
7040
7091
|
required?: boolean | undefined;
|
|
@@ -7058,7 +7109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7058
7109
|
hint?: string | undefined;
|
|
7059
7110
|
messages?: {
|
|
7060
7111
|
text: string;
|
|
7061
|
-
type: "
|
|
7112
|
+
type: "success" | "error" | "info" | "warning";
|
|
7062
7113
|
id?: number | undefined;
|
|
7063
7114
|
}[] | undefined;
|
|
7064
7115
|
required?: boolean | undefined;
|
|
@@ -7083,7 +7134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7083
7134
|
hint?: string | undefined;
|
|
7084
7135
|
messages?: {
|
|
7085
7136
|
text: string;
|
|
7086
|
-
type: "
|
|
7137
|
+
type: "success" | "error" | "info" | "warning";
|
|
7087
7138
|
id?: number | undefined;
|
|
7088
7139
|
}[] | undefined;
|
|
7089
7140
|
required?: boolean | undefined;
|
|
@@ -7098,7 +7149,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7098
7149
|
hint?: string | undefined;
|
|
7099
7150
|
messages?: {
|
|
7100
7151
|
text: string;
|
|
7101
|
-
type: "
|
|
7152
|
+
type: "success" | "error" | "info" | "warning";
|
|
7102
7153
|
id?: number | undefined;
|
|
7103
7154
|
}[] | undefined;
|
|
7104
7155
|
required?: boolean | undefined;
|
|
@@ -7119,7 +7170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7119
7170
|
hint?: string | undefined;
|
|
7120
7171
|
messages?: {
|
|
7121
7172
|
text: string;
|
|
7122
|
-
type: "
|
|
7173
|
+
type: "success" | "error" | "info" | "warning";
|
|
7123
7174
|
id?: number | undefined;
|
|
7124
7175
|
}[] | undefined;
|
|
7125
7176
|
required?: boolean | undefined;
|
|
@@ -7144,7 +7195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7144
7195
|
hint?: string | undefined;
|
|
7145
7196
|
messages?: {
|
|
7146
7197
|
text: string;
|
|
7147
|
-
type: "
|
|
7198
|
+
type: "success" | "error" | "info" | "warning";
|
|
7148
7199
|
id?: number | undefined;
|
|
7149
7200
|
}[] | undefined;
|
|
7150
7201
|
required?: boolean | undefined;
|
|
@@ -7163,7 +7214,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7163
7214
|
hint?: string | undefined;
|
|
7164
7215
|
messages?: {
|
|
7165
7216
|
text: string;
|
|
7166
|
-
type: "
|
|
7217
|
+
type: "success" | "error" | "info" | "warning";
|
|
7167
7218
|
id?: number | undefined;
|
|
7168
7219
|
}[] | undefined;
|
|
7169
7220
|
required?: boolean | undefined;
|
|
@@ -7183,7 +7234,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7183
7234
|
hint?: string | undefined;
|
|
7184
7235
|
messages?: {
|
|
7185
7236
|
text: string;
|
|
7186
|
-
type: "
|
|
7237
|
+
type: "success" | "error" | "info" | "warning";
|
|
7187
7238
|
id?: number | undefined;
|
|
7188
7239
|
}[] | undefined;
|
|
7189
7240
|
required?: boolean | undefined;
|
|
@@ -7202,7 +7253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7202
7253
|
hint?: string | undefined;
|
|
7203
7254
|
messages?: {
|
|
7204
7255
|
text: string;
|
|
7205
|
-
type: "
|
|
7256
|
+
type: "success" | "error" | "info" | "warning";
|
|
7206
7257
|
id?: number | undefined;
|
|
7207
7258
|
}[] | undefined;
|
|
7208
7259
|
required?: boolean | undefined;
|
|
@@ -7224,7 +7275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7224
7275
|
hint?: string | undefined;
|
|
7225
7276
|
messages?: {
|
|
7226
7277
|
text: string;
|
|
7227
|
-
type: "
|
|
7278
|
+
type: "success" | "error" | "info" | "warning";
|
|
7228
7279
|
id?: number | undefined;
|
|
7229
7280
|
}[] | undefined;
|
|
7230
7281
|
required?: boolean | undefined;
|
|
@@ -7246,7 +7297,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7246
7297
|
hint?: string | undefined;
|
|
7247
7298
|
messages?: {
|
|
7248
7299
|
text: string;
|
|
7249
|
-
type: "
|
|
7300
|
+
type: "success" | "error" | "info" | "warning";
|
|
7250
7301
|
id?: number | undefined;
|
|
7251
7302
|
}[] | undefined;
|
|
7252
7303
|
required?: boolean | undefined;
|
|
@@ -7265,7 +7316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7265
7316
|
hint?: string | undefined;
|
|
7266
7317
|
messages?: {
|
|
7267
7318
|
text: string;
|
|
7268
|
-
type: "
|
|
7319
|
+
type: "success" | "error" | "info" | "warning";
|
|
7269
7320
|
id?: number | undefined;
|
|
7270
7321
|
}[] | undefined;
|
|
7271
7322
|
required?: boolean | undefined;
|
|
@@ -7290,7 +7341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7290
7341
|
hint?: string | undefined;
|
|
7291
7342
|
messages?: {
|
|
7292
7343
|
text: string;
|
|
7293
|
-
type: "
|
|
7344
|
+
type: "success" | "error" | "info" | "warning";
|
|
7294
7345
|
id?: number | undefined;
|
|
7295
7346
|
}[] | undefined;
|
|
7296
7347
|
required?: boolean | undefined;
|
|
@@ -7311,7 +7362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7311
7362
|
hint?: string | undefined;
|
|
7312
7363
|
messages?: {
|
|
7313
7364
|
text: string;
|
|
7314
|
-
type: "
|
|
7365
|
+
type: "success" | "error" | "info" | "warning";
|
|
7315
7366
|
id?: number | undefined;
|
|
7316
7367
|
}[] | undefined;
|
|
7317
7368
|
required?: boolean | undefined;
|
|
@@ -7332,7 +7383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7332
7383
|
hint?: string | undefined;
|
|
7333
7384
|
messages?: {
|
|
7334
7385
|
text: string;
|
|
7335
|
-
type: "
|
|
7386
|
+
type: "success" | "error" | "info" | "warning";
|
|
7336
7387
|
id?: number | undefined;
|
|
7337
7388
|
}[] | undefined;
|
|
7338
7389
|
required?: boolean | undefined;
|
|
@@ -7563,7 +7614,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7563
7614
|
hint?: string | undefined;
|
|
7564
7615
|
messages?: {
|
|
7565
7616
|
text: string;
|
|
7566
|
-
type: "
|
|
7617
|
+
type: "success" | "error" | "info" | "warning";
|
|
7567
7618
|
id?: number | undefined;
|
|
7568
7619
|
}[] | undefined;
|
|
7569
7620
|
required?: boolean | undefined;
|
|
@@ -7581,7 +7632,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7581
7632
|
hint?: string | undefined;
|
|
7582
7633
|
messages?: {
|
|
7583
7634
|
text: string;
|
|
7584
|
-
type: "
|
|
7635
|
+
type: "success" | "error" | "info" | "warning";
|
|
7585
7636
|
id?: number | undefined;
|
|
7586
7637
|
}[] | undefined;
|
|
7587
7638
|
required?: boolean | undefined;
|
|
@@ -7605,7 +7656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7605
7656
|
hint?: string | undefined;
|
|
7606
7657
|
messages?: {
|
|
7607
7658
|
text: string;
|
|
7608
|
-
type: "
|
|
7659
|
+
type: "success" | "error" | "info" | "warning";
|
|
7609
7660
|
id?: number | undefined;
|
|
7610
7661
|
}[] | undefined;
|
|
7611
7662
|
required?: boolean | undefined;
|
|
@@ -7629,7 +7680,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7629
7680
|
hint?: string | undefined;
|
|
7630
7681
|
messages?: {
|
|
7631
7682
|
text: string;
|
|
7632
|
-
type: "
|
|
7683
|
+
type: "success" | "error" | "info" | "warning";
|
|
7633
7684
|
id?: number | undefined;
|
|
7634
7685
|
}[] | undefined;
|
|
7635
7686
|
required?: boolean | undefined;
|
|
@@ -7658,7 +7709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7658
7709
|
hint?: string | undefined;
|
|
7659
7710
|
messages?: {
|
|
7660
7711
|
text: string;
|
|
7661
|
-
type: "
|
|
7712
|
+
type: "success" | "error" | "info" | "warning";
|
|
7662
7713
|
id?: number | undefined;
|
|
7663
7714
|
}[] | undefined;
|
|
7664
7715
|
required?: boolean | undefined;
|
|
@@ -7673,7 +7724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7673
7724
|
hint?: string | undefined;
|
|
7674
7725
|
messages?: {
|
|
7675
7726
|
text: string;
|
|
7676
|
-
type: "
|
|
7727
|
+
type: "success" | "error" | "info" | "warning";
|
|
7677
7728
|
id?: number | undefined;
|
|
7678
7729
|
}[] | undefined;
|
|
7679
7730
|
required?: boolean | undefined;
|
|
@@ -7694,7 +7745,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7694
7745
|
hint?: string | undefined;
|
|
7695
7746
|
messages?: {
|
|
7696
7747
|
text: string;
|
|
7697
|
-
type: "
|
|
7748
|
+
type: "success" | "error" | "info" | "warning";
|
|
7698
7749
|
id?: number | undefined;
|
|
7699
7750
|
}[] | undefined;
|
|
7700
7751
|
required?: boolean | undefined;
|
|
@@ -7719,7 +7770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7719
7770
|
hint?: string | undefined;
|
|
7720
7771
|
messages?: {
|
|
7721
7772
|
text: string;
|
|
7722
|
-
type: "
|
|
7773
|
+
type: "success" | "error" | "info" | "warning";
|
|
7723
7774
|
id?: number | undefined;
|
|
7724
7775
|
}[] | undefined;
|
|
7725
7776
|
required?: boolean | undefined;
|
|
@@ -7738,7 +7789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7738
7789
|
hint?: string | undefined;
|
|
7739
7790
|
messages?: {
|
|
7740
7791
|
text: string;
|
|
7741
|
-
type: "
|
|
7792
|
+
type: "success" | "error" | "info" | "warning";
|
|
7742
7793
|
id?: number | undefined;
|
|
7743
7794
|
}[] | undefined;
|
|
7744
7795
|
required?: boolean | undefined;
|
|
@@ -7758,7 +7809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7758
7809
|
hint?: string | undefined;
|
|
7759
7810
|
messages?: {
|
|
7760
7811
|
text: string;
|
|
7761
|
-
type: "
|
|
7812
|
+
type: "success" | "error" | "info" | "warning";
|
|
7762
7813
|
id?: number | undefined;
|
|
7763
7814
|
}[] | undefined;
|
|
7764
7815
|
required?: boolean | undefined;
|
|
@@ -7777,7 +7828,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7777
7828
|
hint?: string | undefined;
|
|
7778
7829
|
messages?: {
|
|
7779
7830
|
text: string;
|
|
7780
|
-
type: "
|
|
7831
|
+
type: "success" | "error" | "info" | "warning";
|
|
7781
7832
|
id?: number | undefined;
|
|
7782
7833
|
}[] | undefined;
|
|
7783
7834
|
required?: boolean | undefined;
|
|
@@ -7799,7 +7850,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7799
7850
|
hint?: string | undefined;
|
|
7800
7851
|
messages?: {
|
|
7801
7852
|
text: string;
|
|
7802
|
-
type: "
|
|
7853
|
+
type: "success" | "error" | "info" | "warning";
|
|
7803
7854
|
id?: number | undefined;
|
|
7804
7855
|
}[] | undefined;
|
|
7805
7856
|
required?: boolean | undefined;
|
|
@@ -7821,7 +7872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7821
7872
|
hint?: string | undefined;
|
|
7822
7873
|
messages?: {
|
|
7823
7874
|
text: string;
|
|
7824
|
-
type: "
|
|
7875
|
+
type: "success" | "error" | "info" | "warning";
|
|
7825
7876
|
id?: number | undefined;
|
|
7826
7877
|
}[] | undefined;
|
|
7827
7878
|
required?: boolean | undefined;
|
|
@@ -7840,7 +7891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7840
7891
|
hint?: string | undefined;
|
|
7841
7892
|
messages?: {
|
|
7842
7893
|
text: string;
|
|
7843
|
-
type: "
|
|
7894
|
+
type: "success" | "error" | "info" | "warning";
|
|
7844
7895
|
id?: number | undefined;
|
|
7845
7896
|
}[] | undefined;
|
|
7846
7897
|
required?: boolean | undefined;
|
|
@@ -7865,7 +7916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7865
7916
|
hint?: string | undefined;
|
|
7866
7917
|
messages?: {
|
|
7867
7918
|
text: string;
|
|
7868
|
-
type: "
|
|
7919
|
+
type: "success" | "error" | "info" | "warning";
|
|
7869
7920
|
id?: number | undefined;
|
|
7870
7921
|
}[] | undefined;
|
|
7871
7922
|
required?: boolean | undefined;
|
|
@@ -7886,7 +7937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7886
7937
|
hint?: string | undefined;
|
|
7887
7938
|
messages?: {
|
|
7888
7939
|
text: string;
|
|
7889
|
-
type: "
|
|
7940
|
+
type: "success" | "error" | "info" | "warning";
|
|
7890
7941
|
id?: number | undefined;
|
|
7891
7942
|
}[] | undefined;
|
|
7892
7943
|
required?: boolean | undefined;
|
|
@@ -7907,7 +7958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7907
7958
|
hint?: string | undefined;
|
|
7908
7959
|
messages?: {
|
|
7909
7960
|
text: string;
|
|
7910
|
-
type: "
|
|
7961
|
+
type: "success" | "error" | "info" | "warning";
|
|
7911
7962
|
id?: number | undefined;
|
|
7912
7963
|
}[] | undefined;
|
|
7913
7964
|
required?: boolean | undefined;
|
|
@@ -8140,7 +8191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8140
8191
|
hint?: string | undefined;
|
|
8141
8192
|
messages?: {
|
|
8142
8193
|
text: string;
|
|
8143
|
-
type: "
|
|
8194
|
+
type: "success" | "error" | "info" | "warning";
|
|
8144
8195
|
id?: number | undefined;
|
|
8145
8196
|
}[] | undefined;
|
|
8146
8197
|
required?: boolean | undefined;
|
|
@@ -8158,7 +8209,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8158
8209
|
hint?: string | undefined;
|
|
8159
8210
|
messages?: {
|
|
8160
8211
|
text: string;
|
|
8161
|
-
type: "
|
|
8212
|
+
type: "success" | "error" | "info" | "warning";
|
|
8162
8213
|
id?: number | undefined;
|
|
8163
8214
|
}[] | undefined;
|
|
8164
8215
|
required?: boolean | undefined;
|
|
@@ -8182,7 +8233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8182
8233
|
hint?: string | undefined;
|
|
8183
8234
|
messages?: {
|
|
8184
8235
|
text: string;
|
|
8185
|
-
type: "
|
|
8236
|
+
type: "success" | "error" | "info" | "warning";
|
|
8186
8237
|
id?: number | undefined;
|
|
8187
8238
|
}[] | undefined;
|
|
8188
8239
|
required?: boolean | undefined;
|
|
@@ -8206,7 +8257,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8206
8257
|
hint?: string | undefined;
|
|
8207
8258
|
messages?: {
|
|
8208
8259
|
text: string;
|
|
8209
|
-
type: "
|
|
8260
|
+
type: "success" | "error" | "info" | "warning";
|
|
8210
8261
|
id?: number | undefined;
|
|
8211
8262
|
}[] | undefined;
|
|
8212
8263
|
required?: boolean | undefined;
|
|
@@ -8231,7 +8282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8231
8282
|
hint?: string | undefined;
|
|
8232
8283
|
messages?: {
|
|
8233
8284
|
text: string;
|
|
8234
|
-
type: "
|
|
8285
|
+
type: "success" | "error" | "info" | "warning";
|
|
8235
8286
|
id?: number | undefined;
|
|
8236
8287
|
}[] | undefined;
|
|
8237
8288
|
required?: boolean | undefined;
|
|
@@ -8246,7 +8297,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8246
8297
|
hint?: string | undefined;
|
|
8247
8298
|
messages?: {
|
|
8248
8299
|
text: string;
|
|
8249
|
-
type: "
|
|
8300
|
+
type: "success" | "error" | "info" | "warning";
|
|
8250
8301
|
id?: number | undefined;
|
|
8251
8302
|
}[] | undefined;
|
|
8252
8303
|
required?: boolean | undefined;
|
|
@@ -8267,7 +8318,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8267
8318
|
hint?: string | undefined;
|
|
8268
8319
|
messages?: {
|
|
8269
8320
|
text: string;
|
|
8270
|
-
type: "
|
|
8321
|
+
type: "success" | "error" | "info" | "warning";
|
|
8271
8322
|
id?: number | undefined;
|
|
8272
8323
|
}[] | undefined;
|
|
8273
8324
|
required?: boolean | undefined;
|
|
@@ -8292,7 +8343,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8292
8343
|
hint?: string | undefined;
|
|
8293
8344
|
messages?: {
|
|
8294
8345
|
text: string;
|
|
8295
|
-
type: "
|
|
8346
|
+
type: "success" | "error" | "info" | "warning";
|
|
8296
8347
|
id?: number | undefined;
|
|
8297
8348
|
}[] | undefined;
|
|
8298
8349
|
required?: boolean | undefined;
|
|
@@ -8311,7 +8362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8311
8362
|
hint?: string | undefined;
|
|
8312
8363
|
messages?: {
|
|
8313
8364
|
text: string;
|
|
8314
|
-
type: "
|
|
8365
|
+
type: "success" | "error" | "info" | "warning";
|
|
8315
8366
|
id?: number | undefined;
|
|
8316
8367
|
}[] | undefined;
|
|
8317
8368
|
required?: boolean | undefined;
|
|
@@ -8331,7 +8382,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8331
8382
|
hint?: string | undefined;
|
|
8332
8383
|
messages?: {
|
|
8333
8384
|
text: string;
|
|
8334
|
-
type: "
|
|
8385
|
+
type: "success" | "error" | "info" | "warning";
|
|
8335
8386
|
id?: number | undefined;
|
|
8336
8387
|
}[] | undefined;
|
|
8337
8388
|
required?: boolean | undefined;
|
|
@@ -8350,7 +8401,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8350
8401
|
hint?: string | undefined;
|
|
8351
8402
|
messages?: {
|
|
8352
8403
|
text: string;
|
|
8353
|
-
type: "
|
|
8404
|
+
type: "success" | "error" | "info" | "warning";
|
|
8354
8405
|
id?: number | undefined;
|
|
8355
8406
|
}[] | undefined;
|
|
8356
8407
|
required?: boolean | undefined;
|
|
@@ -8372,7 +8423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8372
8423
|
hint?: string | undefined;
|
|
8373
8424
|
messages?: {
|
|
8374
8425
|
text: string;
|
|
8375
|
-
type: "
|
|
8426
|
+
type: "success" | "error" | "info" | "warning";
|
|
8376
8427
|
id?: number | undefined;
|
|
8377
8428
|
}[] | undefined;
|
|
8378
8429
|
required?: boolean | undefined;
|
|
@@ -8394,7 +8445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8394
8445
|
hint?: string | undefined;
|
|
8395
8446
|
messages?: {
|
|
8396
8447
|
text: string;
|
|
8397
|
-
type: "
|
|
8448
|
+
type: "success" | "error" | "info" | "warning";
|
|
8398
8449
|
id?: number | undefined;
|
|
8399
8450
|
}[] | undefined;
|
|
8400
8451
|
required?: boolean | undefined;
|
|
@@ -8413,7 +8464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8413
8464
|
hint?: string | undefined;
|
|
8414
8465
|
messages?: {
|
|
8415
8466
|
text: string;
|
|
8416
|
-
type: "
|
|
8467
|
+
type: "success" | "error" | "info" | "warning";
|
|
8417
8468
|
id?: number | undefined;
|
|
8418
8469
|
}[] | undefined;
|
|
8419
8470
|
required?: boolean | undefined;
|
|
@@ -8438,7 +8489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8438
8489
|
hint?: string | undefined;
|
|
8439
8490
|
messages?: {
|
|
8440
8491
|
text: string;
|
|
8441
|
-
type: "
|
|
8492
|
+
type: "success" | "error" | "info" | "warning";
|
|
8442
8493
|
id?: number | undefined;
|
|
8443
8494
|
}[] | undefined;
|
|
8444
8495
|
required?: boolean | undefined;
|
|
@@ -8459,7 +8510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8459
8510
|
hint?: string | undefined;
|
|
8460
8511
|
messages?: {
|
|
8461
8512
|
text: string;
|
|
8462
|
-
type: "
|
|
8513
|
+
type: "success" | "error" | "info" | "warning";
|
|
8463
8514
|
id?: number | undefined;
|
|
8464
8515
|
}[] | undefined;
|
|
8465
8516
|
required?: boolean | undefined;
|
|
@@ -8480,7 +8531,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8480
8531
|
hint?: string | undefined;
|
|
8481
8532
|
messages?: {
|
|
8482
8533
|
text: string;
|
|
8483
|
-
type: "
|
|
8534
|
+
type: "success" | "error" | "info" | "warning";
|
|
8484
8535
|
id?: number | undefined;
|
|
8485
8536
|
}[] | undefined;
|
|
8486
8537
|
required?: boolean | undefined;
|
|
@@ -8711,7 +8762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8711
8762
|
hint?: string | undefined;
|
|
8712
8763
|
messages?: {
|
|
8713
8764
|
text: string;
|
|
8714
|
-
type: "
|
|
8765
|
+
type: "success" | "error" | "info" | "warning";
|
|
8715
8766
|
id?: number | undefined;
|
|
8716
8767
|
}[] | undefined;
|
|
8717
8768
|
required?: boolean | undefined;
|
|
@@ -8729,7 +8780,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8729
8780
|
hint?: string | undefined;
|
|
8730
8781
|
messages?: {
|
|
8731
8782
|
text: string;
|
|
8732
|
-
type: "
|
|
8783
|
+
type: "success" | "error" | "info" | "warning";
|
|
8733
8784
|
id?: number | undefined;
|
|
8734
8785
|
}[] | undefined;
|
|
8735
8786
|
required?: boolean | undefined;
|
|
@@ -8753,7 +8804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8753
8804
|
hint?: string | undefined;
|
|
8754
8805
|
messages?: {
|
|
8755
8806
|
text: string;
|
|
8756
|
-
type: "
|
|
8807
|
+
type: "success" | "error" | "info" | "warning";
|
|
8757
8808
|
id?: number | undefined;
|
|
8758
8809
|
}[] | undefined;
|
|
8759
8810
|
required?: boolean | undefined;
|
|
@@ -8777,7 +8828,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8777
8828
|
hint?: string | undefined;
|
|
8778
8829
|
messages?: {
|
|
8779
8830
|
text: string;
|
|
8780
|
-
type: "
|
|
8831
|
+
type: "success" | "error" | "info" | "warning";
|
|
8781
8832
|
id?: number | undefined;
|
|
8782
8833
|
}[] | undefined;
|
|
8783
8834
|
required?: boolean | undefined;
|
|
@@ -8806,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8806
8857
|
hint?: string | undefined;
|
|
8807
8858
|
messages?: {
|
|
8808
8859
|
text: string;
|
|
8809
|
-
type: "
|
|
8860
|
+
type: "success" | "error" | "info" | "warning";
|
|
8810
8861
|
id?: number | undefined;
|
|
8811
8862
|
}[] | undefined;
|
|
8812
8863
|
required?: boolean | undefined;
|
|
@@ -8821,7 +8872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8821
8872
|
hint?: string | undefined;
|
|
8822
8873
|
messages?: {
|
|
8823
8874
|
text: string;
|
|
8824
|
-
type: "
|
|
8875
|
+
type: "success" | "error" | "info" | "warning";
|
|
8825
8876
|
id?: number | undefined;
|
|
8826
8877
|
}[] | undefined;
|
|
8827
8878
|
required?: boolean | undefined;
|
|
@@ -8842,7 +8893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8842
8893
|
hint?: string | undefined;
|
|
8843
8894
|
messages?: {
|
|
8844
8895
|
text: string;
|
|
8845
|
-
type: "
|
|
8896
|
+
type: "success" | "error" | "info" | "warning";
|
|
8846
8897
|
id?: number | undefined;
|
|
8847
8898
|
}[] | undefined;
|
|
8848
8899
|
required?: boolean | undefined;
|
|
@@ -8867,7 +8918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8867
8918
|
hint?: string | undefined;
|
|
8868
8919
|
messages?: {
|
|
8869
8920
|
text: string;
|
|
8870
|
-
type: "
|
|
8921
|
+
type: "success" | "error" | "info" | "warning";
|
|
8871
8922
|
id?: number | undefined;
|
|
8872
8923
|
}[] | undefined;
|
|
8873
8924
|
required?: boolean | undefined;
|
|
@@ -8886,7 +8937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8886
8937
|
hint?: string | undefined;
|
|
8887
8938
|
messages?: {
|
|
8888
8939
|
text: string;
|
|
8889
|
-
type: "
|
|
8940
|
+
type: "success" | "error" | "info" | "warning";
|
|
8890
8941
|
id?: number | undefined;
|
|
8891
8942
|
}[] | undefined;
|
|
8892
8943
|
required?: boolean | undefined;
|
|
@@ -8906,7 +8957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8906
8957
|
hint?: string | undefined;
|
|
8907
8958
|
messages?: {
|
|
8908
8959
|
text: string;
|
|
8909
|
-
type: "
|
|
8960
|
+
type: "success" | "error" | "info" | "warning";
|
|
8910
8961
|
id?: number | undefined;
|
|
8911
8962
|
}[] | undefined;
|
|
8912
8963
|
required?: boolean | undefined;
|
|
@@ -8925,7 +8976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8925
8976
|
hint?: string | undefined;
|
|
8926
8977
|
messages?: {
|
|
8927
8978
|
text: string;
|
|
8928
|
-
type: "
|
|
8979
|
+
type: "success" | "error" | "info" | "warning";
|
|
8929
8980
|
id?: number | undefined;
|
|
8930
8981
|
}[] | undefined;
|
|
8931
8982
|
required?: boolean | undefined;
|
|
@@ -8947,7 +8998,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8947
8998
|
hint?: string | undefined;
|
|
8948
8999
|
messages?: {
|
|
8949
9000
|
text: string;
|
|
8950
|
-
type: "
|
|
9001
|
+
type: "success" | "error" | "info" | "warning";
|
|
8951
9002
|
id?: number | undefined;
|
|
8952
9003
|
}[] | undefined;
|
|
8953
9004
|
required?: boolean | undefined;
|
|
@@ -8969,7 +9020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8969
9020
|
hint?: string | undefined;
|
|
8970
9021
|
messages?: {
|
|
8971
9022
|
text: string;
|
|
8972
|
-
type: "
|
|
9023
|
+
type: "success" | "error" | "info" | "warning";
|
|
8973
9024
|
id?: number | undefined;
|
|
8974
9025
|
}[] | undefined;
|
|
8975
9026
|
required?: boolean | undefined;
|
|
@@ -8988,7 +9039,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8988
9039
|
hint?: string | undefined;
|
|
8989
9040
|
messages?: {
|
|
8990
9041
|
text: string;
|
|
8991
|
-
type: "
|
|
9042
|
+
type: "success" | "error" | "info" | "warning";
|
|
8992
9043
|
id?: number | undefined;
|
|
8993
9044
|
}[] | undefined;
|
|
8994
9045
|
required?: boolean | undefined;
|
|
@@ -9013,7 +9064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9013
9064
|
hint?: string | undefined;
|
|
9014
9065
|
messages?: {
|
|
9015
9066
|
text: string;
|
|
9016
|
-
type: "
|
|
9067
|
+
type: "success" | "error" | "info" | "warning";
|
|
9017
9068
|
id?: number | undefined;
|
|
9018
9069
|
}[] | undefined;
|
|
9019
9070
|
required?: boolean | undefined;
|
|
@@ -9034,7 +9085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9034
9085
|
hint?: string | undefined;
|
|
9035
9086
|
messages?: {
|
|
9036
9087
|
text: string;
|
|
9037
|
-
type: "
|
|
9088
|
+
type: "success" | "error" | "info" | "warning";
|
|
9038
9089
|
id?: number | undefined;
|
|
9039
9090
|
}[] | undefined;
|
|
9040
9091
|
required?: boolean | undefined;
|
|
@@ -9055,7 +9106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9055
9106
|
hint?: string | undefined;
|
|
9056
9107
|
messages?: {
|
|
9057
9108
|
text: string;
|
|
9058
|
-
type: "
|
|
9109
|
+
type: "success" | "error" | "info" | "warning";
|
|
9059
9110
|
id?: number | undefined;
|
|
9060
9111
|
}[] | undefined;
|
|
9061
9112
|
required?: boolean | undefined;
|
|
@@ -9285,7 +9336,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9285
9336
|
};
|
|
9286
9337
|
};
|
|
9287
9338
|
output: {
|
|
9288
|
-
prompt: "
|
|
9339
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9289
9340
|
language: string;
|
|
9290
9341
|
}[];
|
|
9291
9342
|
outputFormat: "json";
|
|
@@ -9323,7 +9374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9323
9374
|
$get: {
|
|
9324
9375
|
input: {
|
|
9325
9376
|
param: {
|
|
9326
|
-
prompt: "
|
|
9377
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9327
9378
|
language: string;
|
|
9328
9379
|
};
|
|
9329
9380
|
} & {
|
|
@@ -9345,7 +9396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9345
9396
|
$put: {
|
|
9346
9397
|
input: {
|
|
9347
9398
|
param: {
|
|
9348
|
-
prompt: "
|
|
9399
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9349
9400
|
language: string;
|
|
9350
9401
|
};
|
|
9351
9402
|
} & {
|
|
@@ -9369,7 +9420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9369
9420
|
$delete: {
|
|
9370
9421
|
input: {
|
|
9371
9422
|
param: {
|
|
9372
|
-
prompt: "
|
|
9423
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9373
9424
|
language: string;
|
|
9374
9425
|
};
|
|
9375
9426
|
} & {
|
|
@@ -10231,7 +10282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10231
10282
|
};
|
|
10232
10283
|
} | {
|
|
10233
10284
|
mode: "inline";
|
|
10234
|
-
status: "
|
|
10285
|
+
status: "success" | "error";
|
|
10235
10286
|
connection_id: string;
|
|
10236
10287
|
connection_name: string;
|
|
10237
10288
|
strategy: string;
|
|
@@ -10810,7 +10861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10810
10861
|
log_type: string;
|
|
10811
10862
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10812
10863
|
actor: {
|
|
10813
|
-
type: "
|
|
10864
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10814
10865
|
id?: string | undefined;
|
|
10815
10866
|
email?: string | undefined;
|
|
10816
10867
|
org_id?: string | undefined;
|
|
@@ -11118,7 +11169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11118
11169
|
created_at: string;
|
|
11119
11170
|
updated_at: string;
|
|
11120
11171
|
name: string;
|
|
11121
|
-
provider: "auth0" | "
|
|
11172
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11122
11173
|
connection: string;
|
|
11123
11174
|
enabled: boolean;
|
|
11124
11175
|
credentials: {
|
|
@@ -11150,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11150
11201
|
created_at: string;
|
|
11151
11202
|
updated_at: string;
|
|
11152
11203
|
name: string;
|
|
11153
|
-
provider: "auth0" | "
|
|
11204
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11154
11205
|
connection: string;
|
|
11155
11206
|
enabled: boolean;
|
|
11156
11207
|
credentials: {
|
|
@@ -11176,7 +11227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11176
11227
|
} & {
|
|
11177
11228
|
json: {
|
|
11178
11229
|
name: string;
|
|
11179
|
-
provider: "auth0" | "
|
|
11230
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11180
11231
|
connection: string;
|
|
11181
11232
|
credentials: {
|
|
11182
11233
|
domain: string;
|
|
@@ -11193,7 +11244,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11193
11244
|
created_at: string;
|
|
11194
11245
|
updated_at: string;
|
|
11195
11246
|
name: string;
|
|
11196
|
-
provider: "auth0" | "
|
|
11247
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11197
11248
|
connection: string;
|
|
11198
11249
|
enabled: boolean;
|
|
11199
11250
|
credentials: {
|
|
@@ -11224,7 +11275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11224
11275
|
json: {
|
|
11225
11276
|
id?: string | undefined;
|
|
11226
11277
|
name?: string | undefined;
|
|
11227
|
-
provider?: "auth0" | "
|
|
11278
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11228
11279
|
connection?: string | undefined;
|
|
11229
11280
|
enabled?: boolean | undefined;
|
|
11230
11281
|
credentials?: {
|
|
@@ -11240,7 +11291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11240
11291
|
created_at: string;
|
|
11241
11292
|
updated_at: string;
|
|
11242
11293
|
name: string;
|
|
11243
|
-
provider: "auth0" | "
|
|
11294
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11244
11295
|
connection: string;
|
|
11245
11296
|
enabled: boolean;
|
|
11246
11297
|
credentials: {
|
|
@@ -11458,7 +11509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11458
11509
|
};
|
|
11459
11510
|
};
|
|
11460
11511
|
output: {
|
|
11461
|
-
type: "
|
|
11512
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
11462
11513
|
date: string;
|
|
11463
11514
|
isMobile: boolean;
|
|
11464
11515
|
log_id: string;
|
|
@@ -11497,7 +11548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11497
11548
|
limit: number;
|
|
11498
11549
|
length: number;
|
|
11499
11550
|
logs: {
|
|
11500
|
-
type: "
|
|
11551
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
11501
11552
|
date: string;
|
|
11502
11553
|
isMobile: boolean;
|
|
11503
11554
|
log_id: string;
|
|
@@ -11551,7 +11602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11551
11602
|
};
|
|
11552
11603
|
};
|
|
11553
11604
|
output: {
|
|
11554
|
-
type: "
|
|
11605
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
11555
11606
|
date: string;
|
|
11556
11607
|
isMobile: boolean;
|
|
11557
11608
|
log_id: string;
|
|
@@ -11706,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11706
11757
|
audience?: string | undefined;
|
|
11707
11758
|
client_id?: string | undefined;
|
|
11708
11759
|
allow_any_organization?: string | undefined;
|
|
11709
|
-
subject_type?: "
|
|
11760
|
+
subject_type?: "client" | "user" | undefined;
|
|
11710
11761
|
};
|
|
11711
11762
|
} & {
|
|
11712
11763
|
header: {
|
|
@@ -11721,7 +11772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11721
11772
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11722
11773
|
allow_any_organization?: boolean | undefined;
|
|
11723
11774
|
is_system?: boolean | undefined;
|
|
11724
|
-
subject_type?: "
|
|
11775
|
+
subject_type?: "client" | "user" | undefined;
|
|
11725
11776
|
authorization_details_types?: string[] | undefined;
|
|
11726
11777
|
created_at?: string | undefined;
|
|
11727
11778
|
updated_at?: string | undefined;
|
|
@@ -11737,7 +11788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11737
11788
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11738
11789
|
allow_any_organization?: boolean | undefined;
|
|
11739
11790
|
is_system?: boolean | undefined;
|
|
11740
|
-
subject_type?: "
|
|
11791
|
+
subject_type?: "client" | "user" | undefined;
|
|
11741
11792
|
authorization_details_types?: string[] | undefined;
|
|
11742
11793
|
created_at?: string | undefined;
|
|
11743
11794
|
updated_at?: string | undefined;
|
|
@@ -11768,7 +11819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11768
11819
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11769
11820
|
allow_any_organization?: boolean | undefined;
|
|
11770
11821
|
is_system?: boolean | undefined;
|
|
11771
|
-
subject_type?: "
|
|
11822
|
+
subject_type?: "client" | "user" | undefined;
|
|
11772
11823
|
authorization_details_types?: string[] | undefined;
|
|
11773
11824
|
created_at?: string | undefined;
|
|
11774
11825
|
updated_at?: string | undefined;
|
|
@@ -11813,7 +11864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11813
11864
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11814
11865
|
allow_any_organization?: boolean | undefined;
|
|
11815
11866
|
is_system?: boolean | undefined;
|
|
11816
|
-
subject_type?: "
|
|
11867
|
+
subject_type?: "client" | "user" | undefined;
|
|
11817
11868
|
authorization_details_types?: string[] | undefined;
|
|
11818
11869
|
};
|
|
11819
11870
|
};
|
|
@@ -11825,7 +11876,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11825
11876
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11826
11877
|
allow_any_organization?: boolean | undefined;
|
|
11827
11878
|
is_system?: boolean | undefined;
|
|
11828
|
-
subject_type?: "
|
|
11879
|
+
subject_type?: "client" | "user" | undefined;
|
|
11829
11880
|
authorization_details_types?: string[] | undefined;
|
|
11830
11881
|
created_at?: string | undefined;
|
|
11831
11882
|
updated_at?: string | undefined;
|
|
@@ -11849,7 +11900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11849
11900
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11850
11901
|
allow_any_organization?: boolean | undefined;
|
|
11851
11902
|
is_system?: boolean | undefined;
|
|
11852
|
-
subject_type?: "
|
|
11903
|
+
subject_type?: "client" | "user" | undefined;
|
|
11853
11904
|
authorization_details_types?: string[] | undefined;
|
|
11854
11905
|
};
|
|
11855
11906
|
};
|
|
@@ -11861,7 +11912,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11861
11912
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11862
11913
|
allow_any_organization?: boolean | undefined;
|
|
11863
11914
|
is_system?: boolean | undefined;
|
|
11864
|
-
subject_type?: "
|
|
11915
|
+
subject_type?: "client" | "user" | undefined;
|
|
11865
11916
|
authorization_details_types?: string[] | undefined;
|
|
11866
11917
|
created_at?: string | undefined;
|
|
11867
11918
|
updated_at?: string | undefined;
|
|
@@ -11939,7 +11990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11939
11990
|
addons?: {
|
|
11940
11991
|
[x: string]: any;
|
|
11941
11992
|
} | undefined;
|
|
11942
|
-
token_endpoint_auth_method?: "
|
|
11993
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11943
11994
|
client_metadata?: {
|
|
11944
11995
|
[x: string]: string;
|
|
11945
11996
|
} | undefined;
|
|
@@ -12035,7 +12086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12035
12086
|
addons?: {
|
|
12036
12087
|
[x: string]: any;
|
|
12037
12088
|
} | undefined;
|
|
12038
|
-
token_endpoint_auth_method?: "
|
|
12089
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12039
12090
|
client_metadata?: {
|
|
12040
12091
|
[x: string]: string;
|
|
12041
12092
|
} | undefined;
|
|
@@ -12146,7 +12197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12146
12197
|
addons?: {
|
|
12147
12198
|
[x: string]: any;
|
|
12148
12199
|
} | undefined;
|
|
12149
|
-
token_endpoint_auth_method?: "
|
|
12200
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12150
12201
|
client_metadata?: {
|
|
12151
12202
|
[x: string]: string;
|
|
12152
12203
|
} | undefined;
|
|
@@ -12256,7 +12307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12256
12307
|
custom_login_page_preview?: string | undefined;
|
|
12257
12308
|
form_template?: string | undefined;
|
|
12258
12309
|
addons?: Record<string, any> | undefined;
|
|
12259
|
-
token_endpoint_auth_method?: "
|
|
12310
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12260
12311
|
client_metadata?: Record<string, string> | undefined;
|
|
12261
12312
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12262
12313
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12336,7 +12387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12336
12387
|
addons?: {
|
|
12337
12388
|
[x: string]: any;
|
|
12338
12389
|
} | undefined;
|
|
12339
|
-
token_endpoint_auth_method?: "
|
|
12390
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12340
12391
|
client_metadata?: {
|
|
12341
12392
|
[x: string]: string;
|
|
12342
12393
|
} | undefined;
|
|
@@ -12425,7 +12476,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12425
12476
|
custom_login_page_preview?: string | undefined;
|
|
12426
12477
|
form_template?: string | undefined;
|
|
12427
12478
|
addons?: Record<string, any> | undefined;
|
|
12428
|
-
token_endpoint_auth_method?: "
|
|
12479
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12429
12480
|
client_metadata?: Record<string, string> | undefined;
|
|
12430
12481
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12431
12482
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12505,7 +12556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12505
12556
|
addons?: {
|
|
12506
12557
|
[x: string]: any;
|
|
12507
12558
|
} | undefined;
|
|
12508
|
-
token_endpoint_auth_method?: "
|
|
12559
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12509
12560
|
client_metadata?: {
|
|
12510
12561
|
[x: string]: string;
|
|
12511
12562
|
} | undefined;
|
|
@@ -13769,7 +13820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13769
13820
|
};
|
|
13770
13821
|
};
|
|
13771
13822
|
output: {
|
|
13772
|
-
type: "
|
|
13823
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13773
13824
|
date: string;
|
|
13774
13825
|
isMobile: boolean;
|
|
13775
13826
|
log_id: string;
|
|
@@ -13808,7 +13859,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13808
13859
|
limit: number;
|
|
13809
13860
|
length: number;
|
|
13810
13861
|
logs: {
|
|
13811
|
-
type: "
|
|
13862
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13812
13863
|
date: string;
|
|
13813
13864
|
isMobile: boolean;
|
|
13814
13865
|
log_id: string;
|
|
@@ -14648,7 +14699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14648
14699
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14649
14700
|
custom_domain_id: string;
|
|
14650
14701
|
primary: boolean;
|
|
14651
|
-
status: "
|
|
14702
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14652
14703
|
verification_method?: "txt" | undefined;
|
|
14653
14704
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14654
14705
|
domain_metadata?: {
|
|
@@ -14689,7 +14740,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14689
14740
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14690
14741
|
custom_domain_id: string;
|
|
14691
14742
|
primary: boolean;
|
|
14692
|
-
status: "
|
|
14743
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14693
14744
|
verification_method?: "txt" | undefined;
|
|
14694
14745
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14695
14746
|
domain_metadata?: {
|
|
@@ -14750,7 +14801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14750
14801
|
domain_metadata?: Record<string, string> | undefined;
|
|
14751
14802
|
custom_domain_id?: string | undefined;
|
|
14752
14803
|
primary?: boolean | undefined;
|
|
14753
|
-
status?: "
|
|
14804
|
+
status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
|
|
14754
14805
|
origin_domain_name?: string | undefined;
|
|
14755
14806
|
verification?: {
|
|
14756
14807
|
methods: ({
|
|
@@ -14771,7 +14822,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14771
14822
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14772
14823
|
custom_domain_id: string;
|
|
14773
14824
|
primary: boolean;
|
|
14774
|
-
status: "
|
|
14825
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14775
14826
|
verification_method?: "txt" | undefined;
|
|
14776
14827
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14777
14828
|
domain_metadata?: {
|
|
@@ -14818,7 +14869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14818
14869
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14819
14870
|
custom_domain_id: string;
|
|
14820
14871
|
primary: boolean;
|
|
14821
|
-
status: "
|
|
14872
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14822
14873
|
verification_method?: "txt" | undefined;
|
|
14823
14874
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14824
14875
|
domain_metadata?: {
|
|
@@ -14864,7 +14915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14864
14915
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14865
14916
|
custom_domain_id: string;
|
|
14866
14917
|
primary: boolean;
|
|
14867
|
-
status: "
|
|
14918
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14868
14919
|
verification_method?: "txt" | undefined;
|
|
14869
14920
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14870
14921
|
domain_metadata?: {
|
|
@@ -14905,7 +14956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14905
14956
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14906
14957
|
custom_domain_id: string;
|
|
14907
14958
|
primary: boolean;
|
|
14908
|
-
status: "
|
|
14959
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14909
14960
|
verification_method?: "txt" | undefined;
|
|
14910
14961
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14911
14962
|
domain_metadata?: {
|
|
@@ -15512,7 +15563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15512
15563
|
logs: {
|
|
15513
15564
|
action_name: string;
|
|
15514
15565
|
lines: {
|
|
15515
|
-
level: "
|
|
15566
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15516
15567
|
message: string;
|
|
15517
15568
|
}[];
|
|
15518
15569
|
}[];
|
|
@@ -16179,7 +16230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16179
16230
|
args: hono_utils_types.JSONValue[];
|
|
16180
16231
|
}[];
|
|
16181
16232
|
logs: {
|
|
16182
|
-
level: "
|
|
16233
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16183
16234
|
message: string;
|
|
16184
16235
|
}[];
|
|
16185
16236
|
error?: string | undefined;
|
|
@@ -16477,7 +16528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16477
16528
|
scope?: string | undefined;
|
|
16478
16529
|
grant_types?: string[] | undefined;
|
|
16479
16530
|
response_types?: string[] | undefined;
|
|
16480
|
-
token_endpoint_auth_method?: "
|
|
16531
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16481
16532
|
jwks_uri?: string | undefined;
|
|
16482
16533
|
jwks?: Record<string, unknown> | undefined;
|
|
16483
16534
|
software_id?: string | undefined;
|
|
@@ -16566,7 +16617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16566
16617
|
scope?: string | undefined;
|
|
16567
16618
|
grant_types?: string[] | undefined;
|
|
16568
16619
|
response_types?: string[] | undefined;
|
|
16569
|
-
token_endpoint_auth_method?: "
|
|
16620
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16570
16621
|
jwks_uri?: string | undefined;
|
|
16571
16622
|
jwks?: Record<string, unknown> | undefined;
|
|
16572
16623
|
software_id?: string | undefined;
|
|
@@ -16912,20 +16963,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16912
16963
|
email: string;
|
|
16913
16964
|
send: "code" | "link";
|
|
16914
16965
|
authParams: {
|
|
16915
|
-
username?: string | undefined;
|
|
16916
|
-
state?: string | undefined;
|
|
16917
|
-
audience?: string | undefined;
|
|
16918
16966
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16919
16967
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16920
16968
|
scope?: string | undefined;
|
|
16969
|
+
username?: string | undefined;
|
|
16970
|
+
audience?: string | undefined;
|
|
16971
|
+
state?: string | undefined;
|
|
16972
|
+
prompt?: string | undefined;
|
|
16973
|
+
ui_locales?: string | undefined;
|
|
16921
16974
|
organization?: string | undefined;
|
|
16922
|
-
nonce?: string | undefined;
|
|
16923
16975
|
redirect_uri?: string | undefined;
|
|
16924
16976
|
act_as?: string | undefined;
|
|
16925
|
-
|
|
16977
|
+
nonce?: string | undefined;
|
|
16926
16978
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16927
16979
|
code_challenge?: string | undefined;
|
|
16928
|
-
ui_locales?: string | undefined;
|
|
16929
16980
|
max_age?: number | undefined;
|
|
16930
16981
|
acr_values?: string | undefined;
|
|
16931
16982
|
claims?: {
|
|
@@ -16948,20 +16999,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16948
16999
|
phone_number: string;
|
|
16949
17000
|
send: "code" | "link";
|
|
16950
17001
|
authParams: {
|
|
16951
|
-
username?: string | undefined;
|
|
16952
|
-
state?: string | undefined;
|
|
16953
|
-
audience?: string | undefined;
|
|
16954
17002
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16955
17003
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16956
17004
|
scope?: string | undefined;
|
|
17005
|
+
username?: string | undefined;
|
|
17006
|
+
audience?: string | undefined;
|
|
17007
|
+
state?: string | undefined;
|
|
17008
|
+
prompt?: string | undefined;
|
|
17009
|
+
ui_locales?: string | undefined;
|
|
16957
17010
|
organization?: string | undefined;
|
|
16958
|
-
nonce?: string | undefined;
|
|
16959
17011
|
redirect_uri?: string | undefined;
|
|
16960
17012
|
act_as?: string | undefined;
|
|
16961
|
-
|
|
17013
|
+
nonce?: string | undefined;
|
|
16962
17014
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16963
17015
|
code_challenge?: string | undefined;
|
|
16964
|
-
ui_locales?: string | undefined;
|
|
16965
17016
|
max_age?: number | undefined;
|
|
16966
17017
|
acr_values?: string | undefined;
|
|
16967
17018
|
claims?: {
|
|
@@ -17092,14 +17143,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17092
17143
|
input: {
|
|
17093
17144
|
form: {
|
|
17094
17145
|
token: string;
|
|
17095
|
-
token_type_hint?: "
|
|
17146
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17096
17147
|
client_id?: string | undefined;
|
|
17097
17148
|
client_secret?: string | undefined;
|
|
17098
17149
|
};
|
|
17099
17150
|
} & {
|
|
17100
17151
|
json: {
|
|
17101
17152
|
token: string;
|
|
17102
|
-
token_type_hint?: "
|
|
17153
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17103
17154
|
client_id?: string | undefined;
|
|
17104
17155
|
client_secret?: string | undefined;
|
|
17105
17156
|
};
|
|
@@ -17111,14 +17162,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17111
17162
|
input: {
|
|
17112
17163
|
form: {
|
|
17113
17164
|
token: string;
|
|
17114
|
-
token_type_hint?: "
|
|
17165
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17115
17166
|
client_id?: string | undefined;
|
|
17116
17167
|
client_secret?: string | undefined;
|
|
17117
17168
|
};
|
|
17118
17169
|
} & {
|
|
17119
17170
|
json: {
|
|
17120
17171
|
token: string;
|
|
17121
|
-
token_type_hint?: "
|
|
17172
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17122
17173
|
client_id?: string | undefined;
|
|
17123
17174
|
client_secret?: string | undefined;
|
|
17124
17175
|
};
|
|
@@ -17133,14 +17184,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17133
17184
|
input: {
|
|
17134
17185
|
form: {
|
|
17135
17186
|
token: string;
|
|
17136
|
-
token_type_hint?: "
|
|
17187
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17137
17188
|
client_id?: string | undefined;
|
|
17138
17189
|
client_secret?: string | undefined;
|
|
17139
17190
|
};
|
|
17140
17191
|
} & {
|
|
17141
17192
|
json: {
|
|
17142
17193
|
token: string;
|
|
17143
|
-
token_type_hint?: "
|
|
17194
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17144
17195
|
client_id?: string | undefined;
|
|
17145
17196
|
client_secret?: string | undefined;
|
|
17146
17197
|
};
|
|
@@ -17190,7 +17241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17190
17241
|
client_id: string;
|
|
17191
17242
|
username: string;
|
|
17192
17243
|
otp: string;
|
|
17193
|
-
realm: "
|
|
17244
|
+
realm: "email" | "sms";
|
|
17194
17245
|
} | {
|
|
17195
17246
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17196
17247
|
subject_token: string;
|
|
@@ -17237,7 +17288,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17237
17288
|
client_id: string;
|
|
17238
17289
|
username: string;
|
|
17239
17290
|
otp: string;
|
|
17240
|
-
realm: "
|
|
17291
|
+
realm: "email" | "sms";
|
|
17241
17292
|
} | {
|
|
17242
17293
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17243
17294
|
subject_token: string;
|
|
@@ -17289,7 +17340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17289
17340
|
client_id: string;
|
|
17290
17341
|
username: string;
|
|
17291
17342
|
otp: string;
|
|
17292
|
-
realm: "
|
|
17343
|
+
realm: "email" | "sms";
|
|
17293
17344
|
} | {
|
|
17294
17345
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17295
17346
|
subject_token: string;
|
|
@@ -17336,7 +17387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17336
17387
|
client_id: string;
|
|
17337
17388
|
username: string;
|
|
17338
17389
|
otp: string;
|
|
17339
|
-
realm: "
|
|
17390
|
+
realm: "email" | "sms";
|
|
17340
17391
|
} | {
|
|
17341
17392
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17342
17393
|
subject_token: string;
|
|
@@ -17396,7 +17447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17396
17447
|
client_id: string;
|
|
17397
17448
|
username: string;
|
|
17398
17449
|
otp: string;
|
|
17399
|
-
realm: "
|
|
17450
|
+
realm: "email" | "sms";
|
|
17400
17451
|
} | {
|
|
17401
17452
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17402
17453
|
subject_token: string;
|
|
@@ -17443,7 +17494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17443
17494
|
client_id: string;
|
|
17444
17495
|
username: string;
|
|
17445
17496
|
otp: string;
|
|
17446
|
-
realm: "
|
|
17497
|
+
realm: "email" | "sms";
|
|
17447
17498
|
} | {
|
|
17448
17499
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17449
17500
|
subject_token: string;
|
|
@@ -17498,7 +17549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17498
17549
|
client_id: string;
|
|
17499
17550
|
username: string;
|
|
17500
17551
|
otp: string;
|
|
17501
|
-
realm: "
|
|
17552
|
+
realm: "email" | "sms";
|
|
17502
17553
|
} | {
|
|
17503
17554
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17504
17555
|
subject_token: string;
|
|
@@ -17545,7 +17596,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17545
17596
|
client_id: string;
|
|
17546
17597
|
username: string;
|
|
17547
17598
|
otp: string;
|
|
17548
|
-
realm: "
|
|
17599
|
+
realm: "email" | "sms";
|
|
17549
17600
|
} | {
|
|
17550
17601
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17551
17602
|
subject_token: string;
|
|
@@ -17600,7 +17651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17600
17651
|
client_id: string;
|
|
17601
17652
|
username: string;
|
|
17602
17653
|
otp: string;
|
|
17603
|
-
realm: "
|
|
17654
|
+
realm: "email" | "sms";
|
|
17604
17655
|
} | {
|
|
17605
17656
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17606
17657
|
subject_token: string;
|
|
@@ -17647,7 +17698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17647
17698
|
client_id: string;
|
|
17648
17699
|
username: string;
|
|
17649
17700
|
otp: string;
|
|
17650
|
-
realm: "
|
|
17701
|
+
realm: "email" | "sms";
|
|
17651
17702
|
} | {
|
|
17652
17703
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17653
17704
|
subject_token: string;
|
|
@@ -17676,7 +17727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17676
17727
|
output: {
|
|
17677
17728
|
keys: {
|
|
17678
17729
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17679
|
-
kty: "
|
|
17730
|
+
kty: "RSA" | "EC" | "oct";
|
|
17680
17731
|
kid?: string | undefined;
|
|
17681
17732
|
use?: "sig" | "enc" | undefined;
|
|
17682
17733
|
n?: string | undefined;
|
|
@@ -18867,7 +18918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18867
18918
|
$get: {
|
|
18868
18919
|
input: {
|
|
18869
18920
|
param: {
|
|
18870
|
-
screen: "signup" | "
|
|
18921
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18871
18922
|
};
|
|
18872
18923
|
} & {
|
|
18873
18924
|
query: {
|
|
@@ -18883,7 +18934,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18883
18934
|
} | {
|
|
18884
18935
|
input: {
|
|
18885
18936
|
param: {
|
|
18886
|
-
screen: "signup" | "
|
|
18937
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18887
18938
|
};
|
|
18888
18939
|
} & {
|
|
18889
18940
|
query: {
|
|
@@ -18899,7 +18950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18899
18950
|
} | {
|
|
18900
18951
|
input: {
|
|
18901
18952
|
param: {
|
|
18902
|
-
screen: "signup" | "
|
|
18953
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18903
18954
|
};
|
|
18904
18955
|
} & {
|
|
18905
18956
|
query: {
|
|
@@ -18919,7 +18970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18919
18970
|
$post: {
|
|
18920
18971
|
input: {
|
|
18921
18972
|
param: {
|
|
18922
|
-
screen: "signup" | "
|
|
18973
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18923
18974
|
};
|
|
18924
18975
|
} & {
|
|
18925
18976
|
query: {
|
|
@@ -18937,7 +18988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18937
18988
|
} | {
|
|
18938
18989
|
input: {
|
|
18939
18990
|
param: {
|
|
18940
|
-
screen: "signup" | "
|
|
18991
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18941
18992
|
};
|
|
18942
18993
|
} & {
|
|
18943
18994
|
query: {
|
|
@@ -18955,7 +19006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18955
19006
|
} | {
|
|
18956
19007
|
input: {
|
|
18957
19008
|
param: {
|
|
18958
|
-
screen: "signup" | "
|
|
19009
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18959
19010
|
};
|
|
18960
19011
|
} & {
|
|
18961
19012
|
query: {
|
|
@@ -19053,5 +19104,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19053
19104
|
createX509Certificate: typeof createX509Certificate;
|
|
19054
19105
|
};
|
|
19055
19106
|
|
|
19056
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, NoopTenantProvisioner, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
19057
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
19107
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, NoopTenantProvisioner, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19108
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|