authhero 8.16.0 → 8.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +106 -106
- package/dist/authhero.d.ts +198 -196
- package/dist/authhero.mjs +6671 -6613
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/helpers/logging.d.ts +11 -0
- package/dist/types/index.d.ts +198 -196
- package/dist/types/routes/auth-api/index.d.ts +4 -4
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +7 -7
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/failed-events.d.ts +3 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/index.d.ts +181 -179
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +34 -34
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- 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/impersonate.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
- package/dist/types/utils/username-password-provider.d.ts +1 -10
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -3130,7 +3130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3130
3130
|
};
|
|
3131
3131
|
} & {
|
|
3132
3132
|
json: {
|
|
3133
|
-
type: "
|
|
3133
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
3134
3134
|
phone_number?: string | undefined;
|
|
3135
3135
|
totp_secret?: string | undefined;
|
|
3136
3136
|
credential_id?: string | undefined;
|
|
@@ -4204,10 +4204,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4204
4204
|
email?: string | undefined;
|
|
4205
4205
|
};
|
|
4206
4206
|
id?: string | undefined;
|
|
4207
|
+
roles?: string[] | undefined;
|
|
4208
|
+
connection_id?: string | undefined;
|
|
4207
4209
|
app_metadata?: Record<string, any> | undefined;
|
|
4208
4210
|
user_metadata?: Record<string, any> | undefined;
|
|
4209
|
-
connection_id?: string | undefined;
|
|
4210
|
-
roles?: string[] | undefined;
|
|
4211
4211
|
ttl_sec?: number | undefined;
|
|
4212
4212
|
send_invitation_email?: boolean | undefined;
|
|
4213
4213
|
};
|
|
@@ -4391,8 +4391,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4391
4391
|
};
|
|
4392
4392
|
} & {
|
|
4393
4393
|
json: {
|
|
4394
|
-
show_as_button?: boolean | undefined;
|
|
4395
4394
|
assign_membership_on_login?: boolean | undefined;
|
|
4395
|
+
show_as_button?: boolean | undefined;
|
|
4396
4396
|
is_signup_enabled?: boolean | undefined;
|
|
4397
4397
|
};
|
|
4398
4398
|
};
|
|
@@ -5634,7 +5634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5634
5634
|
hint?: string | undefined;
|
|
5635
5635
|
messages?: {
|
|
5636
5636
|
text: string;
|
|
5637
|
-
type: "
|
|
5637
|
+
type: "error" | "success" | "info" | "warning";
|
|
5638
5638
|
id?: number | undefined;
|
|
5639
5639
|
}[] | undefined;
|
|
5640
5640
|
required?: boolean | undefined;
|
|
@@ -5652,7 +5652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5652
5652
|
hint?: string | undefined;
|
|
5653
5653
|
messages?: {
|
|
5654
5654
|
text: string;
|
|
5655
|
-
type: "
|
|
5655
|
+
type: "error" | "success" | "info" | "warning";
|
|
5656
5656
|
id?: number | undefined;
|
|
5657
5657
|
}[] | undefined;
|
|
5658
5658
|
required?: boolean | undefined;
|
|
@@ -5676,7 +5676,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5676
5676
|
hint?: string | undefined;
|
|
5677
5677
|
messages?: {
|
|
5678
5678
|
text: string;
|
|
5679
|
-
type: "
|
|
5679
|
+
type: "error" | "success" | "info" | "warning";
|
|
5680
5680
|
id?: number | undefined;
|
|
5681
5681
|
}[] | undefined;
|
|
5682
5682
|
required?: boolean | undefined;
|
|
@@ -5700,7 +5700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5700
5700
|
hint?: string | undefined;
|
|
5701
5701
|
messages?: {
|
|
5702
5702
|
text: string;
|
|
5703
|
-
type: "
|
|
5703
|
+
type: "error" | "success" | "info" | "warning";
|
|
5704
5704
|
id?: number | undefined;
|
|
5705
5705
|
}[] | undefined;
|
|
5706
5706
|
required?: boolean | undefined;
|
|
@@ -5724,7 +5724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5724
5724
|
hint?: string | undefined;
|
|
5725
5725
|
messages?: {
|
|
5726
5726
|
text: string;
|
|
5727
|
-
type: "
|
|
5727
|
+
type: "error" | "success" | "info" | "warning";
|
|
5728
5728
|
id?: number | undefined;
|
|
5729
5729
|
}[] | undefined;
|
|
5730
5730
|
required?: boolean | undefined;
|
|
@@ -5753,7 +5753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5753
5753
|
hint?: string | undefined;
|
|
5754
5754
|
messages?: {
|
|
5755
5755
|
text: string;
|
|
5756
|
-
type: "
|
|
5756
|
+
type: "error" | "success" | "info" | "warning";
|
|
5757
5757
|
id?: number | undefined;
|
|
5758
5758
|
}[] | undefined;
|
|
5759
5759
|
required?: boolean | undefined;
|
|
@@ -5768,7 +5768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5768
5768
|
hint?: string | undefined;
|
|
5769
5769
|
messages?: {
|
|
5770
5770
|
text: string;
|
|
5771
|
-
type: "
|
|
5771
|
+
type: "error" | "success" | "info" | "warning";
|
|
5772
5772
|
id?: number | undefined;
|
|
5773
5773
|
}[] | undefined;
|
|
5774
5774
|
required?: boolean | undefined;
|
|
@@ -5789,7 +5789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5789
5789
|
hint?: string | undefined;
|
|
5790
5790
|
messages?: {
|
|
5791
5791
|
text: string;
|
|
5792
|
-
type: "
|
|
5792
|
+
type: "error" | "success" | "info" | "warning";
|
|
5793
5793
|
id?: number | undefined;
|
|
5794
5794
|
}[] | undefined;
|
|
5795
5795
|
required?: boolean | undefined;
|
|
@@ -5814,7 +5814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5814
5814
|
hint?: string | undefined;
|
|
5815
5815
|
messages?: {
|
|
5816
5816
|
text: string;
|
|
5817
|
-
type: "
|
|
5817
|
+
type: "error" | "success" | "info" | "warning";
|
|
5818
5818
|
id?: number | undefined;
|
|
5819
5819
|
}[] | undefined;
|
|
5820
5820
|
required?: boolean | undefined;
|
|
@@ -5833,7 +5833,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5833
5833
|
hint?: string | undefined;
|
|
5834
5834
|
messages?: {
|
|
5835
5835
|
text: string;
|
|
5836
|
-
type: "
|
|
5836
|
+
type: "error" | "success" | "info" | "warning";
|
|
5837
5837
|
id?: number | undefined;
|
|
5838
5838
|
}[] | undefined;
|
|
5839
5839
|
required?: boolean | undefined;
|
|
@@ -5853,7 +5853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5853
5853
|
hint?: string | undefined;
|
|
5854
5854
|
messages?: {
|
|
5855
5855
|
text: string;
|
|
5856
|
-
type: "
|
|
5856
|
+
type: "error" | "success" | "info" | "warning";
|
|
5857
5857
|
id?: number | undefined;
|
|
5858
5858
|
}[] | undefined;
|
|
5859
5859
|
required?: boolean | undefined;
|
|
@@ -5872,7 +5872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5872
5872
|
hint?: string | undefined;
|
|
5873
5873
|
messages?: {
|
|
5874
5874
|
text: string;
|
|
5875
|
-
type: "
|
|
5875
|
+
type: "error" | "success" | "info" | "warning";
|
|
5876
5876
|
id?: number | undefined;
|
|
5877
5877
|
}[] | undefined;
|
|
5878
5878
|
required?: boolean | undefined;
|
|
@@ -5894,7 +5894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5894
5894
|
hint?: string | undefined;
|
|
5895
5895
|
messages?: {
|
|
5896
5896
|
text: string;
|
|
5897
|
-
type: "
|
|
5897
|
+
type: "error" | "success" | "info" | "warning";
|
|
5898
5898
|
id?: number | undefined;
|
|
5899
5899
|
}[] | undefined;
|
|
5900
5900
|
required?: boolean | undefined;
|
|
@@ -5916,7 +5916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5916
5916
|
hint?: string | undefined;
|
|
5917
5917
|
messages?: {
|
|
5918
5918
|
text: string;
|
|
5919
|
-
type: "
|
|
5919
|
+
type: "error" | "success" | "info" | "warning";
|
|
5920
5920
|
id?: number | undefined;
|
|
5921
5921
|
}[] | undefined;
|
|
5922
5922
|
required?: boolean | undefined;
|
|
@@ -5935,7 +5935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5935
5935
|
hint?: string | undefined;
|
|
5936
5936
|
messages?: {
|
|
5937
5937
|
text: string;
|
|
5938
|
-
type: "
|
|
5938
|
+
type: "error" | "success" | "info" | "warning";
|
|
5939
5939
|
id?: number | undefined;
|
|
5940
5940
|
}[] | undefined;
|
|
5941
5941
|
required?: boolean | undefined;
|
|
@@ -5960,7 +5960,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5960
5960
|
hint?: string | undefined;
|
|
5961
5961
|
messages?: {
|
|
5962
5962
|
text: string;
|
|
5963
|
-
type: "
|
|
5963
|
+
type: "error" | "success" | "info" | "warning";
|
|
5964
5964
|
id?: number | undefined;
|
|
5965
5965
|
}[] | undefined;
|
|
5966
5966
|
required?: boolean | undefined;
|
|
@@ -5981,7 +5981,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5981
5981
|
hint?: string | undefined;
|
|
5982
5982
|
messages?: {
|
|
5983
5983
|
text: string;
|
|
5984
|
-
type: "
|
|
5984
|
+
type: "error" | "success" | "info" | "warning";
|
|
5985
5985
|
id?: number | undefined;
|
|
5986
5986
|
}[] | undefined;
|
|
5987
5987
|
required?: boolean | undefined;
|
|
@@ -6002,7 +6002,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6002
6002
|
hint?: string | undefined;
|
|
6003
6003
|
messages?: {
|
|
6004
6004
|
text: string;
|
|
6005
|
-
type: "
|
|
6005
|
+
type: "error" | "success" | "info" | "warning";
|
|
6006
6006
|
id?: number | undefined;
|
|
6007
6007
|
}[] | undefined;
|
|
6008
6008
|
required?: boolean | undefined;
|
|
@@ -6235,7 +6235,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6235
6235
|
hint?: string | undefined;
|
|
6236
6236
|
messages?: {
|
|
6237
6237
|
text: string;
|
|
6238
|
-
type: "
|
|
6238
|
+
type: "error" | "success" | "info" | "warning";
|
|
6239
6239
|
id?: number | undefined;
|
|
6240
6240
|
}[] | undefined;
|
|
6241
6241
|
required?: boolean | undefined;
|
|
@@ -6253,7 +6253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6253
6253
|
hint?: string | undefined;
|
|
6254
6254
|
messages?: {
|
|
6255
6255
|
text: string;
|
|
6256
|
-
type: "
|
|
6256
|
+
type: "error" | "success" | "info" | "warning";
|
|
6257
6257
|
id?: number | undefined;
|
|
6258
6258
|
}[] | undefined;
|
|
6259
6259
|
required?: boolean | undefined;
|
|
@@ -6277,7 +6277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6277
6277
|
hint?: string | undefined;
|
|
6278
6278
|
messages?: {
|
|
6279
6279
|
text: string;
|
|
6280
|
-
type: "
|
|
6280
|
+
type: "error" | "success" | "info" | "warning";
|
|
6281
6281
|
id?: number | undefined;
|
|
6282
6282
|
}[] | undefined;
|
|
6283
6283
|
required?: boolean | undefined;
|
|
@@ -6301,7 +6301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6301
6301
|
hint?: string | undefined;
|
|
6302
6302
|
messages?: {
|
|
6303
6303
|
text: string;
|
|
6304
|
-
type: "
|
|
6304
|
+
type: "error" | "success" | "info" | "warning";
|
|
6305
6305
|
id?: number | undefined;
|
|
6306
6306
|
}[] | undefined;
|
|
6307
6307
|
required?: boolean | undefined;
|
|
@@ -6325,7 +6325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6325
6325
|
hint?: string | undefined;
|
|
6326
6326
|
messages?: {
|
|
6327
6327
|
text: string;
|
|
6328
|
-
type: "
|
|
6328
|
+
type: "error" | "success" | "info" | "warning";
|
|
6329
6329
|
id?: number | undefined;
|
|
6330
6330
|
}[] | undefined;
|
|
6331
6331
|
required?: boolean | undefined;
|
|
@@ -6354,7 +6354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6354
6354
|
hint?: string | undefined;
|
|
6355
6355
|
messages?: {
|
|
6356
6356
|
text: string;
|
|
6357
|
-
type: "
|
|
6357
|
+
type: "error" | "success" | "info" | "warning";
|
|
6358
6358
|
id?: number | undefined;
|
|
6359
6359
|
}[] | undefined;
|
|
6360
6360
|
required?: boolean | undefined;
|
|
@@ -6369,7 +6369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6369
6369
|
hint?: string | undefined;
|
|
6370
6370
|
messages?: {
|
|
6371
6371
|
text: string;
|
|
6372
|
-
type: "
|
|
6372
|
+
type: "error" | "success" | "info" | "warning";
|
|
6373
6373
|
id?: number | undefined;
|
|
6374
6374
|
}[] | undefined;
|
|
6375
6375
|
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: "error" | "success" | "info" | "warning";
|
|
6394
6394
|
id?: number | undefined;
|
|
6395
6395
|
}[] | undefined;
|
|
6396
6396
|
required?: boolean | undefined;
|
|
@@ -6415,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6415
6415
|
hint?: string | undefined;
|
|
6416
6416
|
messages?: {
|
|
6417
6417
|
text: string;
|
|
6418
|
-
type: "
|
|
6418
|
+
type: "error" | "success" | "info" | "warning";
|
|
6419
6419
|
id?: number | undefined;
|
|
6420
6420
|
}[] | undefined;
|
|
6421
6421
|
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: "error" | "success" | "info" | "warning";
|
|
6438
6438
|
id?: number | undefined;
|
|
6439
6439
|
}[] | undefined;
|
|
6440
6440
|
required?: boolean | undefined;
|
|
@@ -6454,7 +6454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6454
6454
|
hint?: string | undefined;
|
|
6455
6455
|
messages?: {
|
|
6456
6456
|
text: string;
|
|
6457
|
-
type: "
|
|
6457
|
+
type: "error" | "success" | "info" | "warning";
|
|
6458
6458
|
id?: number | undefined;
|
|
6459
6459
|
}[] | undefined;
|
|
6460
6460
|
required?: boolean | undefined;
|
|
@@ -6473,7 +6473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6473
6473
|
hint?: string | undefined;
|
|
6474
6474
|
messages?: {
|
|
6475
6475
|
text: string;
|
|
6476
|
-
type: "
|
|
6476
|
+
type: "error" | "success" | "info" | "warning";
|
|
6477
6477
|
id?: number | undefined;
|
|
6478
6478
|
}[] | undefined;
|
|
6479
6479
|
required?: boolean | undefined;
|
|
@@ -6495,7 +6495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6495
6495
|
hint?: string | undefined;
|
|
6496
6496
|
messages?: {
|
|
6497
6497
|
text: string;
|
|
6498
|
-
type: "
|
|
6498
|
+
type: "error" | "success" | "info" | "warning";
|
|
6499
6499
|
id?: number | undefined;
|
|
6500
6500
|
}[] | undefined;
|
|
6501
6501
|
required?: boolean | undefined;
|
|
@@ -6517,7 +6517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6517
6517
|
hint?: string | undefined;
|
|
6518
6518
|
messages?: {
|
|
6519
6519
|
text: string;
|
|
6520
|
-
type: "
|
|
6520
|
+
type: "error" | "success" | "info" | "warning";
|
|
6521
6521
|
id?: number | undefined;
|
|
6522
6522
|
}[] | undefined;
|
|
6523
6523
|
required?: boolean | undefined;
|
|
@@ -6536,7 +6536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6536
6536
|
hint?: string | undefined;
|
|
6537
6537
|
messages?: {
|
|
6538
6538
|
text: string;
|
|
6539
|
-
type: "
|
|
6539
|
+
type: "error" | "success" | "info" | "warning";
|
|
6540
6540
|
id?: number | undefined;
|
|
6541
6541
|
}[] | undefined;
|
|
6542
6542
|
required?: boolean | undefined;
|
|
@@ -6561,7 +6561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6561
6561
|
hint?: string | undefined;
|
|
6562
6562
|
messages?: {
|
|
6563
6563
|
text: string;
|
|
6564
|
-
type: "
|
|
6564
|
+
type: "error" | "success" | "info" | "warning";
|
|
6565
6565
|
id?: number | undefined;
|
|
6566
6566
|
}[] | undefined;
|
|
6567
6567
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6582
6582
|
hint?: string | undefined;
|
|
6583
6583
|
messages?: {
|
|
6584
6584
|
text: string;
|
|
6585
|
-
type: "
|
|
6585
|
+
type: "error" | "success" | "info" | "warning";
|
|
6586
6586
|
id?: number | undefined;
|
|
6587
6587
|
}[] | undefined;
|
|
6588
6588
|
required?: boolean | undefined;
|
|
@@ -6603,7 +6603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6603
6603
|
hint?: string | undefined;
|
|
6604
6604
|
messages?: {
|
|
6605
6605
|
text: string;
|
|
6606
|
-
type: "
|
|
6606
|
+
type: "error" | "success" | "info" | "warning";
|
|
6607
6607
|
id?: number | undefined;
|
|
6608
6608
|
}[] | undefined;
|
|
6609
6609
|
required?: boolean | undefined;
|
|
@@ -6851,7 +6851,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6851
6851
|
hint?: string | undefined;
|
|
6852
6852
|
messages?: {
|
|
6853
6853
|
text: string;
|
|
6854
|
-
type: "
|
|
6854
|
+
type: "error" | "success" | "info" | "warning";
|
|
6855
6855
|
id?: number | undefined;
|
|
6856
6856
|
}[] | undefined;
|
|
6857
6857
|
required?: boolean | undefined;
|
|
@@ -6869,7 +6869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6869
6869
|
hint?: string | undefined;
|
|
6870
6870
|
messages?: {
|
|
6871
6871
|
text: string;
|
|
6872
|
-
type: "
|
|
6872
|
+
type: "error" | "success" | "info" | "warning";
|
|
6873
6873
|
id?: number | undefined;
|
|
6874
6874
|
}[] | undefined;
|
|
6875
6875
|
required?: boolean | undefined;
|
|
@@ -6893,7 +6893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6893
6893
|
hint?: string | undefined;
|
|
6894
6894
|
messages?: {
|
|
6895
6895
|
text: string;
|
|
6896
|
-
type: "
|
|
6896
|
+
type: "error" | "success" | "info" | "warning";
|
|
6897
6897
|
id?: number | undefined;
|
|
6898
6898
|
}[] | undefined;
|
|
6899
6899
|
required?: boolean | undefined;
|
|
@@ -6917,7 +6917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6917
6917
|
hint?: string | undefined;
|
|
6918
6918
|
messages?: {
|
|
6919
6919
|
text: string;
|
|
6920
|
-
type: "
|
|
6920
|
+
type: "error" | "success" | "info" | "warning";
|
|
6921
6921
|
id?: number | undefined;
|
|
6922
6922
|
}[] | undefined;
|
|
6923
6923
|
required?: boolean | undefined;
|
|
@@ -6941,7 +6941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6941
6941
|
hint?: string | undefined;
|
|
6942
6942
|
messages?: {
|
|
6943
6943
|
text: string;
|
|
6944
|
-
type: "
|
|
6944
|
+
type: "error" | "success" | "info" | "warning";
|
|
6945
6945
|
id?: number | undefined;
|
|
6946
6946
|
}[] | undefined;
|
|
6947
6947
|
required?: boolean | undefined;
|
|
@@ -6970,7 +6970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6970
6970
|
hint?: string | undefined;
|
|
6971
6971
|
messages?: {
|
|
6972
6972
|
text: string;
|
|
6973
|
-
type: "
|
|
6973
|
+
type: "error" | "success" | "info" | "warning";
|
|
6974
6974
|
id?: number | undefined;
|
|
6975
6975
|
}[] | undefined;
|
|
6976
6976
|
required?: boolean | undefined;
|
|
@@ -6985,7 +6985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6985
6985
|
hint?: string | undefined;
|
|
6986
6986
|
messages?: {
|
|
6987
6987
|
text: string;
|
|
6988
|
-
type: "
|
|
6988
|
+
type: "error" | "success" | "info" | "warning";
|
|
6989
6989
|
id?: number | undefined;
|
|
6990
6990
|
}[] | undefined;
|
|
6991
6991
|
required?: boolean | undefined;
|
|
@@ -7006,7 +7006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7006
7006
|
hint?: string | undefined;
|
|
7007
7007
|
messages?: {
|
|
7008
7008
|
text: string;
|
|
7009
|
-
type: "
|
|
7009
|
+
type: "error" | "success" | "info" | "warning";
|
|
7010
7010
|
id?: number | undefined;
|
|
7011
7011
|
}[] | undefined;
|
|
7012
7012
|
required?: boolean | undefined;
|
|
@@ -7031,7 +7031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7031
7031
|
hint?: string | undefined;
|
|
7032
7032
|
messages?: {
|
|
7033
7033
|
text: string;
|
|
7034
|
-
type: "
|
|
7034
|
+
type: "error" | "success" | "info" | "warning";
|
|
7035
7035
|
id?: number | undefined;
|
|
7036
7036
|
}[] | undefined;
|
|
7037
7037
|
required?: boolean | undefined;
|
|
@@ -7050,7 +7050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7050
7050
|
hint?: string | undefined;
|
|
7051
7051
|
messages?: {
|
|
7052
7052
|
text: string;
|
|
7053
|
-
type: "
|
|
7053
|
+
type: "error" | "success" | "info" | "warning";
|
|
7054
7054
|
id?: number | undefined;
|
|
7055
7055
|
}[] | undefined;
|
|
7056
7056
|
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: "error" | "success" | "info" | "warning";
|
|
7074
7074
|
id?: number | undefined;
|
|
7075
7075
|
}[] | undefined;
|
|
7076
7076
|
required?: boolean | undefined;
|
|
@@ -7089,7 +7089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7089
7089
|
hint?: string | undefined;
|
|
7090
7090
|
messages?: {
|
|
7091
7091
|
text: string;
|
|
7092
|
-
type: "
|
|
7092
|
+
type: "error" | "success" | "info" | "warning";
|
|
7093
7093
|
id?: number | undefined;
|
|
7094
7094
|
}[] | undefined;
|
|
7095
7095
|
required?: boolean | undefined;
|
|
@@ -7111,7 +7111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7111
7111
|
hint?: string | undefined;
|
|
7112
7112
|
messages?: {
|
|
7113
7113
|
text: string;
|
|
7114
|
-
type: "
|
|
7114
|
+
type: "error" | "success" | "info" | "warning";
|
|
7115
7115
|
id?: number | undefined;
|
|
7116
7116
|
}[] | undefined;
|
|
7117
7117
|
required?: boolean | undefined;
|
|
@@ -7133,7 +7133,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7133
7133
|
hint?: string | undefined;
|
|
7134
7134
|
messages?: {
|
|
7135
7135
|
text: string;
|
|
7136
|
-
type: "
|
|
7136
|
+
type: "error" | "success" | "info" | "warning";
|
|
7137
7137
|
id?: number | undefined;
|
|
7138
7138
|
}[] | undefined;
|
|
7139
7139
|
required?: boolean | undefined;
|
|
@@ -7152,7 +7152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7152
7152
|
hint?: string | undefined;
|
|
7153
7153
|
messages?: {
|
|
7154
7154
|
text: string;
|
|
7155
|
-
type: "
|
|
7155
|
+
type: "error" | "success" | "info" | "warning";
|
|
7156
7156
|
id?: number | undefined;
|
|
7157
7157
|
}[] | undefined;
|
|
7158
7158
|
required?: boolean | undefined;
|
|
@@ -7177,7 +7177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7177
7177
|
hint?: string | undefined;
|
|
7178
7178
|
messages?: {
|
|
7179
7179
|
text: string;
|
|
7180
|
-
type: "
|
|
7180
|
+
type: "error" | "success" | "info" | "warning";
|
|
7181
7181
|
id?: number | undefined;
|
|
7182
7182
|
}[] | undefined;
|
|
7183
7183
|
required?: boolean | undefined;
|
|
@@ -7198,7 +7198,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7198
7198
|
hint?: string | undefined;
|
|
7199
7199
|
messages?: {
|
|
7200
7200
|
text: string;
|
|
7201
|
-
type: "
|
|
7201
|
+
type: "error" | "success" | "info" | "warning";
|
|
7202
7202
|
id?: number | undefined;
|
|
7203
7203
|
}[] | undefined;
|
|
7204
7204
|
required?: boolean | undefined;
|
|
@@ -7219,7 +7219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7219
7219
|
hint?: string | undefined;
|
|
7220
7220
|
messages?: {
|
|
7221
7221
|
text: string;
|
|
7222
|
-
type: "
|
|
7222
|
+
type: "error" | "success" | "info" | "warning";
|
|
7223
7223
|
id?: number | undefined;
|
|
7224
7224
|
}[] | undefined;
|
|
7225
7225
|
required?: boolean | undefined;
|
|
@@ -7473,7 +7473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7473
7473
|
hint?: string | undefined;
|
|
7474
7474
|
messages?: {
|
|
7475
7475
|
text: string;
|
|
7476
|
-
type: "
|
|
7476
|
+
type: "error" | "success" | "info" | "warning";
|
|
7477
7477
|
id?: number | undefined;
|
|
7478
7478
|
}[] | undefined;
|
|
7479
7479
|
required?: boolean | undefined;
|
|
@@ -7491,7 +7491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7491
7491
|
hint?: string | undefined;
|
|
7492
7492
|
messages?: {
|
|
7493
7493
|
text: string;
|
|
7494
|
-
type: "
|
|
7494
|
+
type: "error" | "success" | "info" | "warning";
|
|
7495
7495
|
id?: number | undefined;
|
|
7496
7496
|
}[] | undefined;
|
|
7497
7497
|
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: "error" | "success" | "info" | "warning";
|
|
7519
7519
|
id?: number | undefined;
|
|
7520
7520
|
}[] | undefined;
|
|
7521
7521
|
required?: boolean | undefined;
|
|
@@ -7539,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7539
7539
|
hint?: string | undefined;
|
|
7540
7540
|
messages?: {
|
|
7541
7541
|
text: string;
|
|
7542
|
-
type: "
|
|
7542
|
+
type: "error" | "success" | "info" | "warning";
|
|
7543
7543
|
id?: number | undefined;
|
|
7544
7544
|
}[] | undefined;
|
|
7545
7545
|
required?: boolean | undefined;
|
|
@@ -7563,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7563
7563
|
hint?: string | undefined;
|
|
7564
7564
|
messages?: {
|
|
7565
7565
|
text: string;
|
|
7566
|
-
type: "
|
|
7566
|
+
type: "error" | "success" | "info" | "warning";
|
|
7567
7567
|
id?: number | undefined;
|
|
7568
7568
|
}[] | undefined;
|
|
7569
7569
|
required?: boolean | undefined;
|
|
@@ -7588,7 +7588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7588
7588
|
hint?: string | undefined;
|
|
7589
7589
|
messages?: {
|
|
7590
7590
|
text: string;
|
|
7591
|
-
type: "
|
|
7591
|
+
type: "error" | "success" | "info" | "warning";
|
|
7592
7592
|
id?: number | undefined;
|
|
7593
7593
|
}[] | undefined;
|
|
7594
7594
|
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: "error" | "success" | "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: "error" | "success" | "info" | "warning";
|
|
7628
7628
|
id?: number | undefined;
|
|
7629
7629
|
}[] | undefined;
|
|
7630
7630
|
required?: boolean | undefined;
|
|
@@ -7649,7 +7649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7649
7649
|
hint?: string | undefined;
|
|
7650
7650
|
messages?: {
|
|
7651
7651
|
text: string;
|
|
7652
|
-
type: "
|
|
7652
|
+
type: "error" | "success" | "info" | "warning";
|
|
7653
7653
|
id?: number | undefined;
|
|
7654
7654
|
}[] | undefined;
|
|
7655
7655
|
required?: boolean | undefined;
|
|
@@ -7668,7 +7668,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7668
7668
|
hint?: string | undefined;
|
|
7669
7669
|
messages?: {
|
|
7670
7670
|
text: string;
|
|
7671
|
-
type: "
|
|
7671
|
+
type: "error" | "success" | "info" | "warning";
|
|
7672
7672
|
id?: number | undefined;
|
|
7673
7673
|
}[] | undefined;
|
|
7674
7674
|
required?: boolean | undefined;
|
|
@@ -7688,7 +7688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7688
7688
|
hint?: string | undefined;
|
|
7689
7689
|
messages?: {
|
|
7690
7690
|
text: string;
|
|
7691
|
-
type: "
|
|
7691
|
+
type: "error" | "success" | "info" | "warning";
|
|
7692
7692
|
id?: number | undefined;
|
|
7693
7693
|
}[] | undefined;
|
|
7694
7694
|
required?: boolean | undefined;
|
|
@@ -7707,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7707
7707
|
hint?: string | undefined;
|
|
7708
7708
|
messages?: {
|
|
7709
7709
|
text: string;
|
|
7710
|
-
type: "
|
|
7710
|
+
type: "error" | "success" | "info" | "warning";
|
|
7711
7711
|
id?: number | undefined;
|
|
7712
7712
|
}[] | undefined;
|
|
7713
7713
|
required?: boolean | undefined;
|
|
@@ -7729,7 +7729,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7729
7729
|
hint?: string | undefined;
|
|
7730
7730
|
messages?: {
|
|
7731
7731
|
text: string;
|
|
7732
|
-
type: "
|
|
7732
|
+
type: "error" | "success" | "info" | "warning";
|
|
7733
7733
|
id?: number | undefined;
|
|
7734
7734
|
}[] | undefined;
|
|
7735
7735
|
required?: boolean | undefined;
|
|
@@ -7751,7 +7751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7751
7751
|
hint?: string | undefined;
|
|
7752
7752
|
messages?: {
|
|
7753
7753
|
text: string;
|
|
7754
|
-
type: "
|
|
7754
|
+
type: "error" | "success" | "info" | "warning";
|
|
7755
7755
|
id?: number | undefined;
|
|
7756
7756
|
}[] | undefined;
|
|
7757
7757
|
required?: boolean | undefined;
|
|
@@ -7770,7 +7770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7770
7770
|
hint?: string | undefined;
|
|
7771
7771
|
messages?: {
|
|
7772
7772
|
text: string;
|
|
7773
|
-
type: "
|
|
7773
|
+
type: "error" | "success" | "info" | "warning";
|
|
7774
7774
|
id?: number | undefined;
|
|
7775
7775
|
}[] | undefined;
|
|
7776
7776
|
required?: boolean | undefined;
|
|
@@ -7795,7 +7795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7795
7795
|
hint?: string | undefined;
|
|
7796
7796
|
messages?: {
|
|
7797
7797
|
text: string;
|
|
7798
|
-
type: "
|
|
7798
|
+
type: "error" | "success" | "info" | "warning";
|
|
7799
7799
|
id?: number | undefined;
|
|
7800
7800
|
}[] | undefined;
|
|
7801
7801
|
required?: boolean | undefined;
|
|
@@ -7816,7 +7816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7816
7816
|
hint?: string | undefined;
|
|
7817
7817
|
messages?: {
|
|
7818
7818
|
text: string;
|
|
7819
|
-
type: "
|
|
7819
|
+
type: "error" | "success" | "info" | "warning";
|
|
7820
7820
|
id?: number | undefined;
|
|
7821
7821
|
}[] | undefined;
|
|
7822
7822
|
required?: boolean | undefined;
|
|
@@ -7837,7 +7837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7837
7837
|
hint?: string | undefined;
|
|
7838
7838
|
messages?: {
|
|
7839
7839
|
text: string;
|
|
7840
|
-
type: "
|
|
7840
|
+
type: "error" | "success" | "info" | "warning";
|
|
7841
7841
|
id?: number | undefined;
|
|
7842
7842
|
}[] | undefined;
|
|
7843
7843
|
required?: boolean | undefined;
|
|
@@ -8068,7 +8068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8068
8068
|
hint?: string | undefined;
|
|
8069
8069
|
messages?: {
|
|
8070
8070
|
text: string;
|
|
8071
|
-
type: "
|
|
8071
|
+
type: "error" | "success" | "info" | "warning";
|
|
8072
8072
|
id?: number | undefined;
|
|
8073
8073
|
}[] | undefined;
|
|
8074
8074
|
required?: boolean | undefined;
|
|
@@ -8086,7 +8086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8086
8086
|
hint?: string | undefined;
|
|
8087
8087
|
messages?: {
|
|
8088
8088
|
text: string;
|
|
8089
|
-
type: "
|
|
8089
|
+
type: "error" | "success" | "info" | "warning";
|
|
8090
8090
|
id?: number | undefined;
|
|
8091
8091
|
}[] | undefined;
|
|
8092
8092
|
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: "error" | "success" | "info" | "warning";
|
|
8114
8114
|
id?: number | undefined;
|
|
8115
8115
|
}[] | undefined;
|
|
8116
8116
|
required?: boolean | undefined;
|
|
@@ -8134,7 +8134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8134
8134
|
hint?: string | undefined;
|
|
8135
8135
|
messages?: {
|
|
8136
8136
|
text: string;
|
|
8137
|
-
type: "
|
|
8137
|
+
type: "error" | "success" | "info" | "warning";
|
|
8138
8138
|
id?: number | undefined;
|
|
8139
8139
|
}[] | undefined;
|
|
8140
8140
|
required?: boolean | undefined;
|
|
@@ -8158,7 +8158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8158
8158
|
hint?: string | undefined;
|
|
8159
8159
|
messages?: {
|
|
8160
8160
|
text: string;
|
|
8161
|
-
type: "
|
|
8161
|
+
type: "error" | "success" | "info" | "warning";
|
|
8162
8162
|
id?: number | undefined;
|
|
8163
8163
|
}[] | undefined;
|
|
8164
8164
|
required?: boolean | undefined;
|
|
@@ -8187,7 +8187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8187
8187
|
hint?: string | undefined;
|
|
8188
8188
|
messages?: {
|
|
8189
8189
|
text: string;
|
|
8190
|
-
type: "
|
|
8190
|
+
type: "error" | "success" | "info" | "warning";
|
|
8191
8191
|
id?: number | undefined;
|
|
8192
8192
|
}[] | undefined;
|
|
8193
8193
|
required?: boolean | undefined;
|
|
@@ -8202,7 +8202,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8202
8202
|
hint?: string | undefined;
|
|
8203
8203
|
messages?: {
|
|
8204
8204
|
text: string;
|
|
8205
|
-
type: "
|
|
8205
|
+
type: "error" | "success" | "info" | "warning";
|
|
8206
8206
|
id?: number | undefined;
|
|
8207
8207
|
}[] | undefined;
|
|
8208
8208
|
required?: boolean | undefined;
|
|
@@ -8223,7 +8223,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8223
8223
|
hint?: string | undefined;
|
|
8224
8224
|
messages?: {
|
|
8225
8225
|
text: string;
|
|
8226
|
-
type: "
|
|
8226
|
+
type: "error" | "success" | "info" | "warning";
|
|
8227
8227
|
id?: number | undefined;
|
|
8228
8228
|
}[] | undefined;
|
|
8229
8229
|
required?: boolean | undefined;
|
|
@@ -8248,7 +8248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8248
8248
|
hint?: string | undefined;
|
|
8249
8249
|
messages?: {
|
|
8250
8250
|
text: string;
|
|
8251
|
-
type: "
|
|
8251
|
+
type: "error" | "success" | "info" | "warning";
|
|
8252
8252
|
id?: number | undefined;
|
|
8253
8253
|
}[] | undefined;
|
|
8254
8254
|
required?: boolean | undefined;
|
|
@@ -8267,7 +8267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8267
8267
|
hint?: string | undefined;
|
|
8268
8268
|
messages?: {
|
|
8269
8269
|
text: string;
|
|
8270
|
-
type: "
|
|
8270
|
+
type: "error" | "success" | "info" | "warning";
|
|
8271
8271
|
id?: number | undefined;
|
|
8272
8272
|
}[] | undefined;
|
|
8273
8273
|
required?: boolean | undefined;
|
|
@@ -8287,7 +8287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8287
8287
|
hint?: string | undefined;
|
|
8288
8288
|
messages?: {
|
|
8289
8289
|
text: string;
|
|
8290
|
-
type: "
|
|
8290
|
+
type: "error" | "success" | "info" | "warning";
|
|
8291
8291
|
id?: number | undefined;
|
|
8292
8292
|
}[] | undefined;
|
|
8293
8293
|
required?: boolean | undefined;
|
|
@@ -8306,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8306
8306
|
hint?: string | undefined;
|
|
8307
8307
|
messages?: {
|
|
8308
8308
|
text: string;
|
|
8309
|
-
type: "
|
|
8309
|
+
type: "error" | "success" | "info" | "warning";
|
|
8310
8310
|
id?: number | undefined;
|
|
8311
8311
|
}[] | undefined;
|
|
8312
8312
|
required?: boolean | undefined;
|
|
@@ -8328,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8328
8328
|
hint?: string | undefined;
|
|
8329
8329
|
messages?: {
|
|
8330
8330
|
text: string;
|
|
8331
|
-
type: "
|
|
8331
|
+
type: "error" | "success" | "info" | "warning";
|
|
8332
8332
|
id?: number | undefined;
|
|
8333
8333
|
}[] | undefined;
|
|
8334
8334
|
required?: boolean | undefined;
|
|
@@ -8350,7 +8350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8350
8350
|
hint?: string | undefined;
|
|
8351
8351
|
messages?: {
|
|
8352
8352
|
text: string;
|
|
8353
|
-
type: "
|
|
8353
|
+
type: "error" | "success" | "info" | "warning";
|
|
8354
8354
|
id?: number | undefined;
|
|
8355
8355
|
}[] | undefined;
|
|
8356
8356
|
required?: boolean | undefined;
|
|
@@ -8369,7 +8369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8369
8369
|
hint?: string | undefined;
|
|
8370
8370
|
messages?: {
|
|
8371
8371
|
text: string;
|
|
8372
|
-
type: "
|
|
8372
|
+
type: "error" | "success" | "info" | "warning";
|
|
8373
8373
|
id?: number | undefined;
|
|
8374
8374
|
}[] | undefined;
|
|
8375
8375
|
required?: boolean | undefined;
|
|
@@ -8394,7 +8394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8394
8394
|
hint?: string | undefined;
|
|
8395
8395
|
messages?: {
|
|
8396
8396
|
text: string;
|
|
8397
|
-
type: "
|
|
8397
|
+
type: "error" | "success" | "info" | "warning";
|
|
8398
8398
|
id?: number | undefined;
|
|
8399
8399
|
}[] | undefined;
|
|
8400
8400
|
required?: boolean | undefined;
|
|
@@ -8415,7 +8415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8415
8415
|
hint?: string | undefined;
|
|
8416
8416
|
messages?: {
|
|
8417
8417
|
text: string;
|
|
8418
|
-
type: "
|
|
8418
|
+
type: "error" | "success" | "info" | "warning";
|
|
8419
8419
|
id?: number | undefined;
|
|
8420
8420
|
}[] | undefined;
|
|
8421
8421
|
required?: boolean | undefined;
|
|
@@ -8436,7 +8436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8436
8436
|
hint?: string | undefined;
|
|
8437
8437
|
messages?: {
|
|
8438
8438
|
text: string;
|
|
8439
|
-
type: "
|
|
8439
|
+
type: "error" | "success" | "info" | "warning";
|
|
8440
8440
|
id?: number | undefined;
|
|
8441
8441
|
}[] | undefined;
|
|
8442
8442
|
required?: boolean | undefined;
|
|
@@ -8669,7 +8669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8669
8669
|
hint?: string | undefined;
|
|
8670
8670
|
messages?: {
|
|
8671
8671
|
text: string;
|
|
8672
|
-
type: "
|
|
8672
|
+
type: "error" | "success" | "info" | "warning";
|
|
8673
8673
|
id?: number | undefined;
|
|
8674
8674
|
}[] | undefined;
|
|
8675
8675
|
required?: boolean | undefined;
|
|
@@ -8687,7 +8687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8687
8687
|
hint?: string | undefined;
|
|
8688
8688
|
messages?: {
|
|
8689
8689
|
text: string;
|
|
8690
|
-
type: "
|
|
8690
|
+
type: "error" | "success" | "info" | "warning";
|
|
8691
8691
|
id?: number | undefined;
|
|
8692
8692
|
}[] | undefined;
|
|
8693
8693
|
required?: boolean | undefined;
|
|
@@ -8711,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8711
8711
|
hint?: string | undefined;
|
|
8712
8712
|
messages?: {
|
|
8713
8713
|
text: string;
|
|
8714
|
-
type: "
|
|
8714
|
+
type: "error" | "success" | "info" | "warning";
|
|
8715
8715
|
id?: number | undefined;
|
|
8716
8716
|
}[] | undefined;
|
|
8717
8717
|
required?: boolean | undefined;
|
|
@@ -8735,7 +8735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8735
8735
|
hint?: string | undefined;
|
|
8736
8736
|
messages?: {
|
|
8737
8737
|
text: string;
|
|
8738
|
-
type: "
|
|
8738
|
+
type: "error" | "success" | "info" | "warning";
|
|
8739
8739
|
id?: number | undefined;
|
|
8740
8740
|
}[] | undefined;
|
|
8741
8741
|
required?: boolean | undefined;
|
|
@@ -8759,7 +8759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8759
8759
|
hint?: string | undefined;
|
|
8760
8760
|
messages?: {
|
|
8761
8761
|
text: string;
|
|
8762
|
-
type: "
|
|
8762
|
+
type: "error" | "success" | "info" | "warning";
|
|
8763
8763
|
id?: number | undefined;
|
|
8764
8764
|
}[] | undefined;
|
|
8765
8765
|
required?: boolean | undefined;
|
|
@@ -8784,7 +8784,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8784
8784
|
hint?: string | undefined;
|
|
8785
8785
|
messages?: {
|
|
8786
8786
|
text: string;
|
|
8787
|
-
type: "
|
|
8787
|
+
type: "error" | "success" | "info" | "warning";
|
|
8788
8788
|
id?: number | undefined;
|
|
8789
8789
|
}[] | undefined;
|
|
8790
8790
|
required?: boolean | undefined;
|
|
@@ -8799,7 +8799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8799
8799
|
hint?: string | undefined;
|
|
8800
8800
|
messages?: {
|
|
8801
8801
|
text: string;
|
|
8802
|
-
type: "
|
|
8802
|
+
type: "error" | "success" | "info" | "warning";
|
|
8803
8803
|
id?: number | undefined;
|
|
8804
8804
|
}[] | undefined;
|
|
8805
8805
|
required?: boolean | undefined;
|
|
@@ -8820,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8820
8820
|
hint?: string | undefined;
|
|
8821
8821
|
messages?: {
|
|
8822
8822
|
text: string;
|
|
8823
|
-
type: "
|
|
8823
|
+
type: "error" | "success" | "info" | "warning";
|
|
8824
8824
|
id?: number | undefined;
|
|
8825
8825
|
}[] | undefined;
|
|
8826
8826
|
required?: boolean | undefined;
|
|
@@ -8845,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8845
8845
|
hint?: string | undefined;
|
|
8846
8846
|
messages?: {
|
|
8847
8847
|
text: string;
|
|
8848
|
-
type: "
|
|
8848
|
+
type: "error" | "success" | "info" | "warning";
|
|
8849
8849
|
id?: number | undefined;
|
|
8850
8850
|
}[] | undefined;
|
|
8851
8851
|
required?: boolean | undefined;
|
|
@@ -8864,7 +8864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8864
8864
|
hint?: string | undefined;
|
|
8865
8865
|
messages?: {
|
|
8866
8866
|
text: string;
|
|
8867
|
-
type: "
|
|
8867
|
+
type: "error" | "success" | "info" | "warning";
|
|
8868
8868
|
id?: number | undefined;
|
|
8869
8869
|
}[] | undefined;
|
|
8870
8870
|
required?: boolean | undefined;
|
|
@@ -8884,7 +8884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8884
8884
|
hint?: string | undefined;
|
|
8885
8885
|
messages?: {
|
|
8886
8886
|
text: string;
|
|
8887
|
-
type: "
|
|
8887
|
+
type: "error" | "success" | "info" | "warning";
|
|
8888
8888
|
id?: number | undefined;
|
|
8889
8889
|
}[] | undefined;
|
|
8890
8890
|
required?: boolean | undefined;
|
|
@@ -8903,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8903
8903
|
hint?: string | undefined;
|
|
8904
8904
|
messages?: {
|
|
8905
8905
|
text: string;
|
|
8906
|
-
type: "
|
|
8906
|
+
type: "error" | "success" | "info" | "warning";
|
|
8907
8907
|
id?: number | undefined;
|
|
8908
8908
|
}[] | undefined;
|
|
8909
8909
|
required?: boolean | undefined;
|
|
@@ -8925,7 +8925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8925
8925
|
hint?: string | undefined;
|
|
8926
8926
|
messages?: {
|
|
8927
8927
|
text: string;
|
|
8928
|
-
type: "
|
|
8928
|
+
type: "error" | "success" | "info" | "warning";
|
|
8929
8929
|
id?: number | undefined;
|
|
8930
8930
|
}[] | undefined;
|
|
8931
8931
|
required?: boolean | undefined;
|
|
@@ -8947,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8947
8947
|
hint?: string | undefined;
|
|
8948
8948
|
messages?: {
|
|
8949
8949
|
text: string;
|
|
8950
|
-
type: "
|
|
8950
|
+
type: "error" | "success" | "info" | "warning";
|
|
8951
8951
|
id?: number | undefined;
|
|
8952
8952
|
}[] | undefined;
|
|
8953
8953
|
required?: boolean | undefined;
|
|
@@ -8966,7 +8966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8966
8966
|
hint?: string | undefined;
|
|
8967
8967
|
messages?: {
|
|
8968
8968
|
text: string;
|
|
8969
|
-
type: "
|
|
8969
|
+
type: "error" | "success" | "info" | "warning";
|
|
8970
8970
|
id?: number | undefined;
|
|
8971
8971
|
}[] | undefined;
|
|
8972
8972
|
required?: boolean | undefined;
|
|
@@ -8991,7 +8991,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8991
8991
|
hint?: string | undefined;
|
|
8992
8992
|
messages?: {
|
|
8993
8993
|
text: string;
|
|
8994
|
-
type: "
|
|
8994
|
+
type: "error" | "success" | "info" | "warning";
|
|
8995
8995
|
id?: number | undefined;
|
|
8996
8996
|
}[] | undefined;
|
|
8997
8997
|
required?: boolean | undefined;
|
|
@@ -9012,7 +9012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9012
9012
|
hint?: string | undefined;
|
|
9013
9013
|
messages?: {
|
|
9014
9014
|
text: string;
|
|
9015
|
-
type: "
|
|
9015
|
+
type: "error" | "success" | "info" | "warning";
|
|
9016
9016
|
id?: number | undefined;
|
|
9017
9017
|
}[] | undefined;
|
|
9018
9018
|
required?: boolean | undefined;
|
|
@@ -9033,7 +9033,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9033
9033
|
hint?: string | undefined;
|
|
9034
9034
|
messages?: {
|
|
9035
9035
|
text: string;
|
|
9036
|
-
type: "
|
|
9036
|
+
type: "error" | "success" | "info" | "warning";
|
|
9037
9037
|
id?: number | undefined;
|
|
9038
9038
|
}[] | undefined;
|
|
9039
9039
|
required?: boolean | undefined;
|
|
@@ -9264,7 +9264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9264
9264
|
hint?: string | undefined;
|
|
9265
9265
|
messages?: {
|
|
9266
9266
|
text: string;
|
|
9267
|
-
type: "
|
|
9267
|
+
type: "error" | "success" | "info" | "warning";
|
|
9268
9268
|
id?: number | undefined;
|
|
9269
9269
|
}[] | undefined;
|
|
9270
9270
|
required?: boolean | undefined;
|
|
@@ -9282,7 +9282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9282
9282
|
hint?: string | undefined;
|
|
9283
9283
|
messages?: {
|
|
9284
9284
|
text: string;
|
|
9285
|
-
type: "
|
|
9285
|
+
type: "error" | "success" | "info" | "warning";
|
|
9286
9286
|
id?: number | undefined;
|
|
9287
9287
|
}[] | undefined;
|
|
9288
9288
|
required?: boolean | undefined;
|
|
@@ -9306,7 +9306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9306
9306
|
hint?: string | undefined;
|
|
9307
9307
|
messages?: {
|
|
9308
9308
|
text: string;
|
|
9309
|
-
type: "
|
|
9309
|
+
type: "error" | "success" | "info" | "warning";
|
|
9310
9310
|
id?: number | undefined;
|
|
9311
9311
|
}[] | undefined;
|
|
9312
9312
|
required?: boolean | undefined;
|
|
@@ -9330,7 +9330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9330
9330
|
hint?: string | undefined;
|
|
9331
9331
|
messages?: {
|
|
9332
9332
|
text: string;
|
|
9333
|
-
type: "
|
|
9333
|
+
type: "error" | "success" | "info" | "warning";
|
|
9334
9334
|
id?: number | undefined;
|
|
9335
9335
|
}[] | undefined;
|
|
9336
9336
|
required?: boolean | undefined;
|
|
@@ -9354,7 +9354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9354
9354
|
hint?: string | undefined;
|
|
9355
9355
|
messages?: {
|
|
9356
9356
|
text: string;
|
|
9357
|
-
type: "
|
|
9357
|
+
type: "error" | "success" | "info" | "warning";
|
|
9358
9358
|
id?: number | undefined;
|
|
9359
9359
|
}[] | undefined;
|
|
9360
9360
|
required?: boolean | undefined;
|
|
@@ -9383,7 +9383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9383
9383
|
hint?: string | undefined;
|
|
9384
9384
|
messages?: {
|
|
9385
9385
|
text: string;
|
|
9386
|
-
type: "
|
|
9386
|
+
type: "error" | "success" | "info" | "warning";
|
|
9387
9387
|
id?: number | undefined;
|
|
9388
9388
|
}[] | undefined;
|
|
9389
9389
|
required?: boolean | undefined;
|
|
@@ -9398,7 +9398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9398
9398
|
hint?: string | undefined;
|
|
9399
9399
|
messages?: {
|
|
9400
9400
|
text: string;
|
|
9401
|
-
type: "
|
|
9401
|
+
type: "error" | "success" | "info" | "warning";
|
|
9402
9402
|
id?: number | undefined;
|
|
9403
9403
|
}[] | undefined;
|
|
9404
9404
|
required?: boolean | undefined;
|
|
@@ -9419,7 +9419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9419
9419
|
hint?: string | undefined;
|
|
9420
9420
|
messages?: {
|
|
9421
9421
|
text: string;
|
|
9422
|
-
type: "
|
|
9422
|
+
type: "error" | "success" | "info" | "warning";
|
|
9423
9423
|
id?: number | undefined;
|
|
9424
9424
|
}[] | undefined;
|
|
9425
9425
|
required?: boolean | undefined;
|
|
@@ -9444,7 +9444,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9444
9444
|
hint?: string | undefined;
|
|
9445
9445
|
messages?: {
|
|
9446
9446
|
text: string;
|
|
9447
|
-
type: "
|
|
9447
|
+
type: "error" | "success" | "info" | "warning";
|
|
9448
9448
|
id?: number | undefined;
|
|
9449
9449
|
}[] | undefined;
|
|
9450
9450
|
required?: boolean | undefined;
|
|
@@ -9463,7 +9463,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9463
9463
|
hint?: string | undefined;
|
|
9464
9464
|
messages?: {
|
|
9465
9465
|
text: string;
|
|
9466
|
-
type: "
|
|
9466
|
+
type: "error" | "success" | "info" | "warning";
|
|
9467
9467
|
id?: number | undefined;
|
|
9468
9468
|
}[] | undefined;
|
|
9469
9469
|
required?: boolean | undefined;
|
|
@@ -9483,7 +9483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9483
9483
|
hint?: string | undefined;
|
|
9484
9484
|
messages?: {
|
|
9485
9485
|
text: string;
|
|
9486
|
-
type: "
|
|
9486
|
+
type: "error" | "success" | "info" | "warning";
|
|
9487
9487
|
id?: number | undefined;
|
|
9488
9488
|
}[] | undefined;
|
|
9489
9489
|
required?: boolean | undefined;
|
|
@@ -9502,7 +9502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9502
9502
|
hint?: string | undefined;
|
|
9503
9503
|
messages?: {
|
|
9504
9504
|
text: string;
|
|
9505
|
-
type: "
|
|
9505
|
+
type: "error" | "success" | "info" | "warning";
|
|
9506
9506
|
id?: number | undefined;
|
|
9507
9507
|
}[] | undefined;
|
|
9508
9508
|
required?: boolean | undefined;
|
|
@@ -9524,7 +9524,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9524
9524
|
hint?: string | undefined;
|
|
9525
9525
|
messages?: {
|
|
9526
9526
|
text: string;
|
|
9527
|
-
type: "
|
|
9527
|
+
type: "error" | "success" | "info" | "warning";
|
|
9528
9528
|
id?: number | undefined;
|
|
9529
9529
|
}[] | undefined;
|
|
9530
9530
|
required?: boolean | undefined;
|
|
@@ -9546,7 +9546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9546
9546
|
hint?: string | undefined;
|
|
9547
9547
|
messages?: {
|
|
9548
9548
|
text: string;
|
|
9549
|
-
type: "
|
|
9549
|
+
type: "error" | "success" | "info" | "warning";
|
|
9550
9550
|
id?: number | undefined;
|
|
9551
9551
|
}[] | undefined;
|
|
9552
9552
|
required?: boolean | undefined;
|
|
@@ -9565,7 +9565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9565
9565
|
hint?: string | undefined;
|
|
9566
9566
|
messages?: {
|
|
9567
9567
|
text: string;
|
|
9568
|
-
type: "
|
|
9568
|
+
type: "error" | "success" | "info" | "warning";
|
|
9569
9569
|
id?: number | undefined;
|
|
9570
9570
|
}[] | undefined;
|
|
9571
9571
|
required?: boolean | undefined;
|
|
@@ -9590,7 +9590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9590
9590
|
hint?: string | undefined;
|
|
9591
9591
|
messages?: {
|
|
9592
9592
|
text: string;
|
|
9593
|
-
type: "
|
|
9593
|
+
type: "error" | "success" | "info" | "warning";
|
|
9594
9594
|
id?: number | undefined;
|
|
9595
9595
|
}[] | undefined;
|
|
9596
9596
|
required?: boolean | undefined;
|
|
@@ -9611,7 +9611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9611
9611
|
hint?: string | undefined;
|
|
9612
9612
|
messages?: {
|
|
9613
9613
|
text: string;
|
|
9614
|
-
type: "
|
|
9614
|
+
type: "error" | "success" | "info" | "warning";
|
|
9615
9615
|
id?: number | undefined;
|
|
9616
9616
|
}[] | undefined;
|
|
9617
9617
|
required?: boolean | undefined;
|
|
@@ -9632,7 +9632,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9632
9632
|
hint?: string | undefined;
|
|
9633
9633
|
messages?: {
|
|
9634
9634
|
text: string;
|
|
9635
|
-
type: "
|
|
9635
|
+
type: "error" | "success" | "info" | "warning";
|
|
9636
9636
|
id?: number | undefined;
|
|
9637
9637
|
}[] | undefined;
|
|
9638
9638
|
required?: boolean | undefined;
|
|
@@ -9862,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9862
9862
|
};
|
|
9863
9863
|
};
|
|
9864
9864
|
output: {
|
|
9865
|
-
prompt: "mfa" | "organizations" | "
|
|
9865
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9866
9866
|
language: string;
|
|
9867
9867
|
}[];
|
|
9868
9868
|
outputFormat: "json";
|
|
@@ -9900,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9900
9900
|
$get: {
|
|
9901
9901
|
input: {
|
|
9902
9902
|
param: {
|
|
9903
|
-
prompt: "mfa" | "organizations" | "
|
|
9903
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9904
9904
|
language: string;
|
|
9905
9905
|
};
|
|
9906
9906
|
} & {
|
|
@@ -9922,7 +9922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9922
9922
|
$put: {
|
|
9923
9923
|
input: {
|
|
9924
9924
|
param: {
|
|
9925
|
-
prompt: "mfa" | "organizations" | "
|
|
9925
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9926
9926
|
language: string;
|
|
9927
9927
|
};
|
|
9928
9928
|
} & {
|
|
@@ -9946,7 +9946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9946
9946
|
$delete: {
|
|
9947
9947
|
input: {
|
|
9948
9948
|
param: {
|
|
9949
|
-
prompt: "mfa" | "organizations" | "
|
|
9949
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9950
9950
|
language: string;
|
|
9951
9951
|
};
|
|
9952
9952
|
} & {
|
|
@@ -10038,7 +10038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10038
10038
|
active?: boolean | undefined;
|
|
10039
10039
|
} | undefined;
|
|
10040
10040
|
signup?: {
|
|
10041
|
-
status?: "
|
|
10041
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10042
10042
|
verification?: {
|
|
10043
10043
|
active?: boolean | undefined;
|
|
10044
10044
|
} | undefined;
|
|
@@ -10055,7 +10055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10055
10055
|
active?: boolean | undefined;
|
|
10056
10056
|
} | undefined;
|
|
10057
10057
|
signup?: {
|
|
10058
|
-
status?: "
|
|
10058
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10059
10059
|
} | undefined;
|
|
10060
10060
|
validation?: {
|
|
10061
10061
|
max_length?: number | undefined;
|
|
@@ -10072,7 +10072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10072
10072
|
active?: boolean | undefined;
|
|
10073
10073
|
} | undefined;
|
|
10074
10074
|
signup?: {
|
|
10075
|
-
status?: "
|
|
10075
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10076
10076
|
} | undefined;
|
|
10077
10077
|
} | undefined;
|
|
10078
10078
|
} | undefined;
|
|
@@ -10172,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10172
10172
|
active?: boolean | undefined;
|
|
10173
10173
|
} | undefined;
|
|
10174
10174
|
signup?: {
|
|
10175
|
-
status?: "
|
|
10175
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10176
10176
|
verification?: {
|
|
10177
10177
|
active?: boolean | undefined;
|
|
10178
10178
|
} | undefined;
|
|
@@ -10189,7 +10189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10189
10189
|
active?: boolean | undefined;
|
|
10190
10190
|
} | undefined;
|
|
10191
10191
|
signup?: {
|
|
10192
|
-
status?: "
|
|
10192
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10193
10193
|
} | undefined;
|
|
10194
10194
|
validation?: {
|
|
10195
10195
|
max_length?: number | undefined;
|
|
@@ -10206,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10206
10206
|
active?: boolean | undefined;
|
|
10207
10207
|
} | undefined;
|
|
10208
10208
|
signup?: {
|
|
10209
|
-
status?: "
|
|
10209
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10210
10210
|
} | undefined;
|
|
10211
10211
|
} | undefined;
|
|
10212
10212
|
} | undefined;
|
|
@@ -10321,7 +10321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10321
10321
|
active?: boolean | undefined;
|
|
10322
10322
|
} | undefined;
|
|
10323
10323
|
signup?: {
|
|
10324
|
-
status?: "
|
|
10324
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10325
10325
|
verification?: {
|
|
10326
10326
|
active?: boolean | undefined;
|
|
10327
10327
|
} | undefined;
|
|
@@ -10338,7 +10338,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10338
10338
|
active?: boolean | undefined;
|
|
10339
10339
|
} | undefined;
|
|
10340
10340
|
signup?: {
|
|
10341
|
-
status?: "
|
|
10341
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10342
10342
|
} | undefined;
|
|
10343
10343
|
validation?: {
|
|
10344
10344
|
max_length?: number | undefined;
|
|
@@ -10355,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10355
10355
|
active?: boolean | undefined;
|
|
10356
10356
|
} | undefined;
|
|
10357
10357
|
signup?: {
|
|
10358
|
-
status?: "
|
|
10358
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10359
10359
|
} | undefined;
|
|
10360
10360
|
} | undefined;
|
|
10361
10361
|
} | undefined;
|
|
@@ -10500,7 +10500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10500
10500
|
active?: boolean | undefined;
|
|
10501
10501
|
} | undefined;
|
|
10502
10502
|
signup?: {
|
|
10503
|
-
status?: "
|
|
10503
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10504
10504
|
verification?: {
|
|
10505
10505
|
active?: boolean | undefined;
|
|
10506
10506
|
} | undefined;
|
|
@@ -10517,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10517
10517
|
active?: boolean | undefined;
|
|
10518
10518
|
} | undefined;
|
|
10519
10519
|
signup?: {
|
|
10520
|
-
status?: "
|
|
10520
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10521
10521
|
} | undefined;
|
|
10522
10522
|
validation?: {
|
|
10523
10523
|
max_length?: number | undefined;
|
|
@@ -10534,7 +10534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10534
10534
|
active?: boolean | undefined;
|
|
10535
10535
|
} | undefined;
|
|
10536
10536
|
signup?: {
|
|
10537
|
-
status?: "
|
|
10537
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10538
10538
|
} | undefined;
|
|
10539
10539
|
} | undefined;
|
|
10540
10540
|
} | undefined;
|
|
@@ -10658,7 +10658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10658
10658
|
active?: boolean | undefined;
|
|
10659
10659
|
} | undefined;
|
|
10660
10660
|
signup?: {
|
|
10661
|
-
status?: "
|
|
10661
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10662
10662
|
verification?: {
|
|
10663
10663
|
active?: boolean | undefined;
|
|
10664
10664
|
} | undefined;
|
|
@@ -10675,7 +10675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10675
10675
|
active?: boolean | undefined;
|
|
10676
10676
|
} | undefined;
|
|
10677
10677
|
signup?: {
|
|
10678
|
-
status?: "
|
|
10678
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10679
10679
|
} | undefined;
|
|
10680
10680
|
validation?: {
|
|
10681
10681
|
max_length?: number | undefined;
|
|
@@ -10692,7 +10692,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10692
10692
|
active?: boolean | undefined;
|
|
10693
10693
|
} | undefined;
|
|
10694
10694
|
signup?: {
|
|
10695
|
-
status?: "
|
|
10695
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10696
10696
|
} | undefined;
|
|
10697
10697
|
} | undefined;
|
|
10698
10698
|
} | undefined;
|
|
@@ -10808,7 +10808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10808
10808
|
};
|
|
10809
10809
|
} | {
|
|
10810
10810
|
mode: "inline";
|
|
10811
|
-
status: "
|
|
10811
|
+
status: "error" | "success";
|
|
10812
10812
|
connection_id: string;
|
|
10813
10813
|
connection_name: string;
|
|
10814
10814
|
strategy: string;
|
|
@@ -11447,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11447
11447
|
log_type: string;
|
|
11448
11448
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11449
11449
|
actor: {
|
|
11450
|
-
type: "
|
|
11450
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
11451
11451
|
id?: string | undefined;
|
|
11452
11452
|
email?: string | undefined;
|
|
11453
11453
|
org_id?: string | undefined;
|
|
@@ -11496,6 +11496,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11496
11496
|
body?: hono_utils_types.JSONValue | undefined;
|
|
11497
11497
|
} | undefined;
|
|
11498
11498
|
connection?: string | undefined;
|
|
11499
|
+
connection_id?: string | undefined;
|
|
11500
|
+
client_name?: string | undefined;
|
|
11499
11501
|
strategy?: string | undefined;
|
|
11500
11502
|
strategy_type?: string | undefined;
|
|
11501
11503
|
audience?: string | undefined;
|
|
@@ -11755,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11755
11757
|
created_at: string;
|
|
11756
11758
|
updated_at: string;
|
|
11757
11759
|
name: string;
|
|
11758
|
-
provider: "auth0" | "
|
|
11760
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11759
11761
|
connection: string;
|
|
11760
11762
|
enabled: boolean;
|
|
11761
11763
|
credentials: {
|
|
@@ -11787,7 +11789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11787
11789
|
created_at: string;
|
|
11788
11790
|
updated_at: string;
|
|
11789
11791
|
name: string;
|
|
11790
|
-
provider: "auth0" | "
|
|
11792
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11791
11793
|
connection: string;
|
|
11792
11794
|
enabled: boolean;
|
|
11793
11795
|
credentials: {
|
|
@@ -11813,7 +11815,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11813
11815
|
} & {
|
|
11814
11816
|
json: {
|
|
11815
11817
|
name: string;
|
|
11816
|
-
provider: "auth0" | "
|
|
11818
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11817
11819
|
connection: string;
|
|
11818
11820
|
credentials: {
|
|
11819
11821
|
domain: string;
|
|
@@ -11830,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11830
11832
|
created_at: string;
|
|
11831
11833
|
updated_at: string;
|
|
11832
11834
|
name: string;
|
|
11833
|
-
provider: "auth0" | "
|
|
11835
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11834
11836
|
connection: string;
|
|
11835
11837
|
enabled: boolean;
|
|
11836
11838
|
credentials: {
|
|
@@ -11861,7 +11863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11861
11863
|
json: {
|
|
11862
11864
|
id?: string | undefined;
|
|
11863
11865
|
name?: string | undefined;
|
|
11864
|
-
provider?: "auth0" | "
|
|
11866
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11865
11867
|
connection?: string | undefined;
|
|
11866
11868
|
enabled?: boolean | undefined;
|
|
11867
11869
|
credentials?: {
|
|
@@ -11877,7 +11879,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11877
11879
|
created_at: string;
|
|
11878
11880
|
updated_at: string;
|
|
11879
11881
|
name: string;
|
|
11880
|
-
provider: "auth0" | "
|
|
11882
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11881
11883
|
connection: string;
|
|
11882
11884
|
enabled: boolean;
|
|
11883
11885
|
credentials: {
|
|
@@ -11925,7 +11927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11925
11927
|
[x: string]: hono_utils_types.JSONValue;
|
|
11926
11928
|
};
|
|
11927
11929
|
id: string;
|
|
11928
|
-
status: "
|
|
11930
|
+
status: "suspended" | "active" | "paused";
|
|
11929
11931
|
filters?: {
|
|
11930
11932
|
type: string;
|
|
11931
11933
|
name: string;
|
|
@@ -11957,7 +11959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11957
11959
|
[x: string]: hono_utils_types.JSONValue;
|
|
11958
11960
|
};
|
|
11959
11961
|
id: string;
|
|
11960
|
-
status: "
|
|
11962
|
+
status: "suspended" | "active" | "paused";
|
|
11961
11963
|
filters?: {
|
|
11962
11964
|
type: string;
|
|
11963
11965
|
name: string;
|
|
@@ -11982,7 +11984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11982
11984
|
name: string;
|
|
11983
11985
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11984
11986
|
sink: Record<string, unknown>;
|
|
11985
|
-
status?: "
|
|
11987
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11986
11988
|
filters?: {
|
|
11987
11989
|
type: string;
|
|
11988
11990
|
name: string;
|
|
@@ -11997,7 +11999,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11997
11999
|
[x: string]: hono_utils_types.JSONValue;
|
|
11998
12000
|
};
|
|
11999
12001
|
id: string;
|
|
12000
|
-
status: "
|
|
12002
|
+
status: "suspended" | "active" | "paused";
|
|
12001
12003
|
filters?: {
|
|
12002
12004
|
type: string;
|
|
12003
12005
|
name: string;
|
|
@@ -12032,7 +12034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12032
12034
|
}[] | undefined;
|
|
12033
12035
|
isPriority?: boolean | undefined;
|
|
12034
12036
|
id?: string | undefined;
|
|
12035
|
-
status?: "
|
|
12037
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
12036
12038
|
created_at?: string | undefined;
|
|
12037
12039
|
updated_at?: string | undefined;
|
|
12038
12040
|
};
|
|
@@ -12044,7 +12046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12044
12046
|
[x: string]: hono_utils_types.JSONValue;
|
|
12045
12047
|
};
|
|
12046
12048
|
id: string;
|
|
12047
|
-
status: "
|
|
12049
|
+
status: "suspended" | "active" | "paused";
|
|
12048
12050
|
filters?: {
|
|
12049
12051
|
type: string;
|
|
12050
12052
|
name: string;
|
|
@@ -13264,7 +13266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13264
13266
|
active?: boolean | undefined;
|
|
13265
13267
|
} | undefined;
|
|
13266
13268
|
signup?: {
|
|
13267
|
-
status?: "
|
|
13269
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
13268
13270
|
verification?: {
|
|
13269
13271
|
active?: boolean | undefined;
|
|
13270
13272
|
} | undefined;
|
|
@@ -13281,7 +13283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13281
13283
|
active?: boolean | undefined;
|
|
13282
13284
|
} | undefined;
|
|
13283
13285
|
signup?: {
|
|
13284
|
-
status?: "
|
|
13286
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
13285
13287
|
} | undefined;
|
|
13286
13288
|
validation?: {
|
|
13287
13289
|
max_length?: number | undefined;
|
|
@@ -13298,7 +13300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13298
13300
|
active?: boolean | undefined;
|
|
13299
13301
|
} | undefined;
|
|
13300
13302
|
signup?: {
|
|
13301
|
-
status?: "
|
|
13303
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
13302
13304
|
} | undefined;
|
|
13303
13305
|
} | undefined;
|
|
13304
13306
|
} | undefined;
|
|
@@ -13418,7 +13420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13418
13420
|
active?: boolean | undefined;
|
|
13419
13421
|
} | undefined;
|
|
13420
13422
|
signup?: {
|
|
13421
|
-
status?: "
|
|
13423
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
13422
13424
|
verification?: {
|
|
13423
13425
|
active?: boolean | undefined;
|
|
13424
13426
|
} | undefined;
|
|
@@ -13435,7 +13437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13435
13437
|
active?: boolean | undefined;
|
|
13436
13438
|
} | undefined;
|
|
13437
13439
|
signup?: {
|
|
13438
|
-
status?: "
|
|
13440
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
13439
13441
|
} | undefined;
|
|
13440
13442
|
validation?: {
|
|
13441
13443
|
max_length?: number | undefined;
|
|
@@ -13452,7 +13454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13452
13454
|
active?: boolean | undefined;
|
|
13453
13455
|
} | undefined;
|
|
13454
13456
|
signup?: {
|
|
13455
|
-
status?: "
|
|
13457
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
13456
13458
|
} | undefined;
|
|
13457
13459
|
} | undefined;
|
|
13458
13460
|
} | undefined;
|
|
@@ -15623,7 +15625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15623
15625
|
background_color: string;
|
|
15624
15626
|
background_image_url: string;
|
|
15625
15627
|
page_layout: "center" | "left" | "right";
|
|
15626
|
-
logo_placement?: "
|
|
15628
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15627
15629
|
};
|
|
15628
15630
|
widget: {
|
|
15629
15631
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15713,7 +15715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15713
15715
|
background_color: string;
|
|
15714
15716
|
background_image_url: string;
|
|
15715
15717
|
page_layout: "center" | "left" | "right";
|
|
15716
|
-
logo_placement?: "
|
|
15718
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15717
15719
|
};
|
|
15718
15720
|
widget: {
|
|
15719
15721
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15792,7 +15794,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15792
15794
|
background_color: string;
|
|
15793
15795
|
background_image_url: string;
|
|
15794
15796
|
page_layout: "center" | "left" | "right";
|
|
15795
|
-
logo_placement?: "
|
|
15797
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15796
15798
|
};
|
|
15797
15799
|
widget: {
|
|
15798
15800
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15915,7 +15917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15915
15917
|
};
|
|
15916
15918
|
output: {};
|
|
15917
15919
|
outputFormat: string;
|
|
15918
|
-
status:
|
|
15920
|
+
status: 204;
|
|
15919
15921
|
} | {
|
|
15920
15922
|
input: {
|
|
15921
15923
|
header: {
|
|
@@ -15928,7 +15930,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15928
15930
|
};
|
|
15929
15931
|
output: {};
|
|
15930
15932
|
outputFormat: string;
|
|
15931
|
-
status:
|
|
15933
|
+
status: 400;
|
|
15932
15934
|
};
|
|
15933
15935
|
};
|
|
15934
15936
|
} & {
|
|
@@ -15954,7 +15956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15954
15956
|
} & {
|
|
15955
15957
|
json: {
|
|
15956
15958
|
body?: string | undefined;
|
|
15957
|
-
screen?: "password" | "
|
|
15959
|
+
screen?: "password" | "signup" | "login" | "identifier" | undefined;
|
|
15958
15960
|
branding?: {
|
|
15959
15961
|
colors?: {
|
|
15960
15962
|
primary: string;
|
|
@@ -16040,7 +16042,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16040
16042
|
background_color: string;
|
|
16041
16043
|
background_image_url: string;
|
|
16042
16044
|
page_layout: "center" | "left" | "right";
|
|
16043
|
-
logo_placement?: "
|
|
16045
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
16044
16046
|
} | undefined;
|
|
16045
16047
|
widget?: {
|
|
16046
16048
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -16198,7 +16200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16198
16200
|
output: {
|
|
16199
16201
|
id: string;
|
|
16200
16202
|
trigger_id: string;
|
|
16201
|
-
status: "pending" | "
|
|
16203
|
+
status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
|
|
16202
16204
|
results: {
|
|
16203
16205
|
action_name: string;
|
|
16204
16206
|
error: {
|
|
@@ -16245,7 +16247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16245
16247
|
logs: {
|
|
16246
16248
|
action_name: string;
|
|
16247
16249
|
lines: {
|
|
16248
|
-
level: "
|
|
16250
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16249
16251
|
message: string;
|
|
16250
16252
|
}[];
|
|
16251
16253
|
}[];
|
|
@@ -16912,7 +16914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16912
16914
|
args: hono_utils_types.JSONValue[];
|
|
16913
16915
|
}[];
|
|
16914
16916
|
logs: {
|
|
16915
|
-
level: "
|
|
16917
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16916
16918
|
message: string;
|
|
16917
16919
|
}[];
|
|
16918
16920
|
error?: string | undefined;
|
|
@@ -17658,9 +17660,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17658
17660
|
email: string;
|
|
17659
17661
|
send: "code" | "link";
|
|
17660
17662
|
authParams: {
|
|
17663
|
+
audience?: string | undefined;
|
|
17661
17664
|
username?: string | undefined;
|
|
17662
17665
|
state?: string | undefined;
|
|
17663
|
-
audience?: string | undefined;
|
|
17664
17666
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17665
17667
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17666
17668
|
scope?: string | undefined;
|
|
@@ -17694,9 +17696,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17694
17696
|
phone_number: string;
|
|
17695
17697
|
send: "code" | "link";
|
|
17696
17698
|
authParams: {
|
|
17699
|
+
audience?: string | undefined;
|
|
17697
17700
|
username?: string | undefined;
|
|
17698
17701
|
state?: string | undefined;
|
|
17699
|
-
audience?: string | undefined;
|
|
17700
17702
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17701
17703
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17702
17704
|
scope?: string | undefined;
|
|
@@ -18625,7 +18627,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18625
18627
|
};
|
|
18626
18628
|
output: {};
|
|
18627
18629
|
outputFormat: string;
|
|
18628
|
-
status:
|
|
18630
|
+
status: 302;
|
|
18629
18631
|
} | {
|
|
18630
18632
|
input: {
|
|
18631
18633
|
query: {
|
|
@@ -18639,7 +18641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18639
18641
|
};
|
|
18640
18642
|
output: {};
|
|
18641
18643
|
outputFormat: string;
|
|
18642
|
-
status:
|
|
18644
|
+
status: 400;
|
|
18643
18645
|
};
|
|
18644
18646
|
};
|
|
18645
18647
|
}, "/oidc/logout"> & hono_types.MergeSchemaPath<{
|
|
@@ -18746,7 +18748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18746
18748
|
};
|
|
18747
18749
|
output: {};
|
|
18748
18750
|
outputFormat: string;
|
|
18749
|
-
status:
|
|
18751
|
+
status: 302;
|
|
18750
18752
|
} | {
|
|
18751
18753
|
input: {
|
|
18752
18754
|
query: {
|
|
@@ -18755,7 +18757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18755
18757
|
};
|
|
18756
18758
|
output: {};
|
|
18757
18759
|
outputFormat: string;
|
|
18758
|
-
status:
|
|
18760
|
+
status: 400;
|
|
18759
18761
|
} | {
|
|
18760
18762
|
input: {
|
|
18761
18763
|
query: {
|
|
@@ -18884,7 +18886,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18884
18886
|
};
|
|
18885
18887
|
output: {};
|
|
18886
18888
|
outputFormat: string;
|
|
18887
|
-
status:
|
|
18889
|
+
status: 302;
|
|
18888
18890
|
} | {
|
|
18889
18891
|
input: {
|
|
18890
18892
|
query: {
|
|
@@ -18897,7 +18899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18897
18899
|
};
|
|
18898
18900
|
output: {};
|
|
18899
18901
|
outputFormat: string;
|
|
18900
|
-
status:
|
|
18902
|
+
status: 400;
|
|
18901
18903
|
};
|
|
18902
18904
|
};
|
|
18903
18905
|
}, "/impersonate"> & hono_types.MergeSchemaPath<{
|
|
@@ -19239,7 +19241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19239
19241
|
};
|
|
19240
19242
|
output: {};
|
|
19241
19243
|
outputFormat: string;
|
|
19242
|
-
status:
|
|
19244
|
+
status: 302;
|
|
19243
19245
|
} | {
|
|
19244
19246
|
input: {
|
|
19245
19247
|
query: {
|
|
@@ -19253,7 +19255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19253
19255
|
};
|
|
19254
19256
|
output: {};
|
|
19255
19257
|
outputFormat: string;
|
|
19256
|
-
status:
|
|
19258
|
+
status: 400;
|
|
19257
19259
|
};
|
|
19258
19260
|
};
|
|
19259
19261
|
}, "/login/identifier"> & hono_types.MergeSchemaPath<{
|
|
@@ -19613,7 +19615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19613
19615
|
$get: {
|
|
19614
19616
|
input: {
|
|
19615
19617
|
param: {
|
|
19616
|
-
screen: "signup" | "
|
|
19618
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19617
19619
|
};
|
|
19618
19620
|
} & {
|
|
19619
19621
|
query: {
|
|
@@ -19629,7 +19631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19629
19631
|
} | {
|
|
19630
19632
|
input: {
|
|
19631
19633
|
param: {
|
|
19632
|
-
screen: "signup" | "
|
|
19634
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19633
19635
|
};
|
|
19634
19636
|
} & {
|
|
19635
19637
|
query: {
|
|
@@ -19641,11 +19643,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19641
19643
|
};
|
|
19642
19644
|
output: {};
|
|
19643
19645
|
outputFormat: string;
|
|
19644
|
-
status:
|
|
19646
|
+
status: 302;
|
|
19645
19647
|
} | {
|
|
19646
19648
|
input: {
|
|
19647
19649
|
param: {
|
|
19648
|
-
screen: "signup" | "
|
|
19650
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19649
19651
|
};
|
|
19650
19652
|
} & {
|
|
19651
19653
|
query: {
|
|
@@ -19657,7 +19659,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19657
19659
|
};
|
|
19658
19660
|
output: {};
|
|
19659
19661
|
outputFormat: string;
|
|
19660
|
-
status:
|
|
19662
|
+
status: 400;
|
|
19661
19663
|
};
|
|
19662
19664
|
};
|
|
19663
19665
|
} & {
|
|
@@ -19665,7 +19667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19665
19667
|
$post: {
|
|
19666
19668
|
input: {
|
|
19667
19669
|
param: {
|
|
19668
|
-
screen: "signup" | "
|
|
19670
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19669
19671
|
};
|
|
19670
19672
|
} & {
|
|
19671
19673
|
query: {
|
|
@@ -19683,7 +19685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19683
19685
|
} | {
|
|
19684
19686
|
input: {
|
|
19685
19687
|
param: {
|
|
19686
|
-
screen: "signup" | "
|
|
19688
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19687
19689
|
};
|
|
19688
19690
|
} & {
|
|
19689
19691
|
query: {
|