authhero 8.0.0 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +212 -212
- package/dist/authhero.d.ts +277 -210
- package/dist/authhero.mjs +10131 -9992
- package/dist/{passkey-enrollment-Dw1ObR65.mjs → passkey-enrollment-Ba_8I87G.mjs} +1 -5
- package/dist/passkey-enrollment-CB7HjMH_.js +1 -0
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +18 -10
- package/dist/types/authentication-flows/connection.d.ts +2 -2
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/client-bundle.d.ts +15 -1
- package/dist/types/helpers/compose-auth-data.d.ts +44 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/prefetch-client-bundle.d.ts +33 -0
- package/dist/types/hooks/webhooks.d.ts +14 -0
- package/dist/types/index.d.ts +266 -206
- package/dist/types/middlewares/tenant.d.ts +11 -4
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- 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/email-templates.d.ts +18 -18
- 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/hooks.d.ts +60 -0
- package/dist/types/routes/management-api/index.d.ts +234 -174
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- 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/IdToken.d.ts +1 -1
- package/package.json +1 -1
- package/dist/passkey-enrollment-DKWsGt-K.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -2397,10 +2397,17 @@ interface SeedResult {
|
|
|
2397
2397
|
declare function seed(adapters: DataAdapters, options: SeedOptions): Promise<SeedResult>;
|
|
2398
2398
|
|
|
2399
2399
|
/**
|
|
2400
|
-
* Sets the tenant id in the context based on the url and headers
|
|
2401
|
-
*
|
|
2402
|
-
*
|
|
2403
|
-
*
|
|
2400
|
+
* Sets the tenant id in the context based on the url and headers.
|
|
2401
|
+
*
|
|
2402
|
+
* Resolution order:
|
|
2403
|
+
* 1. Authenticated user's tenant
|
|
2404
|
+
* 2. `tenant-id` header (API calls)
|
|
2405
|
+
* 3. Tenant subdomain of the ISSUER apex — `{tenant_id}.{issuerHost}` carries
|
|
2406
|
+
* the tenant id in the host itself, zero lookups
|
|
2407
|
+
* 4. Custom domain lookup (hosts outside the ISSUER apex)
|
|
2408
|
+
* 5. `tenant_id` query param (enrollment ticket URLs)
|
|
2409
|
+
* 6. Single-tenant auto-detect (skipped for state-keyed routes and for
|
|
2410
|
+
* /authorize with a registered client_id)
|
|
2404
2411
|
*/
|
|
2405
2412
|
declare function tenantMiddleware(ctx: Context<{
|
|
2406
2413
|
Bindings: Bindings;
|
|
@@ -2724,7 +2731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2724
2731
|
};
|
|
2725
2732
|
} & {
|
|
2726
2733
|
json: {
|
|
2727
|
-
type: "
|
|
2734
|
+
type: "email" | "passkey" | "push" | "phone" | "webauthn-roaming" | "webauthn-platform" | "totp";
|
|
2728
2735
|
phone_number?: string | undefined;
|
|
2729
2736
|
totp_secret?: string | undefined;
|
|
2730
2737
|
credential_id?: string | undefined;
|
|
@@ -2864,7 +2871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2864
2871
|
};
|
|
2865
2872
|
};
|
|
2866
2873
|
output: {
|
|
2867
|
-
name: "
|
|
2874
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2868
2875
|
enabled: boolean;
|
|
2869
2876
|
trial_expired?: boolean | undefined;
|
|
2870
2877
|
}[];
|
|
@@ -3019,7 +3026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3019
3026
|
$get: {
|
|
3020
3027
|
input: {
|
|
3021
3028
|
param: {
|
|
3022
|
-
factor_name: "
|
|
3029
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3023
3030
|
};
|
|
3024
3031
|
} & {
|
|
3025
3032
|
header: {
|
|
@@ -3027,7 +3034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3027
3034
|
};
|
|
3028
3035
|
};
|
|
3029
3036
|
output: {
|
|
3030
|
-
name: "
|
|
3037
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3031
3038
|
enabled: boolean;
|
|
3032
3039
|
trial_expired?: boolean | undefined;
|
|
3033
3040
|
};
|
|
@@ -3040,7 +3047,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3040
3047
|
$put: {
|
|
3041
3048
|
input: {
|
|
3042
3049
|
param: {
|
|
3043
|
-
factor_name: "
|
|
3050
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3044
3051
|
};
|
|
3045
3052
|
} & {
|
|
3046
3053
|
header: {
|
|
@@ -3052,7 +3059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3052
3059
|
};
|
|
3053
3060
|
};
|
|
3054
3061
|
output: {
|
|
3055
|
-
name: "
|
|
3062
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3056
3063
|
enabled: boolean;
|
|
3057
3064
|
trial_expired?: boolean | undefined;
|
|
3058
3065
|
};
|
|
@@ -5228,7 +5235,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5228
5235
|
hint?: string | undefined;
|
|
5229
5236
|
messages?: {
|
|
5230
5237
|
text: string;
|
|
5231
|
-
type: "
|
|
5238
|
+
type: "success" | "error" | "info" | "warning";
|
|
5232
5239
|
id?: number | undefined;
|
|
5233
5240
|
}[] | undefined;
|
|
5234
5241
|
required?: boolean | undefined;
|
|
@@ -5246,7 +5253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5246
5253
|
hint?: string | undefined;
|
|
5247
5254
|
messages?: {
|
|
5248
5255
|
text: string;
|
|
5249
|
-
type: "
|
|
5256
|
+
type: "success" | "error" | "info" | "warning";
|
|
5250
5257
|
id?: number | undefined;
|
|
5251
5258
|
}[] | undefined;
|
|
5252
5259
|
required?: boolean | undefined;
|
|
@@ -5270,7 +5277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5270
5277
|
hint?: string | undefined;
|
|
5271
5278
|
messages?: {
|
|
5272
5279
|
text: string;
|
|
5273
|
-
type: "
|
|
5280
|
+
type: "success" | "error" | "info" | "warning";
|
|
5274
5281
|
id?: number | undefined;
|
|
5275
5282
|
}[] | undefined;
|
|
5276
5283
|
required?: boolean | undefined;
|
|
@@ -5294,7 +5301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5294
5301
|
hint?: string | undefined;
|
|
5295
5302
|
messages?: {
|
|
5296
5303
|
text: string;
|
|
5297
|
-
type: "
|
|
5304
|
+
type: "success" | "error" | "info" | "warning";
|
|
5298
5305
|
id?: number | undefined;
|
|
5299
5306
|
}[] | undefined;
|
|
5300
5307
|
required?: boolean | undefined;
|
|
@@ -5323,7 +5330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5323
5330
|
hint?: string | undefined;
|
|
5324
5331
|
messages?: {
|
|
5325
5332
|
text: string;
|
|
5326
|
-
type: "
|
|
5333
|
+
type: "success" | "error" | "info" | "warning";
|
|
5327
5334
|
id?: number | undefined;
|
|
5328
5335
|
}[] | undefined;
|
|
5329
5336
|
required?: boolean | undefined;
|
|
@@ -5338,7 +5345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5338
5345
|
hint?: string | undefined;
|
|
5339
5346
|
messages?: {
|
|
5340
5347
|
text: string;
|
|
5341
|
-
type: "
|
|
5348
|
+
type: "success" | "error" | "info" | "warning";
|
|
5342
5349
|
id?: number | undefined;
|
|
5343
5350
|
}[] | undefined;
|
|
5344
5351
|
required?: boolean | undefined;
|
|
@@ -5359,7 +5366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5359
5366
|
hint?: string | undefined;
|
|
5360
5367
|
messages?: {
|
|
5361
5368
|
text: string;
|
|
5362
|
-
type: "
|
|
5369
|
+
type: "success" | "error" | "info" | "warning";
|
|
5363
5370
|
id?: number | undefined;
|
|
5364
5371
|
}[] | undefined;
|
|
5365
5372
|
required?: boolean | undefined;
|
|
@@ -5384,7 +5391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5384
5391
|
hint?: string | undefined;
|
|
5385
5392
|
messages?: {
|
|
5386
5393
|
text: string;
|
|
5387
|
-
type: "
|
|
5394
|
+
type: "success" | "error" | "info" | "warning";
|
|
5388
5395
|
id?: number | undefined;
|
|
5389
5396
|
}[] | undefined;
|
|
5390
5397
|
required?: boolean | undefined;
|
|
@@ -5403,7 +5410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5403
5410
|
hint?: string | undefined;
|
|
5404
5411
|
messages?: {
|
|
5405
5412
|
text: string;
|
|
5406
|
-
type: "
|
|
5413
|
+
type: "success" | "error" | "info" | "warning";
|
|
5407
5414
|
id?: number | undefined;
|
|
5408
5415
|
}[] | undefined;
|
|
5409
5416
|
required?: boolean | undefined;
|
|
@@ -5423,7 +5430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5423
5430
|
hint?: string | undefined;
|
|
5424
5431
|
messages?: {
|
|
5425
5432
|
text: string;
|
|
5426
|
-
type: "
|
|
5433
|
+
type: "success" | "error" | "info" | "warning";
|
|
5427
5434
|
id?: number | undefined;
|
|
5428
5435
|
}[] | undefined;
|
|
5429
5436
|
required?: boolean | undefined;
|
|
@@ -5442,7 +5449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5442
5449
|
hint?: string | undefined;
|
|
5443
5450
|
messages?: {
|
|
5444
5451
|
text: string;
|
|
5445
|
-
type: "
|
|
5452
|
+
type: "success" | "error" | "info" | "warning";
|
|
5446
5453
|
id?: number | undefined;
|
|
5447
5454
|
}[] | undefined;
|
|
5448
5455
|
required?: boolean | undefined;
|
|
@@ -5464,7 +5471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5464
5471
|
hint?: string | undefined;
|
|
5465
5472
|
messages?: {
|
|
5466
5473
|
text: string;
|
|
5467
|
-
type: "
|
|
5474
|
+
type: "success" | "error" | "info" | "warning";
|
|
5468
5475
|
id?: number | undefined;
|
|
5469
5476
|
}[] | undefined;
|
|
5470
5477
|
required?: boolean | undefined;
|
|
@@ -5486,7 +5493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5486
5493
|
hint?: string | undefined;
|
|
5487
5494
|
messages?: {
|
|
5488
5495
|
text: string;
|
|
5489
|
-
type: "
|
|
5496
|
+
type: "success" | "error" | "info" | "warning";
|
|
5490
5497
|
id?: number | undefined;
|
|
5491
5498
|
}[] | undefined;
|
|
5492
5499
|
required?: boolean | undefined;
|
|
@@ -5505,7 +5512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5505
5512
|
hint?: string | undefined;
|
|
5506
5513
|
messages?: {
|
|
5507
5514
|
text: string;
|
|
5508
|
-
type: "
|
|
5515
|
+
type: "success" | "error" | "info" | "warning";
|
|
5509
5516
|
id?: number | undefined;
|
|
5510
5517
|
}[] | undefined;
|
|
5511
5518
|
required?: boolean | undefined;
|
|
@@ -5530,7 +5537,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5530
5537
|
hint?: string | undefined;
|
|
5531
5538
|
messages?: {
|
|
5532
5539
|
text: string;
|
|
5533
|
-
type: "
|
|
5540
|
+
type: "success" | "error" | "info" | "warning";
|
|
5534
5541
|
id?: number | undefined;
|
|
5535
5542
|
}[] | undefined;
|
|
5536
5543
|
required?: boolean | undefined;
|
|
@@ -5551,7 +5558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5551
5558
|
hint?: string | undefined;
|
|
5552
5559
|
messages?: {
|
|
5553
5560
|
text: string;
|
|
5554
|
-
type: "
|
|
5561
|
+
type: "success" | "error" | "info" | "warning";
|
|
5555
5562
|
id?: number | undefined;
|
|
5556
5563
|
}[] | undefined;
|
|
5557
5564
|
required?: boolean | undefined;
|
|
@@ -5572,7 +5579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5572
5579
|
hint?: string | undefined;
|
|
5573
5580
|
messages?: {
|
|
5574
5581
|
text: string;
|
|
5575
|
-
type: "
|
|
5582
|
+
type: "success" | "error" | "info" | "warning";
|
|
5576
5583
|
id?: number | undefined;
|
|
5577
5584
|
}[] | undefined;
|
|
5578
5585
|
required?: boolean | undefined;
|
|
@@ -5805,7 +5812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5805
5812
|
hint?: string | undefined;
|
|
5806
5813
|
messages?: {
|
|
5807
5814
|
text: string;
|
|
5808
|
-
type: "
|
|
5815
|
+
type: "success" | "error" | "info" | "warning";
|
|
5809
5816
|
id?: number | undefined;
|
|
5810
5817
|
}[] | undefined;
|
|
5811
5818
|
required?: boolean | undefined;
|
|
@@ -5823,7 +5830,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5823
5830
|
hint?: string | undefined;
|
|
5824
5831
|
messages?: {
|
|
5825
5832
|
text: string;
|
|
5826
|
-
type: "
|
|
5833
|
+
type: "success" | "error" | "info" | "warning";
|
|
5827
5834
|
id?: number | undefined;
|
|
5828
5835
|
}[] | undefined;
|
|
5829
5836
|
required?: boolean | undefined;
|
|
@@ -5847,7 +5854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5847
5854
|
hint?: string | undefined;
|
|
5848
5855
|
messages?: {
|
|
5849
5856
|
text: string;
|
|
5850
|
-
type: "
|
|
5857
|
+
type: "success" | "error" | "info" | "warning";
|
|
5851
5858
|
id?: number | undefined;
|
|
5852
5859
|
}[] | undefined;
|
|
5853
5860
|
required?: boolean | undefined;
|
|
@@ -5871,7 +5878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5871
5878
|
hint?: string | undefined;
|
|
5872
5879
|
messages?: {
|
|
5873
5880
|
text: string;
|
|
5874
|
-
type: "
|
|
5881
|
+
type: "success" | "error" | "info" | "warning";
|
|
5875
5882
|
id?: number | undefined;
|
|
5876
5883
|
}[] | undefined;
|
|
5877
5884
|
required?: boolean | undefined;
|
|
@@ -5900,7 +5907,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5900
5907
|
hint?: string | undefined;
|
|
5901
5908
|
messages?: {
|
|
5902
5909
|
text: string;
|
|
5903
|
-
type: "
|
|
5910
|
+
type: "success" | "error" | "info" | "warning";
|
|
5904
5911
|
id?: number | undefined;
|
|
5905
5912
|
}[] | undefined;
|
|
5906
5913
|
required?: boolean | undefined;
|
|
@@ -5915,7 +5922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5915
5922
|
hint?: string | undefined;
|
|
5916
5923
|
messages?: {
|
|
5917
5924
|
text: string;
|
|
5918
|
-
type: "
|
|
5925
|
+
type: "success" | "error" | "info" | "warning";
|
|
5919
5926
|
id?: number | undefined;
|
|
5920
5927
|
}[] | undefined;
|
|
5921
5928
|
required?: boolean | undefined;
|
|
@@ -5936,7 +5943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5936
5943
|
hint?: string | undefined;
|
|
5937
5944
|
messages?: {
|
|
5938
5945
|
text: string;
|
|
5939
|
-
type: "
|
|
5946
|
+
type: "success" | "error" | "info" | "warning";
|
|
5940
5947
|
id?: number | undefined;
|
|
5941
5948
|
}[] | undefined;
|
|
5942
5949
|
required?: boolean | undefined;
|
|
@@ -5961,7 +5968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5961
5968
|
hint?: string | undefined;
|
|
5962
5969
|
messages?: {
|
|
5963
5970
|
text: string;
|
|
5964
|
-
type: "
|
|
5971
|
+
type: "success" | "error" | "info" | "warning";
|
|
5965
5972
|
id?: number | undefined;
|
|
5966
5973
|
}[] | undefined;
|
|
5967
5974
|
required?: boolean | undefined;
|
|
@@ -5980,7 +5987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5980
5987
|
hint?: string | undefined;
|
|
5981
5988
|
messages?: {
|
|
5982
5989
|
text: string;
|
|
5983
|
-
type: "
|
|
5990
|
+
type: "success" | "error" | "info" | "warning";
|
|
5984
5991
|
id?: number | undefined;
|
|
5985
5992
|
}[] | undefined;
|
|
5986
5993
|
required?: boolean | undefined;
|
|
@@ -6000,7 +6007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6000
6007
|
hint?: string | undefined;
|
|
6001
6008
|
messages?: {
|
|
6002
6009
|
text: string;
|
|
6003
|
-
type: "
|
|
6010
|
+
type: "success" | "error" | "info" | "warning";
|
|
6004
6011
|
id?: number | undefined;
|
|
6005
6012
|
}[] | undefined;
|
|
6006
6013
|
required?: boolean | undefined;
|
|
@@ -6019,7 +6026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6019
6026
|
hint?: string | undefined;
|
|
6020
6027
|
messages?: {
|
|
6021
6028
|
text: string;
|
|
6022
|
-
type: "
|
|
6029
|
+
type: "success" | "error" | "info" | "warning";
|
|
6023
6030
|
id?: number | undefined;
|
|
6024
6031
|
}[] | undefined;
|
|
6025
6032
|
required?: boolean | undefined;
|
|
@@ -6041,7 +6048,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6041
6048
|
hint?: string | undefined;
|
|
6042
6049
|
messages?: {
|
|
6043
6050
|
text: string;
|
|
6044
|
-
type: "
|
|
6051
|
+
type: "success" | "error" | "info" | "warning";
|
|
6045
6052
|
id?: number | undefined;
|
|
6046
6053
|
}[] | undefined;
|
|
6047
6054
|
required?: boolean | undefined;
|
|
@@ -6063,7 +6070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6063
6070
|
hint?: string | undefined;
|
|
6064
6071
|
messages?: {
|
|
6065
6072
|
text: string;
|
|
6066
|
-
type: "
|
|
6073
|
+
type: "success" | "error" | "info" | "warning";
|
|
6067
6074
|
id?: number | undefined;
|
|
6068
6075
|
}[] | undefined;
|
|
6069
6076
|
required?: boolean | undefined;
|
|
@@ -6082,7 +6089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6082
6089
|
hint?: string | undefined;
|
|
6083
6090
|
messages?: {
|
|
6084
6091
|
text: string;
|
|
6085
|
-
type: "
|
|
6092
|
+
type: "success" | "error" | "info" | "warning";
|
|
6086
6093
|
id?: number | undefined;
|
|
6087
6094
|
}[] | undefined;
|
|
6088
6095
|
required?: boolean | undefined;
|
|
@@ -6107,7 +6114,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6107
6114
|
hint?: string | undefined;
|
|
6108
6115
|
messages?: {
|
|
6109
6116
|
text: string;
|
|
6110
|
-
type: "
|
|
6117
|
+
type: "success" | "error" | "info" | "warning";
|
|
6111
6118
|
id?: number | undefined;
|
|
6112
6119
|
}[] | undefined;
|
|
6113
6120
|
required?: boolean | undefined;
|
|
@@ -6128,7 +6135,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6128
6135
|
hint?: string | undefined;
|
|
6129
6136
|
messages?: {
|
|
6130
6137
|
text: string;
|
|
6131
|
-
type: "
|
|
6138
|
+
type: "success" | "error" | "info" | "warning";
|
|
6132
6139
|
id?: number | undefined;
|
|
6133
6140
|
}[] | undefined;
|
|
6134
6141
|
required?: boolean | undefined;
|
|
@@ -6149,7 +6156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6149
6156
|
hint?: string | undefined;
|
|
6150
6157
|
messages?: {
|
|
6151
6158
|
text: string;
|
|
6152
|
-
type: "
|
|
6159
|
+
type: "success" | "error" | "info" | "warning";
|
|
6153
6160
|
id?: number | undefined;
|
|
6154
6161
|
}[] | undefined;
|
|
6155
6162
|
required?: boolean | undefined;
|
|
@@ -6397,7 +6404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6397
6404
|
hint?: string | undefined;
|
|
6398
6405
|
messages?: {
|
|
6399
6406
|
text: string;
|
|
6400
|
-
type: "
|
|
6407
|
+
type: "success" | "error" | "info" | "warning";
|
|
6401
6408
|
id?: number | undefined;
|
|
6402
6409
|
}[] | undefined;
|
|
6403
6410
|
required?: boolean | undefined;
|
|
@@ -6415,7 +6422,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6415
6422
|
hint?: string | undefined;
|
|
6416
6423
|
messages?: {
|
|
6417
6424
|
text: string;
|
|
6418
|
-
type: "
|
|
6425
|
+
type: "success" | "error" | "info" | "warning";
|
|
6419
6426
|
id?: number | undefined;
|
|
6420
6427
|
}[] | undefined;
|
|
6421
6428
|
required?: boolean | undefined;
|
|
@@ -6439,7 +6446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6439
6446
|
hint?: string | undefined;
|
|
6440
6447
|
messages?: {
|
|
6441
6448
|
text: string;
|
|
6442
|
-
type: "
|
|
6449
|
+
type: "success" | "error" | "info" | "warning";
|
|
6443
6450
|
id?: number | undefined;
|
|
6444
6451
|
}[] | undefined;
|
|
6445
6452
|
required?: boolean | undefined;
|
|
@@ -6463,7 +6470,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6463
6470
|
hint?: string | undefined;
|
|
6464
6471
|
messages?: {
|
|
6465
6472
|
text: string;
|
|
6466
|
-
type: "
|
|
6473
|
+
type: "success" | "error" | "info" | "warning";
|
|
6467
6474
|
id?: number | undefined;
|
|
6468
6475
|
}[] | undefined;
|
|
6469
6476
|
required?: boolean | undefined;
|
|
@@ -6492,7 +6499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6492
6499
|
hint?: string | undefined;
|
|
6493
6500
|
messages?: {
|
|
6494
6501
|
text: string;
|
|
6495
|
-
type: "
|
|
6502
|
+
type: "success" | "error" | "info" | "warning";
|
|
6496
6503
|
id?: number | undefined;
|
|
6497
6504
|
}[] | undefined;
|
|
6498
6505
|
required?: boolean | undefined;
|
|
@@ -6507,7 +6514,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6507
6514
|
hint?: string | undefined;
|
|
6508
6515
|
messages?: {
|
|
6509
6516
|
text: string;
|
|
6510
|
-
type: "
|
|
6517
|
+
type: "success" | "error" | "info" | "warning";
|
|
6511
6518
|
id?: number | undefined;
|
|
6512
6519
|
}[] | undefined;
|
|
6513
6520
|
required?: boolean | undefined;
|
|
@@ -6528,7 +6535,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6528
6535
|
hint?: string | undefined;
|
|
6529
6536
|
messages?: {
|
|
6530
6537
|
text: string;
|
|
6531
|
-
type: "
|
|
6538
|
+
type: "success" | "error" | "info" | "warning";
|
|
6532
6539
|
id?: number | undefined;
|
|
6533
6540
|
}[] | undefined;
|
|
6534
6541
|
required?: boolean | undefined;
|
|
@@ -6553,7 +6560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6553
6560
|
hint?: string | undefined;
|
|
6554
6561
|
messages?: {
|
|
6555
6562
|
text: string;
|
|
6556
|
-
type: "
|
|
6563
|
+
type: "success" | "error" | "info" | "warning";
|
|
6557
6564
|
id?: number | undefined;
|
|
6558
6565
|
}[] | undefined;
|
|
6559
6566
|
required?: boolean | undefined;
|
|
@@ -6572,7 +6579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6572
6579
|
hint?: string | undefined;
|
|
6573
6580
|
messages?: {
|
|
6574
6581
|
text: string;
|
|
6575
|
-
type: "
|
|
6582
|
+
type: "success" | "error" | "info" | "warning";
|
|
6576
6583
|
id?: number | undefined;
|
|
6577
6584
|
}[] | undefined;
|
|
6578
6585
|
required?: boolean | undefined;
|
|
@@ -6592,7 +6599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6592
6599
|
hint?: string | undefined;
|
|
6593
6600
|
messages?: {
|
|
6594
6601
|
text: string;
|
|
6595
|
-
type: "
|
|
6602
|
+
type: "success" | "error" | "info" | "warning";
|
|
6596
6603
|
id?: number | undefined;
|
|
6597
6604
|
}[] | undefined;
|
|
6598
6605
|
required?: boolean | undefined;
|
|
@@ -6611,7 +6618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6611
6618
|
hint?: string | undefined;
|
|
6612
6619
|
messages?: {
|
|
6613
6620
|
text: string;
|
|
6614
|
-
type: "
|
|
6621
|
+
type: "success" | "error" | "info" | "warning";
|
|
6615
6622
|
id?: number | undefined;
|
|
6616
6623
|
}[] | undefined;
|
|
6617
6624
|
required?: boolean | undefined;
|
|
@@ -6633,7 +6640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6633
6640
|
hint?: string | undefined;
|
|
6634
6641
|
messages?: {
|
|
6635
6642
|
text: string;
|
|
6636
|
-
type: "
|
|
6643
|
+
type: "success" | "error" | "info" | "warning";
|
|
6637
6644
|
id?: number | undefined;
|
|
6638
6645
|
}[] | undefined;
|
|
6639
6646
|
required?: boolean | undefined;
|
|
@@ -6655,7 +6662,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6655
6662
|
hint?: string | undefined;
|
|
6656
6663
|
messages?: {
|
|
6657
6664
|
text: string;
|
|
6658
|
-
type: "
|
|
6665
|
+
type: "success" | "error" | "info" | "warning";
|
|
6659
6666
|
id?: number | undefined;
|
|
6660
6667
|
}[] | undefined;
|
|
6661
6668
|
required?: boolean | undefined;
|
|
@@ -6674,7 +6681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6674
6681
|
hint?: string | undefined;
|
|
6675
6682
|
messages?: {
|
|
6676
6683
|
text: string;
|
|
6677
|
-
type: "
|
|
6684
|
+
type: "success" | "error" | "info" | "warning";
|
|
6678
6685
|
id?: number | undefined;
|
|
6679
6686
|
}[] | undefined;
|
|
6680
6687
|
required?: boolean | undefined;
|
|
@@ -6699,7 +6706,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6699
6706
|
hint?: string | undefined;
|
|
6700
6707
|
messages?: {
|
|
6701
6708
|
text: string;
|
|
6702
|
-
type: "
|
|
6709
|
+
type: "success" | "error" | "info" | "warning";
|
|
6703
6710
|
id?: number | undefined;
|
|
6704
6711
|
}[] | undefined;
|
|
6705
6712
|
required?: boolean | undefined;
|
|
@@ -6720,7 +6727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6720
6727
|
hint?: string | undefined;
|
|
6721
6728
|
messages?: {
|
|
6722
6729
|
text: string;
|
|
6723
|
-
type: "
|
|
6730
|
+
type: "success" | "error" | "info" | "warning";
|
|
6724
6731
|
id?: number | undefined;
|
|
6725
6732
|
}[] | undefined;
|
|
6726
6733
|
required?: boolean | undefined;
|
|
@@ -6741,7 +6748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6741
6748
|
hint?: string | undefined;
|
|
6742
6749
|
messages?: {
|
|
6743
6750
|
text: string;
|
|
6744
|
-
type: "
|
|
6751
|
+
type: "success" | "error" | "info" | "warning";
|
|
6745
6752
|
id?: number | undefined;
|
|
6746
6753
|
}[] | undefined;
|
|
6747
6754
|
required?: boolean | undefined;
|
|
@@ -6995,7 +7002,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6995
7002
|
hint?: string | undefined;
|
|
6996
7003
|
messages?: {
|
|
6997
7004
|
text: string;
|
|
6998
|
-
type: "
|
|
7005
|
+
type: "success" | "error" | "info" | "warning";
|
|
6999
7006
|
id?: number | undefined;
|
|
7000
7007
|
}[] | undefined;
|
|
7001
7008
|
required?: boolean | undefined;
|
|
@@ -7013,7 +7020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7013
7020
|
hint?: string | undefined;
|
|
7014
7021
|
messages?: {
|
|
7015
7022
|
text: string;
|
|
7016
|
-
type: "
|
|
7023
|
+
type: "success" | "error" | "info" | "warning";
|
|
7017
7024
|
id?: number | undefined;
|
|
7018
7025
|
}[] | undefined;
|
|
7019
7026
|
required?: boolean | undefined;
|
|
@@ -7037,7 +7044,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7037
7044
|
hint?: string | undefined;
|
|
7038
7045
|
messages?: {
|
|
7039
7046
|
text: string;
|
|
7040
|
-
type: "
|
|
7047
|
+
type: "success" | "error" | "info" | "warning";
|
|
7041
7048
|
id?: number | undefined;
|
|
7042
7049
|
}[] | undefined;
|
|
7043
7050
|
required?: boolean | undefined;
|
|
@@ -7061,7 +7068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7061
7068
|
hint?: string | undefined;
|
|
7062
7069
|
messages?: {
|
|
7063
7070
|
text: string;
|
|
7064
|
-
type: "
|
|
7071
|
+
type: "success" | "error" | "info" | "warning";
|
|
7065
7072
|
id?: number | undefined;
|
|
7066
7073
|
}[] | undefined;
|
|
7067
7074
|
required?: boolean | undefined;
|
|
@@ -7086,7 +7093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7086
7093
|
hint?: string | undefined;
|
|
7087
7094
|
messages?: {
|
|
7088
7095
|
text: string;
|
|
7089
|
-
type: "
|
|
7096
|
+
type: "success" | "error" | "info" | "warning";
|
|
7090
7097
|
id?: number | undefined;
|
|
7091
7098
|
}[] | undefined;
|
|
7092
7099
|
required?: boolean | undefined;
|
|
@@ -7101,7 +7108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7101
7108
|
hint?: string | undefined;
|
|
7102
7109
|
messages?: {
|
|
7103
7110
|
text: string;
|
|
7104
|
-
type: "
|
|
7111
|
+
type: "success" | "error" | "info" | "warning";
|
|
7105
7112
|
id?: number | undefined;
|
|
7106
7113
|
}[] | undefined;
|
|
7107
7114
|
required?: boolean | undefined;
|
|
@@ -7122,7 +7129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7122
7129
|
hint?: string | undefined;
|
|
7123
7130
|
messages?: {
|
|
7124
7131
|
text: string;
|
|
7125
|
-
type: "
|
|
7132
|
+
type: "success" | "error" | "info" | "warning";
|
|
7126
7133
|
id?: number | undefined;
|
|
7127
7134
|
}[] | undefined;
|
|
7128
7135
|
required?: boolean | undefined;
|
|
@@ -7147,7 +7154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7147
7154
|
hint?: string | undefined;
|
|
7148
7155
|
messages?: {
|
|
7149
7156
|
text: string;
|
|
7150
|
-
type: "
|
|
7157
|
+
type: "success" | "error" | "info" | "warning";
|
|
7151
7158
|
id?: number | undefined;
|
|
7152
7159
|
}[] | undefined;
|
|
7153
7160
|
required?: boolean | undefined;
|
|
@@ -7166,7 +7173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7166
7173
|
hint?: string | undefined;
|
|
7167
7174
|
messages?: {
|
|
7168
7175
|
text: string;
|
|
7169
|
-
type: "
|
|
7176
|
+
type: "success" | "error" | "info" | "warning";
|
|
7170
7177
|
id?: number | undefined;
|
|
7171
7178
|
}[] | undefined;
|
|
7172
7179
|
required?: boolean | undefined;
|
|
@@ -7186,7 +7193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7186
7193
|
hint?: string | undefined;
|
|
7187
7194
|
messages?: {
|
|
7188
7195
|
text: string;
|
|
7189
|
-
type: "
|
|
7196
|
+
type: "success" | "error" | "info" | "warning";
|
|
7190
7197
|
id?: number | undefined;
|
|
7191
7198
|
}[] | undefined;
|
|
7192
7199
|
required?: boolean | undefined;
|
|
@@ -7205,7 +7212,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7205
7212
|
hint?: string | undefined;
|
|
7206
7213
|
messages?: {
|
|
7207
7214
|
text: string;
|
|
7208
|
-
type: "
|
|
7215
|
+
type: "success" | "error" | "info" | "warning";
|
|
7209
7216
|
id?: number | undefined;
|
|
7210
7217
|
}[] | undefined;
|
|
7211
7218
|
required?: boolean | undefined;
|
|
@@ -7227,7 +7234,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7227
7234
|
hint?: string | undefined;
|
|
7228
7235
|
messages?: {
|
|
7229
7236
|
text: string;
|
|
7230
|
-
type: "
|
|
7237
|
+
type: "success" | "error" | "info" | "warning";
|
|
7231
7238
|
id?: number | undefined;
|
|
7232
7239
|
}[] | undefined;
|
|
7233
7240
|
required?: boolean | undefined;
|
|
@@ -7249,7 +7256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7249
7256
|
hint?: string | undefined;
|
|
7250
7257
|
messages?: {
|
|
7251
7258
|
text: string;
|
|
7252
|
-
type: "
|
|
7259
|
+
type: "success" | "error" | "info" | "warning";
|
|
7253
7260
|
id?: number | undefined;
|
|
7254
7261
|
}[] | undefined;
|
|
7255
7262
|
required?: boolean | undefined;
|
|
@@ -7268,7 +7275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7268
7275
|
hint?: string | undefined;
|
|
7269
7276
|
messages?: {
|
|
7270
7277
|
text: string;
|
|
7271
|
-
type: "
|
|
7278
|
+
type: "success" | "error" | "info" | "warning";
|
|
7272
7279
|
id?: number | undefined;
|
|
7273
7280
|
}[] | undefined;
|
|
7274
7281
|
required?: boolean | undefined;
|
|
@@ -7293,7 +7300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7293
7300
|
hint?: string | undefined;
|
|
7294
7301
|
messages?: {
|
|
7295
7302
|
text: string;
|
|
7296
|
-
type: "
|
|
7303
|
+
type: "success" | "error" | "info" | "warning";
|
|
7297
7304
|
id?: number | undefined;
|
|
7298
7305
|
}[] | undefined;
|
|
7299
7306
|
required?: boolean | undefined;
|
|
@@ -7314,7 +7321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7314
7321
|
hint?: string | undefined;
|
|
7315
7322
|
messages?: {
|
|
7316
7323
|
text: string;
|
|
7317
|
-
type: "
|
|
7324
|
+
type: "success" | "error" | "info" | "warning";
|
|
7318
7325
|
id?: number | undefined;
|
|
7319
7326
|
}[] | undefined;
|
|
7320
7327
|
required?: boolean | undefined;
|
|
@@ -7335,7 +7342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7335
7342
|
hint?: string | undefined;
|
|
7336
7343
|
messages?: {
|
|
7337
7344
|
text: string;
|
|
7338
|
-
type: "
|
|
7345
|
+
type: "success" | "error" | "info" | "warning";
|
|
7339
7346
|
id?: number | undefined;
|
|
7340
7347
|
}[] | undefined;
|
|
7341
7348
|
required?: boolean | undefined;
|
|
@@ -7566,7 +7573,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7566
7573
|
hint?: string | undefined;
|
|
7567
7574
|
messages?: {
|
|
7568
7575
|
text: string;
|
|
7569
|
-
type: "
|
|
7576
|
+
type: "success" | "error" | "info" | "warning";
|
|
7570
7577
|
id?: number | undefined;
|
|
7571
7578
|
}[] | undefined;
|
|
7572
7579
|
required?: boolean | undefined;
|
|
@@ -7584,7 +7591,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7584
7591
|
hint?: string | undefined;
|
|
7585
7592
|
messages?: {
|
|
7586
7593
|
text: string;
|
|
7587
|
-
type: "
|
|
7594
|
+
type: "success" | "error" | "info" | "warning";
|
|
7588
7595
|
id?: number | undefined;
|
|
7589
7596
|
}[] | undefined;
|
|
7590
7597
|
required?: boolean | undefined;
|
|
@@ -7608,7 +7615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7608
7615
|
hint?: string | undefined;
|
|
7609
7616
|
messages?: {
|
|
7610
7617
|
text: string;
|
|
7611
|
-
type: "
|
|
7618
|
+
type: "success" | "error" | "info" | "warning";
|
|
7612
7619
|
id?: number | undefined;
|
|
7613
7620
|
}[] | undefined;
|
|
7614
7621
|
required?: boolean | undefined;
|
|
@@ -7632,7 +7639,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7632
7639
|
hint?: string | undefined;
|
|
7633
7640
|
messages?: {
|
|
7634
7641
|
text: string;
|
|
7635
|
-
type: "
|
|
7642
|
+
type: "success" | "error" | "info" | "warning";
|
|
7636
7643
|
id?: number | undefined;
|
|
7637
7644
|
}[] | undefined;
|
|
7638
7645
|
required?: boolean | undefined;
|
|
@@ -7661,7 +7668,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7661
7668
|
hint?: string | undefined;
|
|
7662
7669
|
messages?: {
|
|
7663
7670
|
text: string;
|
|
7664
|
-
type: "
|
|
7671
|
+
type: "success" | "error" | "info" | "warning";
|
|
7665
7672
|
id?: number | undefined;
|
|
7666
7673
|
}[] | undefined;
|
|
7667
7674
|
required?: boolean | undefined;
|
|
@@ -7676,7 +7683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7676
7683
|
hint?: string | undefined;
|
|
7677
7684
|
messages?: {
|
|
7678
7685
|
text: string;
|
|
7679
|
-
type: "
|
|
7686
|
+
type: "success" | "error" | "info" | "warning";
|
|
7680
7687
|
id?: number | undefined;
|
|
7681
7688
|
}[] | undefined;
|
|
7682
7689
|
required?: boolean | undefined;
|
|
@@ -7697,7 +7704,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7697
7704
|
hint?: string | undefined;
|
|
7698
7705
|
messages?: {
|
|
7699
7706
|
text: string;
|
|
7700
|
-
type: "
|
|
7707
|
+
type: "success" | "error" | "info" | "warning";
|
|
7701
7708
|
id?: number | undefined;
|
|
7702
7709
|
}[] | undefined;
|
|
7703
7710
|
required?: boolean | undefined;
|
|
@@ -7722,7 +7729,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7722
7729
|
hint?: string | undefined;
|
|
7723
7730
|
messages?: {
|
|
7724
7731
|
text: string;
|
|
7725
|
-
type: "
|
|
7732
|
+
type: "success" | "error" | "info" | "warning";
|
|
7726
7733
|
id?: number | undefined;
|
|
7727
7734
|
}[] | undefined;
|
|
7728
7735
|
required?: boolean | undefined;
|
|
@@ -7741,7 +7748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7741
7748
|
hint?: string | undefined;
|
|
7742
7749
|
messages?: {
|
|
7743
7750
|
text: string;
|
|
7744
|
-
type: "
|
|
7751
|
+
type: "success" | "error" | "info" | "warning";
|
|
7745
7752
|
id?: number | undefined;
|
|
7746
7753
|
}[] | undefined;
|
|
7747
7754
|
required?: boolean | undefined;
|
|
@@ -7761,7 +7768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7761
7768
|
hint?: string | undefined;
|
|
7762
7769
|
messages?: {
|
|
7763
7770
|
text: string;
|
|
7764
|
-
type: "
|
|
7771
|
+
type: "success" | "error" | "info" | "warning";
|
|
7765
7772
|
id?: number | undefined;
|
|
7766
7773
|
}[] | undefined;
|
|
7767
7774
|
required?: boolean | undefined;
|
|
@@ -7780,7 +7787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7780
7787
|
hint?: string | undefined;
|
|
7781
7788
|
messages?: {
|
|
7782
7789
|
text: string;
|
|
7783
|
-
type: "
|
|
7790
|
+
type: "success" | "error" | "info" | "warning";
|
|
7784
7791
|
id?: number | undefined;
|
|
7785
7792
|
}[] | undefined;
|
|
7786
7793
|
required?: boolean | undefined;
|
|
@@ -7802,7 +7809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7802
7809
|
hint?: string | undefined;
|
|
7803
7810
|
messages?: {
|
|
7804
7811
|
text: string;
|
|
7805
|
-
type: "
|
|
7812
|
+
type: "success" | "error" | "info" | "warning";
|
|
7806
7813
|
id?: number | undefined;
|
|
7807
7814
|
}[] | undefined;
|
|
7808
7815
|
required?: boolean | undefined;
|
|
@@ -7824,7 +7831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7824
7831
|
hint?: string | undefined;
|
|
7825
7832
|
messages?: {
|
|
7826
7833
|
text: string;
|
|
7827
|
-
type: "
|
|
7834
|
+
type: "success" | "error" | "info" | "warning";
|
|
7828
7835
|
id?: number | undefined;
|
|
7829
7836
|
}[] | undefined;
|
|
7830
7837
|
required?: boolean | undefined;
|
|
@@ -7843,7 +7850,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7843
7850
|
hint?: string | undefined;
|
|
7844
7851
|
messages?: {
|
|
7845
7852
|
text: string;
|
|
7846
|
-
type: "
|
|
7853
|
+
type: "success" | "error" | "info" | "warning";
|
|
7847
7854
|
id?: number | undefined;
|
|
7848
7855
|
}[] | undefined;
|
|
7849
7856
|
required?: boolean | undefined;
|
|
@@ -7868,7 +7875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7868
7875
|
hint?: string | undefined;
|
|
7869
7876
|
messages?: {
|
|
7870
7877
|
text: string;
|
|
7871
|
-
type: "
|
|
7878
|
+
type: "success" | "error" | "info" | "warning";
|
|
7872
7879
|
id?: number | undefined;
|
|
7873
7880
|
}[] | undefined;
|
|
7874
7881
|
required?: boolean | undefined;
|
|
@@ -7889,7 +7896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7889
7896
|
hint?: string | undefined;
|
|
7890
7897
|
messages?: {
|
|
7891
7898
|
text: string;
|
|
7892
|
-
type: "
|
|
7899
|
+
type: "success" | "error" | "info" | "warning";
|
|
7893
7900
|
id?: number | undefined;
|
|
7894
7901
|
}[] | undefined;
|
|
7895
7902
|
required?: boolean | undefined;
|
|
@@ -7910,7 +7917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7910
7917
|
hint?: string | undefined;
|
|
7911
7918
|
messages?: {
|
|
7912
7919
|
text: string;
|
|
7913
|
-
type: "
|
|
7920
|
+
type: "success" | "error" | "info" | "warning";
|
|
7914
7921
|
id?: number | undefined;
|
|
7915
7922
|
}[] | undefined;
|
|
7916
7923
|
required?: boolean | undefined;
|
|
@@ -8143,7 +8150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8143
8150
|
hint?: string | undefined;
|
|
8144
8151
|
messages?: {
|
|
8145
8152
|
text: string;
|
|
8146
|
-
type: "
|
|
8153
|
+
type: "success" | "error" | "info" | "warning";
|
|
8147
8154
|
id?: number | undefined;
|
|
8148
8155
|
}[] | undefined;
|
|
8149
8156
|
required?: boolean | undefined;
|
|
@@ -8161,7 +8168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8161
8168
|
hint?: string | undefined;
|
|
8162
8169
|
messages?: {
|
|
8163
8170
|
text: string;
|
|
8164
|
-
type: "
|
|
8171
|
+
type: "success" | "error" | "info" | "warning";
|
|
8165
8172
|
id?: number | undefined;
|
|
8166
8173
|
}[] | undefined;
|
|
8167
8174
|
required?: boolean | undefined;
|
|
@@ -8185,7 +8192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8185
8192
|
hint?: string | undefined;
|
|
8186
8193
|
messages?: {
|
|
8187
8194
|
text: string;
|
|
8188
|
-
type: "
|
|
8195
|
+
type: "success" | "error" | "info" | "warning";
|
|
8189
8196
|
id?: number | undefined;
|
|
8190
8197
|
}[] | undefined;
|
|
8191
8198
|
required?: boolean | undefined;
|
|
@@ -8209,7 +8216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8209
8216
|
hint?: string | undefined;
|
|
8210
8217
|
messages?: {
|
|
8211
8218
|
text: string;
|
|
8212
|
-
type: "
|
|
8219
|
+
type: "success" | "error" | "info" | "warning";
|
|
8213
8220
|
id?: number | undefined;
|
|
8214
8221
|
}[] | undefined;
|
|
8215
8222
|
required?: boolean | undefined;
|
|
@@ -8234,7 +8241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8234
8241
|
hint?: string | undefined;
|
|
8235
8242
|
messages?: {
|
|
8236
8243
|
text: string;
|
|
8237
|
-
type: "
|
|
8244
|
+
type: "success" | "error" | "info" | "warning";
|
|
8238
8245
|
id?: number | undefined;
|
|
8239
8246
|
}[] | undefined;
|
|
8240
8247
|
required?: boolean | undefined;
|
|
@@ -8249,7 +8256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8249
8256
|
hint?: string | undefined;
|
|
8250
8257
|
messages?: {
|
|
8251
8258
|
text: string;
|
|
8252
|
-
type: "
|
|
8259
|
+
type: "success" | "error" | "info" | "warning";
|
|
8253
8260
|
id?: number | undefined;
|
|
8254
8261
|
}[] | undefined;
|
|
8255
8262
|
required?: boolean | undefined;
|
|
@@ -8270,7 +8277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8270
8277
|
hint?: string | undefined;
|
|
8271
8278
|
messages?: {
|
|
8272
8279
|
text: string;
|
|
8273
|
-
type: "
|
|
8280
|
+
type: "success" | "error" | "info" | "warning";
|
|
8274
8281
|
id?: number | undefined;
|
|
8275
8282
|
}[] | undefined;
|
|
8276
8283
|
required?: boolean | undefined;
|
|
@@ -8295,7 +8302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8295
8302
|
hint?: string | undefined;
|
|
8296
8303
|
messages?: {
|
|
8297
8304
|
text: string;
|
|
8298
|
-
type: "
|
|
8305
|
+
type: "success" | "error" | "info" | "warning";
|
|
8299
8306
|
id?: number | undefined;
|
|
8300
8307
|
}[] | undefined;
|
|
8301
8308
|
required?: boolean | undefined;
|
|
@@ -8314,7 +8321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8314
8321
|
hint?: string | undefined;
|
|
8315
8322
|
messages?: {
|
|
8316
8323
|
text: string;
|
|
8317
|
-
type: "
|
|
8324
|
+
type: "success" | "error" | "info" | "warning";
|
|
8318
8325
|
id?: number | undefined;
|
|
8319
8326
|
}[] | undefined;
|
|
8320
8327
|
required?: boolean | undefined;
|
|
@@ -8334,7 +8341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8334
8341
|
hint?: string | undefined;
|
|
8335
8342
|
messages?: {
|
|
8336
8343
|
text: string;
|
|
8337
|
-
type: "
|
|
8344
|
+
type: "success" | "error" | "info" | "warning";
|
|
8338
8345
|
id?: number | undefined;
|
|
8339
8346
|
}[] | undefined;
|
|
8340
8347
|
required?: boolean | undefined;
|
|
@@ -8353,7 +8360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8353
8360
|
hint?: string | undefined;
|
|
8354
8361
|
messages?: {
|
|
8355
8362
|
text: string;
|
|
8356
|
-
type: "
|
|
8363
|
+
type: "success" | "error" | "info" | "warning";
|
|
8357
8364
|
id?: number | undefined;
|
|
8358
8365
|
}[] | undefined;
|
|
8359
8366
|
required?: boolean | undefined;
|
|
@@ -8375,7 +8382,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8375
8382
|
hint?: string | undefined;
|
|
8376
8383
|
messages?: {
|
|
8377
8384
|
text: string;
|
|
8378
|
-
type: "
|
|
8385
|
+
type: "success" | "error" | "info" | "warning";
|
|
8379
8386
|
id?: number | undefined;
|
|
8380
8387
|
}[] | undefined;
|
|
8381
8388
|
required?: boolean | undefined;
|
|
@@ -8397,7 +8404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8397
8404
|
hint?: string | undefined;
|
|
8398
8405
|
messages?: {
|
|
8399
8406
|
text: string;
|
|
8400
|
-
type: "
|
|
8407
|
+
type: "success" | "error" | "info" | "warning";
|
|
8401
8408
|
id?: number | undefined;
|
|
8402
8409
|
}[] | undefined;
|
|
8403
8410
|
required?: boolean | undefined;
|
|
@@ -8416,7 +8423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8416
8423
|
hint?: string | undefined;
|
|
8417
8424
|
messages?: {
|
|
8418
8425
|
text: string;
|
|
8419
|
-
type: "
|
|
8426
|
+
type: "success" | "error" | "info" | "warning";
|
|
8420
8427
|
id?: number | undefined;
|
|
8421
8428
|
}[] | undefined;
|
|
8422
8429
|
required?: boolean | undefined;
|
|
@@ -8441,7 +8448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8441
8448
|
hint?: string | undefined;
|
|
8442
8449
|
messages?: {
|
|
8443
8450
|
text: string;
|
|
8444
|
-
type: "
|
|
8451
|
+
type: "success" | "error" | "info" | "warning";
|
|
8445
8452
|
id?: number | undefined;
|
|
8446
8453
|
}[] | undefined;
|
|
8447
8454
|
required?: boolean | undefined;
|
|
@@ -8462,7 +8469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8462
8469
|
hint?: string | undefined;
|
|
8463
8470
|
messages?: {
|
|
8464
8471
|
text: string;
|
|
8465
|
-
type: "
|
|
8472
|
+
type: "success" | "error" | "info" | "warning";
|
|
8466
8473
|
id?: number | undefined;
|
|
8467
8474
|
}[] | undefined;
|
|
8468
8475
|
required?: boolean | undefined;
|
|
@@ -8483,7 +8490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8483
8490
|
hint?: string | undefined;
|
|
8484
8491
|
messages?: {
|
|
8485
8492
|
text: string;
|
|
8486
|
-
type: "
|
|
8493
|
+
type: "success" | "error" | "info" | "warning";
|
|
8487
8494
|
id?: number | undefined;
|
|
8488
8495
|
}[] | undefined;
|
|
8489
8496
|
required?: boolean | undefined;
|
|
@@ -8714,7 +8721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8714
8721
|
hint?: string | undefined;
|
|
8715
8722
|
messages?: {
|
|
8716
8723
|
text: string;
|
|
8717
|
-
type: "
|
|
8724
|
+
type: "success" | "error" | "info" | "warning";
|
|
8718
8725
|
id?: number | undefined;
|
|
8719
8726
|
}[] | undefined;
|
|
8720
8727
|
required?: boolean | undefined;
|
|
@@ -8732,7 +8739,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8732
8739
|
hint?: string | undefined;
|
|
8733
8740
|
messages?: {
|
|
8734
8741
|
text: string;
|
|
8735
|
-
type: "
|
|
8742
|
+
type: "success" | "error" | "info" | "warning";
|
|
8736
8743
|
id?: number | undefined;
|
|
8737
8744
|
}[] | undefined;
|
|
8738
8745
|
required?: boolean | undefined;
|
|
@@ -8756,7 +8763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8756
8763
|
hint?: string | undefined;
|
|
8757
8764
|
messages?: {
|
|
8758
8765
|
text: string;
|
|
8759
|
-
type: "
|
|
8766
|
+
type: "success" | "error" | "info" | "warning";
|
|
8760
8767
|
id?: number | undefined;
|
|
8761
8768
|
}[] | undefined;
|
|
8762
8769
|
required?: boolean | undefined;
|
|
@@ -8780,7 +8787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8780
8787
|
hint?: string | undefined;
|
|
8781
8788
|
messages?: {
|
|
8782
8789
|
text: string;
|
|
8783
|
-
type: "
|
|
8790
|
+
type: "success" | "error" | "info" | "warning";
|
|
8784
8791
|
id?: number | undefined;
|
|
8785
8792
|
}[] | undefined;
|
|
8786
8793
|
required?: boolean | undefined;
|
|
@@ -8809,7 +8816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8809
8816
|
hint?: string | undefined;
|
|
8810
8817
|
messages?: {
|
|
8811
8818
|
text: string;
|
|
8812
|
-
type: "
|
|
8819
|
+
type: "success" | "error" | "info" | "warning";
|
|
8813
8820
|
id?: number | undefined;
|
|
8814
8821
|
}[] | undefined;
|
|
8815
8822
|
required?: boolean | undefined;
|
|
@@ -8824,7 +8831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8824
8831
|
hint?: string | undefined;
|
|
8825
8832
|
messages?: {
|
|
8826
8833
|
text: string;
|
|
8827
|
-
type: "
|
|
8834
|
+
type: "success" | "error" | "info" | "warning";
|
|
8828
8835
|
id?: number | undefined;
|
|
8829
8836
|
}[] | undefined;
|
|
8830
8837
|
required?: boolean | undefined;
|
|
@@ -8845,7 +8852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8845
8852
|
hint?: string | undefined;
|
|
8846
8853
|
messages?: {
|
|
8847
8854
|
text: string;
|
|
8848
|
-
type: "
|
|
8855
|
+
type: "success" | "error" | "info" | "warning";
|
|
8849
8856
|
id?: number | undefined;
|
|
8850
8857
|
}[] | undefined;
|
|
8851
8858
|
required?: boolean | undefined;
|
|
@@ -8870,7 +8877,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8870
8877
|
hint?: string | undefined;
|
|
8871
8878
|
messages?: {
|
|
8872
8879
|
text: string;
|
|
8873
|
-
type: "
|
|
8880
|
+
type: "success" | "error" | "info" | "warning";
|
|
8874
8881
|
id?: number | undefined;
|
|
8875
8882
|
}[] | undefined;
|
|
8876
8883
|
required?: boolean | undefined;
|
|
@@ -8889,7 +8896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8889
8896
|
hint?: string | undefined;
|
|
8890
8897
|
messages?: {
|
|
8891
8898
|
text: string;
|
|
8892
|
-
type: "
|
|
8899
|
+
type: "success" | "error" | "info" | "warning";
|
|
8893
8900
|
id?: number | undefined;
|
|
8894
8901
|
}[] | undefined;
|
|
8895
8902
|
required?: boolean | undefined;
|
|
@@ -8909,7 +8916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8909
8916
|
hint?: string | undefined;
|
|
8910
8917
|
messages?: {
|
|
8911
8918
|
text: string;
|
|
8912
|
-
type: "
|
|
8919
|
+
type: "success" | "error" | "info" | "warning";
|
|
8913
8920
|
id?: number | undefined;
|
|
8914
8921
|
}[] | undefined;
|
|
8915
8922
|
required?: boolean | undefined;
|
|
@@ -8928,7 +8935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8928
8935
|
hint?: string | undefined;
|
|
8929
8936
|
messages?: {
|
|
8930
8937
|
text: string;
|
|
8931
|
-
type: "
|
|
8938
|
+
type: "success" | "error" | "info" | "warning";
|
|
8932
8939
|
id?: number | undefined;
|
|
8933
8940
|
}[] | undefined;
|
|
8934
8941
|
required?: boolean | undefined;
|
|
@@ -8950,7 +8957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8950
8957
|
hint?: string | undefined;
|
|
8951
8958
|
messages?: {
|
|
8952
8959
|
text: string;
|
|
8953
|
-
type: "
|
|
8960
|
+
type: "success" | "error" | "info" | "warning";
|
|
8954
8961
|
id?: number | undefined;
|
|
8955
8962
|
}[] | undefined;
|
|
8956
8963
|
required?: boolean | undefined;
|
|
@@ -8972,7 +8979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8972
8979
|
hint?: string | undefined;
|
|
8973
8980
|
messages?: {
|
|
8974
8981
|
text: string;
|
|
8975
|
-
type: "
|
|
8982
|
+
type: "success" | "error" | "info" | "warning";
|
|
8976
8983
|
id?: number | undefined;
|
|
8977
8984
|
}[] | undefined;
|
|
8978
8985
|
required?: boolean | undefined;
|
|
@@ -8991,7 +8998,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8991
8998
|
hint?: string | undefined;
|
|
8992
8999
|
messages?: {
|
|
8993
9000
|
text: string;
|
|
8994
|
-
type: "
|
|
9001
|
+
type: "success" | "error" | "info" | "warning";
|
|
8995
9002
|
id?: number | undefined;
|
|
8996
9003
|
}[] | undefined;
|
|
8997
9004
|
required?: boolean | undefined;
|
|
@@ -9016,7 +9023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9016
9023
|
hint?: string | undefined;
|
|
9017
9024
|
messages?: {
|
|
9018
9025
|
text: string;
|
|
9019
|
-
type: "
|
|
9026
|
+
type: "success" | "error" | "info" | "warning";
|
|
9020
9027
|
id?: number | undefined;
|
|
9021
9028
|
}[] | undefined;
|
|
9022
9029
|
required?: boolean | undefined;
|
|
@@ -9037,7 +9044,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9037
9044
|
hint?: string | undefined;
|
|
9038
9045
|
messages?: {
|
|
9039
9046
|
text: string;
|
|
9040
|
-
type: "
|
|
9047
|
+
type: "success" | "error" | "info" | "warning";
|
|
9041
9048
|
id?: number | undefined;
|
|
9042
9049
|
}[] | undefined;
|
|
9043
9050
|
required?: boolean | undefined;
|
|
@@ -9058,7 +9065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9058
9065
|
hint?: string | undefined;
|
|
9059
9066
|
messages?: {
|
|
9060
9067
|
text: string;
|
|
9061
|
-
type: "
|
|
9068
|
+
type: "success" | "error" | "info" | "warning";
|
|
9062
9069
|
id?: number | undefined;
|
|
9063
9070
|
}[] | undefined;
|
|
9064
9071
|
required?: boolean | undefined;
|
|
@@ -9288,7 +9295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9288
9295
|
};
|
|
9289
9296
|
};
|
|
9290
9297
|
output: {
|
|
9291
|
-
prompt: "
|
|
9298
|
+
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";
|
|
9292
9299
|
language: string;
|
|
9293
9300
|
}[];
|
|
9294
9301
|
outputFormat: "json";
|
|
@@ -9326,7 +9333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9326
9333
|
$get: {
|
|
9327
9334
|
input: {
|
|
9328
9335
|
param: {
|
|
9329
|
-
prompt: "
|
|
9336
|
+
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";
|
|
9330
9337
|
language: string;
|
|
9331
9338
|
};
|
|
9332
9339
|
} & {
|
|
@@ -9348,7 +9355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9348
9355
|
$put: {
|
|
9349
9356
|
input: {
|
|
9350
9357
|
param: {
|
|
9351
|
-
prompt: "
|
|
9358
|
+
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";
|
|
9352
9359
|
language: string;
|
|
9353
9360
|
};
|
|
9354
9361
|
} & {
|
|
@@ -9372,7 +9379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9372
9379
|
$delete: {
|
|
9373
9380
|
input: {
|
|
9374
9381
|
param: {
|
|
9375
|
-
prompt: "
|
|
9382
|
+
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";
|
|
9376
9383
|
language: string;
|
|
9377
9384
|
};
|
|
9378
9385
|
} & {
|
|
@@ -10234,7 +10241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10234
10241
|
};
|
|
10235
10242
|
} | {
|
|
10236
10243
|
mode: "inline";
|
|
10237
|
-
status: "
|
|
10244
|
+
status: "success" | "error";
|
|
10238
10245
|
connection_id: string;
|
|
10239
10246
|
connection_name: string;
|
|
10240
10247
|
strategy: string;
|
|
@@ -10786,6 +10793,66 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10786
10793
|
status: 200;
|
|
10787
10794
|
};
|
|
10788
10795
|
};
|
|
10796
|
+
} & {
|
|
10797
|
+
"/:hook_id/try": {
|
|
10798
|
+
$post: {
|
|
10799
|
+
input: {
|
|
10800
|
+
param: {
|
|
10801
|
+
hook_id: string;
|
|
10802
|
+
};
|
|
10803
|
+
} & {
|
|
10804
|
+
header: {
|
|
10805
|
+
"tenant-id"?: string | undefined;
|
|
10806
|
+
};
|
|
10807
|
+
} & {
|
|
10808
|
+
json: {
|
|
10809
|
+
user_id: string;
|
|
10810
|
+
};
|
|
10811
|
+
};
|
|
10812
|
+
output: {};
|
|
10813
|
+
outputFormat: string;
|
|
10814
|
+
status: 400;
|
|
10815
|
+
} | {
|
|
10816
|
+
input: {
|
|
10817
|
+
param: {
|
|
10818
|
+
hook_id: string;
|
|
10819
|
+
};
|
|
10820
|
+
} & {
|
|
10821
|
+
header: {
|
|
10822
|
+
"tenant-id"?: string | undefined;
|
|
10823
|
+
};
|
|
10824
|
+
} & {
|
|
10825
|
+
json: {
|
|
10826
|
+
user_id: string;
|
|
10827
|
+
};
|
|
10828
|
+
};
|
|
10829
|
+
output: {};
|
|
10830
|
+
outputFormat: string;
|
|
10831
|
+
status: 404;
|
|
10832
|
+
} | {
|
|
10833
|
+
input: {
|
|
10834
|
+
param: {
|
|
10835
|
+
hook_id: string;
|
|
10836
|
+
};
|
|
10837
|
+
} & {
|
|
10838
|
+
header: {
|
|
10839
|
+
"tenant-id"?: string | undefined;
|
|
10840
|
+
};
|
|
10841
|
+
} & {
|
|
10842
|
+
json: {
|
|
10843
|
+
user_id: string;
|
|
10844
|
+
};
|
|
10845
|
+
};
|
|
10846
|
+
output: {
|
|
10847
|
+
ok: boolean;
|
|
10848
|
+
status?: number | undefined;
|
|
10849
|
+
body?: string | undefined;
|
|
10850
|
+
error?: string | undefined;
|
|
10851
|
+
};
|
|
10852
|
+
outputFormat: "json";
|
|
10853
|
+
status: 200;
|
|
10854
|
+
};
|
|
10855
|
+
};
|
|
10789
10856
|
}, "/hooks"> & hono_types.MergeSchemaPath<{
|
|
10790
10857
|
"/": {
|
|
10791
10858
|
$get: {
|
|
@@ -10813,7 +10880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10813
10880
|
log_type: string;
|
|
10814
10881
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10815
10882
|
actor: {
|
|
10816
|
-
type: "
|
|
10883
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10817
10884
|
id?: string | undefined;
|
|
10818
10885
|
email?: string | undefined;
|
|
10819
10886
|
org_id?: string | undefined;
|
|
@@ -11121,7 +11188,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11121
11188
|
created_at: string;
|
|
11122
11189
|
updated_at: string;
|
|
11123
11190
|
name: string;
|
|
11124
|
-
provider: "auth0" | "
|
|
11191
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11125
11192
|
connection: string;
|
|
11126
11193
|
enabled: boolean;
|
|
11127
11194
|
credentials: {
|
|
@@ -11153,7 +11220,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11153
11220
|
created_at: string;
|
|
11154
11221
|
updated_at: string;
|
|
11155
11222
|
name: string;
|
|
11156
|
-
provider: "auth0" | "
|
|
11223
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11157
11224
|
connection: string;
|
|
11158
11225
|
enabled: boolean;
|
|
11159
11226
|
credentials: {
|
|
@@ -11179,7 +11246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11179
11246
|
} & {
|
|
11180
11247
|
json: {
|
|
11181
11248
|
name: string;
|
|
11182
|
-
provider: "auth0" | "
|
|
11249
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11183
11250
|
connection: string;
|
|
11184
11251
|
credentials: {
|
|
11185
11252
|
domain: string;
|
|
@@ -11196,7 +11263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11196
11263
|
created_at: string;
|
|
11197
11264
|
updated_at: string;
|
|
11198
11265
|
name: string;
|
|
11199
|
-
provider: "auth0" | "
|
|
11266
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11200
11267
|
connection: string;
|
|
11201
11268
|
enabled: boolean;
|
|
11202
11269
|
credentials: {
|
|
@@ -11227,7 +11294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11227
11294
|
json: {
|
|
11228
11295
|
id?: string | undefined;
|
|
11229
11296
|
name?: string | undefined;
|
|
11230
|
-
provider?: "auth0" | "
|
|
11297
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11231
11298
|
connection?: string | undefined;
|
|
11232
11299
|
enabled?: boolean | undefined;
|
|
11233
11300
|
credentials?: {
|
|
@@ -11243,7 +11310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11243
11310
|
created_at: string;
|
|
11244
11311
|
updated_at: string;
|
|
11245
11312
|
name: string;
|
|
11246
|
-
provider: "auth0" | "
|
|
11313
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11247
11314
|
connection: string;
|
|
11248
11315
|
enabled: boolean;
|
|
11249
11316
|
credentials: {
|
|
@@ -11461,7 +11528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11461
11528
|
};
|
|
11462
11529
|
};
|
|
11463
11530
|
output: {
|
|
11464
|
-
type: "
|
|
11531
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11465
11532
|
date: string;
|
|
11466
11533
|
isMobile: boolean;
|
|
11467
11534
|
log_id: string;
|
|
@@ -11500,7 +11567,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11500
11567
|
limit: number;
|
|
11501
11568
|
length: number;
|
|
11502
11569
|
logs: {
|
|
11503
|
-
type: "
|
|
11570
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11504
11571
|
date: string;
|
|
11505
11572
|
isMobile: boolean;
|
|
11506
11573
|
log_id: string;
|
|
@@ -11554,7 +11621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11554
11621
|
};
|
|
11555
11622
|
};
|
|
11556
11623
|
output: {
|
|
11557
|
-
type: "
|
|
11624
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11558
11625
|
date: string;
|
|
11559
11626
|
isMobile: boolean;
|
|
11560
11627
|
log_id: string;
|
|
@@ -11942,7 +12009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11942
12009
|
addons?: {
|
|
11943
12010
|
[x: string]: any;
|
|
11944
12011
|
} | undefined;
|
|
11945
|
-
token_endpoint_auth_method?: "
|
|
12012
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11946
12013
|
client_metadata?: {
|
|
11947
12014
|
[x: string]: string;
|
|
11948
12015
|
} | undefined;
|
|
@@ -12038,7 +12105,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12038
12105
|
addons?: {
|
|
12039
12106
|
[x: string]: any;
|
|
12040
12107
|
} | undefined;
|
|
12041
|
-
token_endpoint_auth_method?: "
|
|
12108
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12042
12109
|
client_metadata?: {
|
|
12043
12110
|
[x: string]: string;
|
|
12044
12111
|
} | undefined;
|
|
@@ -12149,7 +12216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12149
12216
|
addons?: {
|
|
12150
12217
|
[x: string]: any;
|
|
12151
12218
|
} | undefined;
|
|
12152
|
-
token_endpoint_auth_method?: "
|
|
12219
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12153
12220
|
client_metadata?: {
|
|
12154
12221
|
[x: string]: string;
|
|
12155
12222
|
} | undefined;
|
|
@@ -12259,7 +12326,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12259
12326
|
custom_login_page_preview?: string | undefined;
|
|
12260
12327
|
form_template?: string | undefined;
|
|
12261
12328
|
addons?: Record<string, any> | undefined;
|
|
12262
|
-
token_endpoint_auth_method?: "
|
|
12329
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12263
12330
|
client_metadata?: Record<string, string> | undefined;
|
|
12264
12331
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12265
12332
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12339,7 +12406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12339
12406
|
addons?: {
|
|
12340
12407
|
[x: string]: any;
|
|
12341
12408
|
} | undefined;
|
|
12342
|
-
token_endpoint_auth_method?: "
|
|
12409
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12343
12410
|
client_metadata?: {
|
|
12344
12411
|
[x: string]: string;
|
|
12345
12412
|
} | undefined;
|
|
@@ -12428,7 +12495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12428
12495
|
custom_login_page_preview?: string | undefined;
|
|
12429
12496
|
form_template?: string | undefined;
|
|
12430
12497
|
addons?: Record<string, any> | undefined;
|
|
12431
|
-
token_endpoint_auth_method?: "
|
|
12498
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12432
12499
|
client_metadata?: Record<string, string> | undefined;
|
|
12433
12500
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12434
12501
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12508,7 +12575,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12508
12575
|
addons?: {
|
|
12509
12576
|
[x: string]: any;
|
|
12510
12577
|
} | undefined;
|
|
12511
|
-
token_endpoint_auth_method?: "
|
|
12578
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12512
12579
|
client_metadata?: {
|
|
12513
12580
|
[x: string]: string;
|
|
12514
12581
|
} | undefined;
|
|
@@ -13772,7 +13839,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13772
13839
|
};
|
|
13773
13840
|
};
|
|
13774
13841
|
output: {
|
|
13775
|
-
type: "
|
|
13842
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13776
13843
|
date: string;
|
|
13777
13844
|
isMobile: boolean;
|
|
13778
13845
|
log_id: string;
|
|
@@ -13811,7 +13878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13811
13878
|
limit: number;
|
|
13812
13879
|
length: number;
|
|
13813
13880
|
logs: {
|
|
13814
|
-
type: "
|
|
13881
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13815
13882
|
date: string;
|
|
13816
13883
|
isMobile: boolean;
|
|
13817
13884
|
log_id: string;
|
|
@@ -14126,7 +14193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14126
14193
|
};
|
|
14127
14194
|
} & {
|
|
14128
14195
|
json: {
|
|
14129
|
-
template: "
|
|
14196
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14130
14197
|
body: string;
|
|
14131
14198
|
from: string;
|
|
14132
14199
|
subject: string;
|
|
@@ -14147,7 +14214,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14147
14214
|
};
|
|
14148
14215
|
} & {
|
|
14149
14216
|
json: {
|
|
14150
|
-
template: "
|
|
14217
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14151
14218
|
body: string;
|
|
14152
14219
|
from: string;
|
|
14153
14220
|
subject: string;
|
|
@@ -14159,7 +14226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14159
14226
|
};
|
|
14160
14227
|
};
|
|
14161
14228
|
output: {
|
|
14162
|
-
template: "
|
|
14229
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14163
14230
|
body: string;
|
|
14164
14231
|
from: string;
|
|
14165
14232
|
subject: string;
|
|
@@ -14182,7 +14249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14182
14249
|
};
|
|
14183
14250
|
};
|
|
14184
14251
|
output: {
|
|
14185
|
-
name: "
|
|
14252
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14186
14253
|
body: string;
|
|
14187
14254
|
subject: string;
|
|
14188
14255
|
}[];
|
|
@@ -14195,7 +14262,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14195
14262
|
$get: {
|
|
14196
14263
|
input: {
|
|
14197
14264
|
param: {
|
|
14198
|
-
templateName: "
|
|
14265
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14199
14266
|
};
|
|
14200
14267
|
} & {
|
|
14201
14268
|
header: {
|
|
@@ -14208,7 +14275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14208
14275
|
} | {
|
|
14209
14276
|
input: {
|
|
14210
14277
|
param: {
|
|
14211
|
-
templateName: "
|
|
14278
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14212
14279
|
};
|
|
14213
14280
|
} & {
|
|
14214
14281
|
header: {
|
|
@@ -14216,7 +14283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14216
14283
|
};
|
|
14217
14284
|
};
|
|
14218
14285
|
output: {
|
|
14219
|
-
template: "
|
|
14286
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14220
14287
|
body: string;
|
|
14221
14288
|
from: string;
|
|
14222
14289
|
subject: string;
|
|
@@ -14235,7 +14302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14235
14302
|
$put: {
|
|
14236
14303
|
input: {
|
|
14237
14304
|
param: {
|
|
14238
|
-
templateName: "
|
|
14305
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14239
14306
|
};
|
|
14240
14307
|
} & {
|
|
14241
14308
|
header: {
|
|
@@ -14243,7 +14310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14243
14310
|
};
|
|
14244
14311
|
} & {
|
|
14245
14312
|
json: {
|
|
14246
|
-
template: "
|
|
14313
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14247
14314
|
body: string;
|
|
14248
14315
|
subject: string;
|
|
14249
14316
|
syntax?: "liquid" | undefined;
|
|
@@ -14255,7 +14322,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14255
14322
|
};
|
|
14256
14323
|
};
|
|
14257
14324
|
output: {
|
|
14258
|
-
template: "
|
|
14325
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14259
14326
|
body: string;
|
|
14260
14327
|
from: string;
|
|
14261
14328
|
subject: string;
|
|
@@ -14274,7 +14341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14274
14341
|
$patch: {
|
|
14275
14342
|
input: {
|
|
14276
14343
|
param: {
|
|
14277
|
-
templateName: "
|
|
14344
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14278
14345
|
};
|
|
14279
14346
|
} & {
|
|
14280
14347
|
header: {
|
|
@@ -14282,7 +14349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14282
14349
|
};
|
|
14283
14350
|
} & {
|
|
14284
14351
|
json: {
|
|
14285
|
-
template?: "
|
|
14352
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14286
14353
|
body?: string | undefined;
|
|
14287
14354
|
from?: string | undefined;
|
|
14288
14355
|
subject?: string | undefined;
|
|
@@ -14299,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14299
14366
|
} | {
|
|
14300
14367
|
input: {
|
|
14301
14368
|
param: {
|
|
14302
|
-
templateName: "
|
|
14369
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14303
14370
|
};
|
|
14304
14371
|
} & {
|
|
14305
14372
|
header: {
|
|
@@ -14307,7 +14374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14307
14374
|
};
|
|
14308
14375
|
} & {
|
|
14309
14376
|
json: {
|
|
14310
|
-
template?: "
|
|
14377
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14311
14378
|
body?: string | undefined;
|
|
14312
14379
|
from?: string | undefined;
|
|
14313
14380
|
subject?: string | undefined;
|
|
@@ -14319,7 +14386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14319
14386
|
};
|
|
14320
14387
|
};
|
|
14321
14388
|
output: {
|
|
14322
|
-
template: "
|
|
14389
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14323
14390
|
body: string;
|
|
14324
14391
|
from: string;
|
|
14325
14392
|
subject: string;
|
|
@@ -14338,7 +14405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14338
14405
|
$delete: {
|
|
14339
14406
|
input: {
|
|
14340
14407
|
param: {
|
|
14341
|
-
templateName: "
|
|
14408
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14342
14409
|
};
|
|
14343
14410
|
} & {
|
|
14344
14411
|
header: {
|
|
@@ -14351,7 +14418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14351
14418
|
} | {
|
|
14352
14419
|
input: {
|
|
14353
14420
|
param: {
|
|
14354
|
-
templateName: "
|
|
14421
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14355
14422
|
};
|
|
14356
14423
|
} & {
|
|
14357
14424
|
header: {
|
|
@@ -14368,7 +14435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14368
14435
|
$post: {
|
|
14369
14436
|
input: {
|
|
14370
14437
|
param: {
|
|
14371
|
-
templateName: "
|
|
14438
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14372
14439
|
};
|
|
14373
14440
|
} & {
|
|
14374
14441
|
header: {
|
|
@@ -14651,7 +14718,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14651
14718
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14652
14719
|
custom_domain_id: string;
|
|
14653
14720
|
primary: boolean;
|
|
14654
|
-
status: "
|
|
14721
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14655
14722
|
verification_method?: "txt" | undefined;
|
|
14656
14723
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14657
14724
|
domain_metadata?: {
|
|
@@ -14692,7 +14759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14692
14759
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14693
14760
|
custom_domain_id: string;
|
|
14694
14761
|
primary: boolean;
|
|
14695
|
-
status: "
|
|
14762
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14696
14763
|
verification_method?: "txt" | undefined;
|
|
14697
14764
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14698
14765
|
domain_metadata?: {
|
|
@@ -14756,7 +14823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14756
14823
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14757
14824
|
custom_domain_id: string;
|
|
14758
14825
|
primary: boolean;
|
|
14759
|
-
status: "
|
|
14826
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14760
14827
|
verification_method?: "txt" | undefined;
|
|
14761
14828
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14762
14829
|
domain_metadata?: {
|
|
@@ -14803,7 +14870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14803
14870
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14804
14871
|
custom_domain_id: string;
|
|
14805
14872
|
primary: boolean;
|
|
14806
|
-
status: "
|
|
14873
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14807
14874
|
verification_method?: "txt" | undefined;
|
|
14808
14875
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14809
14876
|
domain_metadata?: {
|
|
@@ -14849,7 +14916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14849
14916
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14850
14917
|
custom_domain_id: string;
|
|
14851
14918
|
primary: boolean;
|
|
14852
|
-
status: "
|
|
14919
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14853
14920
|
verification_method?: "txt" | undefined;
|
|
14854
14921
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14855
14922
|
domain_metadata?: {
|
|
@@ -14890,7 +14957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14890
14957
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14891
14958
|
custom_domain_id: string;
|
|
14892
14959
|
primary: boolean;
|
|
14893
|
-
status: "
|
|
14960
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14894
14961
|
verification_method?: "txt" | undefined;
|
|
14895
14962
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14896
14963
|
domain_metadata?: {
|
|
@@ -15375,7 +15442,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15375
15442
|
json: {
|
|
15376
15443
|
bindings: {
|
|
15377
15444
|
ref: {
|
|
15378
|
-
type?: "
|
|
15445
|
+
type?: "action_name" | "action_id" | undefined;
|
|
15379
15446
|
value?: string | undefined;
|
|
15380
15447
|
id?: string | undefined;
|
|
15381
15448
|
name?: string | undefined;
|
|
@@ -16462,7 +16529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16462
16529
|
scope?: string | undefined;
|
|
16463
16530
|
grant_types?: string[] | undefined;
|
|
16464
16531
|
response_types?: string[] | undefined;
|
|
16465
|
-
token_endpoint_auth_method?: "
|
|
16532
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16466
16533
|
jwks_uri?: string | undefined;
|
|
16467
16534
|
jwks?: Record<string, unknown> | undefined;
|
|
16468
16535
|
software_id?: string | undefined;
|
|
@@ -16551,7 +16618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16551
16618
|
scope?: string | undefined;
|
|
16552
16619
|
grant_types?: string[] | undefined;
|
|
16553
16620
|
response_types?: string[] | undefined;
|
|
16554
|
-
token_endpoint_auth_method?: "
|
|
16621
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16555
16622
|
jwks_uri?: string | undefined;
|
|
16556
16623
|
jwks?: Record<string, unknown> | undefined;
|
|
16557
16624
|
software_id?: string | undefined;
|
|
@@ -16897,16 +16964,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16897
16964
|
email: string;
|
|
16898
16965
|
send: "code" | "link";
|
|
16899
16966
|
authParams: {
|
|
16900
|
-
username?: string | undefined;
|
|
16901
16967
|
state?: string | undefined;
|
|
16902
|
-
|
|
16968
|
+
username?: string | undefined;
|
|
16903
16969
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16904
16970
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16905
16971
|
scope?: string | undefined;
|
|
16972
|
+
act_as?: string | undefined;
|
|
16973
|
+
redirect_uri?: string | undefined;
|
|
16974
|
+
audience?: string | undefined;
|
|
16906
16975
|
organization?: string | undefined;
|
|
16907
16976
|
nonce?: string | undefined;
|
|
16908
|
-
redirect_uri?: string | undefined;
|
|
16909
|
-
act_as?: string | undefined;
|
|
16910
16977
|
prompt?: string | undefined;
|
|
16911
16978
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16912
16979
|
code_challenge?: string | undefined;
|
|
@@ -16933,16 +17000,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16933
17000
|
phone_number: string;
|
|
16934
17001
|
send: "code" | "link";
|
|
16935
17002
|
authParams: {
|
|
16936
|
-
username?: string | undefined;
|
|
16937
17003
|
state?: string | undefined;
|
|
16938
|
-
|
|
17004
|
+
username?: string | undefined;
|
|
16939
17005
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16940
17006
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16941
17007
|
scope?: string | undefined;
|
|
17008
|
+
act_as?: string | undefined;
|
|
17009
|
+
redirect_uri?: string | undefined;
|
|
17010
|
+
audience?: string | undefined;
|
|
16942
17011
|
organization?: string | undefined;
|
|
16943
17012
|
nonce?: string | undefined;
|
|
16944
|
-
redirect_uri?: string | undefined;
|
|
16945
|
-
act_as?: string | undefined;
|
|
16946
17013
|
prompt?: string | undefined;
|
|
16947
17014
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16948
17015
|
code_challenge?: string | undefined;
|
|
@@ -17077,14 +17144,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17077
17144
|
input: {
|
|
17078
17145
|
form: {
|
|
17079
17146
|
token: string;
|
|
17080
|
-
token_type_hint?: "
|
|
17147
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17081
17148
|
client_id?: string | undefined;
|
|
17082
17149
|
client_secret?: string | undefined;
|
|
17083
17150
|
};
|
|
17084
17151
|
} & {
|
|
17085
17152
|
json: {
|
|
17086
17153
|
token: string;
|
|
17087
|
-
token_type_hint?: "
|
|
17154
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17088
17155
|
client_id?: string | undefined;
|
|
17089
17156
|
client_secret?: string | undefined;
|
|
17090
17157
|
};
|
|
@@ -17096,14 +17163,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17096
17163
|
input: {
|
|
17097
17164
|
form: {
|
|
17098
17165
|
token: string;
|
|
17099
|
-
token_type_hint?: "
|
|
17166
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17100
17167
|
client_id?: string | undefined;
|
|
17101
17168
|
client_secret?: string | undefined;
|
|
17102
17169
|
};
|
|
17103
17170
|
} & {
|
|
17104
17171
|
json: {
|
|
17105
17172
|
token: string;
|
|
17106
|
-
token_type_hint?: "
|
|
17173
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17107
17174
|
client_id?: string | undefined;
|
|
17108
17175
|
client_secret?: string | undefined;
|
|
17109
17176
|
};
|
|
@@ -17118,14 +17185,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17118
17185
|
input: {
|
|
17119
17186
|
form: {
|
|
17120
17187
|
token: string;
|
|
17121
|
-
token_type_hint?: "
|
|
17188
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17122
17189
|
client_id?: string | undefined;
|
|
17123
17190
|
client_secret?: string | undefined;
|
|
17124
17191
|
};
|
|
17125
17192
|
} & {
|
|
17126
17193
|
json: {
|
|
17127
17194
|
token: string;
|
|
17128
|
-
token_type_hint?: "
|
|
17195
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17129
17196
|
client_id?: string | undefined;
|
|
17130
17197
|
client_secret?: string | undefined;
|
|
17131
17198
|
};
|
|
@@ -17175,7 +17242,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17175
17242
|
client_id: string;
|
|
17176
17243
|
username: string;
|
|
17177
17244
|
otp: string;
|
|
17178
|
-
realm: "
|
|
17245
|
+
realm: "email" | "sms";
|
|
17179
17246
|
} | {
|
|
17180
17247
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17181
17248
|
subject_token: string;
|
|
@@ -17222,7 +17289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17222
17289
|
client_id: string;
|
|
17223
17290
|
username: string;
|
|
17224
17291
|
otp: string;
|
|
17225
|
-
realm: "
|
|
17292
|
+
realm: "email" | "sms";
|
|
17226
17293
|
} | {
|
|
17227
17294
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17228
17295
|
subject_token: string;
|
|
@@ -17274,7 +17341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17274
17341
|
client_id: string;
|
|
17275
17342
|
username: string;
|
|
17276
17343
|
otp: string;
|
|
17277
|
-
realm: "
|
|
17344
|
+
realm: "email" | "sms";
|
|
17278
17345
|
} | {
|
|
17279
17346
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17280
17347
|
subject_token: string;
|
|
@@ -17321,7 +17388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17321
17388
|
client_id: string;
|
|
17322
17389
|
username: string;
|
|
17323
17390
|
otp: string;
|
|
17324
|
-
realm: "
|
|
17391
|
+
realm: "email" | "sms";
|
|
17325
17392
|
} | {
|
|
17326
17393
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17327
17394
|
subject_token: string;
|
|
@@ -17381,7 +17448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17381
17448
|
client_id: string;
|
|
17382
17449
|
username: string;
|
|
17383
17450
|
otp: string;
|
|
17384
|
-
realm: "
|
|
17451
|
+
realm: "email" | "sms";
|
|
17385
17452
|
} | {
|
|
17386
17453
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17387
17454
|
subject_token: string;
|
|
@@ -17428,7 +17495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17428
17495
|
client_id: string;
|
|
17429
17496
|
username: string;
|
|
17430
17497
|
otp: string;
|
|
17431
|
-
realm: "
|
|
17498
|
+
realm: "email" | "sms";
|
|
17432
17499
|
} | {
|
|
17433
17500
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17434
17501
|
subject_token: string;
|
|
@@ -17483,7 +17550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17483
17550
|
client_id: string;
|
|
17484
17551
|
username: string;
|
|
17485
17552
|
otp: string;
|
|
17486
|
-
realm: "
|
|
17553
|
+
realm: "email" | "sms";
|
|
17487
17554
|
} | {
|
|
17488
17555
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17489
17556
|
subject_token: string;
|
|
@@ -17530,7 +17597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17530
17597
|
client_id: string;
|
|
17531
17598
|
username: string;
|
|
17532
17599
|
otp: string;
|
|
17533
|
-
realm: "
|
|
17600
|
+
realm: "email" | "sms";
|
|
17534
17601
|
} | {
|
|
17535
17602
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17536
17603
|
subject_token: string;
|
|
@@ -17585,7 +17652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17585
17652
|
client_id: string;
|
|
17586
17653
|
username: string;
|
|
17587
17654
|
otp: string;
|
|
17588
|
-
realm: "
|
|
17655
|
+
realm: "email" | "sms";
|
|
17589
17656
|
} | {
|
|
17590
17657
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17591
17658
|
subject_token: string;
|
|
@@ -17632,7 +17699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17632
17699
|
client_id: string;
|
|
17633
17700
|
username: string;
|
|
17634
17701
|
otp: string;
|
|
17635
|
-
realm: "
|
|
17702
|
+
realm: "email" | "sms";
|
|
17636
17703
|
} | {
|
|
17637
17704
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17638
17705
|
subject_token: string;
|
|
@@ -18852,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18852
18919
|
$get: {
|
|
18853
18920
|
input: {
|
|
18854
18921
|
param: {
|
|
18855
|
-
screen: "signup" | "
|
|
18922
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18856
18923
|
};
|
|
18857
18924
|
} & {
|
|
18858
18925
|
query: {
|
|
@@ -18868,7 +18935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18868
18935
|
} | {
|
|
18869
18936
|
input: {
|
|
18870
18937
|
param: {
|
|
18871
|
-
screen: "signup" | "
|
|
18938
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18872
18939
|
};
|
|
18873
18940
|
} & {
|
|
18874
18941
|
query: {
|
|
@@ -18884,7 +18951,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18884
18951
|
} | {
|
|
18885
18952
|
input: {
|
|
18886
18953
|
param: {
|
|
18887
|
-
screen: "signup" | "
|
|
18954
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18888
18955
|
};
|
|
18889
18956
|
} & {
|
|
18890
18957
|
query: {
|
|
@@ -18904,7 +18971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18904
18971
|
$post: {
|
|
18905
18972
|
input: {
|
|
18906
18973
|
param: {
|
|
18907
|
-
screen: "signup" | "
|
|
18974
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18908
18975
|
};
|
|
18909
18976
|
} & {
|
|
18910
18977
|
query: {
|
|
@@ -18922,7 +18989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18922
18989
|
} | {
|
|
18923
18990
|
input: {
|
|
18924
18991
|
param: {
|
|
18925
|
-
screen: "signup" | "
|
|
18992
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18926
18993
|
};
|
|
18927
18994
|
} & {
|
|
18928
18995
|
query: {
|
|
@@ -18940,7 +19007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18940
19007
|
} | {
|
|
18941
19008
|
input: {
|
|
18942
19009
|
param: {
|
|
18943
|
-
screen: "signup" | "
|
|
19010
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18944
19011
|
};
|
|
18945
19012
|
} & {
|
|
18946
19013
|
query: {
|