authhero 5.13.0 → 5.13.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 +103 -103
- package/dist/authhero.d.ts +205 -205
- package/dist/authhero.mjs +9358 -9346
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/service-token.d.ts +11 -1
- package/dist/types/index.d.ts +205 -205
- package/dist/types/routes/auth-api/index.d.ts +14 -14
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/index.d.ts +189 -189
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -2459,7 +2459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2459
2459
|
};
|
|
2460
2460
|
} & {
|
|
2461
2461
|
json: {
|
|
2462
|
-
type: "
|
|
2462
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2463
2463
|
phone_number?: string | undefined;
|
|
2464
2464
|
totp_secret?: string | undefined;
|
|
2465
2465
|
credential_id?: string | undefined;
|
|
@@ -2599,7 +2599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2599
2599
|
};
|
|
2600
2600
|
};
|
|
2601
2601
|
output: {
|
|
2602
|
-
name: "email" | "
|
|
2602
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
2603
2603
|
enabled: boolean;
|
|
2604
2604
|
trial_expired?: boolean | undefined;
|
|
2605
2605
|
}[];
|
|
@@ -2754,7 +2754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2754
2754
|
$get: {
|
|
2755
2755
|
input: {
|
|
2756
2756
|
param: {
|
|
2757
|
-
factor_name: "email" | "
|
|
2757
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
2758
2758
|
};
|
|
2759
2759
|
} & {
|
|
2760
2760
|
header: {
|
|
@@ -2762,7 +2762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2762
2762
|
};
|
|
2763
2763
|
};
|
|
2764
2764
|
output: {
|
|
2765
|
-
name: "email" | "
|
|
2765
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
2766
2766
|
enabled: boolean;
|
|
2767
2767
|
trial_expired?: boolean | undefined;
|
|
2768
2768
|
};
|
|
@@ -2775,7 +2775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2775
2775
|
$put: {
|
|
2776
2776
|
input: {
|
|
2777
2777
|
param: {
|
|
2778
|
-
factor_name: "email" | "
|
|
2778
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
2779
2779
|
};
|
|
2780
2780
|
} & {
|
|
2781
2781
|
header: {
|
|
@@ -2787,7 +2787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2787
2787
|
};
|
|
2788
2788
|
};
|
|
2789
2789
|
output: {
|
|
2790
|
-
name: "email" | "
|
|
2790
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
2791
2791
|
enabled: boolean;
|
|
2792
2792
|
trial_expired?: boolean | undefined;
|
|
2793
2793
|
};
|
|
@@ -3536,8 +3536,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3536
3536
|
connection_id?: string | undefined;
|
|
3537
3537
|
app_metadata?: Record<string, any> | undefined;
|
|
3538
3538
|
user_metadata?: Record<string, any> | undefined;
|
|
3539
|
-
roles?: string[] | undefined;
|
|
3540
3539
|
ttl_sec?: number | undefined;
|
|
3540
|
+
roles?: string[] | undefined;
|
|
3541
3541
|
send_invitation_email?: boolean | undefined;
|
|
3542
3542
|
};
|
|
3543
3543
|
};
|
|
@@ -4963,7 +4963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4963
4963
|
hint?: string | undefined;
|
|
4964
4964
|
messages?: {
|
|
4965
4965
|
text: string;
|
|
4966
|
-
type: "
|
|
4966
|
+
type: "success" | "error" | "info" | "warning";
|
|
4967
4967
|
id?: number | undefined;
|
|
4968
4968
|
}[] | undefined;
|
|
4969
4969
|
required?: boolean | undefined;
|
|
@@ -4981,7 +4981,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4981
4981
|
hint?: string | undefined;
|
|
4982
4982
|
messages?: {
|
|
4983
4983
|
text: string;
|
|
4984
|
-
type: "
|
|
4984
|
+
type: "success" | "error" | "info" | "warning";
|
|
4985
4985
|
id?: number | undefined;
|
|
4986
4986
|
}[] | undefined;
|
|
4987
4987
|
required?: boolean | undefined;
|
|
@@ -5005,7 +5005,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5005
5005
|
hint?: string | undefined;
|
|
5006
5006
|
messages?: {
|
|
5007
5007
|
text: string;
|
|
5008
|
-
type: "
|
|
5008
|
+
type: "success" | "error" | "info" | "warning";
|
|
5009
5009
|
id?: number | undefined;
|
|
5010
5010
|
}[] | undefined;
|
|
5011
5011
|
required?: boolean | undefined;
|
|
@@ -5029,7 +5029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5029
5029
|
hint?: string | undefined;
|
|
5030
5030
|
messages?: {
|
|
5031
5031
|
text: string;
|
|
5032
|
-
type: "
|
|
5032
|
+
type: "success" | "error" | "info" | "warning";
|
|
5033
5033
|
id?: number | undefined;
|
|
5034
5034
|
}[] | undefined;
|
|
5035
5035
|
required?: boolean | undefined;
|
|
@@ -5058,7 +5058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5058
5058
|
hint?: string | undefined;
|
|
5059
5059
|
messages?: {
|
|
5060
5060
|
text: string;
|
|
5061
|
-
type: "
|
|
5061
|
+
type: "success" | "error" | "info" | "warning";
|
|
5062
5062
|
id?: number | undefined;
|
|
5063
5063
|
}[] | undefined;
|
|
5064
5064
|
required?: boolean | undefined;
|
|
@@ -5073,7 +5073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5073
5073
|
hint?: string | undefined;
|
|
5074
5074
|
messages?: {
|
|
5075
5075
|
text: string;
|
|
5076
|
-
type: "
|
|
5076
|
+
type: "success" | "error" | "info" | "warning";
|
|
5077
5077
|
id?: number | undefined;
|
|
5078
5078
|
}[] | undefined;
|
|
5079
5079
|
required?: boolean | undefined;
|
|
@@ -5094,7 +5094,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5094
5094
|
hint?: string | undefined;
|
|
5095
5095
|
messages?: {
|
|
5096
5096
|
text: string;
|
|
5097
|
-
type: "
|
|
5097
|
+
type: "success" | "error" | "info" | "warning";
|
|
5098
5098
|
id?: number | undefined;
|
|
5099
5099
|
}[] | undefined;
|
|
5100
5100
|
required?: boolean | undefined;
|
|
@@ -5119,7 +5119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5119
5119
|
hint?: string | undefined;
|
|
5120
5120
|
messages?: {
|
|
5121
5121
|
text: string;
|
|
5122
|
-
type: "
|
|
5122
|
+
type: "success" | "error" | "info" | "warning";
|
|
5123
5123
|
id?: number | undefined;
|
|
5124
5124
|
}[] | undefined;
|
|
5125
5125
|
required?: boolean | undefined;
|
|
@@ -5138,7 +5138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5138
5138
|
hint?: string | undefined;
|
|
5139
5139
|
messages?: {
|
|
5140
5140
|
text: string;
|
|
5141
|
-
type: "
|
|
5141
|
+
type: "success" | "error" | "info" | "warning";
|
|
5142
5142
|
id?: number | undefined;
|
|
5143
5143
|
}[] | undefined;
|
|
5144
5144
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5158
5158
|
hint?: string | undefined;
|
|
5159
5159
|
messages?: {
|
|
5160
5160
|
text: string;
|
|
5161
|
-
type: "
|
|
5161
|
+
type: "success" | "error" | "info" | "warning";
|
|
5162
5162
|
id?: number | undefined;
|
|
5163
5163
|
}[] | undefined;
|
|
5164
5164
|
required?: boolean | undefined;
|
|
@@ -5177,7 +5177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5177
5177
|
hint?: string | undefined;
|
|
5178
5178
|
messages?: {
|
|
5179
5179
|
text: string;
|
|
5180
|
-
type: "
|
|
5180
|
+
type: "success" | "error" | "info" | "warning";
|
|
5181
5181
|
id?: number | undefined;
|
|
5182
5182
|
}[] | undefined;
|
|
5183
5183
|
required?: boolean | undefined;
|
|
@@ -5199,7 +5199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5199
5199
|
hint?: string | undefined;
|
|
5200
5200
|
messages?: {
|
|
5201
5201
|
text: string;
|
|
5202
|
-
type: "
|
|
5202
|
+
type: "success" | "error" | "info" | "warning";
|
|
5203
5203
|
id?: number | undefined;
|
|
5204
5204
|
}[] | undefined;
|
|
5205
5205
|
required?: boolean | undefined;
|
|
@@ -5221,7 +5221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5221
5221
|
hint?: string | undefined;
|
|
5222
5222
|
messages?: {
|
|
5223
5223
|
text: string;
|
|
5224
|
-
type: "
|
|
5224
|
+
type: "success" | "error" | "info" | "warning";
|
|
5225
5225
|
id?: number | undefined;
|
|
5226
5226
|
}[] | undefined;
|
|
5227
5227
|
required?: boolean | undefined;
|
|
@@ -5240,7 +5240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5240
5240
|
hint?: string | undefined;
|
|
5241
5241
|
messages?: {
|
|
5242
5242
|
text: string;
|
|
5243
|
-
type: "
|
|
5243
|
+
type: "success" | "error" | "info" | "warning";
|
|
5244
5244
|
id?: number | undefined;
|
|
5245
5245
|
}[] | undefined;
|
|
5246
5246
|
required?: boolean | undefined;
|
|
@@ -5265,7 +5265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5265
5265
|
hint?: string | undefined;
|
|
5266
5266
|
messages?: {
|
|
5267
5267
|
text: string;
|
|
5268
|
-
type: "
|
|
5268
|
+
type: "success" | "error" | "info" | "warning";
|
|
5269
5269
|
id?: number | undefined;
|
|
5270
5270
|
}[] | undefined;
|
|
5271
5271
|
required?: boolean | undefined;
|
|
@@ -5286,7 +5286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5286
5286
|
hint?: string | undefined;
|
|
5287
5287
|
messages?: {
|
|
5288
5288
|
text: string;
|
|
5289
|
-
type: "
|
|
5289
|
+
type: "success" | "error" | "info" | "warning";
|
|
5290
5290
|
id?: number | undefined;
|
|
5291
5291
|
}[] | undefined;
|
|
5292
5292
|
required?: boolean | undefined;
|
|
@@ -5307,7 +5307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5307
5307
|
hint?: string | undefined;
|
|
5308
5308
|
messages?: {
|
|
5309
5309
|
text: string;
|
|
5310
|
-
type: "
|
|
5310
|
+
type: "success" | "error" | "info" | "warning";
|
|
5311
5311
|
id?: number | undefined;
|
|
5312
5312
|
}[] | undefined;
|
|
5313
5313
|
required?: boolean | undefined;
|
|
@@ -5540,7 +5540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5540
5540
|
hint?: string | undefined;
|
|
5541
5541
|
messages?: {
|
|
5542
5542
|
text: string;
|
|
5543
|
-
type: "
|
|
5543
|
+
type: "success" | "error" | "info" | "warning";
|
|
5544
5544
|
id?: number | undefined;
|
|
5545
5545
|
}[] | undefined;
|
|
5546
5546
|
required?: boolean | undefined;
|
|
@@ -5558,7 +5558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5558
5558
|
hint?: string | undefined;
|
|
5559
5559
|
messages?: {
|
|
5560
5560
|
text: string;
|
|
5561
|
-
type: "
|
|
5561
|
+
type: "success" | "error" | "info" | "warning";
|
|
5562
5562
|
id?: number | undefined;
|
|
5563
5563
|
}[] | undefined;
|
|
5564
5564
|
required?: boolean | undefined;
|
|
@@ -5582,7 +5582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5582
5582
|
hint?: string | undefined;
|
|
5583
5583
|
messages?: {
|
|
5584
5584
|
text: string;
|
|
5585
|
-
type: "
|
|
5585
|
+
type: "success" | "error" | "info" | "warning";
|
|
5586
5586
|
id?: number | undefined;
|
|
5587
5587
|
}[] | undefined;
|
|
5588
5588
|
required?: boolean | undefined;
|
|
@@ -5606,7 +5606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5606
5606
|
hint?: string | undefined;
|
|
5607
5607
|
messages?: {
|
|
5608
5608
|
text: string;
|
|
5609
|
-
type: "
|
|
5609
|
+
type: "success" | "error" | "info" | "warning";
|
|
5610
5610
|
id?: number | undefined;
|
|
5611
5611
|
}[] | undefined;
|
|
5612
5612
|
required?: boolean | undefined;
|
|
@@ -5635,7 +5635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5635
5635
|
hint?: string | undefined;
|
|
5636
5636
|
messages?: {
|
|
5637
5637
|
text: string;
|
|
5638
|
-
type: "
|
|
5638
|
+
type: "success" | "error" | "info" | "warning";
|
|
5639
5639
|
id?: number | undefined;
|
|
5640
5640
|
}[] | undefined;
|
|
5641
5641
|
required?: boolean | undefined;
|
|
@@ -5650,7 +5650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5650
5650
|
hint?: string | undefined;
|
|
5651
5651
|
messages?: {
|
|
5652
5652
|
text: string;
|
|
5653
|
-
type: "
|
|
5653
|
+
type: "success" | "error" | "info" | "warning";
|
|
5654
5654
|
id?: number | undefined;
|
|
5655
5655
|
}[] | undefined;
|
|
5656
5656
|
required?: boolean | undefined;
|
|
@@ -5671,7 +5671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5671
5671
|
hint?: string | undefined;
|
|
5672
5672
|
messages?: {
|
|
5673
5673
|
text: string;
|
|
5674
|
-
type: "
|
|
5674
|
+
type: "success" | "error" | "info" | "warning";
|
|
5675
5675
|
id?: number | undefined;
|
|
5676
5676
|
}[] | undefined;
|
|
5677
5677
|
required?: boolean | undefined;
|
|
@@ -5696,7 +5696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5696
5696
|
hint?: string | undefined;
|
|
5697
5697
|
messages?: {
|
|
5698
5698
|
text: string;
|
|
5699
|
-
type: "
|
|
5699
|
+
type: "success" | "error" | "info" | "warning";
|
|
5700
5700
|
id?: number | undefined;
|
|
5701
5701
|
}[] | undefined;
|
|
5702
5702
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5715
5715
|
hint?: string | undefined;
|
|
5716
5716
|
messages?: {
|
|
5717
5717
|
text: string;
|
|
5718
|
-
type: "
|
|
5718
|
+
type: "success" | "error" | "info" | "warning";
|
|
5719
5719
|
id?: number | undefined;
|
|
5720
5720
|
}[] | undefined;
|
|
5721
5721
|
required?: boolean | undefined;
|
|
@@ -5735,7 +5735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5735
5735
|
hint?: string | undefined;
|
|
5736
5736
|
messages?: {
|
|
5737
5737
|
text: string;
|
|
5738
|
-
type: "
|
|
5738
|
+
type: "success" | "error" | "info" | "warning";
|
|
5739
5739
|
id?: number | undefined;
|
|
5740
5740
|
}[] | undefined;
|
|
5741
5741
|
required?: boolean | undefined;
|
|
@@ -5754,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5754
5754
|
hint?: string | undefined;
|
|
5755
5755
|
messages?: {
|
|
5756
5756
|
text: string;
|
|
5757
|
-
type: "
|
|
5757
|
+
type: "success" | "error" | "info" | "warning";
|
|
5758
5758
|
id?: number | undefined;
|
|
5759
5759
|
}[] | undefined;
|
|
5760
5760
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5776
5776
|
hint?: string | undefined;
|
|
5777
5777
|
messages?: {
|
|
5778
5778
|
text: string;
|
|
5779
|
-
type: "
|
|
5779
|
+
type: "success" | "error" | "info" | "warning";
|
|
5780
5780
|
id?: number | undefined;
|
|
5781
5781
|
}[] | undefined;
|
|
5782
5782
|
required?: boolean | undefined;
|
|
@@ -5798,7 +5798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5798
5798
|
hint?: string | undefined;
|
|
5799
5799
|
messages?: {
|
|
5800
5800
|
text: string;
|
|
5801
|
-
type: "
|
|
5801
|
+
type: "success" | "error" | "info" | "warning";
|
|
5802
5802
|
id?: number | undefined;
|
|
5803
5803
|
}[] | undefined;
|
|
5804
5804
|
required?: boolean | undefined;
|
|
@@ -5817,7 +5817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5817
5817
|
hint?: string | undefined;
|
|
5818
5818
|
messages?: {
|
|
5819
5819
|
text: string;
|
|
5820
|
-
type: "
|
|
5820
|
+
type: "success" | "error" | "info" | "warning";
|
|
5821
5821
|
id?: number | undefined;
|
|
5822
5822
|
}[] | undefined;
|
|
5823
5823
|
required?: boolean | undefined;
|
|
@@ -5842,7 +5842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5842
5842
|
hint?: string | undefined;
|
|
5843
5843
|
messages?: {
|
|
5844
5844
|
text: string;
|
|
5845
|
-
type: "
|
|
5845
|
+
type: "success" | "error" | "info" | "warning";
|
|
5846
5846
|
id?: number | undefined;
|
|
5847
5847
|
}[] | undefined;
|
|
5848
5848
|
required?: boolean | undefined;
|
|
@@ -5863,7 +5863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5863
5863
|
hint?: string | undefined;
|
|
5864
5864
|
messages?: {
|
|
5865
5865
|
text: string;
|
|
5866
|
-
type: "
|
|
5866
|
+
type: "success" | "error" | "info" | "warning";
|
|
5867
5867
|
id?: number | undefined;
|
|
5868
5868
|
}[] | undefined;
|
|
5869
5869
|
required?: boolean | undefined;
|
|
@@ -5884,7 +5884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5884
5884
|
hint?: string | undefined;
|
|
5885
5885
|
messages?: {
|
|
5886
5886
|
text: string;
|
|
5887
|
-
type: "
|
|
5887
|
+
type: "success" | "error" | "info" | "warning";
|
|
5888
5888
|
id?: number | undefined;
|
|
5889
5889
|
}[] | undefined;
|
|
5890
5890
|
required?: boolean | undefined;
|
|
@@ -6132,7 +6132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6132
6132
|
hint?: string | undefined;
|
|
6133
6133
|
messages?: {
|
|
6134
6134
|
text: string;
|
|
6135
|
-
type: "
|
|
6135
|
+
type: "success" | "error" | "info" | "warning";
|
|
6136
6136
|
id?: number | undefined;
|
|
6137
6137
|
}[] | undefined;
|
|
6138
6138
|
required?: boolean | undefined;
|
|
@@ -6150,7 +6150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6150
6150
|
hint?: string | undefined;
|
|
6151
6151
|
messages?: {
|
|
6152
6152
|
text: string;
|
|
6153
|
-
type: "
|
|
6153
|
+
type: "success" | "error" | "info" | "warning";
|
|
6154
6154
|
id?: number | undefined;
|
|
6155
6155
|
}[] | undefined;
|
|
6156
6156
|
required?: boolean | undefined;
|
|
@@ -6174,7 +6174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6174
6174
|
hint?: string | undefined;
|
|
6175
6175
|
messages?: {
|
|
6176
6176
|
text: string;
|
|
6177
|
-
type: "
|
|
6177
|
+
type: "success" | "error" | "info" | "warning";
|
|
6178
6178
|
id?: number | undefined;
|
|
6179
6179
|
}[] | undefined;
|
|
6180
6180
|
required?: boolean | undefined;
|
|
@@ -6198,7 +6198,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6198
6198
|
hint?: string | undefined;
|
|
6199
6199
|
messages?: {
|
|
6200
6200
|
text: string;
|
|
6201
|
-
type: "
|
|
6201
|
+
type: "success" | "error" | "info" | "warning";
|
|
6202
6202
|
id?: number | undefined;
|
|
6203
6203
|
}[] | undefined;
|
|
6204
6204
|
required?: boolean | undefined;
|
|
@@ -6227,7 +6227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6227
6227
|
hint?: string | undefined;
|
|
6228
6228
|
messages?: {
|
|
6229
6229
|
text: string;
|
|
6230
|
-
type: "
|
|
6230
|
+
type: "success" | "error" | "info" | "warning";
|
|
6231
6231
|
id?: number | undefined;
|
|
6232
6232
|
}[] | undefined;
|
|
6233
6233
|
required?: boolean | undefined;
|
|
@@ -6242,7 +6242,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6242
6242
|
hint?: string | undefined;
|
|
6243
6243
|
messages?: {
|
|
6244
6244
|
text: string;
|
|
6245
|
-
type: "
|
|
6245
|
+
type: "success" | "error" | "info" | "warning";
|
|
6246
6246
|
id?: number | undefined;
|
|
6247
6247
|
}[] | undefined;
|
|
6248
6248
|
required?: boolean | undefined;
|
|
@@ -6263,7 +6263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6263
6263
|
hint?: string | undefined;
|
|
6264
6264
|
messages?: {
|
|
6265
6265
|
text: string;
|
|
6266
|
-
type: "
|
|
6266
|
+
type: "success" | "error" | "info" | "warning";
|
|
6267
6267
|
id?: number | undefined;
|
|
6268
6268
|
}[] | undefined;
|
|
6269
6269
|
required?: boolean | undefined;
|
|
@@ -6288,7 +6288,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6288
6288
|
hint?: string | undefined;
|
|
6289
6289
|
messages?: {
|
|
6290
6290
|
text: string;
|
|
6291
|
-
type: "
|
|
6291
|
+
type: "success" | "error" | "info" | "warning";
|
|
6292
6292
|
id?: number | undefined;
|
|
6293
6293
|
}[] | undefined;
|
|
6294
6294
|
required?: boolean | undefined;
|
|
@@ -6307,7 +6307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6307
6307
|
hint?: string | undefined;
|
|
6308
6308
|
messages?: {
|
|
6309
6309
|
text: string;
|
|
6310
|
-
type: "
|
|
6310
|
+
type: "success" | "error" | "info" | "warning";
|
|
6311
6311
|
id?: number | undefined;
|
|
6312
6312
|
}[] | undefined;
|
|
6313
6313
|
required?: boolean | undefined;
|
|
@@ -6327,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6327
6327
|
hint?: string | undefined;
|
|
6328
6328
|
messages?: {
|
|
6329
6329
|
text: string;
|
|
6330
|
-
type: "
|
|
6330
|
+
type: "success" | "error" | "info" | "warning";
|
|
6331
6331
|
id?: number | undefined;
|
|
6332
6332
|
}[] | undefined;
|
|
6333
6333
|
required?: boolean | undefined;
|
|
@@ -6346,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6346
6346
|
hint?: string | undefined;
|
|
6347
6347
|
messages?: {
|
|
6348
6348
|
text: string;
|
|
6349
|
-
type: "
|
|
6349
|
+
type: "success" | "error" | "info" | "warning";
|
|
6350
6350
|
id?: number | undefined;
|
|
6351
6351
|
}[] | undefined;
|
|
6352
6352
|
required?: boolean | undefined;
|
|
@@ -6368,7 +6368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6368
6368
|
hint?: string | undefined;
|
|
6369
6369
|
messages?: {
|
|
6370
6370
|
text: string;
|
|
6371
|
-
type: "
|
|
6371
|
+
type: "success" | "error" | "info" | "warning";
|
|
6372
6372
|
id?: number | undefined;
|
|
6373
6373
|
}[] | undefined;
|
|
6374
6374
|
required?: boolean | undefined;
|
|
@@ -6390,7 +6390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6390
6390
|
hint?: string | undefined;
|
|
6391
6391
|
messages?: {
|
|
6392
6392
|
text: string;
|
|
6393
|
-
type: "
|
|
6393
|
+
type: "success" | "error" | "info" | "warning";
|
|
6394
6394
|
id?: number | undefined;
|
|
6395
6395
|
}[] | undefined;
|
|
6396
6396
|
required?: boolean | undefined;
|
|
@@ -6409,7 +6409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6409
6409
|
hint?: string | undefined;
|
|
6410
6410
|
messages?: {
|
|
6411
6411
|
text: string;
|
|
6412
|
-
type: "
|
|
6412
|
+
type: "success" | "error" | "info" | "warning";
|
|
6413
6413
|
id?: number | undefined;
|
|
6414
6414
|
}[] | undefined;
|
|
6415
6415
|
required?: boolean | undefined;
|
|
@@ -6434,7 +6434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6434
6434
|
hint?: string | undefined;
|
|
6435
6435
|
messages?: {
|
|
6436
6436
|
text: string;
|
|
6437
|
-
type: "
|
|
6437
|
+
type: "success" | "error" | "info" | "warning";
|
|
6438
6438
|
id?: number | undefined;
|
|
6439
6439
|
}[] | undefined;
|
|
6440
6440
|
required?: boolean | undefined;
|
|
@@ -6455,7 +6455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6455
6455
|
hint?: string | undefined;
|
|
6456
6456
|
messages?: {
|
|
6457
6457
|
text: string;
|
|
6458
|
-
type: "
|
|
6458
|
+
type: "success" | "error" | "info" | "warning";
|
|
6459
6459
|
id?: number | undefined;
|
|
6460
6460
|
}[] | undefined;
|
|
6461
6461
|
required?: boolean | undefined;
|
|
@@ -6476,7 +6476,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6476
6476
|
hint?: string | undefined;
|
|
6477
6477
|
messages?: {
|
|
6478
6478
|
text: string;
|
|
6479
|
-
type: "
|
|
6479
|
+
type: "success" | "error" | "info" | "warning";
|
|
6480
6480
|
id?: number | undefined;
|
|
6481
6481
|
}[] | undefined;
|
|
6482
6482
|
required?: boolean | undefined;
|
|
@@ -6730,7 +6730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6730
6730
|
hint?: string | undefined;
|
|
6731
6731
|
messages?: {
|
|
6732
6732
|
text: string;
|
|
6733
|
-
type: "
|
|
6733
|
+
type: "success" | "error" | "info" | "warning";
|
|
6734
6734
|
id?: number | undefined;
|
|
6735
6735
|
}[] | undefined;
|
|
6736
6736
|
required?: boolean | undefined;
|
|
@@ -6748,7 +6748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6748
6748
|
hint?: string | undefined;
|
|
6749
6749
|
messages?: {
|
|
6750
6750
|
text: string;
|
|
6751
|
-
type: "
|
|
6751
|
+
type: "success" | "error" | "info" | "warning";
|
|
6752
6752
|
id?: number | undefined;
|
|
6753
6753
|
}[] | undefined;
|
|
6754
6754
|
required?: boolean | undefined;
|
|
@@ -6772,7 +6772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6772
6772
|
hint?: string | undefined;
|
|
6773
6773
|
messages?: {
|
|
6774
6774
|
text: string;
|
|
6775
|
-
type: "
|
|
6775
|
+
type: "success" | "error" | "info" | "warning";
|
|
6776
6776
|
id?: number | undefined;
|
|
6777
6777
|
}[] | undefined;
|
|
6778
6778
|
required?: boolean | undefined;
|
|
@@ -6796,7 +6796,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6796
6796
|
hint?: string | undefined;
|
|
6797
6797
|
messages?: {
|
|
6798
6798
|
text: string;
|
|
6799
|
-
type: "
|
|
6799
|
+
type: "success" | "error" | "info" | "warning";
|
|
6800
6800
|
id?: number | undefined;
|
|
6801
6801
|
}[] | undefined;
|
|
6802
6802
|
required?: boolean | undefined;
|
|
@@ -6821,7 +6821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6821
6821
|
hint?: string | undefined;
|
|
6822
6822
|
messages?: {
|
|
6823
6823
|
text: string;
|
|
6824
|
-
type: "
|
|
6824
|
+
type: "success" | "error" | "info" | "warning";
|
|
6825
6825
|
id?: number | undefined;
|
|
6826
6826
|
}[] | undefined;
|
|
6827
6827
|
required?: boolean | undefined;
|
|
@@ -6836,7 +6836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6836
6836
|
hint?: string | undefined;
|
|
6837
6837
|
messages?: {
|
|
6838
6838
|
text: string;
|
|
6839
|
-
type: "
|
|
6839
|
+
type: "success" | "error" | "info" | "warning";
|
|
6840
6840
|
id?: number | undefined;
|
|
6841
6841
|
}[] | undefined;
|
|
6842
6842
|
required?: boolean | undefined;
|
|
@@ -6857,7 +6857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6857
6857
|
hint?: string | undefined;
|
|
6858
6858
|
messages?: {
|
|
6859
6859
|
text: string;
|
|
6860
|
-
type: "
|
|
6860
|
+
type: "success" | "error" | "info" | "warning";
|
|
6861
6861
|
id?: number | undefined;
|
|
6862
6862
|
}[] | undefined;
|
|
6863
6863
|
required?: boolean | undefined;
|
|
@@ -6882,7 +6882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6882
6882
|
hint?: string | undefined;
|
|
6883
6883
|
messages?: {
|
|
6884
6884
|
text: string;
|
|
6885
|
-
type: "
|
|
6885
|
+
type: "success" | "error" | "info" | "warning";
|
|
6886
6886
|
id?: number | undefined;
|
|
6887
6887
|
}[] | undefined;
|
|
6888
6888
|
required?: boolean | undefined;
|
|
@@ -6901,7 +6901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6901
6901
|
hint?: string | undefined;
|
|
6902
6902
|
messages?: {
|
|
6903
6903
|
text: string;
|
|
6904
|
-
type: "
|
|
6904
|
+
type: "success" | "error" | "info" | "warning";
|
|
6905
6905
|
id?: number | undefined;
|
|
6906
6906
|
}[] | undefined;
|
|
6907
6907
|
required?: boolean | undefined;
|
|
@@ -6921,7 +6921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6921
6921
|
hint?: string | undefined;
|
|
6922
6922
|
messages?: {
|
|
6923
6923
|
text: string;
|
|
6924
|
-
type: "
|
|
6924
|
+
type: "success" | "error" | "info" | "warning";
|
|
6925
6925
|
id?: number | undefined;
|
|
6926
6926
|
}[] | undefined;
|
|
6927
6927
|
required?: boolean | undefined;
|
|
@@ -6940,7 +6940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6940
6940
|
hint?: string | undefined;
|
|
6941
6941
|
messages?: {
|
|
6942
6942
|
text: string;
|
|
6943
|
-
type: "
|
|
6943
|
+
type: "success" | "error" | "info" | "warning";
|
|
6944
6944
|
id?: number | undefined;
|
|
6945
6945
|
}[] | undefined;
|
|
6946
6946
|
required?: boolean | undefined;
|
|
@@ -6962,7 +6962,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6962
6962
|
hint?: string | undefined;
|
|
6963
6963
|
messages?: {
|
|
6964
6964
|
text: string;
|
|
6965
|
-
type: "
|
|
6965
|
+
type: "success" | "error" | "info" | "warning";
|
|
6966
6966
|
id?: number | undefined;
|
|
6967
6967
|
}[] | undefined;
|
|
6968
6968
|
required?: boolean | undefined;
|
|
@@ -6984,7 +6984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6984
6984
|
hint?: string | undefined;
|
|
6985
6985
|
messages?: {
|
|
6986
6986
|
text: string;
|
|
6987
|
-
type: "
|
|
6987
|
+
type: "success" | "error" | "info" | "warning";
|
|
6988
6988
|
id?: number | undefined;
|
|
6989
6989
|
}[] | undefined;
|
|
6990
6990
|
required?: boolean | undefined;
|
|
@@ -7003,7 +7003,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7003
7003
|
hint?: string | undefined;
|
|
7004
7004
|
messages?: {
|
|
7005
7005
|
text: string;
|
|
7006
|
-
type: "
|
|
7006
|
+
type: "success" | "error" | "info" | "warning";
|
|
7007
7007
|
id?: number | undefined;
|
|
7008
7008
|
}[] | undefined;
|
|
7009
7009
|
required?: boolean | undefined;
|
|
@@ -7028,7 +7028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7028
7028
|
hint?: string | undefined;
|
|
7029
7029
|
messages?: {
|
|
7030
7030
|
text: string;
|
|
7031
|
-
type: "
|
|
7031
|
+
type: "success" | "error" | "info" | "warning";
|
|
7032
7032
|
id?: number | undefined;
|
|
7033
7033
|
}[] | undefined;
|
|
7034
7034
|
required?: boolean | undefined;
|
|
@@ -7049,7 +7049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7049
7049
|
hint?: string | undefined;
|
|
7050
7050
|
messages?: {
|
|
7051
7051
|
text: string;
|
|
7052
|
-
type: "
|
|
7052
|
+
type: "success" | "error" | "info" | "warning";
|
|
7053
7053
|
id?: number | undefined;
|
|
7054
7054
|
}[] | undefined;
|
|
7055
7055
|
required?: boolean | undefined;
|
|
@@ -7070,7 +7070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7070
7070
|
hint?: string | undefined;
|
|
7071
7071
|
messages?: {
|
|
7072
7072
|
text: string;
|
|
7073
|
-
type: "
|
|
7073
|
+
type: "success" | "error" | "info" | "warning";
|
|
7074
7074
|
id?: number | undefined;
|
|
7075
7075
|
}[] | undefined;
|
|
7076
7076
|
required?: boolean | undefined;
|
|
@@ -7301,7 +7301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7301
7301
|
hint?: string | undefined;
|
|
7302
7302
|
messages?: {
|
|
7303
7303
|
text: string;
|
|
7304
|
-
type: "
|
|
7304
|
+
type: "success" | "error" | "info" | "warning";
|
|
7305
7305
|
id?: number | undefined;
|
|
7306
7306
|
}[] | undefined;
|
|
7307
7307
|
required?: boolean | undefined;
|
|
@@ -7319,7 +7319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7319
7319
|
hint?: string | undefined;
|
|
7320
7320
|
messages?: {
|
|
7321
7321
|
text: string;
|
|
7322
|
-
type: "
|
|
7322
|
+
type: "success" | "error" | "info" | "warning";
|
|
7323
7323
|
id?: number | undefined;
|
|
7324
7324
|
}[] | undefined;
|
|
7325
7325
|
required?: boolean | undefined;
|
|
@@ -7343,7 +7343,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7343
7343
|
hint?: string | undefined;
|
|
7344
7344
|
messages?: {
|
|
7345
7345
|
text: string;
|
|
7346
|
-
type: "
|
|
7346
|
+
type: "success" | "error" | "info" | "warning";
|
|
7347
7347
|
id?: number | undefined;
|
|
7348
7348
|
}[] | undefined;
|
|
7349
7349
|
required?: boolean | undefined;
|
|
@@ -7367,7 +7367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7367
7367
|
hint?: string | undefined;
|
|
7368
7368
|
messages?: {
|
|
7369
7369
|
text: string;
|
|
7370
|
-
type: "
|
|
7370
|
+
type: "success" | "error" | "info" | "warning";
|
|
7371
7371
|
id?: number | undefined;
|
|
7372
7372
|
}[] | undefined;
|
|
7373
7373
|
required?: boolean | undefined;
|
|
@@ -7396,7 +7396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7396
7396
|
hint?: string | undefined;
|
|
7397
7397
|
messages?: {
|
|
7398
7398
|
text: string;
|
|
7399
|
-
type: "
|
|
7399
|
+
type: "success" | "error" | "info" | "warning";
|
|
7400
7400
|
id?: number | undefined;
|
|
7401
7401
|
}[] | undefined;
|
|
7402
7402
|
required?: boolean | undefined;
|
|
@@ -7411,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7411
7411
|
hint?: string | undefined;
|
|
7412
7412
|
messages?: {
|
|
7413
7413
|
text: string;
|
|
7414
|
-
type: "
|
|
7414
|
+
type: "success" | "error" | "info" | "warning";
|
|
7415
7415
|
id?: number | undefined;
|
|
7416
7416
|
}[] | undefined;
|
|
7417
7417
|
required?: boolean | undefined;
|
|
@@ -7432,7 +7432,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7432
7432
|
hint?: string | undefined;
|
|
7433
7433
|
messages?: {
|
|
7434
7434
|
text: string;
|
|
7435
|
-
type: "
|
|
7435
|
+
type: "success" | "error" | "info" | "warning";
|
|
7436
7436
|
id?: number | undefined;
|
|
7437
7437
|
}[] | undefined;
|
|
7438
7438
|
required?: boolean | undefined;
|
|
@@ -7457,7 +7457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7457
7457
|
hint?: string | undefined;
|
|
7458
7458
|
messages?: {
|
|
7459
7459
|
text: string;
|
|
7460
|
-
type: "
|
|
7460
|
+
type: "success" | "error" | "info" | "warning";
|
|
7461
7461
|
id?: number | undefined;
|
|
7462
7462
|
}[] | undefined;
|
|
7463
7463
|
required?: boolean | undefined;
|
|
@@ -7476,7 +7476,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7476
7476
|
hint?: string | undefined;
|
|
7477
7477
|
messages?: {
|
|
7478
7478
|
text: string;
|
|
7479
|
-
type: "
|
|
7479
|
+
type: "success" | "error" | "info" | "warning";
|
|
7480
7480
|
id?: number | undefined;
|
|
7481
7481
|
}[] | undefined;
|
|
7482
7482
|
required?: boolean | undefined;
|
|
@@ -7496,7 +7496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7496
7496
|
hint?: string | undefined;
|
|
7497
7497
|
messages?: {
|
|
7498
7498
|
text: string;
|
|
7499
|
-
type: "
|
|
7499
|
+
type: "success" | "error" | "info" | "warning";
|
|
7500
7500
|
id?: number | undefined;
|
|
7501
7501
|
}[] | undefined;
|
|
7502
7502
|
required?: boolean | undefined;
|
|
@@ -7515,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7515
7515
|
hint?: string | undefined;
|
|
7516
7516
|
messages?: {
|
|
7517
7517
|
text: string;
|
|
7518
|
-
type: "
|
|
7518
|
+
type: "success" | "error" | "info" | "warning";
|
|
7519
7519
|
id?: number | undefined;
|
|
7520
7520
|
}[] | undefined;
|
|
7521
7521
|
required?: boolean | undefined;
|
|
@@ -7537,7 +7537,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7537
7537
|
hint?: string | undefined;
|
|
7538
7538
|
messages?: {
|
|
7539
7539
|
text: string;
|
|
7540
|
-
type: "
|
|
7540
|
+
type: "success" | "error" | "info" | "warning";
|
|
7541
7541
|
id?: number | undefined;
|
|
7542
7542
|
}[] | undefined;
|
|
7543
7543
|
required?: boolean | undefined;
|
|
@@ -7559,7 +7559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7559
7559
|
hint?: string | undefined;
|
|
7560
7560
|
messages?: {
|
|
7561
7561
|
text: string;
|
|
7562
|
-
type: "
|
|
7562
|
+
type: "success" | "error" | "info" | "warning";
|
|
7563
7563
|
id?: number | undefined;
|
|
7564
7564
|
}[] | undefined;
|
|
7565
7565
|
required?: boolean | undefined;
|
|
@@ -7578,7 +7578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7578
7578
|
hint?: string | undefined;
|
|
7579
7579
|
messages?: {
|
|
7580
7580
|
text: string;
|
|
7581
|
-
type: "
|
|
7581
|
+
type: "success" | "error" | "info" | "warning";
|
|
7582
7582
|
id?: number | undefined;
|
|
7583
7583
|
}[] | undefined;
|
|
7584
7584
|
required?: boolean | undefined;
|
|
@@ -7603,7 +7603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7603
7603
|
hint?: string | undefined;
|
|
7604
7604
|
messages?: {
|
|
7605
7605
|
text: string;
|
|
7606
|
-
type: "
|
|
7606
|
+
type: "success" | "error" | "info" | "warning";
|
|
7607
7607
|
id?: number | undefined;
|
|
7608
7608
|
}[] | undefined;
|
|
7609
7609
|
required?: boolean | undefined;
|
|
@@ -7624,7 +7624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7624
7624
|
hint?: string | undefined;
|
|
7625
7625
|
messages?: {
|
|
7626
7626
|
text: string;
|
|
7627
|
-
type: "
|
|
7627
|
+
type: "success" | "error" | "info" | "warning";
|
|
7628
7628
|
id?: number | undefined;
|
|
7629
7629
|
}[] | undefined;
|
|
7630
7630
|
required?: boolean | undefined;
|
|
@@ -7645,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7645
7645
|
hint?: string | undefined;
|
|
7646
7646
|
messages?: {
|
|
7647
7647
|
text: string;
|
|
7648
|
-
type: "
|
|
7648
|
+
type: "success" | "error" | "info" | "warning";
|
|
7649
7649
|
id?: number | undefined;
|
|
7650
7650
|
}[] | undefined;
|
|
7651
7651
|
required?: boolean | undefined;
|
|
@@ -7878,7 +7878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7878
7878
|
hint?: string | undefined;
|
|
7879
7879
|
messages?: {
|
|
7880
7880
|
text: string;
|
|
7881
|
-
type: "
|
|
7881
|
+
type: "success" | "error" | "info" | "warning";
|
|
7882
7882
|
id?: number | undefined;
|
|
7883
7883
|
}[] | undefined;
|
|
7884
7884
|
required?: boolean | undefined;
|
|
@@ -7896,7 +7896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7896
7896
|
hint?: string | undefined;
|
|
7897
7897
|
messages?: {
|
|
7898
7898
|
text: string;
|
|
7899
|
-
type: "
|
|
7899
|
+
type: "success" | "error" | "info" | "warning";
|
|
7900
7900
|
id?: number | undefined;
|
|
7901
7901
|
}[] | undefined;
|
|
7902
7902
|
required?: boolean | undefined;
|
|
@@ -7920,7 +7920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7920
7920
|
hint?: string | undefined;
|
|
7921
7921
|
messages?: {
|
|
7922
7922
|
text: string;
|
|
7923
|
-
type: "
|
|
7923
|
+
type: "success" | "error" | "info" | "warning";
|
|
7924
7924
|
id?: number | undefined;
|
|
7925
7925
|
}[] | undefined;
|
|
7926
7926
|
required?: boolean | undefined;
|
|
@@ -7944,7 +7944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7944
7944
|
hint?: string | undefined;
|
|
7945
7945
|
messages?: {
|
|
7946
7946
|
text: string;
|
|
7947
|
-
type: "
|
|
7947
|
+
type: "success" | "error" | "info" | "warning";
|
|
7948
7948
|
id?: number | undefined;
|
|
7949
7949
|
}[] | undefined;
|
|
7950
7950
|
required?: boolean | undefined;
|
|
@@ -7969,7 +7969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7969
7969
|
hint?: string | undefined;
|
|
7970
7970
|
messages?: {
|
|
7971
7971
|
text: string;
|
|
7972
|
-
type: "
|
|
7972
|
+
type: "success" | "error" | "info" | "warning";
|
|
7973
7973
|
id?: number | undefined;
|
|
7974
7974
|
}[] | undefined;
|
|
7975
7975
|
required?: boolean | undefined;
|
|
@@ -7984,7 +7984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7984
7984
|
hint?: string | undefined;
|
|
7985
7985
|
messages?: {
|
|
7986
7986
|
text: string;
|
|
7987
|
-
type: "
|
|
7987
|
+
type: "success" | "error" | "info" | "warning";
|
|
7988
7988
|
id?: number | undefined;
|
|
7989
7989
|
}[] | undefined;
|
|
7990
7990
|
required?: boolean | undefined;
|
|
@@ -8005,7 +8005,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8005
8005
|
hint?: string | undefined;
|
|
8006
8006
|
messages?: {
|
|
8007
8007
|
text: string;
|
|
8008
|
-
type: "
|
|
8008
|
+
type: "success" | "error" | "info" | "warning";
|
|
8009
8009
|
id?: number | undefined;
|
|
8010
8010
|
}[] | undefined;
|
|
8011
8011
|
required?: boolean | undefined;
|
|
@@ -8030,7 +8030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8030
8030
|
hint?: string | undefined;
|
|
8031
8031
|
messages?: {
|
|
8032
8032
|
text: string;
|
|
8033
|
-
type: "
|
|
8033
|
+
type: "success" | "error" | "info" | "warning";
|
|
8034
8034
|
id?: number | undefined;
|
|
8035
8035
|
}[] | undefined;
|
|
8036
8036
|
required?: boolean | undefined;
|
|
@@ -8049,7 +8049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8049
8049
|
hint?: string | undefined;
|
|
8050
8050
|
messages?: {
|
|
8051
8051
|
text: string;
|
|
8052
|
-
type: "
|
|
8052
|
+
type: "success" | "error" | "info" | "warning";
|
|
8053
8053
|
id?: number | undefined;
|
|
8054
8054
|
}[] | undefined;
|
|
8055
8055
|
required?: boolean | undefined;
|
|
@@ -8069,7 +8069,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8069
8069
|
hint?: string | undefined;
|
|
8070
8070
|
messages?: {
|
|
8071
8071
|
text: string;
|
|
8072
|
-
type: "
|
|
8072
|
+
type: "success" | "error" | "info" | "warning";
|
|
8073
8073
|
id?: number | undefined;
|
|
8074
8074
|
}[] | undefined;
|
|
8075
8075
|
required?: boolean | undefined;
|
|
@@ -8088,7 +8088,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8088
8088
|
hint?: string | undefined;
|
|
8089
8089
|
messages?: {
|
|
8090
8090
|
text: string;
|
|
8091
|
-
type: "
|
|
8091
|
+
type: "success" | "error" | "info" | "warning";
|
|
8092
8092
|
id?: number | undefined;
|
|
8093
8093
|
}[] | undefined;
|
|
8094
8094
|
required?: boolean | undefined;
|
|
@@ -8110,7 +8110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8110
8110
|
hint?: string | undefined;
|
|
8111
8111
|
messages?: {
|
|
8112
8112
|
text: string;
|
|
8113
|
-
type: "
|
|
8113
|
+
type: "success" | "error" | "info" | "warning";
|
|
8114
8114
|
id?: number | undefined;
|
|
8115
8115
|
}[] | undefined;
|
|
8116
8116
|
required?: boolean | undefined;
|
|
@@ -8132,7 +8132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8132
8132
|
hint?: string | undefined;
|
|
8133
8133
|
messages?: {
|
|
8134
8134
|
text: string;
|
|
8135
|
-
type: "
|
|
8135
|
+
type: "success" | "error" | "info" | "warning";
|
|
8136
8136
|
id?: number | undefined;
|
|
8137
8137
|
}[] | undefined;
|
|
8138
8138
|
required?: boolean | undefined;
|
|
@@ -8151,7 +8151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8151
8151
|
hint?: string | undefined;
|
|
8152
8152
|
messages?: {
|
|
8153
8153
|
text: string;
|
|
8154
|
-
type: "
|
|
8154
|
+
type: "success" | "error" | "info" | "warning";
|
|
8155
8155
|
id?: number | undefined;
|
|
8156
8156
|
}[] | undefined;
|
|
8157
8157
|
required?: boolean | undefined;
|
|
@@ -8176,7 +8176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8176
8176
|
hint?: string | undefined;
|
|
8177
8177
|
messages?: {
|
|
8178
8178
|
text: string;
|
|
8179
|
-
type: "
|
|
8179
|
+
type: "success" | "error" | "info" | "warning";
|
|
8180
8180
|
id?: number | undefined;
|
|
8181
8181
|
}[] | undefined;
|
|
8182
8182
|
required?: boolean | undefined;
|
|
@@ -8197,7 +8197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8197
8197
|
hint?: string | undefined;
|
|
8198
8198
|
messages?: {
|
|
8199
8199
|
text: string;
|
|
8200
|
-
type: "
|
|
8200
|
+
type: "success" | "error" | "info" | "warning";
|
|
8201
8201
|
id?: number | undefined;
|
|
8202
8202
|
}[] | undefined;
|
|
8203
8203
|
required?: boolean | undefined;
|
|
@@ -8218,7 +8218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8218
8218
|
hint?: string | undefined;
|
|
8219
8219
|
messages?: {
|
|
8220
8220
|
text: string;
|
|
8221
|
-
type: "
|
|
8221
|
+
type: "success" | "error" | "info" | "warning";
|
|
8222
8222
|
id?: number | undefined;
|
|
8223
8223
|
}[] | undefined;
|
|
8224
8224
|
required?: boolean | undefined;
|
|
@@ -8449,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8449
8449
|
hint?: string | undefined;
|
|
8450
8450
|
messages?: {
|
|
8451
8451
|
text: string;
|
|
8452
|
-
type: "
|
|
8452
|
+
type: "success" | "error" | "info" | "warning";
|
|
8453
8453
|
id?: number | undefined;
|
|
8454
8454
|
}[] | undefined;
|
|
8455
8455
|
required?: boolean | undefined;
|
|
@@ -8467,7 +8467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8467
8467
|
hint?: string | undefined;
|
|
8468
8468
|
messages?: {
|
|
8469
8469
|
text: string;
|
|
8470
|
-
type: "
|
|
8470
|
+
type: "success" | "error" | "info" | "warning";
|
|
8471
8471
|
id?: number | undefined;
|
|
8472
8472
|
}[] | undefined;
|
|
8473
8473
|
required?: boolean | undefined;
|
|
@@ -8491,7 +8491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8491
8491
|
hint?: string | undefined;
|
|
8492
8492
|
messages?: {
|
|
8493
8493
|
text: string;
|
|
8494
|
-
type: "
|
|
8494
|
+
type: "success" | "error" | "info" | "warning";
|
|
8495
8495
|
id?: number | undefined;
|
|
8496
8496
|
}[] | undefined;
|
|
8497
8497
|
required?: boolean | undefined;
|
|
@@ -8515,7 +8515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8515
8515
|
hint?: string | undefined;
|
|
8516
8516
|
messages?: {
|
|
8517
8517
|
text: string;
|
|
8518
|
-
type: "
|
|
8518
|
+
type: "success" | "error" | "info" | "warning";
|
|
8519
8519
|
id?: number | undefined;
|
|
8520
8520
|
}[] | undefined;
|
|
8521
8521
|
required?: boolean | undefined;
|
|
@@ -8544,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8544
8544
|
hint?: string | undefined;
|
|
8545
8545
|
messages?: {
|
|
8546
8546
|
text: string;
|
|
8547
|
-
type: "
|
|
8547
|
+
type: "success" | "error" | "info" | "warning";
|
|
8548
8548
|
id?: number | undefined;
|
|
8549
8549
|
}[] | undefined;
|
|
8550
8550
|
required?: boolean | undefined;
|
|
@@ -8559,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8559
8559
|
hint?: string | undefined;
|
|
8560
8560
|
messages?: {
|
|
8561
8561
|
text: string;
|
|
8562
|
-
type: "
|
|
8562
|
+
type: "success" | "error" | "info" | "warning";
|
|
8563
8563
|
id?: number | undefined;
|
|
8564
8564
|
}[] | undefined;
|
|
8565
8565
|
required?: boolean | undefined;
|
|
@@ -8580,7 +8580,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8580
8580
|
hint?: string | undefined;
|
|
8581
8581
|
messages?: {
|
|
8582
8582
|
text: string;
|
|
8583
|
-
type: "
|
|
8583
|
+
type: "success" | "error" | "info" | "warning";
|
|
8584
8584
|
id?: number | undefined;
|
|
8585
8585
|
}[] | undefined;
|
|
8586
8586
|
required?: boolean | undefined;
|
|
@@ -8605,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8605
8605
|
hint?: string | undefined;
|
|
8606
8606
|
messages?: {
|
|
8607
8607
|
text: string;
|
|
8608
|
-
type: "
|
|
8608
|
+
type: "success" | "error" | "info" | "warning";
|
|
8609
8609
|
id?: number | undefined;
|
|
8610
8610
|
}[] | undefined;
|
|
8611
8611
|
required?: boolean | undefined;
|
|
@@ -8624,7 +8624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8624
8624
|
hint?: string | undefined;
|
|
8625
8625
|
messages?: {
|
|
8626
8626
|
text: string;
|
|
8627
|
-
type: "
|
|
8627
|
+
type: "success" | "error" | "info" | "warning";
|
|
8628
8628
|
id?: number | undefined;
|
|
8629
8629
|
}[] | undefined;
|
|
8630
8630
|
required?: boolean | undefined;
|
|
@@ -8644,7 +8644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8644
8644
|
hint?: string | undefined;
|
|
8645
8645
|
messages?: {
|
|
8646
8646
|
text: string;
|
|
8647
|
-
type: "
|
|
8647
|
+
type: "success" | "error" | "info" | "warning";
|
|
8648
8648
|
id?: number | undefined;
|
|
8649
8649
|
}[] | undefined;
|
|
8650
8650
|
required?: boolean | undefined;
|
|
@@ -8663,7 +8663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8663
8663
|
hint?: string | undefined;
|
|
8664
8664
|
messages?: {
|
|
8665
8665
|
text: string;
|
|
8666
|
-
type: "
|
|
8666
|
+
type: "success" | "error" | "info" | "warning";
|
|
8667
8667
|
id?: number | undefined;
|
|
8668
8668
|
}[] | undefined;
|
|
8669
8669
|
required?: boolean | undefined;
|
|
@@ -8685,7 +8685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8685
8685
|
hint?: string | undefined;
|
|
8686
8686
|
messages?: {
|
|
8687
8687
|
text: string;
|
|
8688
|
-
type: "
|
|
8688
|
+
type: "success" | "error" | "info" | "warning";
|
|
8689
8689
|
id?: number | undefined;
|
|
8690
8690
|
}[] | undefined;
|
|
8691
8691
|
required?: boolean | undefined;
|
|
@@ -8707,7 +8707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8707
8707
|
hint?: string | undefined;
|
|
8708
8708
|
messages?: {
|
|
8709
8709
|
text: string;
|
|
8710
|
-
type: "
|
|
8710
|
+
type: "success" | "error" | "info" | "warning";
|
|
8711
8711
|
id?: number | undefined;
|
|
8712
8712
|
}[] | undefined;
|
|
8713
8713
|
required?: boolean | undefined;
|
|
@@ -8726,7 +8726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8726
8726
|
hint?: string | undefined;
|
|
8727
8727
|
messages?: {
|
|
8728
8728
|
text: string;
|
|
8729
|
-
type: "
|
|
8729
|
+
type: "success" | "error" | "info" | "warning";
|
|
8730
8730
|
id?: number | undefined;
|
|
8731
8731
|
}[] | undefined;
|
|
8732
8732
|
required?: boolean | undefined;
|
|
@@ -8751,7 +8751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8751
8751
|
hint?: string | undefined;
|
|
8752
8752
|
messages?: {
|
|
8753
8753
|
text: string;
|
|
8754
|
-
type: "
|
|
8754
|
+
type: "success" | "error" | "info" | "warning";
|
|
8755
8755
|
id?: number | undefined;
|
|
8756
8756
|
}[] | undefined;
|
|
8757
8757
|
required?: boolean | undefined;
|
|
@@ -8772,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8772
8772
|
hint?: string | undefined;
|
|
8773
8773
|
messages?: {
|
|
8774
8774
|
text: string;
|
|
8775
|
-
type: "
|
|
8775
|
+
type: "success" | "error" | "info" | "warning";
|
|
8776
8776
|
id?: number | undefined;
|
|
8777
8777
|
}[] | undefined;
|
|
8778
8778
|
required?: boolean | undefined;
|
|
@@ -8793,7 +8793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8793
8793
|
hint?: string | undefined;
|
|
8794
8794
|
messages?: {
|
|
8795
8795
|
text: string;
|
|
8796
|
-
type: "
|
|
8796
|
+
type: "success" | "error" | "info" | "warning";
|
|
8797
8797
|
id?: number | undefined;
|
|
8798
8798
|
}[] | undefined;
|
|
8799
8799
|
required?: boolean | undefined;
|
|
@@ -9023,7 +9023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9023
9023
|
};
|
|
9024
9024
|
};
|
|
9025
9025
|
output: {
|
|
9026
|
-
prompt: "
|
|
9026
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9027
9027
|
language: string;
|
|
9028
9028
|
}[];
|
|
9029
9029
|
outputFormat: "json";
|
|
@@ -9061,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9061
9061
|
$get: {
|
|
9062
9062
|
input: {
|
|
9063
9063
|
param: {
|
|
9064
|
-
prompt: "
|
|
9064
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9065
9065
|
language: string;
|
|
9066
9066
|
};
|
|
9067
9067
|
} & {
|
|
@@ -9083,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9083
9083
|
$put: {
|
|
9084
9084
|
input: {
|
|
9085
9085
|
param: {
|
|
9086
|
-
prompt: "
|
|
9086
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9087
9087
|
language: string;
|
|
9088
9088
|
};
|
|
9089
9089
|
} & {
|
|
@@ -9107,7 +9107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9107
9107
|
$delete: {
|
|
9108
9108
|
input: {
|
|
9109
9109
|
param: {
|
|
9110
|
-
prompt: "
|
|
9110
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9111
9111
|
language: string;
|
|
9112
9112
|
};
|
|
9113
9113
|
} & {
|
|
@@ -9199,7 +9199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9199
9199
|
active?: boolean | undefined;
|
|
9200
9200
|
} | undefined;
|
|
9201
9201
|
signup?: {
|
|
9202
|
-
status?: "optional" | "
|
|
9202
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9203
9203
|
verification?: {
|
|
9204
9204
|
active?: boolean | undefined;
|
|
9205
9205
|
} | undefined;
|
|
@@ -9216,7 +9216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9216
9216
|
active?: boolean | undefined;
|
|
9217
9217
|
} | undefined;
|
|
9218
9218
|
signup?: {
|
|
9219
|
-
status?: "optional" | "
|
|
9219
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9220
9220
|
} | undefined;
|
|
9221
9221
|
validation?: {
|
|
9222
9222
|
max_length?: number | undefined;
|
|
@@ -9233,7 +9233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9233
9233
|
active?: boolean | undefined;
|
|
9234
9234
|
} | undefined;
|
|
9235
9235
|
signup?: {
|
|
9236
|
-
status?: "optional" | "
|
|
9236
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9237
9237
|
} | undefined;
|
|
9238
9238
|
} | undefined;
|
|
9239
9239
|
} | undefined;
|
|
@@ -9333,7 +9333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9333
9333
|
active?: boolean | undefined;
|
|
9334
9334
|
} | undefined;
|
|
9335
9335
|
signup?: {
|
|
9336
|
-
status?: "optional" | "
|
|
9336
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9337
9337
|
verification?: {
|
|
9338
9338
|
active?: boolean | undefined;
|
|
9339
9339
|
} | undefined;
|
|
@@ -9350,7 +9350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9350
9350
|
active?: boolean | undefined;
|
|
9351
9351
|
} | undefined;
|
|
9352
9352
|
signup?: {
|
|
9353
|
-
status?: "optional" | "
|
|
9353
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9354
9354
|
} | undefined;
|
|
9355
9355
|
validation?: {
|
|
9356
9356
|
max_length?: number | undefined;
|
|
@@ -9367,7 +9367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9367
9367
|
active?: boolean | undefined;
|
|
9368
9368
|
} | undefined;
|
|
9369
9369
|
signup?: {
|
|
9370
|
-
status?: "optional" | "
|
|
9370
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9371
9371
|
} | undefined;
|
|
9372
9372
|
} | undefined;
|
|
9373
9373
|
} | undefined;
|
|
@@ -9482,7 +9482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9482
9482
|
active?: boolean | undefined;
|
|
9483
9483
|
} | undefined;
|
|
9484
9484
|
signup?: {
|
|
9485
|
-
status?: "optional" | "
|
|
9485
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9486
9486
|
verification?: {
|
|
9487
9487
|
active?: boolean | undefined;
|
|
9488
9488
|
} | undefined;
|
|
@@ -9499,7 +9499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9499
9499
|
active?: boolean | undefined;
|
|
9500
9500
|
} | undefined;
|
|
9501
9501
|
signup?: {
|
|
9502
|
-
status?: "optional" | "
|
|
9502
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9503
9503
|
} | undefined;
|
|
9504
9504
|
validation?: {
|
|
9505
9505
|
max_length?: number | undefined;
|
|
@@ -9516,7 +9516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9516
9516
|
active?: boolean | undefined;
|
|
9517
9517
|
} | undefined;
|
|
9518
9518
|
signup?: {
|
|
9519
|
-
status?: "optional" | "
|
|
9519
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9520
9520
|
} | undefined;
|
|
9521
9521
|
} | undefined;
|
|
9522
9522
|
} | undefined;
|
|
@@ -9661,7 +9661,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9661
9661
|
active?: boolean | undefined;
|
|
9662
9662
|
} | undefined;
|
|
9663
9663
|
signup?: {
|
|
9664
|
-
status?: "optional" | "
|
|
9664
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9665
9665
|
verification?: {
|
|
9666
9666
|
active?: boolean | undefined;
|
|
9667
9667
|
} | undefined;
|
|
@@ -9678,7 +9678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9678
9678
|
active?: boolean | undefined;
|
|
9679
9679
|
} | undefined;
|
|
9680
9680
|
signup?: {
|
|
9681
|
-
status?: "optional" | "
|
|
9681
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9682
9682
|
} | undefined;
|
|
9683
9683
|
validation?: {
|
|
9684
9684
|
max_length?: number | undefined;
|
|
@@ -9695,7 +9695,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9695
9695
|
active?: boolean | undefined;
|
|
9696
9696
|
} | undefined;
|
|
9697
9697
|
signup?: {
|
|
9698
|
-
status?: "optional" | "
|
|
9698
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9699
9699
|
} | undefined;
|
|
9700
9700
|
} | undefined;
|
|
9701
9701
|
} | undefined;
|
|
@@ -9819,7 +9819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9819
9819
|
active?: boolean | undefined;
|
|
9820
9820
|
} | undefined;
|
|
9821
9821
|
signup?: {
|
|
9822
|
-
status?: "optional" | "
|
|
9822
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9823
9823
|
verification?: {
|
|
9824
9824
|
active?: boolean | undefined;
|
|
9825
9825
|
} | undefined;
|
|
@@ -9836,7 +9836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9836
9836
|
active?: boolean | undefined;
|
|
9837
9837
|
} | undefined;
|
|
9838
9838
|
signup?: {
|
|
9839
|
-
status?: "optional" | "
|
|
9839
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9840
9840
|
} | undefined;
|
|
9841
9841
|
validation?: {
|
|
9842
9842
|
max_length?: number | undefined;
|
|
@@ -9853,7 +9853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9853
9853
|
active?: boolean | undefined;
|
|
9854
9854
|
} | undefined;
|
|
9855
9855
|
signup?: {
|
|
9856
|
-
status?: "optional" | "
|
|
9856
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9857
9857
|
} | undefined;
|
|
9858
9858
|
} | undefined;
|
|
9859
9859
|
} | undefined;
|
|
@@ -9969,7 +9969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9969
9969
|
};
|
|
9970
9970
|
} | {
|
|
9971
9971
|
mode: "inline";
|
|
9972
|
-
status: "
|
|
9972
|
+
status: "success" | "error";
|
|
9973
9973
|
connection_id: string;
|
|
9974
9974
|
connection_name: string;
|
|
9975
9975
|
strategy: string;
|
|
@@ -10548,7 +10548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10548
10548
|
log_type: string;
|
|
10549
10549
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10550
10550
|
actor: {
|
|
10551
|
-
type: "
|
|
10551
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10552
10552
|
id?: string | undefined;
|
|
10553
10553
|
email?: string | undefined;
|
|
10554
10554
|
org_id?: string | undefined;
|
|
@@ -11196,7 +11196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11196
11196
|
};
|
|
11197
11197
|
};
|
|
11198
11198
|
output: {
|
|
11199
|
-
type: "
|
|
11199
|
+
type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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" | "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";
|
|
11200
11200
|
date: string;
|
|
11201
11201
|
isMobile: boolean;
|
|
11202
11202
|
log_id: string;
|
|
@@ -11235,7 +11235,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11235
11235
|
limit: number;
|
|
11236
11236
|
length: number;
|
|
11237
11237
|
logs: {
|
|
11238
|
-
type: "
|
|
11238
|
+
type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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" | "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";
|
|
11239
11239
|
date: string;
|
|
11240
11240
|
isMobile: boolean;
|
|
11241
11241
|
log_id: string;
|
|
@@ -11289,7 +11289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11289
11289
|
};
|
|
11290
11290
|
};
|
|
11291
11291
|
output: {
|
|
11292
|
-
type: "
|
|
11292
|
+
type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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" | "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";
|
|
11293
11293
|
date: string;
|
|
11294
11294
|
isMobile: boolean;
|
|
11295
11295
|
log_id: string;
|
|
@@ -11603,7 +11603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11603
11603
|
addons?: {
|
|
11604
11604
|
[x: string]: any;
|
|
11605
11605
|
} | undefined;
|
|
11606
|
-
token_endpoint_auth_method?: "
|
|
11606
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11607
11607
|
client_metadata?: {
|
|
11608
11608
|
[x: string]: string;
|
|
11609
11609
|
} | undefined;
|
|
@@ -11699,7 +11699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11699
11699
|
addons?: {
|
|
11700
11700
|
[x: string]: any;
|
|
11701
11701
|
} | undefined;
|
|
11702
|
-
token_endpoint_auth_method?: "
|
|
11702
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11703
11703
|
client_metadata?: {
|
|
11704
11704
|
[x: string]: string;
|
|
11705
11705
|
} | undefined;
|
|
@@ -11810,7 +11810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11810
11810
|
addons?: {
|
|
11811
11811
|
[x: string]: any;
|
|
11812
11812
|
} | undefined;
|
|
11813
|
-
token_endpoint_auth_method?: "
|
|
11813
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11814
11814
|
client_metadata?: {
|
|
11815
11815
|
[x: string]: string;
|
|
11816
11816
|
} | undefined;
|
|
@@ -11920,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11920
11920
|
custom_login_page_preview?: string | undefined;
|
|
11921
11921
|
form_template?: string | undefined;
|
|
11922
11922
|
addons?: Record<string, any> | undefined;
|
|
11923
|
-
token_endpoint_auth_method?: "
|
|
11923
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11924
11924
|
client_metadata?: Record<string, string> | undefined;
|
|
11925
11925
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11926
11926
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12000,7 +12000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12000
12000
|
addons?: {
|
|
12001
12001
|
[x: string]: any;
|
|
12002
12002
|
} | undefined;
|
|
12003
|
-
token_endpoint_auth_method?: "
|
|
12003
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12004
12004
|
client_metadata?: {
|
|
12005
12005
|
[x: string]: string;
|
|
12006
12006
|
} | undefined;
|
|
@@ -12089,7 +12089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12089
12089
|
custom_login_page_preview?: string | undefined;
|
|
12090
12090
|
form_template?: string | undefined;
|
|
12091
12091
|
addons?: Record<string, any> | undefined;
|
|
12092
|
-
token_endpoint_auth_method?: "
|
|
12092
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12093
12093
|
client_metadata?: Record<string, string> | undefined;
|
|
12094
12094
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12095
12095
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12169,7 +12169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12169
12169
|
addons?: {
|
|
12170
12170
|
[x: string]: any;
|
|
12171
12171
|
} | undefined;
|
|
12172
|
-
token_endpoint_auth_method?: "
|
|
12172
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12173
12173
|
client_metadata?: {
|
|
12174
12174
|
[x: string]: string;
|
|
12175
12175
|
} | undefined;
|
|
@@ -12291,7 +12291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12291
12291
|
active?: boolean | undefined;
|
|
12292
12292
|
} | undefined;
|
|
12293
12293
|
signup?: {
|
|
12294
|
-
status?: "optional" | "
|
|
12294
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12295
12295
|
verification?: {
|
|
12296
12296
|
active?: boolean | undefined;
|
|
12297
12297
|
} | undefined;
|
|
@@ -12308,7 +12308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12308
12308
|
active?: boolean | undefined;
|
|
12309
12309
|
} | undefined;
|
|
12310
12310
|
signup?: {
|
|
12311
|
-
status?: "optional" | "
|
|
12311
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12312
12312
|
} | undefined;
|
|
12313
12313
|
validation?: {
|
|
12314
12314
|
max_length?: number | undefined;
|
|
@@ -12325,7 +12325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12325
12325
|
active?: boolean | undefined;
|
|
12326
12326
|
} | undefined;
|
|
12327
12327
|
signup?: {
|
|
12328
|
-
status?: "optional" | "
|
|
12328
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12329
12329
|
} | undefined;
|
|
12330
12330
|
} | undefined;
|
|
12331
12331
|
} | undefined;
|
|
@@ -12445,7 +12445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12445
12445
|
active?: boolean | undefined;
|
|
12446
12446
|
} | undefined;
|
|
12447
12447
|
signup?: {
|
|
12448
|
-
status?: "optional" | "
|
|
12448
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12449
12449
|
verification?: {
|
|
12450
12450
|
active?: boolean | undefined;
|
|
12451
12451
|
} | undefined;
|
|
@@ -12462,7 +12462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12462
12462
|
active?: boolean | undefined;
|
|
12463
12463
|
} | undefined;
|
|
12464
12464
|
signup?: {
|
|
12465
|
-
status?: "optional" | "
|
|
12465
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12466
12466
|
} | undefined;
|
|
12467
12467
|
validation?: {
|
|
12468
12468
|
max_length?: number | undefined;
|
|
@@ -12479,7 +12479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12479
12479
|
active?: boolean | undefined;
|
|
12480
12480
|
} | undefined;
|
|
12481
12481
|
signup?: {
|
|
12482
|
-
status?: "optional" | "
|
|
12482
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12483
12483
|
} | undefined;
|
|
12484
12484
|
} | undefined;
|
|
12485
12485
|
} | undefined;
|
|
@@ -13433,7 +13433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13433
13433
|
};
|
|
13434
13434
|
};
|
|
13435
13435
|
output: {
|
|
13436
|
-
type: "
|
|
13436
|
+
type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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" | "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";
|
|
13437
13437
|
date: string;
|
|
13438
13438
|
isMobile: boolean;
|
|
13439
13439
|
log_id: string;
|
|
@@ -13472,7 +13472,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13472
13472
|
limit: number;
|
|
13473
13473
|
length: number;
|
|
13474
13474
|
logs: {
|
|
13475
|
-
type: "
|
|
13475
|
+
type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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" | "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";
|
|
13476
13476
|
date: string;
|
|
13477
13477
|
isMobile: boolean;
|
|
13478
13478
|
log_id: string;
|
|
@@ -13787,7 +13787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13787
13787
|
};
|
|
13788
13788
|
} & {
|
|
13789
13789
|
json: {
|
|
13790
|
-
template: "
|
|
13790
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13791
13791
|
body: string;
|
|
13792
13792
|
from: string;
|
|
13793
13793
|
subject: string;
|
|
@@ -13808,7 +13808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13808
13808
|
};
|
|
13809
13809
|
} & {
|
|
13810
13810
|
json: {
|
|
13811
|
-
template: "
|
|
13811
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13812
13812
|
body: string;
|
|
13813
13813
|
from: string;
|
|
13814
13814
|
subject: string;
|
|
@@ -13820,7 +13820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13820
13820
|
};
|
|
13821
13821
|
};
|
|
13822
13822
|
output: {
|
|
13823
|
-
template: "
|
|
13823
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13824
13824
|
body: string;
|
|
13825
13825
|
from: string;
|
|
13826
13826
|
subject: string;
|
|
@@ -13839,7 +13839,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13839
13839
|
$get: {
|
|
13840
13840
|
input: {
|
|
13841
13841
|
param: {
|
|
13842
|
-
templateName: "
|
|
13842
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13843
13843
|
};
|
|
13844
13844
|
} & {
|
|
13845
13845
|
header: {
|
|
@@ -13852,7 +13852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13852
13852
|
} | {
|
|
13853
13853
|
input: {
|
|
13854
13854
|
param: {
|
|
13855
|
-
templateName: "
|
|
13855
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13856
13856
|
};
|
|
13857
13857
|
} & {
|
|
13858
13858
|
header: {
|
|
@@ -13860,7 +13860,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13860
13860
|
};
|
|
13861
13861
|
};
|
|
13862
13862
|
output: {
|
|
13863
|
-
template: "
|
|
13863
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13864
13864
|
body: string;
|
|
13865
13865
|
from: string;
|
|
13866
13866
|
subject: string;
|
|
@@ -13879,7 +13879,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13879
13879
|
$put: {
|
|
13880
13880
|
input: {
|
|
13881
13881
|
param: {
|
|
13882
|
-
templateName: "
|
|
13882
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13883
13883
|
};
|
|
13884
13884
|
} & {
|
|
13885
13885
|
header: {
|
|
@@ -13887,7 +13887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13887
13887
|
};
|
|
13888
13888
|
} & {
|
|
13889
13889
|
json: {
|
|
13890
|
-
template: "
|
|
13890
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13891
13891
|
body: string;
|
|
13892
13892
|
from: string;
|
|
13893
13893
|
subject: string;
|
|
@@ -13899,7 +13899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13899
13899
|
};
|
|
13900
13900
|
};
|
|
13901
13901
|
output: {
|
|
13902
|
-
template: "
|
|
13902
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13903
13903
|
body: string;
|
|
13904
13904
|
from: string;
|
|
13905
13905
|
subject: string;
|
|
@@ -13918,7 +13918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13918
13918
|
$patch: {
|
|
13919
13919
|
input: {
|
|
13920
13920
|
param: {
|
|
13921
|
-
templateName: "
|
|
13921
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13922
13922
|
};
|
|
13923
13923
|
} & {
|
|
13924
13924
|
header: {
|
|
@@ -13926,7 +13926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13926
13926
|
};
|
|
13927
13927
|
} & {
|
|
13928
13928
|
json: {
|
|
13929
|
-
template?: "
|
|
13929
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
13930
13930
|
body?: string | undefined;
|
|
13931
13931
|
from?: string | undefined;
|
|
13932
13932
|
subject?: string | undefined;
|
|
@@ -13943,7 +13943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13943
13943
|
} | {
|
|
13944
13944
|
input: {
|
|
13945
13945
|
param: {
|
|
13946
|
-
templateName: "
|
|
13946
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13947
13947
|
};
|
|
13948
13948
|
} & {
|
|
13949
13949
|
header: {
|
|
@@ -13951,7 +13951,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13951
13951
|
};
|
|
13952
13952
|
} & {
|
|
13953
13953
|
json: {
|
|
13954
|
-
template?: "
|
|
13954
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
13955
13955
|
body?: string | undefined;
|
|
13956
13956
|
from?: string | undefined;
|
|
13957
13957
|
subject?: string | undefined;
|
|
@@ -13963,7 +13963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13963
13963
|
};
|
|
13964
13964
|
};
|
|
13965
13965
|
output: {
|
|
13966
|
-
template: "
|
|
13966
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13967
13967
|
body: string;
|
|
13968
13968
|
from: string;
|
|
13969
13969
|
subject: string;
|
|
@@ -14238,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14238
14238
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14239
14239
|
custom_domain_id: string;
|
|
14240
14240
|
primary: boolean;
|
|
14241
|
-
status: "
|
|
14241
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14242
14242
|
verification_method?: "txt" | undefined;
|
|
14243
14243
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14244
14244
|
domain_metadata?: {
|
|
@@ -14279,7 +14279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14279
14279
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14280
14280
|
custom_domain_id: string;
|
|
14281
14281
|
primary: boolean;
|
|
14282
|
-
status: "
|
|
14282
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14283
14283
|
verification_method?: "txt" | undefined;
|
|
14284
14284
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14285
14285
|
domain_metadata?: {
|
|
@@ -14340,7 +14340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14340
14340
|
domain_metadata?: Record<string, string> | undefined;
|
|
14341
14341
|
custom_domain_id?: string | undefined;
|
|
14342
14342
|
primary?: boolean | undefined;
|
|
14343
|
-
status?: "
|
|
14343
|
+
status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
|
|
14344
14344
|
origin_domain_name?: string | undefined;
|
|
14345
14345
|
verification?: {
|
|
14346
14346
|
methods: ({
|
|
@@ -14361,7 +14361,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14361
14361
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14362
14362
|
custom_domain_id: string;
|
|
14363
14363
|
primary: boolean;
|
|
14364
|
-
status: "
|
|
14364
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14365
14365
|
verification_method?: "txt" | undefined;
|
|
14366
14366
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14367
14367
|
domain_metadata?: {
|
|
@@ -14408,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14408
14408
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14409
14409
|
custom_domain_id: string;
|
|
14410
14410
|
primary: boolean;
|
|
14411
|
-
status: "
|
|
14411
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14412
14412
|
verification_method?: "txt" | undefined;
|
|
14413
14413
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14414
14414
|
domain_metadata?: {
|
|
@@ -14449,7 +14449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14449
14449
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14450
14450
|
custom_domain_id: string;
|
|
14451
14451
|
primary: boolean;
|
|
14452
|
-
status: "
|
|
14452
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14453
14453
|
verification_method?: "txt" | undefined;
|
|
14454
14454
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14455
14455
|
domain_metadata?: {
|
|
@@ -14934,7 +14934,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14934
14934
|
json: {
|
|
14935
14935
|
bindings: {
|
|
14936
14936
|
ref: {
|
|
14937
|
-
type?: "
|
|
14937
|
+
type?: "action_name" | "action_id" | undefined;
|
|
14938
14938
|
value?: string | undefined;
|
|
14939
14939
|
id?: string | undefined;
|
|
14940
14940
|
name?: string | undefined;
|
|
@@ -15009,7 +15009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15009
15009
|
output: {
|
|
15010
15010
|
id: string;
|
|
15011
15011
|
trigger_id: string;
|
|
15012
|
-
status: "
|
|
15012
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
15013
15013
|
results: {
|
|
15014
15014
|
action_name: string;
|
|
15015
15015
|
error: {
|
|
@@ -15056,7 +15056,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15056
15056
|
logs: {
|
|
15057
15057
|
action_name: string;
|
|
15058
15058
|
lines: {
|
|
15059
|
-
level: "
|
|
15059
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15060
15060
|
message: string;
|
|
15061
15061
|
}[];
|
|
15062
15062
|
}[];
|
|
@@ -15723,7 +15723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15723
15723
|
args: hono_utils_types.JSONValue[];
|
|
15724
15724
|
}[];
|
|
15725
15725
|
logs: {
|
|
15726
|
-
level: "
|
|
15726
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15727
15727
|
message: string;
|
|
15728
15728
|
}[];
|
|
15729
15729
|
error?: string | undefined;
|
|
@@ -16021,7 +16021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16021
16021
|
scope?: string | undefined;
|
|
16022
16022
|
grant_types?: string[] | undefined;
|
|
16023
16023
|
response_types?: string[] | undefined;
|
|
16024
|
-
token_endpoint_auth_method?: "
|
|
16024
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16025
16025
|
jwks_uri?: string | undefined;
|
|
16026
16026
|
jwks?: Record<string, unknown> | undefined;
|
|
16027
16027
|
software_id?: string | undefined;
|
|
@@ -16110,7 +16110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16110
16110
|
scope?: string | undefined;
|
|
16111
16111
|
grant_types?: string[] | undefined;
|
|
16112
16112
|
response_types?: string[] | undefined;
|
|
16113
|
-
token_endpoint_auth_method?: "
|
|
16113
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16114
16114
|
jwks_uri?: string | undefined;
|
|
16115
16115
|
jwks?: Record<string, unknown> | undefined;
|
|
16116
16116
|
software_id?: string | undefined;
|
|
@@ -16456,19 +16456,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16456
16456
|
email: string;
|
|
16457
16457
|
send: "code" | "link";
|
|
16458
16458
|
authParams: {
|
|
16459
|
+
audience?: string | undefined;
|
|
16460
|
+
state?: string | undefined;
|
|
16461
|
+
code_challenge?: string | undefined;
|
|
16462
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16463
|
+
redirect_uri?: string | undefined;
|
|
16464
|
+
nonce?: string | undefined;
|
|
16459
16465
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16460
16466
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16461
16467
|
scope?: string | undefined;
|
|
16462
16468
|
username?: string | undefined;
|
|
16463
|
-
state?: string | undefined;
|
|
16464
16469
|
act_as?: string | undefined;
|
|
16465
|
-
redirect_uri?: string | undefined;
|
|
16466
|
-
audience?: string | undefined;
|
|
16467
16470
|
organization?: string | undefined;
|
|
16468
|
-
nonce?: string | undefined;
|
|
16469
16471
|
prompt?: string | undefined;
|
|
16470
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16471
|
-
code_challenge?: string | undefined;
|
|
16472
16472
|
ui_locales?: string | undefined;
|
|
16473
16473
|
max_age?: number | undefined;
|
|
16474
16474
|
acr_values?: string | undefined;
|
|
@@ -16492,19 +16492,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16492
16492
|
phone_number: string;
|
|
16493
16493
|
send: "code" | "link";
|
|
16494
16494
|
authParams: {
|
|
16495
|
+
audience?: string | undefined;
|
|
16496
|
+
state?: string | undefined;
|
|
16497
|
+
code_challenge?: string | undefined;
|
|
16498
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16499
|
+
redirect_uri?: string | undefined;
|
|
16500
|
+
nonce?: string | undefined;
|
|
16495
16501
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16496
16502
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16497
16503
|
scope?: string | undefined;
|
|
16498
16504
|
username?: string | undefined;
|
|
16499
|
-
state?: string | undefined;
|
|
16500
16505
|
act_as?: string | undefined;
|
|
16501
|
-
redirect_uri?: string | undefined;
|
|
16502
|
-
audience?: string | undefined;
|
|
16503
16506
|
organization?: string | undefined;
|
|
16504
|
-
nonce?: string | undefined;
|
|
16505
16507
|
prompt?: string | undefined;
|
|
16506
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16507
|
-
code_challenge?: string | undefined;
|
|
16508
16508
|
ui_locales?: string | undefined;
|
|
16509
16509
|
max_age?: number | undefined;
|
|
16510
16510
|
acr_values?: string | undefined;
|
|
@@ -17888,7 +17888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17888
17888
|
} & {
|
|
17889
17889
|
form: {
|
|
17890
17890
|
username: string;
|
|
17891
|
-
login_selection?: "
|
|
17891
|
+
login_selection?: "code" | "password" | undefined;
|
|
17892
17892
|
};
|
|
17893
17893
|
};
|
|
17894
17894
|
output: {};
|
|
@@ -17902,7 +17902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17902
17902
|
} & {
|
|
17903
17903
|
form: {
|
|
17904
17904
|
username: string;
|
|
17905
|
-
login_selection?: "
|
|
17905
|
+
login_selection?: "code" | "password" | undefined;
|
|
17906
17906
|
};
|
|
17907
17907
|
};
|
|
17908
17908
|
output: {};
|