authhero 7.1.0 → 7.2.1
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 +102 -102
- package/dist/authhero.d.ts +178 -183
- package/dist/authhero.mjs +5045 -5038
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/signing-keys.d.ts +1 -0
- package/dist/types/index.d.ts +178 -178
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +150 -150
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Bindings.d.ts +0 -6
- package/dist/types/utils/jwks.d.ts +10 -11
- package/dist/types/utils/jwt.d.ts +21 -1
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -1460,14 +1460,9 @@ type StrategyHandler = {
|
|
|
1460
1460
|
disableEmbeddedBrowsers?: boolean;
|
|
1461
1461
|
};
|
|
1462
1462
|
|
|
1463
|
-
declare type Fetcher = {
|
|
1464
|
-
fetch: typeof fetch;
|
|
1465
|
-
};
|
|
1466
1463
|
type Bindings = {
|
|
1467
1464
|
ENVIRONMENT: string;
|
|
1468
1465
|
AUTH_URL: string;
|
|
1469
|
-
JWKS_URL?: string;
|
|
1470
|
-
JWKS_SERVICE?: Fetcher;
|
|
1471
1466
|
ISSUER: string;
|
|
1472
1467
|
UNIVERSAL_LOGIN_URL?: string;
|
|
1473
1468
|
OAUTH_API_URL?: string;
|
|
@@ -2775,7 +2770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2775
2770
|
};
|
|
2776
2771
|
} & {
|
|
2777
2772
|
json: {
|
|
2778
|
-
type: "
|
|
2773
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2779
2774
|
phone_number?: string | undefined;
|
|
2780
2775
|
totp_secret?: string | undefined;
|
|
2781
2776
|
credential_id?: string | undefined;
|
|
@@ -2915,7 +2910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2915
2910
|
};
|
|
2916
2911
|
};
|
|
2917
2912
|
output: {
|
|
2918
|
-
name: "
|
|
2913
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2919
2914
|
enabled: boolean;
|
|
2920
2915
|
trial_expired?: boolean | undefined;
|
|
2921
2916
|
}[];
|
|
@@ -3070,7 +3065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3070
3065
|
$get: {
|
|
3071
3066
|
input: {
|
|
3072
3067
|
param: {
|
|
3073
|
-
factor_name: "
|
|
3068
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3074
3069
|
};
|
|
3075
3070
|
} & {
|
|
3076
3071
|
header: {
|
|
@@ -3078,7 +3073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3078
3073
|
};
|
|
3079
3074
|
};
|
|
3080
3075
|
output: {
|
|
3081
|
-
name: "
|
|
3076
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3082
3077
|
enabled: boolean;
|
|
3083
3078
|
trial_expired?: boolean | undefined;
|
|
3084
3079
|
};
|
|
@@ -3091,7 +3086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3091
3086
|
$put: {
|
|
3092
3087
|
input: {
|
|
3093
3088
|
param: {
|
|
3094
|
-
factor_name: "
|
|
3089
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3095
3090
|
};
|
|
3096
3091
|
} & {
|
|
3097
3092
|
header: {
|
|
@@ -3103,7 +3098,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3103
3098
|
};
|
|
3104
3099
|
};
|
|
3105
3100
|
output: {
|
|
3106
|
-
name: "
|
|
3101
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3107
3102
|
enabled: boolean;
|
|
3108
3103
|
trial_expired?: boolean | undefined;
|
|
3109
3104
|
};
|
|
@@ -5279,7 +5274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5279
5274
|
hint?: string | undefined;
|
|
5280
5275
|
messages?: {
|
|
5281
5276
|
text: string;
|
|
5282
|
-
type: "
|
|
5277
|
+
type: "success" | "error" | "info" | "warning";
|
|
5283
5278
|
id?: number | undefined;
|
|
5284
5279
|
}[] | undefined;
|
|
5285
5280
|
required?: boolean | undefined;
|
|
@@ -5297,7 +5292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5297
5292
|
hint?: string | undefined;
|
|
5298
5293
|
messages?: {
|
|
5299
5294
|
text: string;
|
|
5300
|
-
type: "
|
|
5295
|
+
type: "success" | "error" | "info" | "warning";
|
|
5301
5296
|
id?: number | undefined;
|
|
5302
5297
|
}[] | undefined;
|
|
5303
5298
|
required?: boolean | undefined;
|
|
@@ -5321,7 +5316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5321
5316
|
hint?: string | undefined;
|
|
5322
5317
|
messages?: {
|
|
5323
5318
|
text: string;
|
|
5324
|
-
type: "
|
|
5319
|
+
type: "success" | "error" | "info" | "warning";
|
|
5325
5320
|
id?: number | undefined;
|
|
5326
5321
|
}[] | undefined;
|
|
5327
5322
|
required?: boolean | undefined;
|
|
@@ -5345,7 +5340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5345
5340
|
hint?: string | undefined;
|
|
5346
5341
|
messages?: {
|
|
5347
5342
|
text: string;
|
|
5348
|
-
type: "
|
|
5343
|
+
type: "success" | "error" | "info" | "warning";
|
|
5349
5344
|
id?: number | undefined;
|
|
5350
5345
|
}[] | undefined;
|
|
5351
5346
|
required?: boolean | undefined;
|
|
@@ -5374,7 +5369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5374
5369
|
hint?: string | undefined;
|
|
5375
5370
|
messages?: {
|
|
5376
5371
|
text: string;
|
|
5377
|
-
type: "
|
|
5372
|
+
type: "success" | "error" | "info" | "warning";
|
|
5378
5373
|
id?: number | undefined;
|
|
5379
5374
|
}[] | undefined;
|
|
5380
5375
|
required?: boolean | undefined;
|
|
@@ -5389,7 +5384,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5389
5384
|
hint?: string | undefined;
|
|
5390
5385
|
messages?: {
|
|
5391
5386
|
text: string;
|
|
5392
|
-
type: "
|
|
5387
|
+
type: "success" | "error" | "info" | "warning";
|
|
5393
5388
|
id?: number | undefined;
|
|
5394
5389
|
}[] | undefined;
|
|
5395
5390
|
required?: boolean | undefined;
|
|
@@ -5410,7 +5405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5410
5405
|
hint?: string | undefined;
|
|
5411
5406
|
messages?: {
|
|
5412
5407
|
text: string;
|
|
5413
|
-
type: "
|
|
5408
|
+
type: "success" | "error" | "info" | "warning";
|
|
5414
5409
|
id?: number | undefined;
|
|
5415
5410
|
}[] | undefined;
|
|
5416
5411
|
required?: boolean | undefined;
|
|
@@ -5435,7 +5430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5435
5430
|
hint?: string | undefined;
|
|
5436
5431
|
messages?: {
|
|
5437
5432
|
text: string;
|
|
5438
|
-
type: "
|
|
5433
|
+
type: "success" | "error" | "info" | "warning";
|
|
5439
5434
|
id?: number | undefined;
|
|
5440
5435
|
}[] | undefined;
|
|
5441
5436
|
required?: boolean | undefined;
|
|
@@ -5454,7 +5449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5454
5449
|
hint?: string | undefined;
|
|
5455
5450
|
messages?: {
|
|
5456
5451
|
text: string;
|
|
5457
|
-
type: "
|
|
5452
|
+
type: "success" | "error" | "info" | "warning";
|
|
5458
5453
|
id?: number | undefined;
|
|
5459
5454
|
}[] | undefined;
|
|
5460
5455
|
required?: boolean | undefined;
|
|
@@ -5474,7 +5469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5474
5469
|
hint?: string | undefined;
|
|
5475
5470
|
messages?: {
|
|
5476
5471
|
text: string;
|
|
5477
|
-
type: "
|
|
5472
|
+
type: "success" | "error" | "info" | "warning";
|
|
5478
5473
|
id?: number | undefined;
|
|
5479
5474
|
}[] | undefined;
|
|
5480
5475
|
required?: boolean | undefined;
|
|
@@ -5493,7 +5488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5493
5488
|
hint?: string | undefined;
|
|
5494
5489
|
messages?: {
|
|
5495
5490
|
text: string;
|
|
5496
|
-
type: "
|
|
5491
|
+
type: "success" | "error" | "info" | "warning";
|
|
5497
5492
|
id?: number | undefined;
|
|
5498
5493
|
}[] | undefined;
|
|
5499
5494
|
required?: boolean | undefined;
|
|
@@ -5515,7 +5510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5515
5510
|
hint?: string | undefined;
|
|
5516
5511
|
messages?: {
|
|
5517
5512
|
text: string;
|
|
5518
|
-
type: "
|
|
5513
|
+
type: "success" | "error" | "info" | "warning";
|
|
5519
5514
|
id?: number | undefined;
|
|
5520
5515
|
}[] | undefined;
|
|
5521
5516
|
required?: boolean | undefined;
|
|
@@ -5537,7 +5532,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5537
5532
|
hint?: string | undefined;
|
|
5538
5533
|
messages?: {
|
|
5539
5534
|
text: string;
|
|
5540
|
-
type: "
|
|
5535
|
+
type: "success" | "error" | "info" | "warning";
|
|
5541
5536
|
id?: number | undefined;
|
|
5542
5537
|
}[] | undefined;
|
|
5543
5538
|
required?: boolean | undefined;
|
|
@@ -5556,7 +5551,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5556
5551
|
hint?: string | undefined;
|
|
5557
5552
|
messages?: {
|
|
5558
5553
|
text: string;
|
|
5559
|
-
type: "
|
|
5554
|
+
type: "success" | "error" | "info" | "warning";
|
|
5560
5555
|
id?: number | undefined;
|
|
5561
5556
|
}[] | undefined;
|
|
5562
5557
|
required?: boolean | undefined;
|
|
@@ -5581,7 +5576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5581
5576
|
hint?: string | undefined;
|
|
5582
5577
|
messages?: {
|
|
5583
5578
|
text: string;
|
|
5584
|
-
type: "
|
|
5579
|
+
type: "success" | "error" | "info" | "warning";
|
|
5585
5580
|
id?: number | undefined;
|
|
5586
5581
|
}[] | undefined;
|
|
5587
5582
|
required?: boolean | undefined;
|
|
@@ -5602,7 +5597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5602
5597
|
hint?: string | undefined;
|
|
5603
5598
|
messages?: {
|
|
5604
5599
|
text: string;
|
|
5605
|
-
type: "
|
|
5600
|
+
type: "success" | "error" | "info" | "warning";
|
|
5606
5601
|
id?: number | undefined;
|
|
5607
5602
|
}[] | undefined;
|
|
5608
5603
|
required?: boolean | undefined;
|
|
@@ -5623,7 +5618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5623
5618
|
hint?: string | undefined;
|
|
5624
5619
|
messages?: {
|
|
5625
5620
|
text: string;
|
|
5626
|
-
type: "
|
|
5621
|
+
type: "success" | "error" | "info" | "warning";
|
|
5627
5622
|
id?: number | undefined;
|
|
5628
5623
|
}[] | undefined;
|
|
5629
5624
|
required?: boolean | undefined;
|
|
@@ -5856,7 +5851,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5856
5851
|
hint?: string | undefined;
|
|
5857
5852
|
messages?: {
|
|
5858
5853
|
text: string;
|
|
5859
|
-
type: "
|
|
5854
|
+
type: "success" | "error" | "info" | "warning";
|
|
5860
5855
|
id?: number | undefined;
|
|
5861
5856
|
}[] | undefined;
|
|
5862
5857
|
required?: boolean | undefined;
|
|
@@ -5874,7 +5869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5874
5869
|
hint?: string | undefined;
|
|
5875
5870
|
messages?: {
|
|
5876
5871
|
text: string;
|
|
5877
|
-
type: "
|
|
5872
|
+
type: "success" | "error" | "info" | "warning";
|
|
5878
5873
|
id?: number | undefined;
|
|
5879
5874
|
}[] | undefined;
|
|
5880
5875
|
required?: boolean | undefined;
|
|
@@ -5898,7 +5893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5898
5893
|
hint?: string | undefined;
|
|
5899
5894
|
messages?: {
|
|
5900
5895
|
text: string;
|
|
5901
|
-
type: "
|
|
5896
|
+
type: "success" | "error" | "info" | "warning";
|
|
5902
5897
|
id?: number | undefined;
|
|
5903
5898
|
}[] | undefined;
|
|
5904
5899
|
required?: boolean | undefined;
|
|
@@ -5922,7 +5917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5922
5917
|
hint?: string | undefined;
|
|
5923
5918
|
messages?: {
|
|
5924
5919
|
text: string;
|
|
5925
|
-
type: "
|
|
5920
|
+
type: "success" | "error" | "info" | "warning";
|
|
5926
5921
|
id?: number | undefined;
|
|
5927
5922
|
}[] | undefined;
|
|
5928
5923
|
required?: boolean | undefined;
|
|
@@ -5951,7 +5946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5951
5946
|
hint?: string | undefined;
|
|
5952
5947
|
messages?: {
|
|
5953
5948
|
text: string;
|
|
5954
|
-
type: "
|
|
5949
|
+
type: "success" | "error" | "info" | "warning";
|
|
5955
5950
|
id?: number | undefined;
|
|
5956
5951
|
}[] | undefined;
|
|
5957
5952
|
required?: boolean | undefined;
|
|
@@ -5966,7 +5961,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5966
5961
|
hint?: string | undefined;
|
|
5967
5962
|
messages?: {
|
|
5968
5963
|
text: string;
|
|
5969
|
-
type: "
|
|
5964
|
+
type: "success" | "error" | "info" | "warning";
|
|
5970
5965
|
id?: number | undefined;
|
|
5971
5966
|
}[] | undefined;
|
|
5972
5967
|
required?: boolean | undefined;
|
|
@@ -5987,7 +5982,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5987
5982
|
hint?: string | undefined;
|
|
5988
5983
|
messages?: {
|
|
5989
5984
|
text: string;
|
|
5990
|
-
type: "
|
|
5985
|
+
type: "success" | "error" | "info" | "warning";
|
|
5991
5986
|
id?: number | undefined;
|
|
5992
5987
|
}[] | undefined;
|
|
5993
5988
|
required?: boolean | undefined;
|
|
@@ -6012,7 +6007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6012
6007
|
hint?: string | undefined;
|
|
6013
6008
|
messages?: {
|
|
6014
6009
|
text: string;
|
|
6015
|
-
type: "
|
|
6010
|
+
type: "success" | "error" | "info" | "warning";
|
|
6016
6011
|
id?: number | undefined;
|
|
6017
6012
|
}[] | undefined;
|
|
6018
6013
|
required?: boolean | undefined;
|
|
@@ -6031,7 +6026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6031
6026
|
hint?: string | undefined;
|
|
6032
6027
|
messages?: {
|
|
6033
6028
|
text: string;
|
|
6034
|
-
type: "
|
|
6029
|
+
type: "success" | "error" | "info" | "warning";
|
|
6035
6030
|
id?: number | undefined;
|
|
6036
6031
|
}[] | undefined;
|
|
6037
6032
|
required?: boolean | undefined;
|
|
@@ -6051,7 +6046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6051
6046
|
hint?: string | undefined;
|
|
6052
6047
|
messages?: {
|
|
6053
6048
|
text: string;
|
|
6054
|
-
type: "
|
|
6049
|
+
type: "success" | "error" | "info" | "warning";
|
|
6055
6050
|
id?: number | undefined;
|
|
6056
6051
|
}[] | undefined;
|
|
6057
6052
|
required?: boolean | undefined;
|
|
@@ -6070,7 +6065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6070
6065
|
hint?: string | undefined;
|
|
6071
6066
|
messages?: {
|
|
6072
6067
|
text: string;
|
|
6073
|
-
type: "
|
|
6068
|
+
type: "success" | "error" | "info" | "warning";
|
|
6074
6069
|
id?: number | undefined;
|
|
6075
6070
|
}[] | undefined;
|
|
6076
6071
|
required?: boolean | undefined;
|
|
@@ -6092,7 +6087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6092
6087
|
hint?: string | undefined;
|
|
6093
6088
|
messages?: {
|
|
6094
6089
|
text: string;
|
|
6095
|
-
type: "
|
|
6090
|
+
type: "success" | "error" | "info" | "warning";
|
|
6096
6091
|
id?: number | undefined;
|
|
6097
6092
|
}[] | undefined;
|
|
6098
6093
|
required?: boolean | undefined;
|
|
@@ -6114,7 +6109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6114
6109
|
hint?: string | undefined;
|
|
6115
6110
|
messages?: {
|
|
6116
6111
|
text: string;
|
|
6117
|
-
type: "
|
|
6112
|
+
type: "success" | "error" | "info" | "warning";
|
|
6118
6113
|
id?: number | undefined;
|
|
6119
6114
|
}[] | undefined;
|
|
6120
6115
|
required?: boolean | undefined;
|
|
@@ -6133,7 +6128,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6133
6128
|
hint?: string | undefined;
|
|
6134
6129
|
messages?: {
|
|
6135
6130
|
text: string;
|
|
6136
|
-
type: "
|
|
6131
|
+
type: "success" | "error" | "info" | "warning";
|
|
6137
6132
|
id?: number | undefined;
|
|
6138
6133
|
}[] | undefined;
|
|
6139
6134
|
required?: boolean | undefined;
|
|
@@ -6158,7 +6153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6158
6153
|
hint?: string | undefined;
|
|
6159
6154
|
messages?: {
|
|
6160
6155
|
text: string;
|
|
6161
|
-
type: "
|
|
6156
|
+
type: "success" | "error" | "info" | "warning";
|
|
6162
6157
|
id?: number | undefined;
|
|
6163
6158
|
}[] | undefined;
|
|
6164
6159
|
required?: boolean | undefined;
|
|
@@ -6179,7 +6174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6179
6174
|
hint?: string | undefined;
|
|
6180
6175
|
messages?: {
|
|
6181
6176
|
text: string;
|
|
6182
|
-
type: "
|
|
6177
|
+
type: "success" | "error" | "info" | "warning";
|
|
6183
6178
|
id?: number | undefined;
|
|
6184
6179
|
}[] | undefined;
|
|
6185
6180
|
required?: boolean | undefined;
|
|
@@ -6200,7 +6195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6200
6195
|
hint?: string | undefined;
|
|
6201
6196
|
messages?: {
|
|
6202
6197
|
text: string;
|
|
6203
|
-
type: "
|
|
6198
|
+
type: "success" | "error" | "info" | "warning";
|
|
6204
6199
|
id?: number | undefined;
|
|
6205
6200
|
}[] | undefined;
|
|
6206
6201
|
required?: boolean | undefined;
|
|
@@ -6448,7 +6443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6448
6443
|
hint?: string | undefined;
|
|
6449
6444
|
messages?: {
|
|
6450
6445
|
text: string;
|
|
6451
|
-
type: "
|
|
6446
|
+
type: "success" | "error" | "info" | "warning";
|
|
6452
6447
|
id?: number | undefined;
|
|
6453
6448
|
}[] | undefined;
|
|
6454
6449
|
required?: boolean | undefined;
|
|
@@ -6466,7 +6461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6466
6461
|
hint?: string | undefined;
|
|
6467
6462
|
messages?: {
|
|
6468
6463
|
text: string;
|
|
6469
|
-
type: "
|
|
6464
|
+
type: "success" | "error" | "info" | "warning";
|
|
6470
6465
|
id?: number | undefined;
|
|
6471
6466
|
}[] | undefined;
|
|
6472
6467
|
required?: boolean | undefined;
|
|
@@ -6490,7 +6485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6490
6485
|
hint?: string | undefined;
|
|
6491
6486
|
messages?: {
|
|
6492
6487
|
text: string;
|
|
6493
|
-
type: "
|
|
6488
|
+
type: "success" | "error" | "info" | "warning";
|
|
6494
6489
|
id?: number | undefined;
|
|
6495
6490
|
}[] | undefined;
|
|
6496
6491
|
required?: boolean | undefined;
|
|
@@ -6514,7 +6509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6514
6509
|
hint?: string | undefined;
|
|
6515
6510
|
messages?: {
|
|
6516
6511
|
text: string;
|
|
6517
|
-
type: "
|
|
6512
|
+
type: "success" | "error" | "info" | "warning";
|
|
6518
6513
|
id?: number | undefined;
|
|
6519
6514
|
}[] | undefined;
|
|
6520
6515
|
required?: boolean | undefined;
|
|
@@ -6543,7 +6538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6543
6538
|
hint?: string | undefined;
|
|
6544
6539
|
messages?: {
|
|
6545
6540
|
text: string;
|
|
6546
|
-
type: "
|
|
6541
|
+
type: "success" | "error" | "info" | "warning";
|
|
6547
6542
|
id?: number | undefined;
|
|
6548
6543
|
}[] | undefined;
|
|
6549
6544
|
required?: boolean | undefined;
|
|
@@ -6558,7 +6553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6558
6553
|
hint?: string | undefined;
|
|
6559
6554
|
messages?: {
|
|
6560
6555
|
text: string;
|
|
6561
|
-
type: "
|
|
6556
|
+
type: "success" | "error" | "info" | "warning";
|
|
6562
6557
|
id?: number | undefined;
|
|
6563
6558
|
}[] | undefined;
|
|
6564
6559
|
required?: boolean | undefined;
|
|
@@ -6579,7 +6574,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6579
6574
|
hint?: string | undefined;
|
|
6580
6575
|
messages?: {
|
|
6581
6576
|
text: string;
|
|
6582
|
-
type: "
|
|
6577
|
+
type: "success" | "error" | "info" | "warning";
|
|
6583
6578
|
id?: number | undefined;
|
|
6584
6579
|
}[] | undefined;
|
|
6585
6580
|
required?: boolean | undefined;
|
|
@@ -6604,7 +6599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6604
6599
|
hint?: string | undefined;
|
|
6605
6600
|
messages?: {
|
|
6606
6601
|
text: string;
|
|
6607
|
-
type: "
|
|
6602
|
+
type: "success" | "error" | "info" | "warning";
|
|
6608
6603
|
id?: number | undefined;
|
|
6609
6604
|
}[] | undefined;
|
|
6610
6605
|
required?: boolean | undefined;
|
|
@@ -6623,7 +6618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6623
6618
|
hint?: string | undefined;
|
|
6624
6619
|
messages?: {
|
|
6625
6620
|
text: string;
|
|
6626
|
-
type: "
|
|
6621
|
+
type: "success" | "error" | "info" | "warning";
|
|
6627
6622
|
id?: number | undefined;
|
|
6628
6623
|
}[] | undefined;
|
|
6629
6624
|
required?: boolean | undefined;
|
|
@@ -6643,7 +6638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6643
6638
|
hint?: string | undefined;
|
|
6644
6639
|
messages?: {
|
|
6645
6640
|
text: string;
|
|
6646
|
-
type: "
|
|
6641
|
+
type: "success" | "error" | "info" | "warning";
|
|
6647
6642
|
id?: number | undefined;
|
|
6648
6643
|
}[] | undefined;
|
|
6649
6644
|
required?: boolean | undefined;
|
|
@@ -6662,7 +6657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6662
6657
|
hint?: string | undefined;
|
|
6663
6658
|
messages?: {
|
|
6664
6659
|
text: string;
|
|
6665
|
-
type: "
|
|
6660
|
+
type: "success" | "error" | "info" | "warning";
|
|
6666
6661
|
id?: number | undefined;
|
|
6667
6662
|
}[] | undefined;
|
|
6668
6663
|
required?: boolean | undefined;
|
|
@@ -6684,7 +6679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6684
6679
|
hint?: string | undefined;
|
|
6685
6680
|
messages?: {
|
|
6686
6681
|
text: string;
|
|
6687
|
-
type: "
|
|
6682
|
+
type: "success" | "error" | "info" | "warning";
|
|
6688
6683
|
id?: number | undefined;
|
|
6689
6684
|
}[] | undefined;
|
|
6690
6685
|
required?: boolean | undefined;
|
|
@@ -6706,7 +6701,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6706
6701
|
hint?: string | undefined;
|
|
6707
6702
|
messages?: {
|
|
6708
6703
|
text: string;
|
|
6709
|
-
type: "
|
|
6704
|
+
type: "success" | "error" | "info" | "warning";
|
|
6710
6705
|
id?: number | undefined;
|
|
6711
6706
|
}[] | undefined;
|
|
6712
6707
|
required?: boolean | undefined;
|
|
@@ -6725,7 +6720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6725
6720
|
hint?: string | undefined;
|
|
6726
6721
|
messages?: {
|
|
6727
6722
|
text: string;
|
|
6728
|
-
type: "
|
|
6723
|
+
type: "success" | "error" | "info" | "warning";
|
|
6729
6724
|
id?: number | undefined;
|
|
6730
6725
|
}[] | undefined;
|
|
6731
6726
|
required?: boolean | undefined;
|
|
@@ -6750,7 +6745,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6750
6745
|
hint?: string | undefined;
|
|
6751
6746
|
messages?: {
|
|
6752
6747
|
text: string;
|
|
6753
|
-
type: "
|
|
6748
|
+
type: "success" | "error" | "info" | "warning";
|
|
6754
6749
|
id?: number | undefined;
|
|
6755
6750
|
}[] | undefined;
|
|
6756
6751
|
required?: boolean | undefined;
|
|
@@ -6771,7 +6766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6771
6766
|
hint?: string | undefined;
|
|
6772
6767
|
messages?: {
|
|
6773
6768
|
text: string;
|
|
6774
|
-
type: "
|
|
6769
|
+
type: "success" | "error" | "info" | "warning";
|
|
6775
6770
|
id?: number | undefined;
|
|
6776
6771
|
}[] | undefined;
|
|
6777
6772
|
required?: boolean | undefined;
|
|
@@ -6792,7 +6787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6792
6787
|
hint?: string | undefined;
|
|
6793
6788
|
messages?: {
|
|
6794
6789
|
text: string;
|
|
6795
|
-
type: "
|
|
6790
|
+
type: "success" | "error" | "info" | "warning";
|
|
6796
6791
|
id?: number | undefined;
|
|
6797
6792
|
}[] | undefined;
|
|
6798
6793
|
required?: boolean | undefined;
|
|
@@ -7046,7 +7041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7046
7041
|
hint?: string | undefined;
|
|
7047
7042
|
messages?: {
|
|
7048
7043
|
text: string;
|
|
7049
|
-
type: "
|
|
7044
|
+
type: "success" | "error" | "info" | "warning";
|
|
7050
7045
|
id?: number | undefined;
|
|
7051
7046
|
}[] | undefined;
|
|
7052
7047
|
required?: boolean | undefined;
|
|
@@ -7064,7 +7059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7064
7059
|
hint?: string | undefined;
|
|
7065
7060
|
messages?: {
|
|
7066
7061
|
text: string;
|
|
7067
|
-
type: "
|
|
7062
|
+
type: "success" | "error" | "info" | "warning";
|
|
7068
7063
|
id?: number | undefined;
|
|
7069
7064
|
}[] | undefined;
|
|
7070
7065
|
required?: boolean | undefined;
|
|
@@ -7088,7 +7083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7088
7083
|
hint?: string | undefined;
|
|
7089
7084
|
messages?: {
|
|
7090
7085
|
text: string;
|
|
7091
|
-
type: "
|
|
7086
|
+
type: "success" | "error" | "info" | "warning";
|
|
7092
7087
|
id?: number | undefined;
|
|
7093
7088
|
}[] | undefined;
|
|
7094
7089
|
required?: boolean | undefined;
|
|
@@ -7112,7 +7107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7112
7107
|
hint?: string | undefined;
|
|
7113
7108
|
messages?: {
|
|
7114
7109
|
text: string;
|
|
7115
|
-
type: "
|
|
7110
|
+
type: "success" | "error" | "info" | "warning";
|
|
7116
7111
|
id?: number | undefined;
|
|
7117
7112
|
}[] | undefined;
|
|
7118
7113
|
required?: boolean | undefined;
|
|
@@ -7137,7 +7132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7137
7132
|
hint?: string | undefined;
|
|
7138
7133
|
messages?: {
|
|
7139
7134
|
text: string;
|
|
7140
|
-
type: "
|
|
7135
|
+
type: "success" | "error" | "info" | "warning";
|
|
7141
7136
|
id?: number | undefined;
|
|
7142
7137
|
}[] | undefined;
|
|
7143
7138
|
required?: boolean | undefined;
|
|
@@ -7152,7 +7147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7152
7147
|
hint?: string | undefined;
|
|
7153
7148
|
messages?: {
|
|
7154
7149
|
text: string;
|
|
7155
|
-
type: "
|
|
7150
|
+
type: "success" | "error" | "info" | "warning";
|
|
7156
7151
|
id?: number | undefined;
|
|
7157
7152
|
}[] | undefined;
|
|
7158
7153
|
required?: boolean | undefined;
|
|
@@ -7173,7 +7168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7173
7168
|
hint?: string | undefined;
|
|
7174
7169
|
messages?: {
|
|
7175
7170
|
text: string;
|
|
7176
|
-
type: "
|
|
7171
|
+
type: "success" | "error" | "info" | "warning";
|
|
7177
7172
|
id?: number | undefined;
|
|
7178
7173
|
}[] | undefined;
|
|
7179
7174
|
required?: boolean | undefined;
|
|
@@ -7198,7 +7193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7198
7193
|
hint?: string | undefined;
|
|
7199
7194
|
messages?: {
|
|
7200
7195
|
text: string;
|
|
7201
|
-
type: "
|
|
7196
|
+
type: "success" | "error" | "info" | "warning";
|
|
7202
7197
|
id?: number | undefined;
|
|
7203
7198
|
}[] | undefined;
|
|
7204
7199
|
required?: boolean | undefined;
|
|
@@ -7217,7 +7212,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7217
7212
|
hint?: string | undefined;
|
|
7218
7213
|
messages?: {
|
|
7219
7214
|
text: string;
|
|
7220
|
-
type: "
|
|
7215
|
+
type: "success" | "error" | "info" | "warning";
|
|
7221
7216
|
id?: number | undefined;
|
|
7222
7217
|
}[] | undefined;
|
|
7223
7218
|
required?: boolean | undefined;
|
|
@@ -7237,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7237
7232
|
hint?: string | undefined;
|
|
7238
7233
|
messages?: {
|
|
7239
7234
|
text: string;
|
|
7240
|
-
type: "
|
|
7235
|
+
type: "success" | "error" | "info" | "warning";
|
|
7241
7236
|
id?: number | undefined;
|
|
7242
7237
|
}[] | undefined;
|
|
7243
7238
|
required?: boolean | undefined;
|
|
@@ -7256,7 +7251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7256
7251
|
hint?: string | undefined;
|
|
7257
7252
|
messages?: {
|
|
7258
7253
|
text: string;
|
|
7259
|
-
type: "
|
|
7254
|
+
type: "success" | "error" | "info" | "warning";
|
|
7260
7255
|
id?: number | undefined;
|
|
7261
7256
|
}[] | undefined;
|
|
7262
7257
|
required?: boolean | undefined;
|
|
@@ -7278,7 +7273,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7278
7273
|
hint?: string | undefined;
|
|
7279
7274
|
messages?: {
|
|
7280
7275
|
text: string;
|
|
7281
|
-
type: "
|
|
7276
|
+
type: "success" | "error" | "info" | "warning";
|
|
7282
7277
|
id?: number | undefined;
|
|
7283
7278
|
}[] | undefined;
|
|
7284
7279
|
required?: boolean | undefined;
|
|
@@ -7300,7 +7295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7300
7295
|
hint?: string | undefined;
|
|
7301
7296
|
messages?: {
|
|
7302
7297
|
text: string;
|
|
7303
|
-
type: "
|
|
7298
|
+
type: "success" | "error" | "info" | "warning";
|
|
7304
7299
|
id?: number | undefined;
|
|
7305
7300
|
}[] | undefined;
|
|
7306
7301
|
required?: boolean | undefined;
|
|
@@ -7319,7 +7314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7319
7314
|
hint?: string | undefined;
|
|
7320
7315
|
messages?: {
|
|
7321
7316
|
text: string;
|
|
7322
|
-
type: "
|
|
7317
|
+
type: "success" | "error" | "info" | "warning";
|
|
7323
7318
|
id?: number | undefined;
|
|
7324
7319
|
}[] | undefined;
|
|
7325
7320
|
required?: boolean | undefined;
|
|
@@ -7344,7 +7339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7344
7339
|
hint?: string | undefined;
|
|
7345
7340
|
messages?: {
|
|
7346
7341
|
text: string;
|
|
7347
|
-
type: "
|
|
7342
|
+
type: "success" | "error" | "info" | "warning";
|
|
7348
7343
|
id?: number | undefined;
|
|
7349
7344
|
}[] | undefined;
|
|
7350
7345
|
required?: boolean | undefined;
|
|
@@ -7365,7 +7360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7365
7360
|
hint?: string | undefined;
|
|
7366
7361
|
messages?: {
|
|
7367
7362
|
text: string;
|
|
7368
|
-
type: "
|
|
7363
|
+
type: "success" | "error" | "info" | "warning";
|
|
7369
7364
|
id?: number | undefined;
|
|
7370
7365
|
}[] | undefined;
|
|
7371
7366
|
required?: boolean | undefined;
|
|
@@ -7386,7 +7381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7386
7381
|
hint?: string | undefined;
|
|
7387
7382
|
messages?: {
|
|
7388
7383
|
text: string;
|
|
7389
|
-
type: "
|
|
7384
|
+
type: "success" | "error" | "info" | "warning";
|
|
7390
7385
|
id?: number | undefined;
|
|
7391
7386
|
}[] | undefined;
|
|
7392
7387
|
required?: boolean | undefined;
|
|
@@ -7617,7 +7612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7617
7612
|
hint?: string | undefined;
|
|
7618
7613
|
messages?: {
|
|
7619
7614
|
text: string;
|
|
7620
|
-
type: "
|
|
7615
|
+
type: "success" | "error" | "info" | "warning";
|
|
7621
7616
|
id?: number | undefined;
|
|
7622
7617
|
}[] | undefined;
|
|
7623
7618
|
required?: boolean | undefined;
|
|
@@ -7635,7 +7630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7635
7630
|
hint?: string | undefined;
|
|
7636
7631
|
messages?: {
|
|
7637
7632
|
text: string;
|
|
7638
|
-
type: "
|
|
7633
|
+
type: "success" | "error" | "info" | "warning";
|
|
7639
7634
|
id?: number | undefined;
|
|
7640
7635
|
}[] | undefined;
|
|
7641
7636
|
required?: boolean | undefined;
|
|
@@ -7659,7 +7654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7659
7654
|
hint?: string | undefined;
|
|
7660
7655
|
messages?: {
|
|
7661
7656
|
text: string;
|
|
7662
|
-
type: "
|
|
7657
|
+
type: "success" | "error" | "info" | "warning";
|
|
7663
7658
|
id?: number | undefined;
|
|
7664
7659
|
}[] | undefined;
|
|
7665
7660
|
required?: boolean | undefined;
|
|
@@ -7683,7 +7678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7683
7678
|
hint?: string | undefined;
|
|
7684
7679
|
messages?: {
|
|
7685
7680
|
text: string;
|
|
7686
|
-
type: "
|
|
7681
|
+
type: "success" | "error" | "info" | "warning";
|
|
7687
7682
|
id?: number | undefined;
|
|
7688
7683
|
}[] | undefined;
|
|
7689
7684
|
required?: boolean | undefined;
|
|
@@ -7712,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7712
7707
|
hint?: string | undefined;
|
|
7713
7708
|
messages?: {
|
|
7714
7709
|
text: string;
|
|
7715
|
-
type: "
|
|
7710
|
+
type: "success" | "error" | "info" | "warning";
|
|
7716
7711
|
id?: number | undefined;
|
|
7717
7712
|
}[] | undefined;
|
|
7718
7713
|
required?: boolean | undefined;
|
|
@@ -7727,7 +7722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7727
7722
|
hint?: string | undefined;
|
|
7728
7723
|
messages?: {
|
|
7729
7724
|
text: string;
|
|
7730
|
-
type: "
|
|
7725
|
+
type: "success" | "error" | "info" | "warning";
|
|
7731
7726
|
id?: number | undefined;
|
|
7732
7727
|
}[] | undefined;
|
|
7733
7728
|
required?: boolean | undefined;
|
|
@@ -7748,7 +7743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7748
7743
|
hint?: string | undefined;
|
|
7749
7744
|
messages?: {
|
|
7750
7745
|
text: string;
|
|
7751
|
-
type: "
|
|
7746
|
+
type: "success" | "error" | "info" | "warning";
|
|
7752
7747
|
id?: number | undefined;
|
|
7753
7748
|
}[] | undefined;
|
|
7754
7749
|
required?: boolean | undefined;
|
|
@@ -7773,7 +7768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7773
7768
|
hint?: string | undefined;
|
|
7774
7769
|
messages?: {
|
|
7775
7770
|
text: string;
|
|
7776
|
-
type: "
|
|
7771
|
+
type: "success" | "error" | "info" | "warning";
|
|
7777
7772
|
id?: number | undefined;
|
|
7778
7773
|
}[] | undefined;
|
|
7779
7774
|
required?: boolean | undefined;
|
|
@@ -7792,7 +7787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7792
7787
|
hint?: string | undefined;
|
|
7793
7788
|
messages?: {
|
|
7794
7789
|
text: string;
|
|
7795
|
-
type: "
|
|
7790
|
+
type: "success" | "error" | "info" | "warning";
|
|
7796
7791
|
id?: number | undefined;
|
|
7797
7792
|
}[] | undefined;
|
|
7798
7793
|
required?: boolean | undefined;
|
|
@@ -7812,7 +7807,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7812
7807
|
hint?: string | undefined;
|
|
7813
7808
|
messages?: {
|
|
7814
7809
|
text: string;
|
|
7815
|
-
type: "
|
|
7810
|
+
type: "success" | "error" | "info" | "warning";
|
|
7816
7811
|
id?: number | undefined;
|
|
7817
7812
|
}[] | undefined;
|
|
7818
7813
|
required?: boolean | undefined;
|
|
@@ -7831,7 +7826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7831
7826
|
hint?: string | undefined;
|
|
7832
7827
|
messages?: {
|
|
7833
7828
|
text: string;
|
|
7834
|
-
type: "
|
|
7829
|
+
type: "success" | "error" | "info" | "warning";
|
|
7835
7830
|
id?: number | undefined;
|
|
7836
7831
|
}[] | undefined;
|
|
7837
7832
|
required?: boolean | undefined;
|
|
@@ -7853,7 +7848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7853
7848
|
hint?: string | undefined;
|
|
7854
7849
|
messages?: {
|
|
7855
7850
|
text: string;
|
|
7856
|
-
type: "
|
|
7851
|
+
type: "success" | "error" | "info" | "warning";
|
|
7857
7852
|
id?: number | undefined;
|
|
7858
7853
|
}[] | undefined;
|
|
7859
7854
|
required?: boolean | undefined;
|
|
@@ -7875,7 +7870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7875
7870
|
hint?: string | undefined;
|
|
7876
7871
|
messages?: {
|
|
7877
7872
|
text: string;
|
|
7878
|
-
type: "
|
|
7873
|
+
type: "success" | "error" | "info" | "warning";
|
|
7879
7874
|
id?: number | undefined;
|
|
7880
7875
|
}[] | undefined;
|
|
7881
7876
|
required?: boolean | undefined;
|
|
@@ -7894,7 +7889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7894
7889
|
hint?: string | undefined;
|
|
7895
7890
|
messages?: {
|
|
7896
7891
|
text: string;
|
|
7897
|
-
type: "
|
|
7892
|
+
type: "success" | "error" | "info" | "warning";
|
|
7898
7893
|
id?: number | undefined;
|
|
7899
7894
|
}[] | undefined;
|
|
7900
7895
|
required?: boolean | undefined;
|
|
@@ -7919,7 +7914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7919
7914
|
hint?: string | undefined;
|
|
7920
7915
|
messages?: {
|
|
7921
7916
|
text: string;
|
|
7922
|
-
type: "
|
|
7917
|
+
type: "success" | "error" | "info" | "warning";
|
|
7923
7918
|
id?: number | undefined;
|
|
7924
7919
|
}[] | undefined;
|
|
7925
7920
|
required?: boolean | undefined;
|
|
@@ -7940,7 +7935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7940
7935
|
hint?: string | undefined;
|
|
7941
7936
|
messages?: {
|
|
7942
7937
|
text: string;
|
|
7943
|
-
type: "
|
|
7938
|
+
type: "success" | "error" | "info" | "warning";
|
|
7944
7939
|
id?: number | undefined;
|
|
7945
7940
|
}[] | undefined;
|
|
7946
7941
|
required?: boolean | undefined;
|
|
@@ -7961,7 +7956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7961
7956
|
hint?: string | undefined;
|
|
7962
7957
|
messages?: {
|
|
7963
7958
|
text: string;
|
|
7964
|
-
type: "
|
|
7959
|
+
type: "success" | "error" | "info" | "warning";
|
|
7965
7960
|
id?: number | undefined;
|
|
7966
7961
|
}[] | undefined;
|
|
7967
7962
|
required?: boolean | undefined;
|
|
@@ -8194,7 +8189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8194
8189
|
hint?: string | undefined;
|
|
8195
8190
|
messages?: {
|
|
8196
8191
|
text: string;
|
|
8197
|
-
type: "
|
|
8192
|
+
type: "success" | "error" | "info" | "warning";
|
|
8198
8193
|
id?: number | undefined;
|
|
8199
8194
|
}[] | undefined;
|
|
8200
8195
|
required?: boolean | undefined;
|
|
@@ -8212,7 +8207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8212
8207
|
hint?: string | undefined;
|
|
8213
8208
|
messages?: {
|
|
8214
8209
|
text: string;
|
|
8215
|
-
type: "
|
|
8210
|
+
type: "success" | "error" | "info" | "warning";
|
|
8216
8211
|
id?: number | undefined;
|
|
8217
8212
|
}[] | undefined;
|
|
8218
8213
|
required?: boolean | undefined;
|
|
@@ -8236,7 +8231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8236
8231
|
hint?: string | undefined;
|
|
8237
8232
|
messages?: {
|
|
8238
8233
|
text: string;
|
|
8239
|
-
type: "
|
|
8234
|
+
type: "success" | "error" | "info" | "warning";
|
|
8240
8235
|
id?: number | undefined;
|
|
8241
8236
|
}[] | undefined;
|
|
8242
8237
|
required?: boolean | undefined;
|
|
@@ -8260,7 +8255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8260
8255
|
hint?: string | undefined;
|
|
8261
8256
|
messages?: {
|
|
8262
8257
|
text: string;
|
|
8263
|
-
type: "
|
|
8258
|
+
type: "success" | "error" | "info" | "warning";
|
|
8264
8259
|
id?: number | undefined;
|
|
8265
8260
|
}[] | undefined;
|
|
8266
8261
|
required?: boolean | undefined;
|
|
@@ -8285,7 +8280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8285
8280
|
hint?: string | undefined;
|
|
8286
8281
|
messages?: {
|
|
8287
8282
|
text: string;
|
|
8288
|
-
type: "
|
|
8283
|
+
type: "success" | "error" | "info" | "warning";
|
|
8289
8284
|
id?: number | undefined;
|
|
8290
8285
|
}[] | undefined;
|
|
8291
8286
|
required?: boolean | undefined;
|
|
@@ -8300,7 +8295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8300
8295
|
hint?: string | undefined;
|
|
8301
8296
|
messages?: {
|
|
8302
8297
|
text: string;
|
|
8303
|
-
type: "
|
|
8298
|
+
type: "success" | "error" | "info" | "warning";
|
|
8304
8299
|
id?: number | undefined;
|
|
8305
8300
|
}[] | undefined;
|
|
8306
8301
|
required?: boolean | undefined;
|
|
@@ -8321,7 +8316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8321
8316
|
hint?: string | undefined;
|
|
8322
8317
|
messages?: {
|
|
8323
8318
|
text: string;
|
|
8324
|
-
type: "
|
|
8319
|
+
type: "success" | "error" | "info" | "warning";
|
|
8325
8320
|
id?: number | undefined;
|
|
8326
8321
|
}[] | undefined;
|
|
8327
8322
|
required?: boolean | undefined;
|
|
@@ -8346,7 +8341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8346
8341
|
hint?: string | undefined;
|
|
8347
8342
|
messages?: {
|
|
8348
8343
|
text: string;
|
|
8349
|
-
type: "
|
|
8344
|
+
type: "success" | "error" | "info" | "warning";
|
|
8350
8345
|
id?: number | undefined;
|
|
8351
8346
|
}[] | undefined;
|
|
8352
8347
|
required?: boolean | undefined;
|
|
@@ -8365,7 +8360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8365
8360
|
hint?: string | undefined;
|
|
8366
8361
|
messages?: {
|
|
8367
8362
|
text: string;
|
|
8368
|
-
type: "
|
|
8363
|
+
type: "success" | "error" | "info" | "warning";
|
|
8369
8364
|
id?: number | undefined;
|
|
8370
8365
|
}[] | undefined;
|
|
8371
8366
|
required?: boolean | undefined;
|
|
@@ -8385,7 +8380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8385
8380
|
hint?: string | undefined;
|
|
8386
8381
|
messages?: {
|
|
8387
8382
|
text: string;
|
|
8388
|
-
type: "
|
|
8383
|
+
type: "success" | "error" | "info" | "warning";
|
|
8389
8384
|
id?: number | undefined;
|
|
8390
8385
|
}[] | undefined;
|
|
8391
8386
|
required?: boolean | undefined;
|
|
@@ -8404,7 +8399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8404
8399
|
hint?: string | undefined;
|
|
8405
8400
|
messages?: {
|
|
8406
8401
|
text: string;
|
|
8407
|
-
type: "
|
|
8402
|
+
type: "success" | "error" | "info" | "warning";
|
|
8408
8403
|
id?: number | undefined;
|
|
8409
8404
|
}[] | undefined;
|
|
8410
8405
|
required?: boolean | undefined;
|
|
@@ -8426,7 +8421,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8426
8421
|
hint?: string | undefined;
|
|
8427
8422
|
messages?: {
|
|
8428
8423
|
text: string;
|
|
8429
|
-
type: "
|
|
8424
|
+
type: "success" | "error" | "info" | "warning";
|
|
8430
8425
|
id?: number | undefined;
|
|
8431
8426
|
}[] | undefined;
|
|
8432
8427
|
required?: boolean | undefined;
|
|
@@ -8448,7 +8443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8448
8443
|
hint?: string | undefined;
|
|
8449
8444
|
messages?: {
|
|
8450
8445
|
text: string;
|
|
8451
|
-
type: "
|
|
8446
|
+
type: "success" | "error" | "info" | "warning";
|
|
8452
8447
|
id?: number | undefined;
|
|
8453
8448
|
}[] | undefined;
|
|
8454
8449
|
required?: boolean | undefined;
|
|
@@ -8467,7 +8462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8467
8462
|
hint?: string | undefined;
|
|
8468
8463
|
messages?: {
|
|
8469
8464
|
text: string;
|
|
8470
|
-
type: "
|
|
8465
|
+
type: "success" | "error" | "info" | "warning";
|
|
8471
8466
|
id?: number | undefined;
|
|
8472
8467
|
}[] | undefined;
|
|
8473
8468
|
required?: boolean | undefined;
|
|
@@ -8492,7 +8487,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8492
8487
|
hint?: string | undefined;
|
|
8493
8488
|
messages?: {
|
|
8494
8489
|
text: string;
|
|
8495
|
-
type: "
|
|
8490
|
+
type: "success" | "error" | "info" | "warning";
|
|
8496
8491
|
id?: number | undefined;
|
|
8497
8492
|
}[] | undefined;
|
|
8498
8493
|
required?: boolean | undefined;
|
|
@@ -8513,7 +8508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8513
8508
|
hint?: string | undefined;
|
|
8514
8509
|
messages?: {
|
|
8515
8510
|
text: string;
|
|
8516
|
-
type: "
|
|
8511
|
+
type: "success" | "error" | "info" | "warning";
|
|
8517
8512
|
id?: number | undefined;
|
|
8518
8513
|
}[] | undefined;
|
|
8519
8514
|
required?: boolean | undefined;
|
|
@@ -8534,7 +8529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8534
8529
|
hint?: string | undefined;
|
|
8535
8530
|
messages?: {
|
|
8536
8531
|
text: string;
|
|
8537
|
-
type: "
|
|
8532
|
+
type: "success" | "error" | "info" | "warning";
|
|
8538
8533
|
id?: number | undefined;
|
|
8539
8534
|
}[] | undefined;
|
|
8540
8535
|
required?: boolean | undefined;
|
|
@@ -8765,7 +8760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8765
8760
|
hint?: string | undefined;
|
|
8766
8761
|
messages?: {
|
|
8767
8762
|
text: string;
|
|
8768
|
-
type: "
|
|
8763
|
+
type: "success" | "error" | "info" | "warning";
|
|
8769
8764
|
id?: number | undefined;
|
|
8770
8765
|
}[] | undefined;
|
|
8771
8766
|
required?: boolean | undefined;
|
|
@@ -8783,7 +8778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8783
8778
|
hint?: string | undefined;
|
|
8784
8779
|
messages?: {
|
|
8785
8780
|
text: string;
|
|
8786
|
-
type: "
|
|
8781
|
+
type: "success" | "error" | "info" | "warning";
|
|
8787
8782
|
id?: number | undefined;
|
|
8788
8783
|
}[] | undefined;
|
|
8789
8784
|
required?: boolean | undefined;
|
|
@@ -8807,7 +8802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8807
8802
|
hint?: string | undefined;
|
|
8808
8803
|
messages?: {
|
|
8809
8804
|
text: string;
|
|
8810
|
-
type: "
|
|
8805
|
+
type: "success" | "error" | "info" | "warning";
|
|
8811
8806
|
id?: number | undefined;
|
|
8812
8807
|
}[] | undefined;
|
|
8813
8808
|
required?: boolean | undefined;
|
|
@@ -8831,7 +8826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8831
8826
|
hint?: string | undefined;
|
|
8832
8827
|
messages?: {
|
|
8833
8828
|
text: string;
|
|
8834
|
-
type: "
|
|
8829
|
+
type: "success" | "error" | "info" | "warning";
|
|
8835
8830
|
id?: number | undefined;
|
|
8836
8831
|
}[] | undefined;
|
|
8837
8832
|
required?: boolean | undefined;
|
|
@@ -8860,7 +8855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8860
8855
|
hint?: string | undefined;
|
|
8861
8856
|
messages?: {
|
|
8862
8857
|
text: string;
|
|
8863
|
-
type: "
|
|
8858
|
+
type: "success" | "error" | "info" | "warning";
|
|
8864
8859
|
id?: number | undefined;
|
|
8865
8860
|
}[] | undefined;
|
|
8866
8861
|
required?: boolean | undefined;
|
|
@@ -8875,7 +8870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8875
8870
|
hint?: string | undefined;
|
|
8876
8871
|
messages?: {
|
|
8877
8872
|
text: string;
|
|
8878
|
-
type: "
|
|
8873
|
+
type: "success" | "error" | "info" | "warning";
|
|
8879
8874
|
id?: number | undefined;
|
|
8880
8875
|
}[] | undefined;
|
|
8881
8876
|
required?: boolean | undefined;
|
|
@@ -8896,7 +8891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8896
8891
|
hint?: string | undefined;
|
|
8897
8892
|
messages?: {
|
|
8898
8893
|
text: string;
|
|
8899
|
-
type: "
|
|
8894
|
+
type: "success" | "error" | "info" | "warning";
|
|
8900
8895
|
id?: number | undefined;
|
|
8901
8896
|
}[] | undefined;
|
|
8902
8897
|
required?: boolean | undefined;
|
|
@@ -8921,7 +8916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8921
8916
|
hint?: string | undefined;
|
|
8922
8917
|
messages?: {
|
|
8923
8918
|
text: string;
|
|
8924
|
-
type: "
|
|
8919
|
+
type: "success" | "error" | "info" | "warning";
|
|
8925
8920
|
id?: number | undefined;
|
|
8926
8921
|
}[] | undefined;
|
|
8927
8922
|
required?: boolean | undefined;
|
|
@@ -8940,7 +8935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8940
8935
|
hint?: string | undefined;
|
|
8941
8936
|
messages?: {
|
|
8942
8937
|
text: string;
|
|
8943
|
-
type: "
|
|
8938
|
+
type: "success" | "error" | "info" | "warning";
|
|
8944
8939
|
id?: number | undefined;
|
|
8945
8940
|
}[] | undefined;
|
|
8946
8941
|
required?: boolean | undefined;
|
|
@@ -8960,7 +8955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8960
8955
|
hint?: string | undefined;
|
|
8961
8956
|
messages?: {
|
|
8962
8957
|
text: string;
|
|
8963
|
-
type: "
|
|
8958
|
+
type: "success" | "error" | "info" | "warning";
|
|
8964
8959
|
id?: number | undefined;
|
|
8965
8960
|
}[] | undefined;
|
|
8966
8961
|
required?: boolean | undefined;
|
|
@@ -8979,7 +8974,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8979
8974
|
hint?: string | undefined;
|
|
8980
8975
|
messages?: {
|
|
8981
8976
|
text: string;
|
|
8982
|
-
type: "
|
|
8977
|
+
type: "success" | "error" | "info" | "warning";
|
|
8983
8978
|
id?: number | undefined;
|
|
8984
8979
|
}[] | undefined;
|
|
8985
8980
|
required?: boolean | undefined;
|
|
@@ -9001,7 +8996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9001
8996
|
hint?: string | undefined;
|
|
9002
8997
|
messages?: {
|
|
9003
8998
|
text: string;
|
|
9004
|
-
type: "
|
|
8999
|
+
type: "success" | "error" | "info" | "warning";
|
|
9005
9000
|
id?: number | undefined;
|
|
9006
9001
|
}[] | undefined;
|
|
9007
9002
|
required?: boolean | undefined;
|
|
@@ -9023,7 +9018,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9023
9018
|
hint?: string | undefined;
|
|
9024
9019
|
messages?: {
|
|
9025
9020
|
text: string;
|
|
9026
|
-
type: "
|
|
9021
|
+
type: "success" | "error" | "info" | "warning";
|
|
9027
9022
|
id?: number | undefined;
|
|
9028
9023
|
}[] | undefined;
|
|
9029
9024
|
required?: boolean | undefined;
|
|
@@ -9042,7 +9037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9042
9037
|
hint?: string | undefined;
|
|
9043
9038
|
messages?: {
|
|
9044
9039
|
text: string;
|
|
9045
|
-
type: "
|
|
9040
|
+
type: "success" | "error" | "info" | "warning";
|
|
9046
9041
|
id?: number | undefined;
|
|
9047
9042
|
}[] | undefined;
|
|
9048
9043
|
required?: boolean | undefined;
|
|
@@ -9067,7 +9062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9067
9062
|
hint?: string | undefined;
|
|
9068
9063
|
messages?: {
|
|
9069
9064
|
text: string;
|
|
9070
|
-
type: "
|
|
9065
|
+
type: "success" | "error" | "info" | "warning";
|
|
9071
9066
|
id?: number | undefined;
|
|
9072
9067
|
}[] | undefined;
|
|
9073
9068
|
required?: boolean | undefined;
|
|
@@ -9088,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9088
9083
|
hint?: string | undefined;
|
|
9089
9084
|
messages?: {
|
|
9090
9085
|
text: string;
|
|
9091
|
-
type: "
|
|
9086
|
+
type: "success" | "error" | "info" | "warning";
|
|
9092
9087
|
id?: number | undefined;
|
|
9093
9088
|
}[] | undefined;
|
|
9094
9089
|
required?: boolean | undefined;
|
|
@@ -9109,7 +9104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9109
9104
|
hint?: string | undefined;
|
|
9110
9105
|
messages?: {
|
|
9111
9106
|
text: string;
|
|
9112
|
-
type: "
|
|
9107
|
+
type: "success" | "error" | "info" | "warning";
|
|
9113
9108
|
id?: number | undefined;
|
|
9114
9109
|
}[] | undefined;
|
|
9115
9110
|
required?: boolean | undefined;
|
|
@@ -9339,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9339
9334
|
};
|
|
9340
9335
|
};
|
|
9341
9336
|
output: {
|
|
9342
|
-
prompt: "
|
|
9337
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
9343
9338
|
language: string;
|
|
9344
9339
|
}[];
|
|
9345
9340
|
outputFormat: "json";
|
|
@@ -9377,7 +9372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9377
9372
|
$get: {
|
|
9378
9373
|
input: {
|
|
9379
9374
|
param: {
|
|
9380
|
-
prompt: "
|
|
9375
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
9381
9376
|
language: string;
|
|
9382
9377
|
};
|
|
9383
9378
|
} & {
|
|
@@ -9399,7 +9394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9399
9394
|
$put: {
|
|
9400
9395
|
input: {
|
|
9401
9396
|
param: {
|
|
9402
|
-
prompt: "
|
|
9397
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
9403
9398
|
language: string;
|
|
9404
9399
|
};
|
|
9405
9400
|
} & {
|
|
@@ -9423,7 +9418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9423
9418
|
$delete: {
|
|
9424
9419
|
input: {
|
|
9425
9420
|
param: {
|
|
9426
|
-
prompt: "
|
|
9421
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
9427
9422
|
language: string;
|
|
9428
9423
|
};
|
|
9429
9424
|
} & {
|
|
@@ -10285,7 +10280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10285
10280
|
};
|
|
10286
10281
|
} | {
|
|
10287
10282
|
mode: "inline";
|
|
10288
|
-
status: "
|
|
10283
|
+
status: "success" | "error";
|
|
10289
10284
|
connection_id: string;
|
|
10290
10285
|
connection_name: string;
|
|
10291
10286
|
strategy: string;
|
|
@@ -11512,7 +11507,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11512
11507
|
};
|
|
11513
11508
|
};
|
|
11514
11509
|
output: {
|
|
11515
|
-
type: "
|
|
11510
|
+
type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
|
|
11516
11511
|
date: string;
|
|
11517
11512
|
isMobile: boolean;
|
|
11518
11513
|
log_id: string;
|
|
@@ -11551,7 +11546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11551
11546
|
limit: number;
|
|
11552
11547
|
length: number;
|
|
11553
11548
|
logs: {
|
|
11554
|
-
type: "
|
|
11549
|
+
type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11555
11550
|
date: string;
|
|
11556
11551
|
isMobile: boolean;
|
|
11557
11552
|
log_id: string;
|
|
@@ -11605,7 +11600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11605
11600
|
};
|
|
11606
11601
|
};
|
|
11607
11602
|
output: {
|
|
11608
|
-
type: "
|
|
11603
|
+
type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
|
|
11609
11604
|
date: string;
|
|
11610
11605
|
isMobile: boolean;
|
|
11611
11606
|
log_id: string;
|
|
@@ -11993,7 +11988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11993
11988
|
addons?: {
|
|
11994
11989
|
[x: string]: any;
|
|
11995
11990
|
} | undefined;
|
|
11996
|
-
token_endpoint_auth_method?: "
|
|
11991
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11997
11992
|
client_metadata?: {
|
|
11998
11993
|
[x: string]: string;
|
|
11999
11994
|
} | undefined;
|
|
@@ -12089,7 +12084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12089
12084
|
addons?: {
|
|
12090
12085
|
[x: string]: any;
|
|
12091
12086
|
} | undefined;
|
|
12092
|
-
token_endpoint_auth_method?: "
|
|
12087
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12093
12088
|
client_metadata?: {
|
|
12094
12089
|
[x: string]: string;
|
|
12095
12090
|
} | undefined;
|
|
@@ -12200,7 +12195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12200
12195
|
addons?: {
|
|
12201
12196
|
[x: string]: any;
|
|
12202
12197
|
} | undefined;
|
|
12203
|
-
token_endpoint_auth_method?: "
|
|
12198
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12204
12199
|
client_metadata?: {
|
|
12205
12200
|
[x: string]: string;
|
|
12206
12201
|
} | undefined;
|
|
@@ -12310,7 +12305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12310
12305
|
custom_login_page_preview?: string | undefined;
|
|
12311
12306
|
form_template?: string | undefined;
|
|
12312
12307
|
addons?: Record<string, any> | undefined;
|
|
12313
|
-
token_endpoint_auth_method?: "
|
|
12308
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12314
12309
|
client_metadata?: Record<string, string> | undefined;
|
|
12315
12310
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12316
12311
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12390,7 +12385,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12390
12385
|
addons?: {
|
|
12391
12386
|
[x: string]: any;
|
|
12392
12387
|
} | undefined;
|
|
12393
|
-
token_endpoint_auth_method?: "
|
|
12388
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12394
12389
|
client_metadata?: {
|
|
12395
12390
|
[x: string]: string;
|
|
12396
12391
|
} | undefined;
|
|
@@ -12479,7 +12474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12479
12474
|
custom_login_page_preview?: string | undefined;
|
|
12480
12475
|
form_template?: string | undefined;
|
|
12481
12476
|
addons?: Record<string, any> | undefined;
|
|
12482
|
-
token_endpoint_auth_method?: "
|
|
12477
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12483
12478
|
client_metadata?: Record<string, string> | undefined;
|
|
12484
12479
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12485
12480
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12559,7 +12554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12559
12554
|
addons?: {
|
|
12560
12555
|
[x: string]: any;
|
|
12561
12556
|
} | undefined;
|
|
12562
|
-
token_endpoint_auth_method?: "
|
|
12557
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12563
12558
|
client_metadata?: {
|
|
12564
12559
|
[x: string]: string;
|
|
12565
12560
|
} | undefined;
|
|
@@ -13823,7 +13818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13823
13818
|
};
|
|
13824
13819
|
};
|
|
13825
13820
|
output: {
|
|
13826
|
-
type: "
|
|
13821
|
+
type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
|
|
13827
13822
|
date: string;
|
|
13828
13823
|
isMobile: boolean;
|
|
13829
13824
|
log_id: string;
|
|
@@ -13862,7 +13857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13862
13857
|
limit: number;
|
|
13863
13858
|
length: number;
|
|
13864
13859
|
logs: {
|
|
13865
|
-
type: "
|
|
13860
|
+
type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
|
|
13866
13861
|
date: string;
|
|
13867
13862
|
isMobile: boolean;
|
|
13868
13863
|
log_id: string;
|
|
@@ -14702,7 +14697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14702
14697
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14703
14698
|
custom_domain_id: string;
|
|
14704
14699
|
primary: boolean;
|
|
14705
|
-
status: "
|
|
14700
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14706
14701
|
verification_method?: "txt" | undefined;
|
|
14707
14702
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14708
14703
|
domain_metadata?: {
|
|
@@ -14743,7 +14738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14743
14738
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14744
14739
|
custom_domain_id: string;
|
|
14745
14740
|
primary: boolean;
|
|
14746
|
-
status: "
|
|
14741
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14747
14742
|
verification_method?: "txt" | undefined;
|
|
14748
14743
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14749
14744
|
domain_metadata?: {
|
|
@@ -14807,7 +14802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14807
14802
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14808
14803
|
custom_domain_id: string;
|
|
14809
14804
|
primary: boolean;
|
|
14810
|
-
status: "
|
|
14805
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14811
14806
|
verification_method?: "txt" | undefined;
|
|
14812
14807
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14813
14808
|
domain_metadata?: {
|
|
@@ -14854,7 +14849,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14849
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14855
14850
|
custom_domain_id: string;
|
|
14856
14851
|
primary: boolean;
|
|
14857
|
-
status: "
|
|
14852
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14858
14853
|
verification_method?: "txt" | undefined;
|
|
14859
14854
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14860
14855
|
domain_metadata?: {
|
|
@@ -14900,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14900
14895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14901
14896
|
custom_domain_id: string;
|
|
14902
14897
|
primary: boolean;
|
|
14903
|
-
status: "
|
|
14898
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14904
14899
|
verification_method?: "txt" | undefined;
|
|
14905
14900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14906
14901
|
domain_metadata?: {
|
|
@@ -14941,7 +14936,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14941
14936
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14942
14937
|
custom_domain_id: string;
|
|
14943
14938
|
primary: boolean;
|
|
14944
|
-
status: "
|
|
14939
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14945
14940
|
verification_method?: "txt" | undefined;
|
|
14946
14941
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14947
14942
|
domain_metadata?: {
|
|
@@ -15548,7 +15543,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15548
15543
|
logs: {
|
|
15549
15544
|
action_name: string;
|
|
15550
15545
|
lines: {
|
|
15551
|
-
level: "
|
|
15546
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15552
15547
|
message: string;
|
|
15553
15548
|
}[];
|
|
15554
15549
|
}[];
|
|
@@ -16215,7 +16210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16215
16210
|
args: hono_utils_types.JSONValue[];
|
|
16216
16211
|
}[];
|
|
16217
16212
|
logs: {
|
|
16218
|
-
level: "
|
|
16213
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16219
16214
|
message: string;
|
|
16220
16215
|
}[];
|
|
16221
16216
|
error?: string | undefined;
|
|
@@ -16513,7 +16508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16513
16508
|
scope?: string | undefined;
|
|
16514
16509
|
grant_types?: string[] | undefined;
|
|
16515
16510
|
response_types?: string[] | undefined;
|
|
16516
|
-
token_endpoint_auth_method?: "
|
|
16511
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16517
16512
|
jwks_uri?: string | undefined;
|
|
16518
16513
|
jwks?: Record<string, unknown> | undefined;
|
|
16519
16514
|
software_id?: string | undefined;
|
|
@@ -16602,7 +16597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16602
16597
|
scope?: string | undefined;
|
|
16603
16598
|
grant_types?: string[] | undefined;
|
|
16604
16599
|
response_types?: string[] | undefined;
|
|
16605
|
-
token_endpoint_auth_method?: "
|
|
16600
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16606
16601
|
jwks_uri?: string | undefined;
|
|
16607
16602
|
jwks?: Record<string, unknown> | undefined;
|
|
16608
16603
|
software_id?: string | undefined;
|
|
@@ -16948,13 +16943,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16948
16943
|
email: string;
|
|
16949
16944
|
send: "code" | "link";
|
|
16950
16945
|
authParams: {
|
|
16946
|
+
audience?: string | undefined;
|
|
16951
16947
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16952
16948
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16953
16949
|
scope?: string | undefined;
|
|
16954
16950
|
username?: string | undefined;
|
|
16955
|
-
audience?: string | undefined;
|
|
16956
|
-
state?: string | undefined;
|
|
16957
16951
|
organization?: string | undefined;
|
|
16952
|
+
state?: string | undefined;
|
|
16958
16953
|
nonce?: string | undefined;
|
|
16959
16954
|
act_as?: string | undefined;
|
|
16960
16955
|
redirect_uri?: string | undefined;
|
|
@@ -16984,13 +16979,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16984
16979
|
phone_number: string;
|
|
16985
16980
|
send: "code" | "link";
|
|
16986
16981
|
authParams: {
|
|
16982
|
+
audience?: string | undefined;
|
|
16987
16983
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16988
16984
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16989
16985
|
scope?: string | undefined;
|
|
16990
16986
|
username?: string | undefined;
|
|
16991
|
-
audience?: string | undefined;
|
|
16992
|
-
state?: string | undefined;
|
|
16993
16987
|
organization?: string | undefined;
|
|
16988
|
+
state?: string | undefined;
|
|
16994
16989
|
nonce?: string | undefined;
|
|
16995
16990
|
act_as?: string | undefined;
|
|
16996
16991
|
redirect_uri?: string | undefined;
|
|
@@ -17128,14 +17123,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17128
17123
|
input: {
|
|
17129
17124
|
form: {
|
|
17130
17125
|
token: string;
|
|
17131
|
-
token_type_hint?: "
|
|
17126
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17132
17127
|
client_id?: string | undefined;
|
|
17133
17128
|
client_secret?: string | undefined;
|
|
17134
17129
|
};
|
|
17135
17130
|
} & {
|
|
17136
17131
|
json: {
|
|
17137
17132
|
token: string;
|
|
17138
|
-
token_type_hint?: "
|
|
17133
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17139
17134
|
client_id?: string | undefined;
|
|
17140
17135
|
client_secret?: string | undefined;
|
|
17141
17136
|
};
|
|
@@ -17147,14 +17142,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17147
17142
|
input: {
|
|
17148
17143
|
form: {
|
|
17149
17144
|
token: string;
|
|
17150
|
-
token_type_hint?: "
|
|
17145
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17151
17146
|
client_id?: string | undefined;
|
|
17152
17147
|
client_secret?: string | undefined;
|
|
17153
17148
|
};
|
|
17154
17149
|
} & {
|
|
17155
17150
|
json: {
|
|
17156
17151
|
token: string;
|
|
17157
|
-
token_type_hint?: "
|
|
17152
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17158
17153
|
client_id?: string | undefined;
|
|
17159
17154
|
client_secret?: string | undefined;
|
|
17160
17155
|
};
|
|
@@ -17169,14 +17164,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17169
17164
|
input: {
|
|
17170
17165
|
form: {
|
|
17171
17166
|
token: string;
|
|
17172
|
-
token_type_hint?: "
|
|
17167
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17173
17168
|
client_id?: string | undefined;
|
|
17174
17169
|
client_secret?: string | undefined;
|
|
17175
17170
|
};
|
|
17176
17171
|
} & {
|
|
17177
17172
|
json: {
|
|
17178
17173
|
token: string;
|
|
17179
|
-
token_type_hint?: "
|
|
17174
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17180
17175
|
client_id?: string | undefined;
|
|
17181
17176
|
client_secret?: string | undefined;
|
|
17182
17177
|
};
|
|
@@ -17226,7 +17221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17226
17221
|
client_id: string;
|
|
17227
17222
|
username: string;
|
|
17228
17223
|
otp: string;
|
|
17229
|
-
realm: "
|
|
17224
|
+
realm: "sms" | "email";
|
|
17230
17225
|
} | {
|
|
17231
17226
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17232
17227
|
subject_token: string;
|
|
@@ -17273,7 +17268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17273
17268
|
client_id: string;
|
|
17274
17269
|
username: string;
|
|
17275
17270
|
otp: string;
|
|
17276
|
-
realm: "
|
|
17271
|
+
realm: "sms" | "email";
|
|
17277
17272
|
} | {
|
|
17278
17273
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17279
17274
|
subject_token: string;
|
|
@@ -17325,7 +17320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17325
17320
|
client_id: string;
|
|
17326
17321
|
username: string;
|
|
17327
17322
|
otp: string;
|
|
17328
|
-
realm: "
|
|
17323
|
+
realm: "sms" | "email";
|
|
17329
17324
|
} | {
|
|
17330
17325
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17331
17326
|
subject_token: string;
|
|
@@ -17372,7 +17367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17372
17367
|
client_id: string;
|
|
17373
17368
|
username: string;
|
|
17374
17369
|
otp: string;
|
|
17375
|
-
realm: "
|
|
17370
|
+
realm: "sms" | "email";
|
|
17376
17371
|
} | {
|
|
17377
17372
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17378
17373
|
subject_token: string;
|
|
@@ -17432,7 +17427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17432
17427
|
client_id: string;
|
|
17433
17428
|
username: string;
|
|
17434
17429
|
otp: string;
|
|
17435
|
-
realm: "
|
|
17430
|
+
realm: "sms" | "email";
|
|
17436
17431
|
} | {
|
|
17437
17432
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17438
17433
|
subject_token: string;
|
|
@@ -17479,7 +17474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17479
17474
|
client_id: string;
|
|
17480
17475
|
username: string;
|
|
17481
17476
|
otp: string;
|
|
17482
|
-
realm: "
|
|
17477
|
+
realm: "sms" | "email";
|
|
17483
17478
|
} | {
|
|
17484
17479
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17485
17480
|
subject_token: string;
|
|
@@ -17534,7 +17529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17534
17529
|
client_id: string;
|
|
17535
17530
|
username: string;
|
|
17536
17531
|
otp: string;
|
|
17537
|
-
realm: "
|
|
17532
|
+
realm: "sms" | "email";
|
|
17538
17533
|
} | {
|
|
17539
17534
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17540
17535
|
subject_token: string;
|
|
@@ -17581,7 +17576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17581
17576
|
client_id: string;
|
|
17582
17577
|
username: string;
|
|
17583
17578
|
otp: string;
|
|
17584
|
-
realm: "
|
|
17579
|
+
realm: "sms" | "email";
|
|
17585
17580
|
} | {
|
|
17586
17581
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17587
17582
|
subject_token: string;
|
|
@@ -17636,7 +17631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17636
17631
|
client_id: string;
|
|
17637
17632
|
username: string;
|
|
17638
17633
|
otp: string;
|
|
17639
|
-
realm: "
|
|
17634
|
+
realm: "sms" | "email";
|
|
17640
17635
|
} | {
|
|
17641
17636
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17642
17637
|
subject_token: string;
|
|
@@ -17683,7 +17678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17683
17678
|
client_id: string;
|
|
17684
17679
|
username: string;
|
|
17685
17680
|
otp: string;
|
|
17686
|
-
realm: "
|
|
17681
|
+
realm: "sms" | "email";
|
|
17687
17682
|
} | {
|
|
17688
17683
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17689
17684
|
subject_token: string;
|
|
@@ -18903,7 +18898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18903
18898
|
$get: {
|
|
18904
18899
|
input: {
|
|
18905
18900
|
param: {
|
|
18906
|
-
screen: "signup" | "
|
|
18901
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "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";
|
|
18907
18902
|
};
|
|
18908
18903
|
} & {
|
|
18909
18904
|
query: {
|
|
@@ -18919,7 +18914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18919
18914
|
} | {
|
|
18920
18915
|
input: {
|
|
18921
18916
|
param: {
|
|
18922
|
-
screen: "signup" | "
|
|
18917
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "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";
|
|
18923
18918
|
};
|
|
18924
18919
|
} & {
|
|
18925
18920
|
query: {
|
|
@@ -18935,7 +18930,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18935
18930
|
} | {
|
|
18936
18931
|
input: {
|
|
18937
18932
|
param: {
|
|
18938
|
-
screen: "signup" | "
|
|
18933
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "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";
|
|
18939
18934
|
};
|
|
18940
18935
|
} & {
|
|
18941
18936
|
query: {
|
|
@@ -18955,7 +18950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18955
18950
|
$post: {
|
|
18956
18951
|
input: {
|
|
18957
18952
|
param: {
|
|
18958
|
-
screen: "signup" | "
|
|
18953
|
+
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";
|
|
18959
18954
|
};
|
|
18960
18955
|
} & {
|
|
18961
18956
|
query: {
|
|
@@ -18973,7 +18968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18973
18968
|
} | {
|
|
18974
18969
|
input: {
|
|
18975
18970
|
param: {
|
|
18976
|
-
screen: "signup" | "
|
|
18971
|
+
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";
|
|
18977
18972
|
};
|
|
18978
18973
|
} & {
|
|
18979
18974
|
query: {
|
|
@@ -18991,7 +18986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18991
18986
|
} | {
|
|
18992
18987
|
input: {
|
|
18993
18988
|
param: {
|
|
18994
|
-
screen: "signup" | "
|
|
18989
|
+
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";
|
|
18995
18990
|
};
|
|
18996
18991
|
} & {
|
|
18997
18992
|
query: {
|