@authhero/adapter-interfaces 4.3.0 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +170 -6
- package/dist/adapter-interfaces.mjs +188 -157
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/ActionExecutions.d.ts +8 -0
- package/dist/types/adapters/ScimConfigurations.d.ts +7 -0
- package/dist/types/adapters/ScimExternalIds.d.ts +7 -0
- package/dist/types/adapters/ScimTokens.d.ts +9 -0
- package/dist/types/adapters/index.d.ts +16 -0
- package/dist/types/types/Connection.d.ts +4 -4
- package/dist/types/types/Forms.d.ts +48 -0
- package/dist/types/types/PromptSetting.d.ts +1 -0
- package/dist/types/types/ScimConfiguration.d.ts +30 -0
- package/dist/types/types/ScimExternalId.d.ts +21 -0
- package/dist/types/types/ScimToken.d.ts +19 -0
- package/dist/types/types/User.d.ts +3 -0
- package/dist/types/types/auth0/UserResponse.d.ts +1 -0
- package/dist/types/types/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -849,6 +849,7 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
849
849
|
provider: z.ZodOptional<z.ZodString>;
|
|
850
850
|
connection: z.ZodString;
|
|
851
851
|
is_social: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
852
853
|
registration_completed_at: z.ZodOptional<z.ZodString>;
|
|
853
854
|
password: z.ZodOptional<z.ZodObject<{
|
|
854
855
|
hash: z.ZodString;
|
|
@@ -890,6 +891,7 @@ declare const userSchema: z.ZodObject<{
|
|
|
890
891
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
891
892
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
892
893
|
last_login: z.ZodOptional<z.ZodString>;
|
|
894
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
893
895
|
registration_completed_at: z.ZodOptional<z.ZodString>;
|
|
894
896
|
created_at: z.ZodString;
|
|
895
897
|
updated_at: z.ZodString;
|
|
@@ -964,6 +966,7 @@ declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
964
966
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
965
967
|
last_login: z.ZodOptional<z.ZodString>;
|
|
966
968
|
is_social: z.ZodBoolean;
|
|
969
|
+
blocked: z.ZodOptional<z.ZodBoolean>;
|
|
967
970
|
login_count: z.ZodDefault<z.ZodNumber>;
|
|
968
971
|
identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
969
972
|
connection: z.ZodString;
|
|
@@ -997,6 +1000,7 @@ interface PostUsersBody extends BaseUser {
|
|
|
997
1000
|
username?: string;
|
|
998
1001
|
connection?: string;
|
|
999
1002
|
email_verified?: boolean;
|
|
1003
|
+
blocked?: boolean;
|
|
1000
1004
|
}
|
|
1001
1005
|
declare const userResponseSchema: z.ZodObject<{
|
|
1002
1006
|
email: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
@@ -2430,8 +2434,8 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
2430
2434
|
}>>;
|
|
2431
2435
|
}, z.core.$strip>>>;
|
|
2432
2436
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2433
|
-
response_type: z.ZodOptional<z.
|
|
2434
|
-
response_mode: z.ZodOptional<z.
|
|
2437
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseType>>;
|
|
2438
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseMode>>;
|
|
2435
2439
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2436
2440
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
2437
2441
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2592,8 +2596,8 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2592
2596
|
}>>;
|
|
2593
2597
|
}, z.core.$strip>>>;
|
|
2594
2598
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2595
|
-
response_type: z.ZodOptional<z.
|
|
2596
|
-
response_mode: z.ZodOptional<z.
|
|
2599
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseType>>;
|
|
2600
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof AuthorizationResponseMode>>;
|
|
2597
2601
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2598
2602
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
2599
2603
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3087,6 +3091,8 @@ declare const emailField: z.ZodObject<{
|
|
|
3087
3091
|
config: z.ZodOptional<z.ZodObject<{
|
|
3088
3092
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3089
3093
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3094
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3095
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3090
3096
|
}, z.core.$strip>>;
|
|
3091
3097
|
}, z.core.$strip>;
|
|
3092
3098
|
declare const fileField: z.ZodObject<{
|
|
@@ -3249,6 +3255,8 @@ declare const socialField: z.ZodObject<{
|
|
|
3249
3255
|
display_name: z.ZodOptional<z.ZodString>;
|
|
3250
3256
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3251
3257
|
href: z.ZodOptional<z.ZodString>;
|
|
3258
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3259
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3252
3260
|
}, z.core.$strip>>>;
|
|
3253
3261
|
}, z.core.$strip>>;
|
|
3254
3262
|
}, z.core.$strip>;
|
|
@@ -3304,6 +3312,8 @@ declare const textField: z.ZodObject<{
|
|
|
3304
3312
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
3305
3313
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
3306
3314
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3315
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3316
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3307
3317
|
}, z.core.$strip>>;
|
|
3308
3318
|
}, z.core.$strip>;
|
|
3309
3319
|
declare const countryField: z.ZodObject<{
|
|
@@ -3728,6 +3738,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3728
3738
|
config: z.ZodOptional<z.ZodObject<{
|
|
3729
3739
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3730
3740
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3741
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3742
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3731
3743
|
}, z.core.$strip>>;
|
|
3732
3744
|
}, z.core.$strip>, z.ZodObject<{
|
|
3733
3745
|
id: z.ZodString;
|
|
@@ -3884,6 +3896,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3884
3896
|
display_name: z.ZodOptional<z.ZodString>;
|
|
3885
3897
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3886
3898
|
href: z.ZodOptional<z.ZodString>;
|
|
3899
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3900
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3887
3901
|
}, z.core.$strip>>>;
|
|
3888
3902
|
}, z.core.$strip>>;
|
|
3889
3903
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3937,6 +3951,8 @@ declare const fieldComponentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3937
3951
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
3938
3952
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
3939
3953
|
default_value: z.ZodOptional<z.ZodString>;
|
|
3954
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
3955
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
3940
3956
|
}, z.core.$strip>>;
|
|
3941
3957
|
}, z.core.$strip>, z.ZodObject<{
|
|
3942
3958
|
id: z.ZodString;
|
|
@@ -4327,6 +4343,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4327
4343
|
config: z.ZodOptional<z.ZodObject<{
|
|
4328
4344
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4329
4345
|
default_value: z.ZodOptional<z.ZodString>;
|
|
4346
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4347
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4330
4348
|
}, z.core.$strip>>;
|
|
4331
4349
|
}, z.core.$strip>, z.ZodObject<{
|
|
4332
4350
|
id: z.ZodString;
|
|
@@ -4483,6 +4501,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4483
4501
|
display_name: z.ZodOptional<z.ZodString>;
|
|
4484
4502
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
4485
4503
|
href: z.ZodOptional<z.ZodString>;
|
|
4504
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4505
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4486
4506
|
}, z.core.$strip>>>;
|
|
4487
4507
|
}, z.core.$strip>>;
|
|
4488
4508
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -4536,6 +4556,8 @@ declare const formNodeComponentDefinition: z.ZodUnion<readonly [z.ZodDiscriminat
|
|
|
4536
4556
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
4537
4557
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
4538
4558
|
default_value: z.ZodOptional<z.ZodString>;
|
|
4559
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
4560
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
4539
4561
|
}, z.core.$strip>>;
|
|
4540
4562
|
}, z.core.$strip>, z.ZodObject<{
|
|
4541
4563
|
id: z.ZodString;
|
|
@@ -5016,6 +5038,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5016
5038
|
config: z.ZodOptional<z.ZodObject<{
|
|
5017
5039
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
5018
5040
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5041
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5042
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5019
5043
|
}, z.core.$strip>>;
|
|
5020
5044
|
}, z.core.$strip>, z.ZodObject<{
|
|
5021
5045
|
id: z.ZodString;
|
|
@@ -5172,6 +5196,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5172
5196
|
display_name: z.ZodOptional<z.ZodString>;
|
|
5173
5197
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
5174
5198
|
href: z.ZodOptional<z.ZodString>;
|
|
5199
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5200
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5175
5201
|
}, z.core.$strip>>>;
|
|
5176
5202
|
}, z.core.$strip>>;
|
|
5177
5203
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5225,6 +5251,8 @@ declare const stepNodeSchema: z.ZodObject<{
|
|
|
5225
5251
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
5226
5252
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
5227
5253
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5254
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5255
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5228
5256
|
}, z.core.$strip>>;
|
|
5229
5257
|
}, z.core.$strip>, z.ZodObject<{
|
|
5230
5258
|
id: z.ZodString;
|
|
@@ -5653,6 +5681,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5653
5681
|
config: z.ZodOptional<z.ZodObject<{
|
|
5654
5682
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
5655
5683
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5684
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5685
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5656
5686
|
}, z.core.$strip>>;
|
|
5657
5687
|
}, z.core.$strip>, z.ZodObject<{
|
|
5658
5688
|
id: z.ZodString;
|
|
@@ -5809,6 +5839,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5809
5839
|
display_name: z.ZodOptional<z.ZodString>;
|
|
5810
5840
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
5811
5841
|
href: z.ZodOptional<z.ZodString>;
|
|
5842
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5843
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5812
5844
|
}, z.core.$strip>>>;
|
|
5813
5845
|
}, z.core.$strip>>;
|
|
5814
5846
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5862,6 +5894,8 @@ declare const formNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5862
5894
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
5863
5895
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
5864
5896
|
default_value: z.ZodOptional<z.ZodString>;
|
|
5897
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
5898
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
5865
5899
|
}, z.core.$strip>>;
|
|
5866
5900
|
}, z.core.$strip>, z.ZodObject<{
|
|
5867
5901
|
id: z.ZodString;
|
|
@@ -6308,6 +6342,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6308
6342
|
config: z.ZodOptional<z.ZodObject<{
|
|
6309
6343
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
6310
6344
|
default_value: z.ZodOptional<z.ZodString>;
|
|
6345
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6346
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6311
6347
|
}, z.core.$strip>>;
|
|
6312
6348
|
}, z.core.$strip>, z.ZodObject<{
|
|
6313
6349
|
id: z.ZodString;
|
|
@@ -6464,6 +6500,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6464
6500
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6465
6501
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
6466
6502
|
href: z.ZodOptional<z.ZodString>;
|
|
6503
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6504
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6467
6505
|
}, z.core.$strip>>>;
|
|
6468
6506
|
}, z.core.$strip>>;
|
|
6469
6507
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -6517,6 +6555,8 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6517
6555
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
6518
6556
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
6519
6557
|
default_value: z.ZodOptional<z.ZodString>;
|
|
6558
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
6559
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6520
6560
|
}, z.core.$strip>>;
|
|
6521
6561
|
}, z.core.$strip>, z.ZodObject<{
|
|
6522
6562
|
id: z.ZodString;
|
|
@@ -6995,6 +7035,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
6995
7035
|
config: z.ZodOptional<z.ZodObject<{
|
|
6996
7036
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
6997
7037
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7038
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7039
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
6998
7040
|
}, z.core.$strip>>;
|
|
6999
7041
|
}, z.core.$strip>, z.ZodObject<{
|
|
7000
7042
|
id: z.ZodString;
|
|
@@ -7151,6 +7193,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
7151
7193
|
display_name: z.ZodOptional<z.ZodString>;
|
|
7152
7194
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
7153
7195
|
href: z.ZodOptional<z.ZodString>;
|
|
7196
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7197
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7154
7198
|
}, z.core.$strip>>>;
|
|
7155
7199
|
}, z.core.$strip>>;
|
|
7156
7200
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7204,6 +7248,8 @@ declare const formSchema: z.ZodObject<{
|
|
|
7204
7248
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
7205
7249
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
7206
7250
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7251
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7252
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7207
7253
|
}, z.core.$strip>>;
|
|
7208
7254
|
}, z.core.$strip>, z.ZodObject<{
|
|
7209
7255
|
id: z.ZodString;
|
|
@@ -7673,6 +7719,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7673
7719
|
config: z.ZodOptional<z.ZodObject<{
|
|
7674
7720
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
7675
7721
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7722
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7723
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7676
7724
|
}, z.core.$strip>>;
|
|
7677
7725
|
}, z.core.$strip>, z.ZodObject<{
|
|
7678
7726
|
id: z.ZodString;
|
|
@@ -7829,6 +7877,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7829
7877
|
display_name: z.ZodOptional<z.ZodString>;
|
|
7830
7878
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
7831
7879
|
href: z.ZodOptional<z.ZodString>;
|
|
7880
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7881
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7832
7882
|
}, z.core.$strip>>>;
|
|
7833
7883
|
}, z.core.$strip>>;
|
|
7834
7884
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -7882,6 +7932,8 @@ declare const uiScreenSchema: z.ZodObject<{
|
|
|
7882
7932
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
7883
7933
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
7884
7934
|
default_value: z.ZodOptional<z.ZodString>;
|
|
7935
|
+
last_used: z.ZodOptional<z.ZodBoolean>;
|
|
7936
|
+
last_used_label: z.ZodOptional<z.ZodString>;
|
|
7885
7937
|
}, z.core.$strip>>;
|
|
7886
7938
|
}, z.core.$strip>, z.ZodObject<{
|
|
7887
7939
|
id: z.ZodString;
|
|
@@ -9997,6 +10049,7 @@ declare const promptSettingSchema: z.ZodObject<{
|
|
|
9997
10049
|
}>>;
|
|
9998
10050
|
identifier_first: z.ZodDefault<z.ZodBoolean>;
|
|
9999
10051
|
password_first: z.ZodDefault<z.ZodBoolean>;
|
|
10052
|
+
show_last_used_connection: z.ZodDefault<z.ZodBoolean>;
|
|
10000
10053
|
webauthn_platform_first_factor: z.ZodBoolean;
|
|
10001
10054
|
}, z.core.$strip>;
|
|
10002
10055
|
type PromptSetting = z.infer<typeof promptSettingSchema>;
|
|
@@ -10067,6 +10120,76 @@ declare const proxyRouteUpdateSchema: z.ZodObject<{
|
|
|
10067
10120
|
}, z.core.$strip>;
|
|
10068
10121
|
type ProxyRouteUpdate = z.infer<typeof proxyRouteUpdateSchema>;
|
|
10069
10122
|
|
|
10123
|
+
/**
|
|
10124
|
+
* One attribute-mapping entry translating a SCIM resource attribute to an
|
|
10125
|
+
* AuthHero user field. Mirrors Auth0's SCIM `mapping` shape (`{ scim, auth0 }`).
|
|
10126
|
+
*/
|
|
10127
|
+
declare const scimMappingEntrySchema: z.ZodObject<{
|
|
10128
|
+
scim: z.ZodString;
|
|
10129
|
+
auth0: z.ZodString;
|
|
10130
|
+
}, z.core.$strip>;
|
|
10131
|
+
type ScimMappingEntry = z.infer<typeof scimMappingEntrySchema>;
|
|
10132
|
+
declare const scimConfigurationInsertSchema: z.ZodObject<{
|
|
10133
|
+
connection_id: z.ZodString;
|
|
10134
|
+
user_id_attribute: z.ZodDefault<z.ZodString>;
|
|
10135
|
+
mapping: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10136
|
+
scim: z.ZodString;
|
|
10137
|
+
auth0: z.ZodString;
|
|
10138
|
+
}, z.core.$strip>>>;
|
|
10139
|
+
}, z.core.$strip>;
|
|
10140
|
+
type ScimConfigurationInsert = z.infer<typeof scimConfigurationInsertSchema>;
|
|
10141
|
+
declare const scimConfigurationSchema: z.ZodObject<{
|
|
10142
|
+
created_at: z.ZodString;
|
|
10143
|
+
updated_at: z.ZodString;
|
|
10144
|
+
connection_id: z.ZodString;
|
|
10145
|
+
user_id_attribute: z.ZodDefault<z.ZodString>;
|
|
10146
|
+
mapping: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10147
|
+
scim: z.ZodString;
|
|
10148
|
+
auth0: z.ZodString;
|
|
10149
|
+
}, z.core.$strip>>>;
|
|
10150
|
+
}, z.core.$strip>;
|
|
10151
|
+
type ScimConfiguration = z.infer<typeof scimConfigurationSchema>;
|
|
10152
|
+
|
|
10153
|
+
declare const scimTokenInsertSchema: z.ZodObject<{
|
|
10154
|
+
token_id: z.ZodString;
|
|
10155
|
+
connection_id: z.ZodString;
|
|
10156
|
+
token_hash: z.ZodString;
|
|
10157
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
10158
|
+
valid_until: z.ZodOptional<z.ZodString>;
|
|
10159
|
+
}, z.core.$strip>;
|
|
10160
|
+
type ScimTokenInsert = z.infer<typeof scimTokenInsertSchema>;
|
|
10161
|
+
declare const scimTokenSchema: z.ZodObject<{
|
|
10162
|
+
created_at: z.ZodString;
|
|
10163
|
+
last_used_at: z.ZodOptional<z.ZodString>;
|
|
10164
|
+
token_id: z.ZodString;
|
|
10165
|
+
connection_id: z.ZodString;
|
|
10166
|
+
token_hash: z.ZodString;
|
|
10167
|
+
scopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
10168
|
+
valid_until: z.ZodOptional<z.ZodString>;
|
|
10169
|
+
}, z.core.$strip>;
|
|
10170
|
+
type ScimToken = z.infer<typeof scimTokenSchema>;
|
|
10171
|
+
|
|
10172
|
+
/**
|
|
10173
|
+
* Maps an IdP-assigned SCIM `externalId` to an AuthHero `user_id`, scoped to a
|
|
10174
|
+
* connection. Kept out of the shared user schema so the (per-connection) SCIM
|
|
10175
|
+
* concern stays isolated and a linked user can carry external ids from more
|
|
10176
|
+
* than one SCIM connection. IdPs look users up by `externalId eq "…"` before
|
|
10177
|
+
* creating, so this must be queryable by (connection_id, external_id).
|
|
10178
|
+
*/
|
|
10179
|
+
declare const scimExternalIdInsertSchema: z.ZodObject<{
|
|
10180
|
+
connection_id: z.ZodString;
|
|
10181
|
+
external_id: z.ZodString;
|
|
10182
|
+
user_id: z.ZodString;
|
|
10183
|
+
}, z.core.$strip>;
|
|
10184
|
+
type ScimExternalIdInsert = z.infer<typeof scimExternalIdInsertSchema>;
|
|
10185
|
+
declare const scimExternalIdSchema: z.ZodObject<{
|
|
10186
|
+
created_at: z.ZodString;
|
|
10187
|
+
connection_id: z.ZodString;
|
|
10188
|
+
external_id: z.ZodString;
|
|
10189
|
+
user_id: z.ZodString;
|
|
10190
|
+
}, z.core.$strip>;
|
|
10191
|
+
type ScimExternalId = z.infer<typeof scimExternalIdSchema>;
|
|
10192
|
+
|
|
10070
10193
|
declare const emailProviderSchema: z.ZodObject<{
|
|
10071
10194
|
name: z.ZodString;
|
|
10072
10195
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -11293,6 +11416,14 @@ interface ActionsAdapter {
|
|
|
11293
11416
|
interface ActionExecutionsAdapter {
|
|
11294
11417
|
create: (tenant_id: string, execution: ActionExecutionInsert) => Promise<ActionExecution>;
|
|
11295
11418
|
get: (tenant_id: string, execution_id: string) => Promise<ActionExecution | null>;
|
|
11419
|
+
/**
|
|
11420
|
+
* Delete executions created before `olderThan` (ISO-8601), across all
|
|
11421
|
+
* tenants. Returns the number of rows deleted.
|
|
11422
|
+
*
|
|
11423
|
+
* Optional because some backends expire rows themselves (DynamoDB TTL,
|
|
11424
|
+
* Analytics Engine dataset retention) and have nothing to sweep.
|
|
11425
|
+
*/
|
|
11426
|
+
cleanup?: (olderThan: string) => Promise<number>;
|
|
11296
11427
|
}
|
|
11297
11428
|
|
|
11298
11429
|
interface ListActionVersionsResponse extends Totals {
|
|
@@ -11692,6 +11823,29 @@ interface ProxyRoutesAdapter {
|
|
|
11692
11823
|
remove(tenant_id: string, id: string): Promise<boolean>;
|
|
11693
11824
|
}
|
|
11694
11825
|
|
|
11826
|
+
interface ScimConfigurationsAdapter {
|
|
11827
|
+
create: (tenant_id: string, configuration: ScimConfigurationInsert) => Promise<ScimConfiguration>;
|
|
11828
|
+
get: (tenant_id: string, connection_id: string) => Promise<ScimConfiguration | null>;
|
|
11829
|
+
update: (tenant_id: string, connection_id: string, configuration: Partial<ScimConfigurationInsert>) => Promise<boolean>;
|
|
11830
|
+
remove: (tenant_id: string, connection_id: string) => Promise<boolean>;
|
|
11831
|
+
}
|
|
11832
|
+
|
|
11833
|
+
interface ScimTokensAdapter {
|
|
11834
|
+
create: (tenant_id: string, token: ScimTokenInsert) => Promise<ScimToken>;
|
|
11835
|
+
get: (tenant_id: string, token_id: string) => Promise<ScimToken | null>;
|
|
11836
|
+
getByHash: (tenant_id: string, token_hash: string) => Promise<ScimToken | null>;
|
|
11837
|
+
listByConnection: (tenant_id: string, connection_id: string) => Promise<ScimToken[]>;
|
|
11838
|
+
markUsed: (tenant_id: string, token_id: string, last_used_at: string) => Promise<boolean>;
|
|
11839
|
+
remove: (tenant_id: string, token_id: string) => Promise<boolean>;
|
|
11840
|
+
}
|
|
11841
|
+
|
|
11842
|
+
interface ScimExternalIdsAdapter {
|
|
11843
|
+
create: (tenant_id: string, externalId: ScimExternalIdInsert) => Promise<ScimExternalId>;
|
|
11844
|
+
getByExternalId: (tenant_id: string, connection_id: string, external_id: string) => Promise<ScimExternalId | null>;
|
|
11845
|
+
getByUserId: (tenant_id: string, connection_id: string, user_id: string) => Promise<ScimExternalId | null>;
|
|
11846
|
+
remove: (tenant_id: string, connection_id: string, user_id: string) => Promise<boolean>;
|
|
11847
|
+
}
|
|
11848
|
+
|
|
11695
11849
|
interface EmailProvidersAdapter {
|
|
11696
11850
|
update: (tenant_id: string, emailProvider: Partial<EmailProvider>) => Promise<void>;
|
|
11697
11851
|
create: (tenant_id: string, emailProvider: EmailProvider, options?: CreateOptions) => Promise<void>;
|
|
@@ -12283,6 +12437,16 @@ interface DataAdapters {
|
|
|
12283
12437
|
* directly from the database or by calling this management API.
|
|
12284
12438
|
*/
|
|
12285
12439
|
proxyRoutes?: ProxyRoutesAdapter;
|
|
12440
|
+
/**
|
|
12441
|
+
* Optional SCIM 2.0 inbound-provisioning adapters (issue #1191). When all
|
|
12442
|
+
* three are set, AuthHero exposes the SCIM configuration management API and
|
|
12443
|
+
* (Phase 2) the `/scim/v2` provisioning endpoints. `scimConfigurations`
|
|
12444
|
+
* holds one config per connection, `scimTokens` the hashed bearer tokens,
|
|
12445
|
+
* and `scimExternalIds` the IdP `externalId` → `user_id` lookup table.
|
|
12446
|
+
*/
|
|
12447
|
+
scimConfigurations?: ScimConfigurationsAdapter;
|
|
12448
|
+
scimTokens?: ScimTokensAdapter;
|
|
12449
|
+
scimExternalIds?: ScimExternalIdsAdapter;
|
|
12286
12450
|
refreshTokens: RefreshTokensAdapter;
|
|
12287
12451
|
resourceServers: ResourceServersAdapter;
|
|
12288
12452
|
rolePermissions: RolePermissionsAdapter;
|
|
@@ -12397,5 +12561,5 @@ interface DataAdapters {
|
|
|
12397
12561
|
};
|
|
12398
12562
|
}
|
|
12399
12563
|
|
|
12400
|
-
export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, DATABASE_CONNECTION_STRATEGY, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, NodeType, RedirectTargetEnum, Strategy, StrategyType, TRIGGER_API_SHAPES, 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, decodeBase32, decodeBase64, decodeBase64Url, decodeBase64UrlString, decodeCursor, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, encodeBase32, encodeBase64, encodeBase64Url, encodeBase64UrlString, encodeCursor, encodeHex, 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, importMetadataSchema, inviteInsertSchema, inviteSchema, inviteeSchema, inviterSchema, isBlockComponent, isDatabaseConnectionStrategy, 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, rolloutInsertSchema, rolloutKindSchema, rolloutSchema, rolloutStatusSchema, rolloutUpdateSchema, sanitizeLuceneQuery, screenLinkSchema, sessionInsertSchema, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantOperationEngineSchema, tenantOperationEventInsertSchema, tenantOperationEventOutcomeSchema, tenantOperationEventSchema, tenantOperationInsertSchema, tenantOperationKindSchema, tenantOperationSchema, tenantOperationStatusSchema, tenantOperationUpdateSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userActivitySchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, widgetComponentSchema, widgetSchema };
|
|
12401
|
-
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, CreateOptions, CreateServiceTokenFn, CreateServiceTokenParams, CreateTenantParams, CursorPayload, 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, ImportMetadata, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, LinkCandidate, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRoleUsersResponse, ListRolesResponse, ListRolloutsResult, ListSesssionsResponse, ListTenantOperationEventsResult, ListTenantOperationsParams, ListTenantOperationsResult, 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, OutboxEventInsert, 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, Rollout, RolloutInsert, RolloutKind, RolloutStatus, RolloutUpdate, RolloutsAdapter, RouteMatch, RouterNode, RuntimeComponent, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantOperation, TenantOperationEngine, TenantOperationEvent, TenantOperationEventInsert, TenantOperationEventOutcome, TenantOperationEventsAdapter, TenantOperationInsert, TenantOperationKind, TenantOperationStatus, TenantOperationUpdate, TenantOperationsAdapter, TenantSettings, TenantSettingsAdapter, TenantsDataAdapter, TextField, Theme, ThemeInsert, ThemesAdapter, TokenResponse, Totals, UiScreen, UniversalLoginTemplate, UniversalLoginTemplatesAdapter, UpdateRefreshTokenOptions, UrlField, User, UserActivity, UserActivityAdapter, UserActivityUpdate, UserDataAdapter, UserInsert, UserOrganization, UserOrganizationInsert, UserOrganizationsAdapter, UserPermission, UserPermissionInsert, UserPermissionList, UserPermissionWithDetails, UserPermissionWithDetailsList, UserPermissionsAdapter, UserResponse, UserRole, UserRoleInsert, UserRoleList, UserRolesAdapter, VerifiableCredentialsWidget, VerificationMethods, WidgetComponent, WriteOptions };
|
|
12564
|
+
export { Auth0ActionEnum, Auth0Client, AuthorizationResponseMode, AuthorizationResponseType, CodeChallengeMethod, ComponentCategory, ComponentType, DATABASE_CONNECTION_STRATEGY, EmailActionEnum, FORM_FIELD_TYPES, FlowActionTypeEnum, GrantType, LocationInfo, LogTypes, LoginSessionState, NodeType, RedirectTargetEnum, Strategy, StrategyType, TRIGGER_API_SHAPES, 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, decodeBase32, decodeBase64, decodeBase64Url, decodeBase64UrlString, decodeCursor, emailProviderSchema, emailTemplateNameSchema, emailTemplateSchema, emailVerificationRulesSchema, emailVerifyActionSchema, encodeBase32, encodeBase64, encodeBase64Url, encodeBase64UrlString, encodeCursor, encodeHex, 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, importMetadataSchema, inviteInsertSchema, inviteSchema, inviteeSchema, inviterSchema, isBlockComponent, isDatabaseConnectionStrategy, 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, rolloutInsertSchema, rolloutKindSchema, rolloutSchema, rolloutStatusSchema, rolloutUpdateSchema, sanitizeLuceneQuery, scimConfigurationInsertSchema, scimConfigurationSchema, scimExternalIdInsertSchema, scimExternalIdSchema, scimMappingEntrySchema, scimTokenInsertSchema, scimTokenSchema, screenLinkSchema, sessionInsertSchema, sessionSchema, signingKeySchema, smsProviderSchema, smsSendParamsSchema, startSchema, suspiciousIpThrottlingSchema, targetSchema, tenantInsertSchema, tenantOperationEngineSchema, tenantOperationEventInsertSchema, tenantOperationEventOutcomeSchema, tenantOperationEventSchema, tenantOperationInsertSchema, tenantOperationKindSchema, tenantOperationSchema, tenantOperationStatusSchema, tenantOperationUpdateSchema, tenantSchema, tenantSettingsSchema, themeInsertSchema, themeSchema, tokenResponseSchema, totalsSchema, uiScreenSchema, userActivitySchema, userInsertSchema, userOrganizationInsertSchema, userOrganizationSchema, userPermissionInsertSchema, userPermissionListSchema, userPermissionSchema, userPermissionWithDetailsListSchema, userPermissionWithDetailsSchema, userResponseSchema, userRoleInsertSchema, userRoleListSchema, userRoleSchema, userSchema, verificationMethodsSchema, widgetComponentSchema, widgetSchema };
|
|
12565
|
+
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, CreateOptions, CreateServiceTokenFn, CreateServiceTokenParams, CreateTenantParams, CursorPayload, 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, ImportMetadata, Invite, InviteInsert, Invitee, Inviter, InvitesAdapter, JumpButtonComponent, Jwk, Jwks, KeysAdapter, LegalComponent, LegalField, LinkCandidate, ListActionVersionsResponse, ListActionsResponse, ListClientGrantsResponse, ListCodesResponse, ListConnectionsResponse, ListFailedEventsResponse, ListFlowsResponse, ListFormsResponse, ListGrantsResponse, ListHooksResponse, ListInvitesResponse, ListKeysResponse, ListOrganizationsResponse, ListParams, ListProxyRoutesParams, ListProxyRoutesResult, ListRefreshTokenResponse, ListResourceServersResponse, ListRoleUsersResponse, ListRolesResponse, ListRolloutsResult, ListSesssionsResponse, ListTenantOperationEventsResult, ListTenantOperationsParams, ListTenantOperationsResult, 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, OutboxEventInsert, 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, Rollout, RolloutInsert, RolloutKind, RolloutStatus, RolloutUpdate, RolloutsAdapter, RouteMatch, RouterNode, RuntimeComponent, ScimConfiguration, ScimConfigurationInsert, ScimConfigurationsAdapter, ScimExternalId, ScimExternalIdInsert, ScimExternalIdsAdapter, ScimMappingEntry, ScimToken, ScimTokenInsert, ScimTokensAdapter, ScreenLink, SecondaryAdapterConfig, Session, SessionCleanupParams, SessionInsert, SessionsAdapter, SigningKey, SmsProvider, SmsSendParams, SmsServiceAdapter, SmsServiceSendParams, SocialField, Start, StatsAdapter, StatsListParams, StepNode, SuspiciousIpThrottling, Target, TelField, Tenant, TenantOperation, TenantOperationEngine, TenantOperationEvent, TenantOperationEventInsert, TenantOperationEventOutcome, TenantOperationEventsAdapter, TenantOperationInsert, TenantOperationKind, TenantOperationStatus, TenantOperationUpdate, TenantOperationsAdapter, TenantSettings, TenantSettingsAdapter, TenantsDataAdapter, TextField, Theme, ThemeInsert, ThemesAdapter, TokenResponse, Totals, UiScreen, UniversalLoginTemplate, UniversalLoginTemplatesAdapter, UpdateRefreshTokenOptions, UrlField, User, UserActivity, UserActivityAdapter, UserActivityUpdate, UserDataAdapter, UserInsert, UserOrganization, UserOrganizationInsert, UserOrganizationsAdapter, UserPermission, UserPermissionInsert, UserPermissionList, UserPermissionWithDetails, UserPermissionWithDetailsList, UserPermissionsAdapter, UserResponse, UserRole, UserRoleInsert, UserRoleList, UserRolesAdapter, VerifiableCredentialsWidget, VerificationMethods, WidgetComponent, WriteOptions };
|