@authhero/adapter-interfaces 3.1.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2914,6 +2914,39 @@ declare const choiceField: z.ZodObject<{
|
|
|
2914
2914
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2915
2915
|
}, z.core.$strip>>;
|
|
2916
2916
|
}, z.core.$strip>;
|
|
2917
|
+
declare const codeField: z.ZodObject<{
|
|
2918
|
+
id: z.ZodString;
|
|
2919
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
2920
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2921
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
2922
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2923
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
2924
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2925
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
2926
|
+
text: z.ZodString;
|
|
2927
|
+
type: z.ZodEnum<{
|
|
2928
|
+
error: "error";
|
|
2929
|
+
success: "success";
|
|
2930
|
+
info: "info";
|
|
2931
|
+
warning: "warning";
|
|
2932
|
+
}>;
|
|
2933
|
+
}, z.core.$strip>>>;
|
|
2934
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2935
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2936
|
+
type: z.ZodLiteral<"CODE">;
|
|
2937
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
2938
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
2939
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
2940
|
+
numeric: "numeric";
|
|
2941
|
+
alphanumeric: "alphanumeric";
|
|
2942
|
+
}>>;
|
|
2943
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
2944
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
2945
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
2946
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
2947
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
2948
|
+
}, z.core.$strip>>;
|
|
2949
|
+
}, z.core.$strip>;
|
|
2917
2950
|
declare const customField: z.ZodObject<{
|
|
2918
2951
|
id: z.ZodString;
|
|
2919
2952
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3502,6 +3535,38 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3502
3535
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
3503
3536
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3504
3537
|
}, z.core.$strip>>;
|
|
3538
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3539
|
+
id: z.ZodString;
|
|
3540
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
3541
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3542
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
3543
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3544
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
3545
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3546
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
3547
|
+
text: z.ZodString;
|
|
3548
|
+
type: z.ZodEnum<{
|
|
3549
|
+
error: "error";
|
|
3550
|
+
success: "success";
|
|
3551
|
+
info: "info";
|
|
3552
|
+
warning: "warning";
|
|
3553
|
+
}>;
|
|
3554
|
+
}, z.core.$strip>>>;
|
|
3555
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
3556
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3557
|
+
type: z.ZodLiteral<"CODE">;
|
|
3558
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
3559
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
3560
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
3561
|
+
numeric: "numeric";
|
|
3562
|
+
alphanumeric: "alphanumeric";
|
|
3563
|
+
}>>;
|
|
3564
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
3565
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
3566
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
3567
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
3568
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3569
|
+
}, z.core.$strip>>;
|
|
3505
3570
|
}, z.core.$strip>, z.ZodObject<{
|
|
3506
3571
|
id: z.ZodString;
|
|
3507
3572
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4069,6 +4134,38 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4069
4134
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4070
4135
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
4071
4136
|
}, z.core.$strip>>;
|
|
4137
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4138
|
+
id: z.ZodString;
|
|
4139
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
4140
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4141
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
4142
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4143
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
4144
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4145
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
4146
|
+
text: z.ZodString;
|
|
4147
|
+
type: z.ZodEnum<{
|
|
4148
|
+
error: "error";
|
|
4149
|
+
success: "success";
|
|
4150
|
+
info: "info";
|
|
4151
|
+
warning: "warning";
|
|
4152
|
+
}>;
|
|
4153
|
+
}, z.core.$strip>>>;
|
|
4154
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
4155
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4156
|
+
type: z.ZodLiteral<"CODE">;
|
|
4157
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
4158
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
4159
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
4160
|
+
numeric: "numeric";
|
|
4161
|
+
alphanumeric: "alphanumeric";
|
|
4162
|
+
}>>;
|
|
4163
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
4164
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
4165
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
4166
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
4167
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
4168
|
+
}, z.core.$strip>>;
|
|
4072
4169
|
}, z.core.$strip>, z.ZodObject<{
|
|
4073
4170
|
id: z.ZodString;
|
|
4074
4171
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4456,6 +4553,7 @@ type RecaptchaWidget = z.infer<typeof recaptchaWidget>;
|
|
|
4456
4553
|
type BooleanField = z.infer<typeof booleanField>;
|
|
4457
4554
|
type CardsField = z.infer<typeof cardsField>;
|
|
4458
4555
|
type ChoiceField = z.infer<typeof choiceField>;
|
|
4556
|
+
type CodeField = z.infer<typeof codeField>;
|
|
4459
4557
|
type CountryField = z.infer<typeof countryField>;
|
|
4460
4558
|
type CustomField = z.infer<typeof customField>;
|
|
4461
4559
|
type DateField = z.infer<typeof dateField>;
|
|
@@ -4725,6 +4823,38 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
4725
4823
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
4726
4824
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
4727
4825
|
}, z.core.$strip>>;
|
|
4826
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4827
|
+
id: z.ZodString;
|
|
4828
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
4829
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4830
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
4831
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4832
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
4833
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4834
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
4835
|
+
text: z.ZodString;
|
|
4836
|
+
type: z.ZodEnum<{
|
|
4837
|
+
error: "error";
|
|
4838
|
+
success: "success";
|
|
4839
|
+
info: "info";
|
|
4840
|
+
warning: "warning";
|
|
4841
|
+
}>;
|
|
4842
|
+
}, z.core.$strip>>>;
|
|
4843
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
4844
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4845
|
+
type: z.ZodLiteral<"CODE">;
|
|
4846
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
4847
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
4848
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
4849
|
+
numeric: "numeric";
|
|
4850
|
+
alphanumeric: "alphanumeric";
|
|
4851
|
+
}>>;
|
|
4852
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
4853
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
4854
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
4855
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
4856
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
4857
|
+
}, z.core.$strip>>;
|
|
4728
4858
|
}, z.core.$strip>, z.ZodObject<{
|
|
4729
4859
|
id: z.ZodString;
|
|
4730
4860
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5330,6 +5460,38 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5330
5460
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
5331
5461
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5332
5462
|
}, z.core.$strip>>;
|
|
5463
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5464
|
+
id: z.ZodString;
|
|
5465
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
5466
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5467
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
5468
|
+
label: z.ZodOptional<z.ZodString>;
|
|
5469
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
5470
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5471
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
5472
|
+
text: z.ZodString;
|
|
5473
|
+
type: z.ZodEnum<{
|
|
5474
|
+
error: "error";
|
|
5475
|
+
success: "success";
|
|
5476
|
+
info: "info";
|
|
5477
|
+
warning: "warning";
|
|
5478
|
+
}>;
|
|
5479
|
+
}, z.core.$strip>>>;
|
|
5480
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
5481
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
5482
|
+
type: z.ZodLiteral<"CODE">;
|
|
5483
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
5484
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
5485
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
5486
|
+
numeric: "numeric";
|
|
5487
|
+
alphanumeric: "alphanumeric";
|
|
5488
|
+
}>>;
|
|
5489
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
5490
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
5491
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
5492
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
5493
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
5494
|
+
}, z.core.$strip>>;
|
|
5333
5495
|
}, z.core.$strip>, z.ZodObject<{
|
|
5334
5496
|
id: z.ZodString;
|
|
5335
5497
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5953,6 +6115,38 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5953
6115
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
5954
6116
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5955
6117
|
}, z.core.$strip>>;
|
|
6118
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6119
|
+
id: z.ZodString;
|
|
6120
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
6121
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6122
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
6123
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6124
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
6125
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6126
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
6127
|
+
text: z.ZodString;
|
|
6128
|
+
type: z.ZodEnum<{
|
|
6129
|
+
error: "error";
|
|
6130
|
+
success: "success";
|
|
6131
|
+
info: "info";
|
|
6132
|
+
warning: "warning";
|
|
6133
|
+
}>;
|
|
6134
|
+
}, z.core.$strip>>>;
|
|
6135
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
6136
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
6137
|
+
type: z.ZodLiteral<"CODE">;
|
|
6138
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6139
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
6140
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
6141
|
+
numeric: "numeric";
|
|
6142
|
+
alphanumeric: "alphanumeric";
|
|
6143
|
+
}>>;
|
|
6144
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
6145
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
6146
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
6147
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
6148
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
6149
|
+
}, z.core.$strip>>;
|
|
5956
6150
|
}, z.core.$strip>, z.ZodObject<{
|
|
5957
6151
|
id: z.ZodString;
|
|
5958
6152
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6608,6 +6802,38 @@ declare const formSchema: z.ZodObject<{
|
|
|
6608
6802
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
6609
6803
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
6610
6804
|
}, z.core.$strip>>;
|
|
6805
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6806
|
+
id: z.ZodString;
|
|
6807
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
6808
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6809
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
6810
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6811
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
6812
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6813
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
6814
|
+
text: z.ZodString;
|
|
6815
|
+
type: z.ZodEnum<{
|
|
6816
|
+
error: "error";
|
|
6817
|
+
success: "success";
|
|
6818
|
+
info: "info";
|
|
6819
|
+
warning: "warning";
|
|
6820
|
+
}>;
|
|
6821
|
+
}, z.core.$strip>>>;
|
|
6822
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
6823
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
6824
|
+
type: z.ZodLiteral<"CODE">;
|
|
6825
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6826
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
6827
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
6828
|
+
numeric: "numeric";
|
|
6829
|
+
alphanumeric: "alphanumeric";
|
|
6830
|
+
}>>;
|
|
6831
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
6832
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
6833
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
6834
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
6835
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
6836
|
+
}, z.core.$strip>>;
|
|
6611
6837
|
}, z.core.$strip>, z.ZodObject<{
|
|
6612
6838
|
id: z.ZodString;
|
|
6613
6839
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7254,6 +7480,38 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7254
7480
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
7255
7481
|
default_value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
7256
7482
|
}, z.core.$strip>>;
|
|
7483
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7484
|
+
id: z.ZodString;
|
|
7485
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
7486
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7487
|
+
category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
|
|
7488
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7489
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
7490
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7491
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
7492
|
+
text: z.ZodString;
|
|
7493
|
+
type: z.ZodEnum<{
|
|
7494
|
+
error: "error";
|
|
7495
|
+
success: "success";
|
|
7496
|
+
info: "info";
|
|
7497
|
+
warning: "warning";
|
|
7498
|
+
}>;
|
|
7499
|
+
}, z.core.$strip>>>;
|
|
7500
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
7501
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
7502
|
+
type: z.ZodLiteral<"CODE">;
|
|
7503
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
7504
|
+
length: z.ZodOptional<z.ZodNumber>;
|
|
7505
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
7506
|
+
numeric: "numeric";
|
|
7507
|
+
alphanumeric: "alphanumeric";
|
|
7508
|
+
}>>;
|
|
7509
|
+
auto_submit: z.ZodOptional<z.ZodBoolean>;
|
|
7510
|
+
group_size: z.ZodOptional<z.ZodNumber>;
|
|
7511
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
7512
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
7513
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7514
|
+
}, z.core.$strip>>;
|
|
7257
7515
|
}, z.core.$strip>, z.ZodObject<{
|
|
7258
7516
|
id: z.ZodString;
|
|
7259
7517
|
order: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11483,4 +11741,4 @@ interface DataAdapters {
|
|
|
11483
11741
|
}
|
|
11484
11742
|
|
|
11485
11743
|
export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, NodeType, RedirectTargetEnum, Strategy, StrategyType, actionDependencySchema, actionExecutionErrorSchema, actionExecutionInsertSchema, actionExecutionLogEntrySchema, actionExecutionLogsSchema, actionExecutionResultSchema, actionExecutionSchema, actionExecutionStatusSchema, actionExecutionTriggerIdSchema, actionInsertSchema, actionNodeSchema, actionSchema, actionSecretSchema, actionTriggerSchema, actionUpdateSchema, actionVersionInsertSchema, actionVersionSchema, activeUsersResponseSchema, actorSchema, addressSchema, analyticsColumnMetaSchema, analyticsGroupBySchema, analyticsIntervalSchema, analyticsQueryResponseSchema, analyticsResourceSchema, analyticsStatisticsSchema, analyticsUserTypeSchema, attackProtectionSchema, auditCategorySchema, auditEventInsertSchema, auditEventSchema, auth0ClientSchema, auth0FlowInsertSchema, auth0FlowSchema, auth0QuerySchema, auth0UpdateUserActionSchema, auth0UserResponseSchema, authParamsSchema, authenticationMethodInsertSchema, authenticationMethodSchema, authenticationMethodTypeSchema, baseUserSchema, blockComponentSchema, bordersSchema, brandingSchema, breachedPasswordDetectionSchema, bruteForceProtectionSchema, buttonComponentSchema, claimsRequestSchema, clientGrantInsertSchema, clientGrantListSchema, clientGrantSchema, clientInsertSchema, clientRegistrationTokenInsertSchema, clientRegistrationTokenSchema, clientRegistrationTokenTypeSchema, clientSchema, codeInsertSchema, codeSchema, codeTypeSchema, colorsSchema, componentMessageSchema, componentSchema, connectionInsertSchema, connectionOptionsSchema, connectionSchema, coordinatesSchema, createPassthroughAdapter, createWriteOnlyAdapter, customDomainCertificateUploadSchema, customDomainInsertSchema, customDomainSchema, customDomainUpdateSchema, customDomainWithTenantIdSchema, customTextEntrySchema, customTextSchema, dailyStatsSchema, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, endingSchema, fieldComponentSchema, flowActionStepSchema, flowInsertSchema, flowSchema, fieldComponentSchema$1 as flowsFieldComponentSchema, flowNodeSchema$1 as flowsFlowNodeSchema, stepNodeSchema$1 as flowsStepNodeSchema, fontDetailsSchema, fontsSchema, formControlSchema, formInsertSchema, formNodeComponentDefinition, formNodeSchema, formSchema, genericComponentSchema, genericNodeSchema, getConnectionIdentifierConfig, getLogTypeCategory, getLogTypeDescription, grantInsertSchema, grantSchema, handlerConfigSchema, hookCodeInsertSchema, hookCodeSchema, hookInsertSchema, hookSchema, hookTemplateId, hookTemplates, identitySchema, inviteInsertSchema, inviteSchema, inviteeSchema, inviterSchema, isBlockComponent, isFieldComponent, isPlainObject, isWidgetComponent, jwksKeySchema, jwksSchema, legalComponentSchema, locationInfoSchema, logInsertSchema, logSchema, logStreamFilterSchema, logStreamInsertSchema, logStreamSchema, logStreamStatusSchema, logStreamTypeSchema, logTypeCategories, logTypeDescriptions, loginSessionAuthStrategySchema, loginSessionInsertSchema, loginSessionSchema, loginSessionStateSchema, matchSchema, migrationProviderTypeSchema, migrationSourceCredentialsSchema, migrationSourceInsertSchema, migrationSourceSchema, nodeSchema, openIDConfigurationSchema, organizationBrandingSchema, organizationConnectionInsertSchema, organizationConnectionListSchema, organizationConnectionSchema, organizationEnabledConnectionSchema, organizationInsertSchema, organizationSchema, organizationTokenQuotaSchema, pageBackgroundSchema, parseUserId, passwordInsertSchema, passwordSchema, profileDataSchema, promptScreenSchema, promptSettingSchema, proxyRouteInsertSchema, proxyRouteSchema, proxyRouteUpdateSchema, redirectActionSchema, refreshTokenInsertSchema, refreshTokenSchema, requestContextSchema, resourceServerInsertSchema, resourceServerListSchema, resourceServerOptionsSchema, resourceServerSchema, resourceServerScopeSchema, responseContextSchema, richTextComponentSchema, roleInsertSchema, roleListSchema, rolePermissionInsertSchema, rolePermissionListSchema, rolePermissionSchema, roleSchema, screenLinkSchema, sessionInsertSchema, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, widgetComponentSchema, widgetSchema };
|
|
11486
|
-
export type { Action, ActionExecution, ActionExecutionError, ActionExecutionInsert, ActionExecutionLogEntry, ActionExecutionLogs, ActionExecutionResult, ActionExecutionStatus, ActionExecutionsAdapter, ActionInsert, ActionNode, ActionUpdate, ActionVersion, ActionVersionInsert, ActionVersionsAdapter, ActionsAdapter, ActiveUsersResponse, Actor, Address, AnalyticsAdapter, AnalyticsColumnMeta, AnalyticsFilters, AnalyticsGroupBy, AnalyticsInterval, AnalyticsQueryParams, AnalyticsQueryResponse, AnalyticsResource, AnalyticsUserType, AttackProtection, AuditCategory, AuditEvent, AuditEventInsert, Auth0Flow, Auth0FlowInsert, Auth0UpdateUserAction, AuthParams, AuthenticationMethod, AuthenticationMethodInsert, AuthenticationMethodType, AuthenticationMethodUpdate, AuthenticationMethodsAdapter, BaseUser, BlockComponent, BooleanField, Branding, BrandingAdapter, BreachedPasswordDetection, BruteForceProtection, ButtonComponent, CacheAdapter, CacheItem, CardsField, ChoiceField, ClaimsRequest, Client, ClientConnectionsAdapter, ClientGrant, ClientGrantInsert, ClientGrantList, ClientGrantsAdapter, ClientInsert, ClientRegistrationToken, ClientRegistrationTokenInsert, ClientRegistrationTokenType, ClientRegistrationTokensAdapter, ClientWithTenantId, ClientsAdapter, Code, CodeExecutionLog, CodeExecutionResult, CodeExecutor, CodeInsert, CodeResponse, CodeType, CodesAdapter, Component, ComponentMessage, Connection, ConnectionInsert, ConnectionsAdapter, ContinuationScope, Coordinates, CountryField, CreateServiceTokenFn, CreateServiceTokenParams, CreateTenantParams, CustomDomain, CustomDomainCertificateUpload, CustomDomainInsert, CustomDomainUpdate, CustomDomainWithTenantId, CustomDomainsAdapter, CustomField, CustomText, CustomTextAdapter, CustomTextEntry, DailyStats, DataAdapters, DateField, DividerComponent, DropdownField, EmailField, EmailProvider, EmailProvidersAdapter, EmailServiceAdapter, EmailServiceSendParams, EmailTemplate, EmailTemplateName, EmailTemplatesAdapter, EmailVerificationRules, EmailVerifyAction, Ending, FieldComponent, FileField, Flow, FlowActionStep, FlowActionType, FlowInsert, FlowNode, FlowsAdapter, FieldComponent$1 as FlowsFieldComponent, FlowNode$1 as FlowsFlowNode, StepNode$1 as FlowsStepNode, Form, FormControl, FormInsert, FormNode, FormNodeComponent, FormsAdapter, GenericComponent, GenericNode, GeoAdapter, GeoInfo, GmapsAddressWidget, Grant, GrantInsert, GrantsAdapter, HandlerConfig, Hook, HookCode, HookCodeAdapter, HookCodeInsert, HookInsert, HookTemplateId, HooksAdapter, HtmlComponent, Identity, ImageComponent, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRolesResponse, ListSesssionsResponse, ListUserRolesResponse, ListUsersResponse, Log, LogCategory, LogInsert, LogStream, LogStreamInsert, LogStreamsAdapter, LogType, LoginSession, LoginSessionAuthStrategy, LoginSessionInsert, LoginSessionsAdapter, LogsDataAdapter, MigrationProviderType, MigrationSource, MigrationSourceCredentials, MigrationSourceInsert, MigrationSourcesAdapter, NextButtonComponent, Node, NumberField, Organization, OrganizationConnection, OrganizationConnectionInsert, OrganizationConnectionList, OrganizationConnectionsAdapter, OrganizationInsert, OrganizationsAdapter, OutboxAdapter, OutboxEvent, PassthroughConfig, Password, PasswordField, PasswordInsert, PasswordsAdapter, PaymentField, PostUsersBody, PreviousButtonComponent, PromptScreen, PromptSetting, PromptSettingsAdapter, ProxyRoute, ProxyRouteInsert, ProxyRouteUpdate, ProxyRoutesAdapter, RateLimitAdapter, RateLimitDecision, RateLimitScope, RecaptchaWidget, RedirectAction, RedirectTarget, RefreshToken, RefreshTokenInsert, RefreshTokensAdapter, RequestContext, ResendButtonComponent, ResourceServer, ResourceServerInsert, ResourceServerList, ResourceServerOptions, ResourceServerScope, ResourceServersAdapter, ResponseContext, RichTextComponent, Role, RoleInsert, RoleList, RolePermission, RolePermissionInsert, RolePermissionList, RolePermissionsAdapter, RolesAdapter, RouteMatch, RouterNode, RuntimeComponent, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantSettings, TenantSettingsAdapter, TenantsDataAdapter, TextField, Theme, ThemeInsert, ThemesAdapter, TokenResponse, Totals, UiScreen, UniversalLoginTemplate, UniversalLoginTemplatesAdapter, UpdateRefreshTokenOptions, UrlField, User, UserDataAdapter, UserInsert, UserOrganization, UserOrganizationInsert, UserOrganizationsAdapter, UserPermission, UserPermissionInsert, UserPermissionList, UserPermissionWithDetails, UserPermissionWithDetailsList, UserPermissionsAdapter, UserResponse, UserRole, UserRoleInsert, UserRoleList, UserRolesAdapter, VerifiableCredentialsWidget, VerificationMethods, WidgetComponent };
|
|
11744
|
+
export type { Action, ActionExecution, ActionExecutionError, ActionExecutionInsert, ActionExecutionLogEntry, ActionExecutionLogs, ActionExecutionResult, ActionExecutionStatus, ActionExecutionsAdapter, ActionInsert, ActionNode, ActionUpdate, ActionVersion, ActionVersionInsert, ActionVersionsAdapter, ActionsAdapter, ActiveUsersResponse, Actor, Address, AnalyticsAdapter, AnalyticsColumnMeta, AnalyticsFilters, AnalyticsGroupBy, AnalyticsInterval, AnalyticsQueryParams, AnalyticsQueryResponse, AnalyticsResource, AnalyticsUserType, AttackProtection, AuditCategory, AuditEvent, AuditEventInsert, Auth0Flow, Auth0FlowInsert, Auth0UpdateUserAction, AuthParams, AuthenticationMethod, AuthenticationMethodInsert, AuthenticationMethodType, AuthenticationMethodUpdate, AuthenticationMethodsAdapter, BaseUser, BlockComponent, BooleanField, Branding, BrandingAdapter, BreachedPasswordDetection, BruteForceProtection, ButtonComponent, CacheAdapter, CacheItem, CardsField, ChoiceField, ClaimsRequest, Client, ClientConnectionsAdapter, ClientGrant, ClientGrantInsert, ClientGrantList, ClientGrantsAdapter, ClientInsert, ClientRegistrationToken, ClientRegistrationTokenInsert, ClientRegistrationTokenType, ClientRegistrationTokensAdapter, ClientWithTenantId, ClientsAdapter, Code, CodeExecutionLog, CodeExecutionResult, CodeExecutor, CodeField, CodeInsert, CodeResponse, CodeType, CodesAdapter, Component, ComponentMessage, Connection, ConnectionInsert, ConnectionsAdapter, ContinuationScope, Coordinates, CountryField, CreateServiceTokenFn, CreateServiceTokenParams, CreateTenantParams, CustomDomain, CustomDomainCertificateUpload, CustomDomainInsert, CustomDomainUpdate, CustomDomainWithTenantId, CustomDomainsAdapter, CustomField, CustomText, CustomTextAdapter, CustomTextEntry, DailyStats, DataAdapters, DateField, DividerComponent, DropdownField, EmailField, EmailProvider, EmailProvidersAdapter, EmailServiceAdapter, EmailServiceSendParams, EmailTemplate, EmailTemplateName, EmailTemplatesAdapter, EmailVerificationRules, EmailVerifyAction, Ending, FieldComponent, FileField, Flow, FlowActionStep, FlowActionType, FlowInsert, FlowNode, FlowsAdapter, FieldComponent$1 as FlowsFieldComponent, FlowNode$1 as FlowsFlowNode, StepNode$1 as FlowsStepNode, Form, FormControl, FormInsert, FormNode, FormNodeComponent, FormsAdapter, GenericComponent, GenericNode, GeoAdapter, GeoInfo, GmapsAddressWidget, Grant, GrantInsert, GrantsAdapter, HandlerConfig, Hook, HookCode, HookCodeAdapter, HookCodeInsert, HookInsert, HookTemplateId, HooksAdapter, HtmlComponent, Identity, ImageComponent, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRolesResponse, ListSesssionsResponse, ListUserRolesResponse, ListUsersResponse, Log, LogCategory, LogInsert, LogStream, LogStreamInsert, LogStreamsAdapter, LogType, LoginSession, LoginSessionAuthStrategy, LoginSessionInsert, LoginSessionsAdapter, LogsDataAdapter, MigrationProviderType, MigrationSource, MigrationSourceCredentials, MigrationSourceInsert, MigrationSourcesAdapter, NextButtonComponent, Node, NumberField, Organization, OrganizationConnection, OrganizationConnectionInsert, OrganizationConnectionList, OrganizationConnectionsAdapter, OrganizationInsert, OrganizationsAdapter, OutboxAdapter, OutboxEvent, PassthroughConfig, Password, PasswordField, PasswordInsert, PasswordsAdapter, PaymentField, PostUsersBody, PreviousButtonComponent, PromptScreen, PromptSetting, PromptSettingsAdapter, ProxyRoute, ProxyRouteInsert, ProxyRouteUpdate, ProxyRoutesAdapter, RateLimitAdapter, RateLimitDecision, RateLimitScope, RecaptchaWidget, RedirectAction, RedirectTarget, RefreshToken, RefreshTokenInsert, RefreshTokensAdapter, RequestContext, ResendButtonComponent, ResourceServer, ResourceServerInsert, ResourceServerList, ResourceServerOptions, ResourceServerScope, ResourceServersAdapter, ResponseContext, RichTextComponent, Role, RoleInsert, RoleList, RolePermission, RolePermissionInsert, RolePermissionList, RolePermissionsAdapter, RolesAdapter, RouteMatch, RouterNode, RuntimeComponent, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantSettings, TenantSettingsAdapter, TenantsDataAdapter, TextField, Theme, ThemeInsert, ThemesAdapter, TokenResponse, Totals, UiScreen, UniversalLoginTemplate, UniversalLoginTemplatesAdapter, UpdateRefreshTokenOptions, UrlField, User, UserDataAdapter, UserInsert, UserOrganization, UserOrganizationInsert, UserOrganizationsAdapter, UserPermission, UserPermissionInsert, UserPermissionList, UserPermissionWithDetails, UserPermissionWithDetailsList, UserPermissionsAdapter, UserResponse, UserRole, UserRoleInsert, UserRoleList, UserRolesAdapter, VerifiableCredentialsWidget, VerificationMethods, WidgetComponent };
|