authhero 8.11.1 → 8.12.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/assets/u/js/client.js +1 -1
- package/dist/authhero.cjs +82 -82
- package/dist/authhero.d.ts +248 -240
- package/dist/authhero.mjs +8867 -8854
- package/dist/client.js +1 -1
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/index.d.ts +239 -239
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +2 -2
- package/dist/types/routes/management-api/connections.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +20 -20
- package/dist/types/routes/management-api/emails.d.ts +2 -2
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/hooks.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +210 -210
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -4
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/Hooks.d.ts +8 -0
- package/dist/types/types/IdToken.d.ts +3 -3
- package/package.json +2 -2
package/dist/authhero.d.ts
CHANGED
|
@@ -730,6 +730,13 @@ type OnExecutePreUserUpdate = (event: HookEvent & {
|
|
|
730
730
|
user_id: string;
|
|
731
731
|
updates: Partial<User>;
|
|
732
732
|
}, api: OnExecutePreUserUpdateAPI) => Promise<void>;
|
|
733
|
+
type OnExecutePostUserUpdateAPI = {
|
|
734
|
+
token: TokenAPI;
|
|
735
|
+
};
|
|
736
|
+
type OnExecutePostUserUpdate = (event: HookEvent & {
|
|
737
|
+
user_id: string;
|
|
738
|
+
updates: Partial<User>;
|
|
739
|
+
}, api: OnExecutePostUserUpdateAPI) => Promise<void>;
|
|
733
740
|
type OnExecutePostLoginAPI = {
|
|
734
741
|
prompt: {
|
|
735
742
|
render: (formId: string) => void;
|
|
@@ -797,6 +804,7 @@ type Hooks = {
|
|
|
797
804
|
onExecutePreUserRegistration?: OnExecutePreUserRegistration;
|
|
798
805
|
onExecutePostUserRegistration?: OnExecutePostUserRegistration;
|
|
799
806
|
onExecutePreUserUpdate?: OnExecutePreUserUpdate;
|
|
807
|
+
onExecutePostUserUpdate?: OnExecutePostUserUpdate;
|
|
800
808
|
onExecutePostLogin?: OnExecutePostLogin;
|
|
801
809
|
onExecutePreUserDeletion?: OnExecutePreUserDeletion;
|
|
802
810
|
onExecutePostUserDeletion?: OnExecutePostUserDeletion;
|
|
@@ -3007,8 +3015,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3007
3015
|
$get: {
|
|
3008
3016
|
input: {
|
|
3009
3017
|
query: {
|
|
3010
|
-
include_password_hashes?: "
|
|
3011
|
-
gzip?: "
|
|
3018
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3019
|
+
gzip?: "true" | "false" | undefined;
|
|
3012
3020
|
};
|
|
3013
3021
|
} & {
|
|
3014
3022
|
header: {
|
|
@@ -3021,8 +3029,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3021
3029
|
} | {
|
|
3022
3030
|
input: {
|
|
3023
3031
|
query: {
|
|
3024
|
-
include_password_hashes?: "
|
|
3025
|
-
gzip?: "
|
|
3032
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3033
|
+
gzip?: "true" | "false" | undefined;
|
|
3026
3034
|
};
|
|
3027
3035
|
} & {
|
|
3028
3036
|
header: {
|
|
@@ -3041,7 +3049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3041
3049
|
$post: {
|
|
3042
3050
|
input: {
|
|
3043
3051
|
query: {
|
|
3044
|
-
include_password_hashes?: "
|
|
3052
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3045
3053
|
};
|
|
3046
3054
|
} & {
|
|
3047
3055
|
header: {
|
|
@@ -3095,7 +3103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3095
3103
|
};
|
|
3096
3104
|
} & {
|
|
3097
3105
|
json: {
|
|
3098
|
-
type: "email" | "
|
|
3106
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
3099
3107
|
phone_number?: string | undefined;
|
|
3100
3108
|
totp_secret?: string | undefined;
|
|
3101
3109
|
credential_id?: string | undefined;
|
|
@@ -3235,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3235
3243
|
};
|
|
3236
3244
|
};
|
|
3237
3245
|
output: {
|
|
3238
|
-
name: "
|
|
3246
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3239
3247
|
enabled: boolean;
|
|
3240
3248
|
trial_expired?: boolean | undefined;
|
|
3241
3249
|
}[];
|
|
@@ -3390,7 +3398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3390
3398
|
$get: {
|
|
3391
3399
|
input: {
|
|
3392
3400
|
param: {
|
|
3393
|
-
factor_name: "
|
|
3401
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3394
3402
|
};
|
|
3395
3403
|
} & {
|
|
3396
3404
|
header: {
|
|
@@ -3398,7 +3406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3398
3406
|
};
|
|
3399
3407
|
};
|
|
3400
3408
|
output: {
|
|
3401
|
-
name: "
|
|
3409
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3402
3410
|
enabled: boolean;
|
|
3403
3411
|
trial_expired?: boolean | undefined;
|
|
3404
3412
|
};
|
|
@@ -3411,7 +3419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3411
3419
|
$put: {
|
|
3412
3420
|
input: {
|
|
3413
3421
|
param: {
|
|
3414
|
-
factor_name: "
|
|
3422
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3415
3423
|
};
|
|
3416
3424
|
} & {
|
|
3417
3425
|
header: {
|
|
@@ -3423,7 +3431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3423
3431
|
};
|
|
3424
3432
|
};
|
|
3425
3433
|
output: {
|
|
3426
|
-
name: "
|
|
3434
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3427
3435
|
enabled: boolean;
|
|
3428
3436
|
trial_expired?: boolean | undefined;
|
|
3429
3437
|
};
|
|
@@ -4168,12 +4176,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4168
4176
|
invitee: {
|
|
4169
4177
|
email?: string | undefined;
|
|
4170
4178
|
};
|
|
4171
|
-
connection_id?: string | undefined;
|
|
4172
4179
|
id?: string | undefined;
|
|
4173
4180
|
app_metadata?: Record<string, any> | undefined;
|
|
4174
4181
|
user_metadata?: Record<string, any> | undefined;
|
|
4175
|
-
|
|
4182
|
+
connection_id?: string | undefined;
|
|
4176
4183
|
roles?: string[] | undefined;
|
|
4184
|
+
ttl_sec?: number | undefined;
|
|
4177
4185
|
send_invitation_email?: boolean | undefined;
|
|
4178
4186
|
};
|
|
4179
4187
|
};
|
|
@@ -4221,7 +4229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4221
4229
|
};
|
|
4222
4230
|
output: {};
|
|
4223
4231
|
outputFormat: string;
|
|
4224
|
-
status:
|
|
4232
|
+
status: 404;
|
|
4225
4233
|
} | {
|
|
4226
4234
|
input: {
|
|
4227
4235
|
param: {
|
|
@@ -4235,7 +4243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4235
4243
|
};
|
|
4236
4244
|
output: {};
|
|
4237
4245
|
outputFormat: string;
|
|
4238
|
-
status:
|
|
4246
|
+
status: 204;
|
|
4239
4247
|
};
|
|
4240
4248
|
};
|
|
4241
4249
|
} & {
|
|
@@ -5599,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5599
5607
|
hint?: string | undefined;
|
|
5600
5608
|
messages?: {
|
|
5601
5609
|
text: string;
|
|
5602
|
-
type: "
|
|
5610
|
+
type: "error" | "success" | "info" | "warning";
|
|
5603
5611
|
id?: number | undefined;
|
|
5604
5612
|
}[] | undefined;
|
|
5605
5613
|
required?: boolean | undefined;
|
|
@@ -5617,7 +5625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5617
5625
|
hint?: string | undefined;
|
|
5618
5626
|
messages?: {
|
|
5619
5627
|
text: string;
|
|
5620
|
-
type: "
|
|
5628
|
+
type: "error" | "success" | "info" | "warning";
|
|
5621
5629
|
id?: number | undefined;
|
|
5622
5630
|
}[] | undefined;
|
|
5623
5631
|
required?: boolean | undefined;
|
|
@@ -5641,7 +5649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5641
5649
|
hint?: string | undefined;
|
|
5642
5650
|
messages?: {
|
|
5643
5651
|
text: string;
|
|
5644
|
-
type: "
|
|
5652
|
+
type: "error" | "success" | "info" | "warning";
|
|
5645
5653
|
id?: number | undefined;
|
|
5646
5654
|
}[] | undefined;
|
|
5647
5655
|
required?: boolean | undefined;
|
|
@@ -5665,7 +5673,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5665
5673
|
hint?: string | undefined;
|
|
5666
5674
|
messages?: {
|
|
5667
5675
|
text: string;
|
|
5668
|
-
type: "
|
|
5676
|
+
type: "error" | "success" | "info" | "warning";
|
|
5669
5677
|
id?: number | undefined;
|
|
5670
5678
|
}[] | undefined;
|
|
5671
5679
|
required?: boolean | undefined;
|
|
@@ -5689,7 +5697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5689
5697
|
hint?: string | undefined;
|
|
5690
5698
|
messages?: {
|
|
5691
5699
|
text: string;
|
|
5692
|
-
type: "
|
|
5700
|
+
type: "error" | "success" | "info" | "warning";
|
|
5693
5701
|
id?: number | undefined;
|
|
5694
5702
|
}[] | undefined;
|
|
5695
5703
|
required?: boolean | undefined;
|
|
@@ -5718,7 +5726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5718
5726
|
hint?: string | undefined;
|
|
5719
5727
|
messages?: {
|
|
5720
5728
|
text: string;
|
|
5721
|
-
type: "
|
|
5729
|
+
type: "error" | "success" | "info" | "warning";
|
|
5722
5730
|
id?: number | undefined;
|
|
5723
5731
|
}[] | undefined;
|
|
5724
5732
|
required?: boolean | undefined;
|
|
@@ -5733,7 +5741,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5733
5741
|
hint?: string | undefined;
|
|
5734
5742
|
messages?: {
|
|
5735
5743
|
text: string;
|
|
5736
|
-
type: "
|
|
5744
|
+
type: "error" | "success" | "info" | "warning";
|
|
5737
5745
|
id?: number | undefined;
|
|
5738
5746
|
}[] | undefined;
|
|
5739
5747
|
required?: boolean | undefined;
|
|
@@ -5754,7 +5762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5754
5762
|
hint?: string | undefined;
|
|
5755
5763
|
messages?: {
|
|
5756
5764
|
text: string;
|
|
5757
|
-
type: "
|
|
5765
|
+
type: "error" | "success" | "info" | "warning";
|
|
5758
5766
|
id?: number | undefined;
|
|
5759
5767
|
}[] | undefined;
|
|
5760
5768
|
required?: boolean | undefined;
|
|
@@ -5779,7 +5787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5779
5787
|
hint?: string | undefined;
|
|
5780
5788
|
messages?: {
|
|
5781
5789
|
text: string;
|
|
5782
|
-
type: "
|
|
5790
|
+
type: "error" | "success" | "info" | "warning";
|
|
5783
5791
|
id?: number | undefined;
|
|
5784
5792
|
}[] | undefined;
|
|
5785
5793
|
required?: boolean | undefined;
|
|
@@ -5798,7 +5806,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5798
5806
|
hint?: string | undefined;
|
|
5799
5807
|
messages?: {
|
|
5800
5808
|
text: string;
|
|
5801
|
-
type: "
|
|
5809
|
+
type: "error" | "success" | "info" | "warning";
|
|
5802
5810
|
id?: number | undefined;
|
|
5803
5811
|
}[] | undefined;
|
|
5804
5812
|
required?: boolean | undefined;
|
|
@@ -5818,7 +5826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5818
5826
|
hint?: string | undefined;
|
|
5819
5827
|
messages?: {
|
|
5820
5828
|
text: string;
|
|
5821
|
-
type: "
|
|
5829
|
+
type: "error" | "success" | "info" | "warning";
|
|
5822
5830
|
id?: number | undefined;
|
|
5823
5831
|
}[] | undefined;
|
|
5824
5832
|
required?: boolean | undefined;
|
|
@@ -5837,7 +5845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5837
5845
|
hint?: string | undefined;
|
|
5838
5846
|
messages?: {
|
|
5839
5847
|
text: string;
|
|
5840
|
-
type: "
|
|
5848
|
+
type: "error" | "success" | "info" | "warning";
|
|
5841
5849
|
id?: number | undefined;
|
|
5842
5850
|
}[] | undefined;
|
|
5843
5851
|
required?: boolean | undefined;
|
|
@@ -5859,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5859
5867
|
hint?: string | undefined;
|
|
5860
5868
|
messages?: {
|
|
5861
5869
|
text: string;
|
|
5862
|
-
type: "
|
|
5870
|
+
type: "error" | "success" | "info" | "warning";
|
|
5863
5871
|
id?: number | undefined;
|
|
5864
5872
|
}[] | undefined;
|
|
5865
5873
|
required?: boolean | undefined;
|
|
@@ -5881,7 +5889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5881
5889
|
hint?: string | undefined;
|
|
5882
5890
|
messages?: {
|
|
5883
5891
|
text: string;
|
|
5884
|
-
type: "
|
|
5892
|
+
type: "error" | "success" | "info" | "warning";
|
|
5885
5893
|
id?: number | undefined;
|
|
5886
5894
|
}[] | undefined;
|
|
5887
5895
|
required?: boolean | undefined;
|
|
@@ -5900,7 +5908,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5900
5908
|
hint?: string | undefined;
|
|
5901
5909
|
messages?: {
|
|
5902
5910
|
text: string;
|
|
5903
|
-
type: "
|
|
5911
|
+
type: "error" | "success" | "info" | "warning";
|
|
5904
5912
|
id?: number | undefined;
|
|
5905
5913
|
}[] | undefined;
|
|
5906
5914
|
required?: boolean | undefined;
|
|
@@ -5925,7 +5933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5925
5933
|
hint?: string | undefined;
|
|
5926
5934
|
messages?: {
|
|
5927
5935
|
text: string;
|
|
5928
|
-
type: "
|
|
5936
|
+
type: "error" | "success" | "info" | "warning";
|
|
5929
5937
|
id?: number | undefined;
|
|
5930
5938
|
}[] | undefined;
|
|
5931
5939
|
required?: boolean | undefined;
|
|
@@ -5946,7 +5954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5946
5954
|
hint?: string | undefined;
|
|
5947
5955
|
messages?: {
|
|
5948
5956
|
text: string;
|
|
5949
|
-
type: "
|
|
5957
|
+
type: "error" | "success" | "info" | "warning";
|
|
5950
5958
|
id?: number | undefined;
|
|
5951
5959
|
}[] | undefined;
|
|
5952
5960
|
required?: boolean | undefined;
|
|
@@ -5967,7 +5975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5967
5975
|
hint?: string | undefined;
|
|
5968
5976
|
messages?: {
|
|
5969
5977
|
text: string;
|
|
5970
|
-
type: "
|
|
5978
|
+
type: "error" | "success" | "info" | "warning";
|
|
5971
5979
|
id?: number | undefined;
|
|
5972
5980
|
}[] | undefined;
|
|
5973
5981
|
required?: boolean | undefined;
|
|
@@ -6200,7 +6208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6200
6208
|
hint?: string | undefined;
|
|
6201
6209
|
messages?: {
|
|
6202
6210
|
text: string;
|
|
6203
|
-
type: "
|
|
6211
|
+
type: "error" | "success" | "info" | "warning";
|
|
6204
6212
|
id?: number | undefined;
|
|
6205
6213
|
}[] | undefined;
|
|
6206
6214
|
required?: boolean | undefined;
|
|
@@ -6218,7 +6226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6218
6226
|
hint?: string | undefined;
|
|
6219
6227
|
messages?: {
|
|
6220
6228
|
text: string;
|
|
6221
|
-
type: "
|
|
6229
|
+
type: "error" | "success" | "info" | "warning";
|
|
6222
6230
|
id?: number | undefined;
|
|
6223
6231
|
}[] | undefined;
|
|
6224
6232
|
required?: boolean | undefined;
|
|
@@ -6242,7 +6250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6242
6250
|
hint?: string | undefined;
|
|
6243
6251
|
messages?: {
|
|
6244
6252
|
text: string;
|
|
6245
|
-
type: "
|
|
6253
|
+
type: "error" | "success" | "info" | "warning";
|
|
6246
6254
|
id?: number | undefined;
|
|
6247
6255
|
}[] | undefined;
|
|
6248
6256
|
required?: boolean | undefined;
|
|
@@ -6266,7 +6274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6266
6274
|
hint?: string | undefined;
|
|
6267
6275
|
messages?: {
|
|
6268
6276
|
text: string;
|
|
6269
|
-
type: "
|
|
6277
|
+
type: "error" | "success" | "info" | "warning";
|
|
6270
6278
|
id?: number | undefined;
|
|
6271
6279
|
}[] | undefined;
|
|
6272
6280
|
required?: boolean | undefined;
|
|
@@ -6290,7 +6298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6290
6298
|
hint?: string | undefined;
|
|
6291
6299
|
messages?: {
|
|
6292
6300
|
text: string;
|
|
6293
|
-
type: "
|
|
6301
|
+
type: "error" | "success" | "info" | "warning";
|
|
6294
6302
|
id?: number | undefined;
|
|
6295
6303
|
}[] | undefined;
|
|
6296
6304
|
required?: boolean | undefined;
|
|
@@ -6319,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6319
6327
|
hint?: string | undefined;
|
|
6320
6328
|
messages?: {
|
|
6321
6329
|
text: string;
|
|
6322
|
-
type: "
|
|
6330
|
+
type: "error" | "success" | "info" | "warning";
|
|
6323
6331
|
id?: number | undefined;
|
|
6324
6332
|
}[] | undefined;
|
|
6325
6333
|
required?: boolean | undefined;
|
|
@@ -6334,7 +6342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6334
6342
|
hint?: string | undefined;
|
|
6335
6343
|
messages?: {
|
|
6336
6344
|
text: string;
|
|
6337
|
-
type: "
|
|
6345
|
+
type: "error" | "success" | "info" | "warning";
|
|
6338
6346
|
id?: number | undefined;
|
|
6339
6347
|
}[] | undefined;
|
|
6340
6348
|
required?: boolean | undefined;
|
|
@@ -6355,7 +6363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6355
6363
|
hint?: string | undefined;
|
|
6356
6364
|
messages?: {
|
|
6357
6365
|
text: string;
|
|
6358
|
-
type: "
|
|
6366
|
+
type: "error" | "success" | "info" | "warning";
|
|
6359
6367
|
id?: number | undefined;
|
|
6360
6368
|
}[] | undefined;
|
|
6361
6369
|
required?: boolean | undefined;
|
|
@@ -6380,7 +6388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6380
6388
|
hint?: string | undefined;
|
|
6381
6389
|
messages?: {
|
|
6382
6390
|
text: string;
|
|
6383
|
-
type: "
|
|
6391
|
+
type: "error" | "success" | "info" | "warning";
|
|
6384
6392
|
id?: number | undefined;
|
|
6385
6393
|
}[] | undefined;
|
|
6386
6394
|
required?: boolean | undefined;
|
|
@@ -6399,7 +6407,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6399
6407
|
hint?: string | undefined;
|
|
6400
6408
|
messages?: {
|
|
6401
6409
|
text: string;
|
|
6402
|
-
type: "
|
|
6410
|
+
type: "error" | "success" | "info" | "warning";
|
|
6403
6411
|
id?: number | undefined;
|
|
6404
6412
|
}[] | undefined;
|
|
6405
6413
|
required?: boolean | undefined;
|
|
@@ -6419,7 +6427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6419
6427
|
hint?: string | undefined;
|
|
6420
6428
|
messages?: {
|
|
6421
6429
|
text: string;
|
|
6422
|
-
type: "
|
|
6430
|
+
type: "error" | "success" | "info" | "warning";
|
|
6423
6431
|
id?: number | undefined;
|
|
6424
6432
|
}[] | undefined;
|
|
6425
6433
|
required?: boolean | undefined;
|
|
@@ -6438,7 +6446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6438
6446
|
hint?: string | undefined;
|
|
6439
6447
|
messages?: {
|
|
6440
6448
|
text: string;
|
|
6441
|
-
type: "
|
|
6449
|
+
type: "error" | "success" | "info" | "warning";
|
|
6442
6450
|
id?: number | undefined;
|
|
6443
6451
|
}[] | undefined;
|
|
6444
6452
|
required?: boolean | undefined;
|
|
@@ -6460,7 +6468,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6460
6468
|
hint?: string | undefined;
|
|
6461
6469
|
messages?: {
|
|
6462
6470
|
text: string;
|
|
6463
|
-
type: "
|
|
6471
|
+
type: "error" | "success" | "info" | "warning";
|
|
6464
6472
|
id?: number | undefined;
|
|
6465
6473
|
}[] | undefined;
|
|
6466
6474
|
required?: boolean | undefined;
|
|
@@ -6482,7 +6490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6482
6490
|
hint?: string | undefined;
|
|
6483
6491
|
messages?: {
|
|
6484
6492
|
text: string;
|
|
6485
|
-
type: "
|
|
6493
|
+
type: "error" | "success" | "info" | "warning";
|
|
6486
6494
|
id?: number | undefined;
|
|
6487
6495
|
}[] | undefined;
|
|
6488
6496
|
required?: boolean | undefined;
|
|
@@ -6501,7 +6509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6501
6509
|
hint?: string | undefined;
|
|
6502
6510
|
messages?: {
|
|
6503
6511
|
text: string;
|
|
6504
|
-
type: "
|
|
6512
|
+
type: "error" | "success" | "info" | "warning";
|
|
6505
6513
|
id?: number | undefined;
|
|
6506
6514
|
}[] | undefined;
|
|
6507
6515
|
required?: boolean | undefined;
|
|
@@ -6526,7 +6534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6526
6534
|
hint?: string | undefined;
|
|
6527
6535
|
messages?: {
|
|
6528
6536
|
text: string;
|
|
6529
|
-
type: "
|
|
6537
|
+
type: "error" | "success" | "info" | "warning";
|
|
6530
6538
|
id?: number | undefined;
|
|
6531
6539
|
}[] | undefined;
|
|
6532
6540
|
required?: boolean | undefined;
|
|
@@ -6547,7 +6555,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6547
6555
|
hint?: string | undefined;
|
|
6548
6556
|
messages?: {
|
|
6549
6557
|
text: string;
|
|
6550
|
-
type: "
|
|
6558
|
+
type: "error" | "success" | "info" | "warning";
|
|
6551
6559
|
id?: number | undefined;
|
|
6552
6560
|
}[] | undefined;
|
|
6553
6561
|
required?: boolean | undefined;
|
|
@@ -6568,7 +6576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6568
6576
|
hint?: string | undefined;
|
|
6569
6577
|
messages?: {
|
|
6570
6578
|
text: string;
|
|
6571
|
-
type: "
|
|
6579
|
+
type: "error" | "success" | "info" | "warning";
|
|
6572
6580
|
id?: number | undefined;
|
|
6573
6581
|
}[] | undefined;
|
|
6574
6582
|
required?: boolean | undefined;
|
|
@@ -6816,7 +6824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6816
6824
|
hint?: string | undefined;
|
|
6817
6825
|
messages?: {
|
|
6818
6826
|
text: string;
|
|
6819
|
-
type: "
|
|
6827
|
+
type: "error" | "success" | "info" | "warning";
|
|
6820
6828
|
id?: number | undefined;
|
|
6821
6829
|
}[] | undefined;
|
|
6822
6830
|
required?: boolean | undefined;
|
|
@@ -6834,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6834
6842
|
hint?: string | undefined;
|
|
6835
6843
|
messages?: {
|
|
6836
6844
|
text: string;
|
|
6837
|
-
type: "
|
|
6845
|
+
type: "error" | "success" | "info" | "warning";
|
|
6838
6846
|
id?: number | undefined;
|
|
6839
6847
|
}[] | undefined;
|
|
6840
6848
|
required?: boolean | undefined;
|
|
@@ -6858,7 +6866,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6858
6866
|
hint?: string | undefined;
|
|
6859
6867
|
messages?: {
|
|
6860
6868
|
text: string;
|
|
6861
|
-
type: "
|
|
6869
|
+
type: "error" | "success" | "info" | "warning";
|
|
6862
6870
|
id?: number | undefined;
|
|
6863
6871
|
}[] | undefined;
|
|
6864
6872
|
required?: boolean | undefined;
|
|
@@ -6882,7 +6890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6882
6890
|
hint?: string | undefined;
|
|
6883
6891
|
messages?: {
|
|
6884
6892
|
text: string;
|
|
6885
|
-
type: "
|
|
6893
|
+
type: "error" | "success" | "info" | "warning";
|
|
6886
6894
|
id?: number | undefined;
|
|
6887
6895
|
}[] | undefined;
|
|
6888
6896
|
required?: boolean | undefined;
|
|
@@ -6906,7 +6914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6906
6914
|
hint?: string | undefined;
|
|
6907
6915
|
messages?: {
|
|
6908
6916
|
text: string;
|
|
6909
|
-
type: "
|
|
6917
|
+
type: "error" | "success" | "info" | "warning";
|
|
6910
6918
|
id?: number | undefined;
|
|
6911
6919
|
}[] | undefined;
|
|
6912
6920
|
required?: boolean | undefined;
|
|
@@ -6935,7 +6943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6935
6943
|
hint?: string | undefined;
|
|
6936
6944
|
messages?: {
|
|
6937
6945
|
text: string;
|
|
6938
|
-
type: "
|
|
6946
|
+
type: "error" | "success" | "info" | "warning";
|
|
6939
6947
|
id?: number | undefined;
|
|
6940
6948
|
}[] | undefined;
|
|
6941
6949
|
required?: boolean | undefined;
|
|
@@ -6950,7 +6958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6950
6958
|
hint?: string | undefined;
|
|
6951
6959
|
messages?: {
|
|
6952
6960
|
text: string;
|
|
6953
|
-
type: "
|
|
6961
|
+
type: "error" | "success" | "info" | "warning";
|
|
6954
6962
|
id?: number | undefined;
|
|
6955
6963
|
}[] | undefined;
|
|
6956
6964
|
required?: boolean | undefined;
|
|
@@ -6971,7 +6979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6971
6979
|
hint?: string | undefined;
|
|
6972
6980
|
messages?: {
|
|
6973
6981
|
text: string;
|
|
6974
|
-
type: "
|
|
6982
|
+
type: "error" | "success" | "info" | "warning";
|
|
6975
6983
|
id?: number | undefined;
|
|
6976
6984
|
}[] | undefined;
|
|
6977
6985
|
required?: boolean | undefined;
|
|
@@ -6996,7 +7004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6996
7004
|
hint?: string | undefined;
|
|
6997
7005
|
messages?: {
|
|
6998
7006
|
text: string;
|
|
6999
|
-
type: "
|
|
7007
|
+
type: "error" | "success" | "info" | "warning";
|
|
7000
7008
|
id?: number | undefined;
|
|
7001
7009
|
}[] | undefined;
|
|
7002
7010
|
required?: boolean | undefined;
|
|
@@ -7015,7 +7023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7015
7023
|
hint?: string | undefined;
|
|
7016
7024
|
messages?: {
|
|
7017
7025
|
text: string;
|
|
7018
|
-
type: "
|
|
7026
|
+
type: "error" | "success" | "info" | "warning";
|
|
7019
7027
|
id?: number | undefined;
|
|
7020
7028
|
}[] | undefined;
|
|
7021
7029
|
required?: boolean | undefined;
|
|
@@ -7035,7 +7043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7035
7043
|
hint?: string | undefined;
|
|
7036
7044
|
messages?: {
|
|
7037
7045
|
text: string;
|
|
7038
|
-
type: "
|
|
7046
|
+
type: "error" | "success" | "info" | "warning";
|
|
7039
7047
|
id?: number | undefined;
|
|
7040
7048
|
}[] | undefined;
|
|
7041
7049
|
required?: boolean | undefined;
|
|
@@ -7054,7 +7062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7054
7062
|
hint?: string | undefined;
|
|
7055
7063
|
messages?: {
|
|
7056
7064
|
text: string;
|
|
7057
|
-
type: "
|
|
7065
|
+
type: "error" | "success" | "info" | "warning";
|
|
7058
7066
|
id?: number | undefined;
|
|
7059
7067
|
}[] | undefined;
|
|
7060
7068
|
required?: boolean | undefined;
|
|
@@ -7076,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7076
7084
|
hint?: string | undefined;
|
|
7077
7085
|
messages?: {
|
|
7078
7086
|
text: string;
|
|
7079
|
-
type: "
|
|
7087
|
+
type: "error" | "success" | "info" | "warning";
|
|
7080
7088
|
id?: number | undefined;
|
|
7081
7089
|
}[] | undefined;
|
|
7082
7090
|
required?: boolean | undefined;
|
|
@@ -7098,7 +7106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7098
7106
|
hint?: string | undefined;
|
|
7099
7107
|
messages?: {
|
|
7100
7108
|
text: string;
|
|
7101
|
-
type: "
|
|
7109
|
+
type: "error" | "success" | "info" | "warning";
|
|
7102
7110
|
id?: number | undefined;
|
|
7103
7111
|
}[] | undefined;
|
|
7104
7112
|
required?: boolean | undefined;
|
|
@@ -7117,7 +7125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7117
7125
|
hint?: string | undefined;
|
|
7118
7126
|
messages?: {
|
|
7119
7127
|
text: string;
|
|
7120
|
-
type: "
|
|
7128
|
+
type: "error" | "success" | "info" | "warning";
|
|
7121
7129
|
id?: number | undefined;
|
|
7122
7130
|
}[] | undefined;
|
|
7123
7131
|
required?: boolean | undefined;
|
|
@@ -7142,7 +7150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7142
7150
|
hint?: string | undefined;
|
|
7143
7151
|
messages?: {
|
|
7144
7152
|
text: string;
|
|
7145
|
-
type: "
|
|
7153
|
+
type: "error" | "success" | "info" | "warning";
|
|
7146
7154
|
id?: number | undefined;
|
|
7147
7155
|
}[] | undefined;
|
|
7148
7156
|
required?: boolean | undefined;
|
|
@@ -7163,7 +7171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7163
7171
|
hint?: string | undefined;
|
|
7164
7172
|
messages?: {
|
|
7165
7173
|
text: string;
|
|
7166
|
-
type: "
|
|
7174
|
+
type: "error" | "success" | "info" | "warning";
|
|
7167
7175
|
id?: number | undefined;
|
|
7168
7176
|
}[] | undefined;
|
|
7169
7177
|
required?: boolean | undefined;
|
|
@@ -7184,7 +7192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7184
7192
|
hint?: string | undefined;
|
|
7185
7193
|
messages?: {
|
|
7186
7194
|
text: string;
|
|
7187
|
-
type: "
|
|
7195
|
+
type: "error" | "success" | "info" | "warning";
|
|
7188
7196
|
id?: number | undefined;
|
|
7189
7197
|
}[] | undefined;
|
|
7190
7198
|
required?: boolean | undefined;
|
|
@@ -7438,7 +7446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7438
7446
|
hint?: string | undefined;
|
|
7439
7447
|
messages?: {
|
|
7440
7448
|
text: string;
|
|
7441
|
-
type: "
|
|
7449
|
+
type: "error" | "success" | "info" | "warning";
|
|
7442
7450
|
id?: number | undefined;
|
|
7443
7451
|
}[] | undefined;
|
|
7444
7452
|
required?: boolean | undefined;
|
|
@@ -7456,7 +7464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7456
7464
|
hint?: string | undefined;
|
|
7457
7465
|
messages?: {
|
|
7458
7466
|
text: string;
|
|
7459
|
-
type: "
|
|
7467
|
+
type: "error" | "success" | "info" | "warning";
|
|
7460
7468
|
id?: number | undefined;
|
|
7461
7469
|
}[] | undefined;
|
|
7462
7470
|
required?: boolean | undefined;
|
|
@@ -7480,7 +7488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7480
7488
|
hint?: string | undefined;
|
|
7481
7489
|
messages?: {
|
|
7482
7490
|
text: string;
|
|
7483
|
-
type: "
|
|
7491
|
+
type: "error" | "success" | "info" | "warning";
|
|
7484
7492
|
id?: number | undefined;
|
|
7485
7493
|
}[] | undefined;
|
|
7486
7494
|
required?: boolean | undefined;
|
|
@@ -7504,7 +7512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7504
7512
|
hint?: string | undefined;
|
|
7505
7513
|
messages?: {
|
|
7506
7514
|
text: string;
|
|
7507
|
-
type: "
|
|
7515
|
+
type: "error" | "success" | "info" | "warning";
|
|
7508
7516
|
id?: number | undefined;
|
|
7509
7517
|
}[] | undefined;
|
|
7510
7518
|
required?: boolean | undefined;
|
|
@@ -7528,7 +7536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7528
7536
|
hint?: string | undefined;
|
|
7529
7537
|
messages?: {
|
|
7530
7538
|
text: string;
|
|
7531
|
-
type: "
|
|
7539
|
+
type: "error" | "success" | "info" | "warning";
|
|
7532
7540
|
id?: number | undefined;
|
|
7533
7541
|
}[] | undefined;
|
|
7534
7542
|
required?: boolean | undefined;
|
|
@@ -7553,7 +7561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7553
7561
|
hint?: string | undefined;
|
|
7554
7562
|
messages?: {
|
|
7555
7563
|
text: string;
|
|
7556
|
-
type: "
|
|
7564
|
+
type: "error" | "success" | "info" | "warning";
|
|
7557
7565
|
id?: number | undefined;
|
|
7558
7566
|
}[] | undefined;
|
|
7559
7567
|
required?: boolean | undefined;
|
|
@@ -7568,7 +7576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7568
7576
|
hint?: string | undefined;
|
|
7569
7577
|
messages?: {
|
|
7570
7578
|
text: string;
|
|
7571
|
-
type: "
|
|
7579
|
+
type: "error" | "success" | "info" | "warning";
|
|
7572
7580
|
id?: number | undefined;
|
|
7573
7581
|
}[] | undefined;
|
|
7574
7582
|
required?: boolean | undefined;
|
|
@@ -7589,7 +7597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7589
7597
|
hint?: string | undefined;
|
|
7590
7598
|
messages?: {
|
|
7591
7599
|
text: string;
|
|
7592
|
-
type: "
|
|
7600
|
+
type: "error" | "success" | "info" | "warning";
|
|
7593
7601
|
id?: number | undefined;
|
|
7594
7602
|
}[] | undefined;
|
|
7595
7603
|
required?: boolean | undefined;
|
|
@@ -7614,7 +7622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7614
7622
|
hint?: string | undefined;
|
|
7615
7623
|
messages?: {
|
|
7616
7624
|
text: string;
|
|
7617
|
-
type: "
|
|
7625
|
+
type: "error" | "success" | "info" | "warning";
|
|
7618
7626
|
id?: number | undefined;
|
|
7619
7627
|
}[] | undefined;
|
|
7620
7628
|
required?: boolean | undefined;
|
|
@@ -7633,7 +7641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7633
7641
|
hint?: string | undefined;
|
|
7634
7642
|
messages?: {
|
|
7635
7643
|
text: string;
|
|
7636
|
-
type: "
|
|
7644
|
+
type: "error" | "success" | "info" | "warning";
|
|
7637
7645
|
id?: number | undefined;
|
|
7638
7646
|
}[] | undefined;
|
|
7639
7647
|
required?: boolean | undefined;
|
|
@@ -7653,7 +7661,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7653
7661
|
hint?: string | undefined;
|
|
7654
7662
|
messages?: {
|
|
7655
7663
|
text: string;
|
|
7656
|
-
type: "
|
|
7664
|
+
type: "error" | "success" | "info" | "warning";
|
|
7657
7665
|
id?: number | undefined;
|
|
7658
7666
|
}[] | undefined;
|
|
7659
7667
|
required?: boolean | undefined;
|
|
@@ -7672,7 +7680,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7672
7680
|
hint?: string | undefined;
|
|
7673
7681
|
messages?: {
|
|
7674
7682
|
text: string;
|
|
7675
|
-
type: "
|
|
7683
|
+
type: "error" | "success" | "info" | "warning";
|
|
7676
7684
|
id?: number | undefined;
|
|
7677
7685
|
}[] | undefined;
|
|
7678
7686
|
required?: boolean | undefined;
|
|
@@ -7694,7 +7702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7694
7702
|
hint?: string | undefined;
|
|
7695
7703
|
messages?: {
|
|
7696
7704
|
text: string;
|
|
7697
|
-
type: "
|
|
7705
|
+
type: "error" | "success" | "info" | "warning";
|
|
7698
7706
|
id?: number | undefined;
|
|
7699
7707
|
}[] | undefined;
|
|
7700
7708
|
required?: boolean | undefined;
|
|
@@ -7716,7 +7724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7716
7724
|
hint?: string | undefined;
|
|
7717
7725
|
messages?: {
|
|
7718
7726
|
text: string;
|
|
7719
|
-
type: "
|
|
7727
|
+
type: "error" | "success" | "info" | "warning";
|
|
7720
7728
|
id?: number | undefined;
|
|
7721
7729
|
}[] | undefined;
|
|
7722
7730
|
required?: boolean | undefined;
|
|
@@ -7735,7 +7743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7735
7743
|
hint?: string | undefined;
|
|
7736
7744
|
messages?: {
|
|
7737
7745
|
text: string;
|
|
7738
|
-
type: "
|
|
7746
|
+
type: "error" | "success" | "info" | "warning";
|
|
7739
7747
|
id?: number | undefined;
|
|
7740
7748
|
}[] | undefined;
|
|
7741
7749
|
required?: boolean | undefined;
|
|
@@ -7760,7 +7768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7760
7768
|
hint?: string | undefined;
|
|
7761
7769
|
messages?: {
|
|
7762
7770
|
text: string;
|
|
7763
|
-
type: "
|
|
7771
|
+
type: "error" | "success" | "info" | "warning";
|
|
7764
7772
|
id?: number | undefined;
|
|
7765
7773
|
}[] | undefined;
|
|
7766
7774
|
required?: boolean | undefined;
|
|
@@ -7781,7 +7789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7781
7789
|
hint?: string | undefined;
|
|
7782
7790
|
messages?: {
|
|
7783
7791
|
text: string;
|
|
7784
|
-
type: "
|
|
7792
|
+
type: "error" | "success" | "info" | "warning";
|
|
7785
7793
|
id?: number | undefined;
|
|
7786
7794
|
}[] | undefined;
|
|
7787
7795
|
required?: boolean | undefined;
|
|
@@ -7802,7 +7810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7802
7810
|
hint?: string | undefined;
|
|
7803
7811
|
messages?: {
|
|
7804
7812
|
text: string;
|
|
7805
|
-
type: "
|
|
7813
|
+
type: "error" | "success" | "info" | "warning";
|
|
7806
7814
|
id?: number | undefined;
|
|
7807
7815
|
}[] | undefined;
|
|
7808
7816
|
required?: boolean | undefined;
|
|
@@ -8033,7 +8041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8033
8041
|
hint?: string | undefined;
|
|
8034
8042
|
messages?: {
|
|
8035
8043
|
text: string;
|
|
8036
|
-
type: "
|
|
8044
|
+
type: "error" | "success" | "info" | "warning";
|
|
8037
8045
|
id?: number | undefined;
|
|
8038
8046
|
}[] | undefined;
|
|
8039
8047
|
required?: boolean | undefined;
|
|
@@ -8051,7 +8059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8051
8059
|
hint?: string | undefined;
|
|
8052
8060
|
messages?: {
|
|
8053
8061
|
text: string;
|
|
8054
|
-
type: "
|
|
8062
|
+
type: "error" | "success" | "info" | "warning";
|
|
8055
8063
|
id?: number | undefined;
|
|
8056
8064
|
}[] | undefined;
|
|
8057
8065
|
required?: boolean | undefined;
|
|
@@ -8075,7 +8083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8075
8083
|
hint?: string | undefined;
|
|
8076
8084
|
messages?: {
|
|
8077
8085
|
text: string;
|
|
8078
|
-
type: "
|
|
8086
|
+
type: "error" | "success" | "info" | "warning";
|
|
8079
8087
|
id?: number | undefined;
|
|
8080
8088
|
}[] | undefined;
|
|
8081
8089
|
required?: boolean | undefined;
|
|
@@ -8099,7 +8107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8099
8107
|
hint?: string | undefined;
|
|
8100
8108
|
messages?: {
|
|
8101
8109
|
text: string;
|
|
8102
|
-
type: "
|
|
8110
|
+
type: "error" | "success" | "info" | "warning";
|
|
8103
8111
|
id?: number | undefined;
|
|
8104
8112
|
}[] | undefined;
|
|
8105
8113
|
required?: boolean | undefined;
|
|
@@ -8123,7 +8131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8123
8131
|
hint?: string | undefined;
|
|
8124
8132
|
messages?: {
|
|
8125
8133
|
text: string;
|
|
8126
|
-
type: "
|
|
8134
|
+
type: "error" | "success" | "info" | "warning";
|
|
8127
8135
|
id?: number | undefined;
|
|
8128
8136
|
}[] | undefined;
|
|
8129
8137
|
required?: boolean | undefined;
|
|
@@ -8152,7 +8160,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8152
8160
|
hint?: string | undefined;
|
|
8153
8161
|
messages?: {
|
|
8154
8162
|
text: string;
|
|
8155
|
-
type: "
|
|
8163
|
+
type: "error" | "success" | "info" | "warning";
|
|
8156
8164
|
id?: number | undefined;
|
|
8157
8165
|
}[] | undefined;
|
|
8158
8166
|
required?: boolean | undefined;
|
|
@@ -8167,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8167
8175
|
hint?: string | undefined;
|
|
8168
8176
|
messages?: {
|
|
8169
8177
|
text: string;
|
|
8170
|
-
type: "
|
|
8178
|
+
type: "error" | "success" | "info" | "warning";
|
|
8171
8179
|
id?: number | undefined;
|
|
8172
8180
|
}[] | undefined;
|
|
8173
8181
|
required?: boolean | undefined;
|
|
@@ -8188,7 +8196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8188
8196
|
hint?: string | undefined;
|
|
8189
8197
|
messages?: {
|
|
8190
8198
|
text: string;
|
|
8191
|
-
type: "
|
|
8199
|
+
type: "error" | "success" | "info" | "warning";
|
|
8192
8200
|
id?: number | undefined;
|
|
8193
8201
|
}[] | undefined;
|
|
8194
8202
|
required?: boolean | undefined;
|
|
@@ -8213,7 +8221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8213
8221
|
hint?: string | undefined;
|
|
8214
8222
|
messages?: {
|
|
8215
8223
|
text: string;
|
|
8216
|
-
type: "
|
|
8224
|
+
type: "error" | "success" | "info" | "warning";
|
|
8217
8225
|
id?: number | undefined;
|
|
8218
8226
|
}[] | undefined;
|
|
8219
8227
|
required?: boolean | undefined;
|
|
@@ -8232,7 +8240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8232
8240
|
hint?: string | undefined;
|
|
8233
8241
|
messages?: {
|
|
8234
8242
|
text: string;
|
|
8235
|
-
type: "
|
|
8243
|
+
type: "error" | "success" | "info" | "warning";
|
|
8236
8244
|
id?: number | undefined;
|
|
8237
8245
|
}[] | undefined;
|
|
8238
8246
|
required?: boolean | undefined;
|
|
@@ -8252,7 +8260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8252
8260
|
hint?: string | undefined;
|
|
8253
8261
|
messages?: {
|
|
8254
8262
|
text: string;
|
|
8255
|
-
type: "
|
|
8263
|
+
type: "error" | "success" | "info" | "warning";
|
|
8256
8264
|
id?: number | undefined;
|
|
8257
8265
|
}[] | undefined;
|
|
8258
8266
|
required?: boolean | undefined;
|
|
@@ -8271,7 +8279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8271
8279
|
hint?: string | undefined;
|
|
8272
8280
|
messages?: {
|
|
8273
8281
|
text: string;
|
|
8274
|
-
type: "
|
|
8282
|
+
type: "error" | "success" | "info" | "warning";
|
|
8275
8283
|
id?: number | undefined;
|
|
8276
8284
|
}[] | undefined;
|
|
8277
8285
|
required?: boolean | undefined;
|
|
@@ -8293,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8293
8301
|
hint?: string | undefined;
|
|
8294
8302
|
messages?: {
|
|
8295
8303
|
text: string;
|
|
8296
|
-
type: "
|
|
8304
|
+
type: "error" | "success" | "info" | "warning";
|
|
8297
8305
|
id?: number | undefined;
|
|
8298
8306
|
}[] | undefined;
|
|
8299
8307
|
required?: boolean | undefined;
|
|
@@ -8315,7 +8323,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8315
8323
|
hint?: string | undefined;
|
|
8316
8324
|
messages?: {
|
|
8317
8325
|
text: string;
|
|
8318
|
-
type: "
|
|
8326
|
+
type: "error" | "success" | "info" | "warning";
|
|
8319
8327
|
id?: number | undefined;
|
|
8320
8328
|
}[] | undefined;
|
|
8321
8329
|
required?: boolean | undefined;
|
|
@@ -8334,7 +8342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8334
8342
|
hint?: string | undefined;
|
|
8335
8343
|
messages?: {
|
|
8336
8344
|
text: string;
|
|
8337
|
-
type: "
|
|
8345
|
+
type: "error" | "success" | "info" | "warning";
|
|
8338
8346
|
id?: number | undefined;
|
|
8339
8347
|
}[] | undefined;
|
|
8340
8348
|
required?: boolean | undefined;
|
|
@@ -8359,7 +8367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8359
8367
|
hint?: string | undefined;
|
|
8360
8368
|
messages?: {
|
|
8361
8369
|
text: string;
|
|
8362
|
-
type: "
|
|
8370
|
+
type: "error" | "success" | "info" | "warning";
|
|
8363
8371
|
id?: number | undefined;
|
|
8364
8372
|
}[] | undefined;
|
|
8365
8373
|
required?: boolean | undefined;
|
|
@@ -8380,7 +8388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8380
8388
|
hint?: string | undefined;
|
|
8381
8389
|
messages?: {
|
|
8382
8390
|
text: string;
|
|
8383
|
-
type: "
|
|
8391
|
+
type: "error" | "success" | "info" | "warning";
|
|
8384
8392
|
id?: number | undefined;
|
|
8385
8393
|
}[] | undefined;
|
|
8386
8394
|
required?: boolean | undefined;
|
|
@@ -8401,7 +8409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8401
8409
|
hint?: string | undefined;
|
|
8402
8410
|
messages?: {
|
|
8403
8411
|
text: string;
|
|
8404
|
-
type: "
|
|
8412
|
+
type: "error" | "success" | "info" | "warning";
|
|
8405
8413
|
id?: number | undefined;
|
|
8406
8414
|
}[] | undefined;
|
|
8407
8415
|
required?: boolean | undefined;
|
|
@@ -8634,7 +8642,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8634
8642
|
hint?: string | undefined;
|
|
8635
8643
|
messages?: {
|
|
8636
8644
|
text: string;
|
|
8637
|
-
type: "
|
|
8645
|
+
type: "error" | "success" | "info" | "warning";
|
|
8638
8646
|
id?: number | undefined;
|
|
8639
8647
|
}[] | undefined;
|
|
8640
8648
|
required?: boolean | undefined;
|
|
@@ -8652,7 +8660,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8652
8660
|
hint?: string | undefined;
|
|
8653
8661
|
messages?: {
|
|
8654
8662
|
text: string;
|
|
8655
|
-
type: "
|
|
8663
|
+
type: "error" | "success" | "info" | "warning";
|
|
8656
8664
|
id?: number | undefined;
|
|
8657
8665
|
}[] | undefined;
|
|
8658
8666
|
required?: boolean | undefined;
|
|
@@ -8676,7 +8684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8676
8684
|
hint?: string | undefined;
|
|
8677
8685
|
messages?: {
|
|
8678
8686
|
text: string;
|
|
8679
|
-
type: "
|
|
8687
|
+
type: "error" | "success" | "info" | "warning";
|
|
8680
8688
|
id?: number | undefined;
|
|
8681
8689
|
}[] | undefined;
|
|
8682
8690
|
required?: boolean | undefined;
|
|
@@ -8700,7 +8708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8700
8708
|
hint?: string | undefined;
|
|
8701
8709
|
messages?: {
|
|
8702
8710
|
text: string;
|
|
8703
|
-
type: "
|
|
8711
|
+
type: "error" | "success" | "info" | "warning";
|
|
8704
8712
|
id?: number | undefined;
|
|
8705
8713
|
}[] | undefined;
|
|
8706
8714
|
required?: boolean | undefined;
|
|
@@ -8724,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8724
8732
|
hint?: string | undefined;
|
|
8725
8733
|
messages?: {
|
|
8726
8734
|
text: string;
|
|
8727
|
-
type: "
|
|
8735
|
+
type: "error" | "success" | "info" | "warning";
|
|
8728
8736
|
id?: number | undefined;
|
|
8729
8737
|
}[] | undefined;
|
|
8730
8738
|
required?: boolean | undefined;
|
|
@@ -8749,7 +8757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8749
8757
|
hint?: string | undefined;
|
|
8750
8758
|
messages?: {
|
|
8751
8759
|
text: string;
|
|
8752
|
-
type: "
|
|
8760
|
+
type: "error" | "success" | "info" | "warning";
|
|
8753
8761
|
id?: number | undefined;
|
|
8754
8762
|
}[] | undefined;
|
|
8755
8763
|
required?: boolean | undefined;
|
|
@@ -8764,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8764
8772
|
hint?: string | undefined;
|
|
8765
8773
|
messages?: {
|
|
8766
8774
|
text: string;
|
|
8767
|
-
type: "
|
|
8775
|
+
type: "error" | "success" | "info" | "warning";
|
|
8768
8776
|
id?: number | undefined;
|
|
8769
8777
|
}[] | undefined;
|
|
8770
8778
|
required?: boolean | undefined;
|
|
@@ -8785,7 +8793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8785
8793
|
hint?: string | undefined;
|
|
8786
8794
|
messages?: {
|
|
8787
8795
|
text: string;
|
|
8788
|
-
type: "
|
|
8796
|
+
type: "error" | "success" | "info" | "warning";
|
|
8789
8797
|
id?: number | undefined;
|
|
8790
8798
|
}[] | undefined;
|
|
8791
8799
|
required?: boolean | undefined;
|
|
@@ -8810,7 +8818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8810
8818
|
hint?: string | undefined;
|
|
8811
8819
|
messages?: {
|
|
8812
8820
|
text: string;
|
|
8813
|
-
type: "
|
|
8821
|
+
type: "error" | "success" | "info" | "warning";
|
|
8814
8822
|
id?: number | undefined;
|
|
8815
8823
|
}[] | undefined;
|
|
8816
8824
|
required?: boolean | undefined;
|
|
@@ -8829,7 +8837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8829
8837
|
hint?: string | undefined;
|
|
8830
8838
|
messages?: {
|
|
8831
8839
|
text: string;
|
|
8832
|
-
type: "
|
|
8840
|
+
type: "error" | "success" | "info" | "warning";
|
|
8833
8841
|
id?: number | undefined;
|
|
8834
8842
|
}[] | undefined;
|
|
8835
8843
|
required?: boolean | undefined;
|
|
@@ -8849,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8849
8857
|
hint?: string | undefined;
|
|
8850
8858
|
messages?: {
|
|
8851
8859
|
text: string;
|
|
8852
|
-
type: "
|
|
8860
|
+
type: "error" | "success" | "info" | "warning";
|
|
8853
8861
|
id?: number | undefined;
|
|
8854
8862
|
}[] | undefined;
|
|
8855
8863
|
required?: boolean | undefined;
|
|
@@ -8868,7 +8876,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8868
8876
|
hint?: string | undefined;
|
|
8869
8877
|
messages?: {
|
|
8870
8878
|
text: string;
|
|
8871
|
-
type: "
|
|
8879
|
+
type: "error" | "success" | "info" | "warning";
|
|
8872
8880
|
id?: number | undefined;
|
|
8873
8881
|
}[] | undefined;
|
|
8874
8882
|
required?: boolean | undefined;
|
|
@@ -8890,7 +8898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8890
8898
|
hint?: string | undefined;
|
|
8891
8899
|
messages?: {
|
|
8892
8900
|
text: string;
|
|
8893
|
-
type: "
|
|
8901
|
+
type: "error" | "success" | "info" | "warning";
|
|
8894
8902
|
id?: number | undefined;
|
|
8895
8903
|
}[] | undefined;
|
|
8896
8904
|
required?: boolean | undefined;
|
|
@@ -8912,7 +8920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8912
8920
|
hint?: string | undefined;
|
|
8913
8921
|
messages?: {
|
|
8914
8922
|
text: string;
|
|
8915
|
-
type: "
|
|
8923
|
+
type: "error" | "success" | "info" | "warning";
|
|
8916
8924
|
id?: number | undefined;
|
|
8917
8925
|
}[] | undefined;
|
|
8918
8926
|
required?: boolean | undefined;
|
|
@@ -8931,7 +8939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8931
8939
|
hint?: string | undefined;
|
|
8932
8940
|
messages?: {
|
|
8933
8941
|
text: string;
|
|
8934
|
-
type: "
|
|
8942
|
+
type: "error" | "success" | "info" | "warning";
|
|
8935
8943
|
id?: number | undefined;
|
|
8936
8944
|
}[] | undefined;
|
|
8937
8945
|
required?: boolean | undefined;
|
|
@@ -8956,7 +8964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8956
8964
|
hint?: string | undefined;
|
|
8957
8965
|
messages?: {
|
|
8958
8966
|
text: string;
|
|
8959
|
-
type: "
|
|
8967
|
+
type: "error" | "success" | "info" | "warning";
|
|
8960
8968
|
id?: number | undefined;
|
|
8961
8969
|
}[] | undefined;
|
|
8962
8970
|
required?: boolean | undefined;
|
|
@@ -8977,7 +8985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8977
8985
|
hint?: string | undefined;
|
|
8978
8986
|
messages?: {
|
|
8979
8987
|
text: string;
|
|
8980
|
-
type: "
|
|
8988
|
+
type: "error" | "success" | "info" | "warning";
|
|
8981
8989
|
id?: number | undefined;
|
|
8982
8990
|
}[] | undefined;
|
|
8983
8991
|
required?: boolean | undefined;
|
|
@@ -8998,7 +9006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8998
9006
|
hint?: string | undefined;
|
|
8999
9007
|
messages?: {
|
|
9000
9008
|
text: string;
|
|
9001
|
-
type: "
|
|
9009
|
+
type: "error" | "success" | "info" | "warning";
|
|
9002
9010
|
id?: number | undefined;
|
|
9003
9011
|
}[] | undefined;
|
|
9004
9012
|
required?: boolean | undefined;
|
|
@@ -9229,7 +9237,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9229
9237
|
hint?: string | undefined;
|
|
9230
9238
|
messages?: {
|
|
9231
9239
|
text: string;
|
|
9232
|
-
type: "
|
|
9240
|
+
type: "error" | "success" | "info" | "warning";
|
|
9233
9241
|
id?: number | undefined;
|
|
9234
9242
|
}[] | undefined;
|
|
9235
9243
|
required?: boolean | undefined;
|
|
@@ -9247,7 +9255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9247
9255
|
hint?: string | undefined;
|
|
9248
9256
|
messages?: {
|
|
9249
9257
|
text: string;
|
|
9250
|
-
type: "
|
|
9258
|
+
type: "error" | "success" | "info" | "warning";
|
|
9251
9259
|
id?: number | undefined;
|
|
9252
9260
|
}[] | undefined;
|
|
9253
9261
|
required?: boolean | undefined;
|
|
@@ -9271,7 +9279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9271
9279
|
hint?: string | undefined;
|
|
9272
9280
|
messages?: {
|
|
9273
9281
|
text: string;
|
|
9274
|
-
type: "
|
|
9282
|
+
type: "error" | "success" | "info" | "warning";
|
|
9275
9283
|
id?: number | undefined;
|
|
9276
9284
|
}[] | undefined;
|
|
9277
9285
|
required?: boolean | undefined;
|
|
@@ -9295,7 +9303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9295
9303
|
hint?: string | undefined;
|
|
9296
9304
|
messages?: {
|
|
9297
9305
|
text: string;
|
|
9298
|
-
type: "
|
|
9306
|
+
type: "error" | "success" | "info" | "warning";
|
|
9299
9307
|
id?: number | undefined;
|
|
9300
9308
|
}[] | undefined;
|
|
9301
9309
|
required?: boolean | undefined;
|
|
@@ -9319,7 +9327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9319
9327
|
hint?: string | undefined;
|
|
9320
9328
|
messages?: {
|
|
9321
9329
|
text: string;
|
|
9322
|
-
type: "
|
|
9330
|
+
type: "error" | "success" | "info" | "warning";
|
|
9323
9331
|
id?: number | undefined;
|
|
9324
9332
|
}[] | undefined;
|
|
9325
9333
|
required?: boolean | undefined;
|
|
@@ -9348,7 +9356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9348
9356
|
hint?: string | undefined;
|
|
9349
9357
|
messages?: {
|
|
9350
9358
|
text: string;
|
|
9351
|
-
type: "
|
|
9359
|
+
type: "error" | "success" | "info" | "warning";
|
|
9352
9360
|
id?: number | undefined;
|
|
9353
9361
|
}[] | undefined;
|
|
9354
9362
|
required?: boolean | undefined;
|
|
@@ -9363,7 +9371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9363
9371
|
hint?: string | undefined;
|
|
9364
9372
|
messages?: {
|
|
9365
9373
|
text: string;
|
|
9366
|
-
type: "
|
|
9374
|
+
type: "error" | "success" | "info" | "warning";
|
|
9367
9375
|
id?: number | undefined;
|
|
9368
9376
|
}[] | undefined;
|
|
9369
9377
|
required?: boolean | undefined;
|
|
@@ -9384,7 +9392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9384
9392
|
hint?: string | undefined;
|
|
9385
9393
|
messages?: {
|
|
9386
9394
|
text: string;
|
|
9387
|
-
type: "
|
|
9395
|
+
type: "error" | "success" | "info" | "warning";
|
|
9388
9396
|
id?: number | undefined;
|
|
9389
9397
|
}[] | undefined;
|
|
9390
9398
|
required?: boolean | undefined;
|
|
@@ -9409,7 +9417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9409
9417
|
hint?: string | undefined;
|
|
9410
9418
|
messages?: {
|
|
9411
9419
|
text: string;
|
|
9412
|
-
type: "
|
|
9420
|
+
type: "error" | "success" | "info" | "warning";
|
|
9413
9421
|
id?: number | undefined;
|
|
9414
9422
|
}[] | undefined;
|
|
9415
9423
|
required?: boolean | undefined;
|
|
@@ -9428,7 +9436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9428
9436
|
hint?: string | undefined;
|
|
9429
9437
|
messages?: {
|
|
9430
9438
|
text: string;
|
|
9431
|
-
type: "
|
|
9439
|
+
type: "error" | "success" | "info" | "warning";
|
|
9432
9440
|
id?: number | undefined;
|
|
9433
9441
|
}[] | undefined;
|
|
9434
9442
|
required?: boolean | undefined;
|
|
@@ -9448,7 +9456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9448
9456
|
hint?: string | undefined;
|
|
9449
9457
|
messages?: {
|
|
9450
9458
|
text: string;
|
|
9451
|
-
type: "
|
|
9459
|
+
type: "error" | "success" | "info" | "warning";
|
|
9452
9460
|
id?: number | undefined;
|
|
9453
9461
|
}[] | undefined;
|
|
9454
9462
|
required?: boolean | undefined;
|
|
@@ -9467,7 +9475,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9467
9475
|
hint?: string | undefined;
|
|
9468
9476
|
messages?: {
|
|
9469
9477
|
text: string;
|
|
9470
|
-
type: "
|
|
9478
|
+
type: "error" | "success" | "info" | "warning";
|
|
9471
9479
|
id?: number | undefined;
|
|
9472
9480
|
}[] | undefined;
|
|
9473
9481
|
required?: boolean | undefined;
|
|
@@ -9489,7 +9497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9489
9497
|
hint?: string | undefined;
|
|
9490
9498
|
messages?: {
|
|
9491
9499
|
text: string;
|
|
9492
|
-
type: "
|
|
9500
|
+
type: "error" | "success" | "info" | "warning";
|
|
9493
9501
|
id?: number | undefined;
|
|
9494
9502
|
}[] | undefined;
|
|
9495
9503
|
required?: boolean | undefined;
|
|
@@ -9511,7 +9519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9511
9519
|
hint?: string | undefined;
|
|
9512
9520
|
messages?: {
|
|
9513
9521
|
text: string;
|
|
9514
|
-
type: "
|
|
9522
|
+
type: "error" | "success" | "info" | "warning";
|
|
9515
9523
|
id?: number | undefined;
|
|
9516
9524
|
}[] | undefined;
|
|
9517
9525
|
required?: boolean | undefined;
|
|
@@ -9530,7 +9538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9530
9538
|
hint?: string | undefined;
|
|
9531
9539
|
messages?: {
|
|
9532
9540
|
text: string;
|
|
9533
|
-
type: "
|
|
9541
|
+
type: "error" | "success" | "info" | "warning";
|
|
9534
9542
|
id?: number | undefined;
|
|
9535
9543
|
}[] | undefined;
|
|
9536
9544
|
required?: boolean | undefined;
|
|
@@ -9555,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9555
9563
|
hint?: string | undefined;
|
|
9556
9564
|
messages?: {
|
|
9557
9565
|
text: string;
|
|
9558
|
-
type: "
|
|
9566
|
+
type: "error" | "success" | "info" | "warning";
|
|
9559
9567
|
id?: number | undefined;
|
|
9560
9568
|
}[] | undefined;
|
|
9561
9569
|
required?: boolean | undefined;
|
|
@@ -9576,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9576
9584
|
hint?: string | undefined;
|
|
9577
9585
|
messages?: {
|
|
9578
9586
|
text: string;
|
|
9579
|
-
type: "
|
|
9587
|
+
type: "error" | "success" | "info" | "warning";
|
|
9580
9588
|
id?: number | undefined;
|
|
9581
9589
|
}[] | undefined;
|
|
9582
9590
|
required?: boolean | undefined;
|
|
@@ -9597,7 +9605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9597
9605
|
hint?: string | undefined;
|
|
9598
9606
|
messages?: {
|
|
9599
9607
|
text: string;
|
|
9600
|
-
type: "
|
|
9608
|
+
type: "error" | "success" | "info" | "warning";
|
|
9601
9609
|
id?: number | undefined;
|
|
9602
9610
|
}[] | undefined;
|
|
9603
9611
|
required?: boolean | undefined;
|
|
@@ -9827,7 +9835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9827
9835
|
};
|
|
9828
9836
|
};
|
|
9829
9837
|
output: {
|
|
9830
|
-
prompt: "
|
|
9838
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9831
9839
|
language: string;
|
|
9832
9840
|
}[];
|
|
9833
9841
|
outputFormat: "json";
|
|
@@ -9865,7 +9873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9865
9873
|
$get: {
|
|
9866
9874
|
input: {
|
|
9867
9875
|
param: {
|
|
9868
|
-
prompt: "
|
|
9876
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9869
9877
|
language: string;
|
|
9870
9878
|
};
|
|
9871
9879
|
} & {
|
|
@@ -9887,7 +9895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9887
9895
|
$put: {
|
|
9888
9896
|
input: {
|
|
9889
9897
|
param: {
|
|
9890
|
-
prompt: "
|
|
9898
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9891
9899
|
language: string;
|
|
9892
9900
|
};
|
|
9893
9901
|
} & {
|
|
@@ -9911,7 +9919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9911
9919
|
$delete: {
|
|
9912
9920
|
input: {
|
|
9913
9921
|
param: {
|
|
9914
|
-
prompt: "
|
|
9922
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9915
9923
|
language: string;
|
|
9916
9924
|
};
|
|
9917
9925
|
} & {
|
|
@@ -10050,7 +10058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10050
10058
|
} | undefined;
|
|
10051
10059
|
} | undefined;
|
|
10052
10060
|
passkey_options?: {
|
|
10053
|
-
challenge_ui?: "
|
|
10061
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10054
10062
|
local_enrollment_enabled?: boolean | undefined;
|
|
10055
10063
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10056
10064
|
} | undefined;
|
|
@@ -10184,7 +10192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10184
10192
|
} | undefined;
|
|
10185
10193
|
} | undefined;
|
|
10186
10194
|
passkey_options?: {
|
|
10187
|
-
challenge_ui?: "
|
|
10195
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10188
10196
|
local_enrollment_enabled?: boolean | undefined;
|
|
10189
10197
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10190
10198
|
} | undefined;
|
|
@@ -10333,7 +10341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10333
10341
|
} | undefined;
|
|
10334
10342
|
} | undefined;
|
|
10335
10343
|
passkey_options?: {
|
|
10336
|
-
challenge_ui?: "
|
|
10344
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10337
10345
|
local_enrollment_enabled?: boolean | undefined;
|
|
10338
10346
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10339
10347
|
} | undefined;
|
|
@@ -10512,7 +10520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10512
10520
|
} | undefined;
|
|
10513
10521
|
} | undefined;
|
|
10514
10522
|
passkey_options?: {
|
|
10515
|
-
challenge_ui?: "
|
|
10523
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10516
10524
|
local_enrollment_enabled?: boolean | undefined;
|
|
10517
10525
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10518
10526
|
} | undefined;
|
|
@@ -10670,7 +10678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10670
10678
|
} | undefined;
|
|
10671
10679
|
} | undefined;
|
|
10672
10680
|
passkey_options?: {
|
|
10673
|
-
challenge_ui?: "
|
|
10681
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10674
10682
|
local_enrollment_enabled?: boolean | undefined;
|
|
10675
10683
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10676
10684
|
} | undefined;
|
|
@@ -10773,7 +10781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10773
10781
|
};
|
|
10774
10782
|
} | {
|
|
10775
10783
|
mode: "inline";
|
|
10776
|
-
status: "
|
|
10784
|
+
status: "error" | "success";
|
|
10777
10785
|
connection_id: string;
|
|
10778
10786
|
connection_name: string;
|
|
10779
10787
|
strategy: string;
|
|
@@ -11343,7 +11351,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11343
11351
|
};
|
|
11344
11352
|
output: {};
|
|
11345
11353
|
outputFormat: string;
|
|
11346
|
-
status:
|
|
11354
|
+
status: 404;
|
|
11347
11355
|
} | {
|
|
11348
11356
|
input: {
|
|
11349
11357
|
param: {
|
|
@@ -11360,7 +11368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11360
11368
|
};
|
|
11361
11369
|
output: {};
|
|
11362
11370
|
outputFormat: string;
|
|
11363
|
-
status:
|
|
11371
|
+
status: 400;
|
|
11364
11372
|
} | {
|
|
11365
11373
|
input: {
|
|
11366
11374
|
param: {
|
|
@@ -11412,7 +11420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11412
11420
|
log_type: string;
|
|
11413
11421
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11414
11422
|
actor: {
|
|
11415
|
-
type: "
|
|
11423
|
+
type: "api_key" | "client_credentials" | "user" | "system" | "admin";
|
|
11416
11424
|
id?: string | undefined;
|
|
11417
11425
|
email?: string | undefined;
|
|
11418
11426
|
org_id?: string | undefined;
|
|
@@ -12060,7 +12068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12060
12068
|
};
|
|
12061
12069
|
};
|
|
12062
12070
|
output: {
|
|
12063
|
-
type: "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" | "
|
|
12071
|
+
type: "i" | "s" | "fn" | "fc" | "fd" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12064
12072
|
date: string;
|
|
12065
12073
|
isMobile: boolean;
|
|
12066
12074
|
log_id: string;
|
|
@@ -12099,7 +12107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12099
12107
|
limit: number;
|
|
12100
12108
|
length: number;
|
|
12101
12109
|
logs: {
|
|
12102
|
-
type: "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" | "
|
|
12110
|
+
type: "i" | "s" | "fn" | "fc" | "fd" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12103
12111
|
date: string;
|
|
12104
12112
|
isMobile: boolean;
|
|
12105
12113
|
log_id: string;
|
|
@@ -12153,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12153
12161
|
};
|
|
12154
12162
|
};
|
|
12155
12163
|
output: {
|
|
12156
|
-
type: "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" | "
|
|
12164
|
+
type: "i" | "s" | "fn" | "fc" | "fd" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12157
12165
|
date: string;
|
|
12158
12166
|
isMobile: boolean;
|
|
12159
12167
|
log_id: string;
|
|
@@ -12308,7 +12316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12308
12316
|
audience?: string | undefined;
|
|
12309
12317
|
client_id?: string | undefined;
|
|
12310
12318
|
allow_any_organization?: string | undefined;
|
|
12311
|
-
subject_type?: "
|
|
12319
|
+
subject_type?: "client" | "user" | undefined;
|
|
12312
12320
|
};
|
|
12313
12321
|
} & {
|
|
12314
12322
|
header: {
|
|
@@ -12323,7 +12331,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12323
12331
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12324
12332
|
allow_any_organization?: boolean | undefined;
|
|
12325
12333
|
is_system?: boolean | undefined;
|
|
12326
|
-
subject_type?: "
|
|
12334
|
+
subject_type?: "client" | "user" | undefined;
|
|
12327
12335
|
authorization_details_types?: string[] | undefined;
|
|
12328
12336
|
created_at?: string | undefined;
|
|
12329
12337
|
updated_at?: string | undefined;
|
|
@@ -12339,7 +12347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12339
12347
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12340
12348
|
allow_any_organization?: boolean | undefined;
|
|
12341
12349
|
is_system?: boolean | undefined;
|
|
12342
|
-
subject_type?: "
|
|
12350
|
+
subject_type?: "client" | "user" | undefined;
|
|
12343
12351
|
authorization_details_types?: string[] | undefined;
|
|
12344
12352
|
created_at?: string | undefined;
|
|
12345
12353
|
updated_at?: string | undefined;
|
|
@@ -12370,7 +12378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12370
12378
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12371
12379
|
allow_any_organization?: boolean | undefined;
|
|
12372
12380
|
is_system?: boolean | undefined;
|
|
12373
|
-
subject_type?: "
|
|
12381
|
+
subject_type?: "client" | "user" | undefined;
|
|
12374
12382
|
authorization_details_types?: string[] | undefined;
|
|
12375
12383
|
created_at?: string | undefined;
|
|
12376
12384
|
updated_at?: string | undefined;
|
|
@@ -12415,7 +12423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12415
12423
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12416
12424
|
allow_any_organization?: boolean | undefined;
|
|
12417
12425
|
is_system?: boolean | undefined;
|
|
12418
|
-
subject_type?: "
|
|
12426
|
+
subject_type?: "client" | "user" | undefined;
|
|
12419
12427
|
authorization_details_types?: string[] | undefined;
|
|
12420
12428
|
};
|
|
12421
12429
|
};
|
|
@@ -12427,7 +12435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12427
12435
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12428
12436
|
allow_any_organization?: boolean | undefined;
|
|
12429
12437
|
is_system?: boolean | undefined;
|
|
12430
|
-
subject_type?: "
|
|
12438
|
+
subject_type?: "client" | "user" | undefined;
|
|
12431
12439
|
authorization_details_types?: string[] | undefined;
|
|
12432
12440
|
created_at?: string | undefined;
|
|
12433
12441
|
updated_at?: string | undefined;
|
|
@@ -12451,7 +12459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12451
12459
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12452
12460
|
allow_any_organization?: boolean | undefined;
|
|
12453
12461
|
is_system?: boolean | undefined;
|
|
12454
|
-
subject_type?: "
|
|
12462
|
+
subject_type?: "client" | "user" | undefined;
|
|
12455
12463
|
authorization_details_types?: string[] | undefined;
|
|
12456
12464
|
};
|
|
12457
12465
|
};
|
|
@@ -12463,7 +12471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12463
12471
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12464
12472
|
allow_any_organization?: boolean | undefined;
|
|
12465
12473
|
is_system?: boolean | undefined;
|
|
12466
|
-
subject_type?: "
|
|
12474
|
+
subject_type?: "client" | "user" | undefined;
|
|
12467
12475
|
authorization_details_types?: string[] | undefined;
|
|
12468
12476
|
created_at?: string | undefined;
|
|
12469
12477
|
updated_at?: string | undefined;
|
|
@@ -12541,7 +12549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12541
12549
|
addons?: {
|
|
12542
12550
|
[x: string]: any;
|
|
12543
12551
|
} | undefined;
|
|
12544
|
-
token_endpoint_auth_method?: "
|
|
12552
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12545
12553
|
client_metadata?: {
|
|
12546
12554
|
[x: string]: string;
|
|
12547
12555
|
} | undefined;
|
|
@@ -12637,7 +12645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12637
12645
|
addons?: {
|
|
12638
12646
|
[x: string]: any;
|
|
12639
12647
|
} | undefined;
|
|
12640
|
-
token_endpoint_auth_method?: "
|
|
12648
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12641
12649
|
client_metadata?: {
|
|
12642
12650
|
[x: string]: string;
|
|
12643
12651
|
} | undefined;
|
|
@@ -12748,7 +12756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12748
12756
|
addons?: {
|
|
12749
12757
|
[x: string]: any;
|
|
12750
12758
|
} | undefined;
|
|
12751
|
-
token_endpoint_auth_method?: "
|
|
12759
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12752
12760
|
client_metadata?: {
|
|
12753
12761
|
[x: string]: string;
|
|
12754
12762
|
} | undefined;
|
|
@@ -12858,7 +12866,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12858
12866
|
custom_login_page_preview?: string | undefined;
|
|
12859
12867
|
form_template?: string | undefined;
|
|
12860
12868
|
addons?: Record<string, any> | undefined;
|
|
12861
|
-
token_endpoint_auth_method?: "
|
|
12869
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12862
12870
|
client_metadata?: Record<string, string> | undefined;
|
|
12863
12871
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12864
12872
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12938,7 +12946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12938
12946
|
addons?: {
|
|
12939
12947
|
[x: string]: any;
|
|
12940
12948
|
} | undefined;
|
|
12941
|
-
token_endpoint_auth_method?: "
|
|
12949
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12942
12950
|
client_metadata?: {
|
|
12943
12951
|
[x: string]: string;
|
|
12944
12952
|
} | undefined;
|
|
@@ -13027,7 +13035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13027
13035
|
custom_login_page_preview?: string | undefined;
|
|
13028
13036
|
form_template?: string | undefined;
|
|
13029
13037
|
addons?: Record<string, any> | undefined;
|
|
13030
|
-
token_endpoint_auth_method?: "
|
|
13038
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13031
13039
|
client_metadata?: Record<string, string> | undefined;
|
|
13032
13040
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13033
13041
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13107,7 +13115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13107
13115
|
addons?: {
|
|
13108
13116
|
[x: string]: any;
|
|
13109
13117
|
} | undefined;
|
|
13110
|
-
token_endpoint_auth_method?: "
|
|
13118
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13111
13119
|
client_metadata?: {
|
|
13112
13120
|
[x: string]: string;
|
|
13113
13121
|
} | undefined;
|
|
@@ -13276,7 +13284,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13276
13284
|
} | undefined;
|
|
13277
13285
|
} | undefined;
|
|
13278
13286
|
passkey_options?: {
|
|
13279
|
-
challenge_ui?: "
|
|
13287
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
13280
13288
|
local_enrollment_enabled?: boolean | undefined;
|
|
13281
13289
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
13282
13290
|
} | undefined;
|
|
@@ -13430,7 +13438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13430
13438
|
} | undefined;
|
|
13431
13439
|
} | undefined;
|
|
13432
13440
|
passkey_options?: {
|
|
13433
|
-
challenge_ui?: "
|
|
13441
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
13434
13442
|
local_enrollment_enabled?: boolean | undefined;
|
|
13435
13443
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
13436
13444
|
} | undefined;
|
|
@@ -14371,7 +14379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14371
14379
|
};
|
|
14372
14380
|
};
|
|
14373
14381
|
output: {
|
|
14374
|
-
type: "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" | "
|
|
14382
|
+
type: "i" | "s" | "fn" | "fc" | "fd" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14375
14383
|
date: string;
|
|
14376
14384
|
isMobile: boolean;
|
|
14377
14385
|
log_id: string;
|
|
@@ -14410,7 +14418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14410
14418
|
limit: number;
|
|
14411
14419
|
length: number;
|
|
14412
14420
|
logs: {
|
|
14413
|
-
type: "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" | "
|
|
14421
|
+
type: "i" | "s" | "fn" | "fc" | "fd" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14414
14422
|
date: string;
|
|
14415
14423
|
isMobile: boolean;
|
|
14416
14424
|
log_id: string;
|
|
@@ -14725,7 +14733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14725
14733
|
};
|
|
14726
14734
|
} & {
|
|
14727
14735
|
json: {
|
|
14728
|
-
template: "
|
|
14736
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14729
14737
|
body: string;
|
|
14730
14738
|
from: string;
|
|
14731
14739
|
subject: string;
|
|
@@ -14746,7 +14754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14746
14754
|
};
|
|
14747
14755
|
} & {
|
|
14748
14756
|
json: {
|
|
14749
|
-
template: "
|
|
14757
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14750
14758
|
body: string;
|
|
14751
14759
|
from: string;
|
|
14752
14760
|
subject: string;
|
|
@@ -14758,7 +14766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14758
14766
|
};
|
|
14759
14767
|
};
|
|
14760
14768
|
output: {
|
|
14761
|
-
template: "
|
|
14769
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14762
14770
|
body: string;
|
|
14763
14771
|
from: string;
|
|
14764
14772
|
subject: string;
|
|
@@ -14781,7 +14789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14781
14789
|
};
|
|
14782
14790
|
};
|
|
14783
14791
|
output: {
|
|
14784
|
-
name: "
|
|
14792
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14785
14793
|
body: string;
|
|
14786
14794
|
subject: string;
|
|
14787
14795
|
}[];
|
|
@@ -14794,7 +14802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14794
14802
|
$get: {
|
|
14795
14803
|
input: {
|
|
14796
14804
|
param: {
|
|
14797
|
-
templateName: "
|
|
14805
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14798
14806
|
};
|
|
14799
14807
|
} & {
|
|
14800
14808
|
header: {
|
|
@@ -14807,7 +14815,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14807
14815
|
} | {
|
|
14808
14816
|
input: {
|
|
14809
14817
|
param: {
|
|
14810
|
-
templateName: "
|
|
14818
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14811
14819
|
};
|
|
14812
14820
|
} & {
|
|
14813
14821
|
header: {
|
|
@@ -14815,7 +14823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14815
14823
|
};
|
|
14816
14824
|
};
|
|
14817
14825
|
output: {
|
|
14818
|
-
template: "
|
|
14826
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14819
14827
|
body: string;
|
|
14820
14828
|
from: string;
|
|
14821
14829
|
subject: string;
|
|
@@ -14834,7 +14842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14834
14842
|
$put: {
|
|
14835
14843
|
input: {
|
|
14836
14844
|
param: {
|
|
14837
|
-
templateName: "
|
|
14845
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14838
14846
|
};
|
|
14839
14847
|
} & {
|
|
14840
14848
|
header: {
|
|
@@ -14842,7 +14850,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14842
14850
|
};
|
|
14843
14851
|
} & {
|
|
14844
14852
|
json: {
|
|
14845
|
-
template: "
|
|
14853
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14846
14854
|
body: string;
|
|
14847
14855
|
subject: string;
|
|
14848
14856
|
syntax?: "liquid" | undefined;
|
|
@@ -14854,7 +14862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14862
|
};
|
|
14855
14863
|
};
|
|
14856
14864
|
output: {
|
|
14857
|
-
template: "
|
|
14865
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14858
14866
|
body: string;
|
|
14859
14867
|
from: string;
|
|
14860
14868
|
subject: string;
|
|
@@ -14873,7 +14881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14873
14881
|
$patch: {
|
|
14874
14882
|
input: {
|
|
14875
14883
|
param: {
|
|
14876
|
-
templateName: "
|
|
14884
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14877
14885
|
};
|
|
14878
14886
|
} & {
|
|
14879
14887
|
header: {
|
|
@@ -14881,7 +14889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14881
14889
|
};
|
|
14882
14890
|
} & {
|
|
14883
14891
|
json: {
|
|
14884
|
-
template?: "
|
|
14892
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14885
14893
|
body?: string | undefined;
|
|
14886
14894
|
from?: string | undefined;
|
|
14887
14895
|
subject?: string | undefined;
|
|
@@ -14898,7 +14906,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14898
14906
|
} | {
|
|
14899
14907
|
input: {
|
|
14900
14908
|
param: {
|
|
14901
|
-
templateName: "
|
|
14909
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14902
14910
|
};
|
|
14903
14911
|
} & {
|
|
14904
14912
|
header: {
|
|
@@ -14906,7 +14914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14906
14914
|
};
|
|
14907
14915
|
} & {
|
|
14908
14916
|
json: {
|
|
14909
|
-
template?: "
|
|
14917
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14910
14918
|
body?: string | undefined;
|
|
14911
14919
|
from?: string | undefined;
|
|
14912
14920
|
subject?: string | undefined;
|
|
@@ -14918,7 +14926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14918
14926
|
};
|
|
14919
14927
|
};
|
|
14920
14928
|
output: {
|
|
14921
|
-
template: "
|
|
14929
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14922
14930
|
body: string;
|
|
14923
14931
|
from: string;
|
|
14924
14932
|
subject: string;
|
|
@@ -14937,7 +14945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14937
14945
|
$delete: {
|
|
14938
14946
|
input: {
|
|
14939
14947
|
param: {
|
|
14940
|
-
templateName: "
|
|
14948
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14941
14949
|
};
|
|
14942
14950
|
} & {
|
|
14943
14951
|
header: {
|
|
@@ -14946,11 +14954,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14946
14954
|
};
|
|
14947
14955
|
output: {};
|
|
14948
14956
|
outputFormat: string;
|
|
14949
|
-
status:
|
|
14957
|
+
status: 404;
|
|
14950
14958
|
} | {
|
|
14951
14959
|
input: {
|
|
14952
14960
|
param: {
|
|
14953
|
-
templateName: "
|
|
14961
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14954
14962
|
};
|
|
14955
14963
|
} & {
|
|
14956
14964
|
header: {
|
|
@@ -14959,7 +14967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14959
14967
|
};
|
|
14960
14968
|
output: {};
|
|
14961
14969
|
outputFormat: string;
|
|
14962
|
-
status:
|
|
14970
|
+
status: 204;
|
|
14963
14971
|
};
|
|
14964
14972
|
};
|
|
14965
14973
|
} & {
|
|
@@ -14967,7 +14975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14967
14975
|
$post: {
|
|
14968
14976
|
input: {
|
|
14969
14977
|
param: {
|
|
14970
|
-
templateName: "
|
|
14978
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14971
14979
|
};
|
|
14972
14980
|
} & {
|
|
14973
14981
|
header: {
|
|
@@ -15095,7 +15103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15095
15103
|
};
|
|
15096
15104
|
output: {};
|
|
15097
15105
|
outputFormat: string;
|
|
15098
|
-
status:
|
|
15106
|
+
status: 404;
|
|
15099
15107
|
} | {
|
|
15100
15108
|
input: {
|
|
15101
15109
|
header: {
|
|
@@ -15104,7 +15112,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15104
15112
|
};
|
|
15105
15113
|
output: {};
|
|
15106
15114
|
outputFormat: string;
|
|
15107
|
-
status:
|
|
15115
|
+
status: 204;
|
|
15108
15116
|
};
|
|
15109
15117
|
};
|
|
15110
15118
|
}, "/emails/provider"> & hono_types.MergeSchemaPath<{
|
|
@@ -15213,7 +15221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15213
15221
|
};
|
|
15214
15222
|
output: {};
|
|
15215
15223
|
outputFormat: string;
|
|
15216
|
-
status:
|
|
15224
|
+
status: 404;
|
|
15217
15225
|
} | {
|
|
15218
15226
|
input: {
|
|
15219
15227
|
header: {
|
|
@@ -15222,7 +15230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15222
15230
|
};
|
|
15223
15231
|
output: {};
|
|
15224
15232
|
outputFormat: string;
|
|
15225
|
-
status:
|
|
15233
|
+
status: 204;
|
|
15226
15234
|
};
|
|
15227
15235
|
};
|
|
15228
15236
|
}, "/email/providers"> & hono_types.MergeSchemaPath<{
|
|
@@ -15250,7 +15258,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15250
15258
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15251
15259
|
custom_domain_id: string;
|
|
15252
15260
|
primary: boolean;
|
|
15253
|
-
status: "
|
|
15261
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15254
15262
|
verification_method?: "txt" | undefined;
|
|
15255
15263
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15256
15264
|
domain_metadata?: {
|
|
@@ -15291,7 +15299,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15291
15299
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15292
15300
|
custom_domain_id: string;
|
|
15293
15301
|
primary: boolean;
|
|
15294
|
-
status: "
|
|
15302
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15295
15303
|
verification_method?: "txt" | undefined;
|
|
15296
15304
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15297
15305
|
domain_metadata?: {
|
|
@@ -15355,7 +15363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15355
15363
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15356
15364
|
custom_domain_id: string;
|
|
15357
15365
|
primary: boolean;
|
|
15358
|
-
status: "
|
|
15366
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15359
15367
|
verification_method?: "txt" | undefined;
|
|
15360
15368
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15361
15369
|
domain_metadata?: {
|
|
@@ -15402,7 +15410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15402
15410
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15403
15411
|
custom_domain_id: string;
|
|
15404
15412
|
primary: boolean;
|
|
15405
|
-
status: "
|
|
15413
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15406
15414
|
verification_method?: "txt" | undefined;
|
|
15407
15415
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15408
15416
|
domain_metadata?: {
|
|
@@ -15448,7 +15456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15448
15456
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15449
15457
|
custom_domain_id: string;
|
|
15450
15458
|
primary: boolean;
|
|
15451
|
-
status: "
|
|
15459
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15452
15460
|
verification_method?: "txt" | undefined;
|
|
15453
15461
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15454
15462
|
domain_metadata?: {
|
|
@@ -15489,7 +15497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15489
15497
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15490
15498
|
custom_domain_id: string;
|
|
15491
15499
|
primary: boolean;
|
|
15492
|
-
status: "
|
|
15500
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15493
15501
|
verification_method?: "txt" | undefined;
|
|
15494
15502
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15495
15503
|
domain_metadata?: {
|
|
@@ -15919,7 +15927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15919
15927
|
} & {
|
|
15920
15928
|
json: {
|
|
15921
15929
|
body?: string | undefined;
|
|
15922
|
-
screen?: "
|
|
15930
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
15923
15931
|
branding?: {
|
|
15924
15932
|
colors?: {
|
|
15925
15933
|
primary: string;
|
|
@@ -16088,7 +16096,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16088
16096
|
json: {
|
|
16089
16097
|
bindings: {
|
|
16090
16098
|
ref: {
|
|
16091
|
-
type?: "
|
|
16099
|
+
type?: "action_id" | "action_name" | undefined;
|
|
16092
16100
|
value?: string | undefined;
|
|
16093
16101
|
id?: string | undefined;
|
|
16094
16102
|
name?: string | undefined;
|
|
@@ -16210,7 +16218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16210
16218
|
logs: {
|
|
16211
16219
|
action_name: string;
|
|
16212
16220
|
lines: {
|
|
16213
|
-
level: "
|
|
16221
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
16214
16222
|
message: string;
|
|
16215
16223
|
}[];
|
|
16216
16224
|
}[];
|
|
@@ -16877,7 +16885,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16877
16885
|
args: hono_utils_types.JSONValue[];
|
|
16878
16886
|
}[];
|
|
16879
16887
|
logs: {
|
|
16880
|
-
level: "
|
|
16888
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
16881
16889
|
message: string;
|
|
16882
16890
|
}[];
|
|
16883
16891
|
error?: string | undefined;
|
|
@@ -17188,7 +17196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17188
17196
|
scope?: string | undefined;
|
|
17189
17197
|
grant_types?: string[] | undefined;
|
|
17190
17198
|
response_types?: string[] | undefined;
|
|
17191
|
-
token_endpoint_auth_method?: "
|
|
17199
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17192
17200
|
jwks_uri?: string | undefined;
|
|
17193
17201
|
jwks?: Record<string, unknown> | undefined;
|
|
17194
17202
|
software_id?: string | undefined;
|
|
@@ -17277,7 +17285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17277
17285
|
scope?: string | undefined;
|
|
17278
17286
|
grant_types?: string[] | undefined;
|
|
17279
17287
|
response_types?: string[] | undefined;
|
|
17280
|
-
token_endpoint_auth_method?: "
|
|
17288
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17281
17289
|
jwks_uri?: string | undefined;
|
|
17282
17290
|
jwks?: Record<string, unknown> | undefined;
|
|
17283
17291
|
software_id?: string | undefined;
|
|
@@ -17623,19 +17631,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17623
17631
|
email: string;
|
|
17624
17632
|
send: "code" | "link";
|
|
17625
17633
|
authParams: {
|
|
17626
|
-
code_challenge?: string | undefined;
|
|
17627
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17628
|
-
redirect_uri?: string | undefined;
|
|
17629
|
-
nonce?: string | undefined;
|
|
17630
|
-
state?: string | undefined;
|
|
17631
|
-
act_as?: string | undefined;
|
|
17632
17634
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17633
17635
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17636
|
+
scope?: string | undefined;
|
|
17637
|
+
username?: string | undefined;
|
|
17638
|
+
state?: string | undefined;
|
|
17634
17639
|
audience?: string | undefined;
|
|
17640
|
+
act_as?: string | undefined;
|
|
17641
|
+
redirect_uri?: string | undefined;
|
|
17635
17642
|
organization?: string | undefined;
|
|
17636
|
-
|
|
17643
|
+
nonce?: string | undefined;
|
|
17637
17644
|
prompt?: string | undefined;
|
|
17638
|
-
|
|
17645
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17646
|
+
code_challenge?: string | undefined;
|
|
17639
17647
|
ui_locales?: string | undefined;
|
|
17640
17648
|
max_age?: number | undefined;
|
|
17641
17649
|
acr_values?: string | undefined;
|
|
@@ -17659,19 +17667,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17659
17667
|
phone_number: string;
|
|
17660
17668
|
send: "code" | "link";
|
|
17661
17669
|
authParams: {
|
|
17662
|
-
code_challenge?: string | undefined;
|
|
17663
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17664
|
-
redirect_uri?: string | undefined;
|
|
17665
|
-
nonce?: string | undefined;
|
|
17666
|
-
state?: string | undefined;
|
|
17667
|
-
act_as?: string | undefined;
|
|
17668
17670
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17669
17671
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17672
|
+
scope?: string | undefined;
|
|
17673
|
+
username?: string | undefined;
|
|
17674
|
+
state?: string | undefined;
|
|
17670
17675
|
audience?: string | undefined;
|
|
17676
|
+
act_as?: string | undefined;
|
|
17677
|
+
redirect_uri?: string | undefined;
|
|
17671
17678
|
organization?: string | undefined;
|
|
17672
|
-
|
|
17679
|
+
nonce?: string | undefined;
|
|
17673
17680
|
prompt?: string | undefined;
|
|
17674
|
-
|
|
17681
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17682
|
+
code_challenge?: string | undefined;
|
|
17675
17683
|
ui_locales?: string | undefined;
|
|
17676
17684
|
max_age?: number | undefined;
|
|
17677
17685
|
acr_values?: string | undefined;
|
|
@@ -17803,14 +17811,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17803
17811
|
input: {
|
|
17804
17812
|
form: {
|
|
17805
17813
|
token: string;
|
|
17806
|
-
token_type_hint?: "
|
|
17814
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17807
17815
|
client_id?: string | undefined;
|
|
17808
17816
|
client_secret?: string | undefined;
|
|
17809
17817
|
};
|
|
17810
17818
|
} & {
|
|
17811
17819
|
json: {
|
|
17812
17820
|
token: string;
|
|
17813
|
-
token_type_hint?: "
|
|
17821
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17814
17822
|
client_id?: string | undefined;
|
|
17815
17823
|
client_secret?: string | undefined;
|
|
17816
17824
|
};
|
|
@@ -17822,14 +17830,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17822
17830
|
input: {
|
|
17823
17831
|
form: {
|
|
17824
17832
|
token: string;
|
|
17825
|
-
token_type_hint?: "
|
|
17833
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17826
17834
|
client_id?: string | undefined;
|
|
17827
17835
|
client_secret?: string | undefined;
|
|
17828
17836
|
};
|
|
17829
17837
|
} & {
|
|
17830
17838
|
json: {
|
|
17831
17839
|
token: string;
|
|
17832
|
-
token_type_hint?: "
|
|
17840
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17833
17841
|
client_id?: string | undefined;
|
|
17834
17842
|
client_secret?: string | undefined;
|
|
17835
17843
|
};
|
|
@@ -17844,14 +17852,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17844
17852
|
input: {
|
|
17845
17853
|
form: {
|
|
17846
17854
|
token: string;
|
|
17847
|
-
token_type_hint?: "
|
|
17855
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17848
17856
|
client_id?: string | undefined;
|
|
17849
17857
|
client_secret?: string | undefined;
|
|
17850
17858
|
};
|
|
17851
17859
|
} & {
|
|
17852
17860
|
json: {
|
|
17853
17861
|
token: string;
|
|
17854
|
-
token_type_hint?: "
|
|
17862
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17855
17863
|
client_id?: string | undefined;
|
|
17856
17864
|
client_secret?: string | undefined;
|
|
17857
17865
|
};
|
|
@@ -19578,7 +19586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19578
19586
|
$get: {
|
|
19579
19587
|
input: {
|
|
19580
19588
|
param: {
|
|
19581
|
-
screen: "
|
|
19589
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "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";
|
|
19582
19590
|
};
|
|
19583
19591
|
} & {
|
|
19584
19592
|
query: {
|
|
@@ -19594,7 +19602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19594
19602
|
} | {
|
|
19595
19603
|
input: {
|
|
19596
19604
|
param: {
|
|
19597
|
-
screen: "
|
|
19605
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "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";
|
|
19598
19606
|
};
|
|
19599
19607
|
} & {
|
|
19600
19608
|
query: {
|
|
@@ -19610,7 +19618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19610
19618
|
} | {
|
|
19611
19619
|
input: {
|
|
19612
19620
|
param: {
|
|
19613
|
-
screen: "
|
|
19621
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "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";
|
|
19614
19622
|
};
|
|
19615
19623
|
} & {
|
|
19616
19624
|
query: {
|
|
@@ -19630,7 +19638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19630
19638
|
$post: {
|
|
19631
19639
|
input: {
|
|
19632
19640
|
param: {
|
|
19633
|
-
screen: "
|
|
19641
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "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";
|
|
19634
19642
|
};
|
|
19635
19643
|
} & {
|
|
19636
19644
|
query: {
|
|
@@ -19648,7 +19656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19648
19656
|
} | {
|
|
19649
19657
|
input: {
|
|
19650
19658
|
param: {
|
|
19651
|
-
screen: "
|
|
19659
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "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";
|
|
19652
19660
|
};
|
|
19653
19661
|
} & {
|
|
19654
19662
|
query: {
|
|
@@ -19747,4 +19755,4 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19747
19755
|
};
|
|
19748
19756
|
|
|
19749
19757
|
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
|
|
19750
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|
|
19758
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|