@authhero/adapter-interfaces 1.19.0 → 2.0.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 +138 -19
- package/dist/adapter-interfaces.mjs +83 -68
- package/package.json +1 -1
|
@@ -66,6 +66,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
66
66
|
name: string;
|
|
67
67
|
value?: string | undefined;
|
|
68
68
|
}>, "many">>;
|
|
69
|
+
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
70
|
+
inherit: z.ZodOptional<z.ZodBoolean>;
|
|
69
71
|
}, "strip", z.ZodTypeAny, {
|
|
70
72
|
code: string;
|
|
71
73
|
name: string;
|
|
@@ -82,6 +84,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
82
84
|
name: string;
|
|
83
85
|
value?: string | undefined;
|
|
84
86
|
}[] | undefined;
|
|
87
|
+
is_system?: boolean | undefined;
|
|
88
|
+
inherit?: boolean | undefined;
|
|
85
89
|
}, {
|
|
86
90
|
code: string;
|
|
87
91
|
name: string;
|
|
@@ -98,6 +102,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
98
102
|
name: string;
|
|
99
103
|
value?: string | undefined;
|
|
100
104
|
}[] | undefined;
|
|
105
|
+
is_system?: boolean | undefined;
|
|
106
|
+
inherit?: boolean | undefined;
|
|
101
107
|
}>;
|
|
102
108
|
export type ActionInsert = z.infer<typeof actionInsertSchema>;
|
|
103
109
|
export declare const actionUpdateSchema: z.ZodObject<{
|
|
@@ -134,6 +140,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
134
140
|
name: string;
|
|
135
141
|
value?: string | undefined;
|
|
136
142
|
}>, "many">>>;
|
|
143
|
+
is_system: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
144
|
+
inherit: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
137
145
|
} & {
|
|
138
146
|
status: z.ZodOptional<z.ZodEnum<[
|
|
139
147
|
"draft",
|
|
@@ -157,6 +165,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
157
165
|
name: string;
|
|
158
166
|
value?: string | undefined;
|
|
159
167
|
}[] | undefined;
|
|
168
|
+
is_system?: boolean | undefined;
|
|
169
|
+
inherit?: boolean | undefined;
|
|
160
170
|
deployed_at?: string | undefined;
|
|
161
171
|
}, {
|
|
162
172
|
code?: string | undefined;
|
|
@@ -175,6 +185,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
175
185
|
name: string;
|
|
176
186
|
value?: string | undefined;
|
|
177
187
|
}[] | undefined;
|
|
188
|
+
is_system?: boolean | undefined;
|
|
189
|
+
inherit?: boolean | undefined;
|
|
178
190
|
deployed_at?: string | undefined;
|
|
179
191
|
}>;
|
|
180
192
|
export type ActionUpdate = z.infer<typeof actionUpdateSchema>;
|
|
@@ -202,6 +214,8 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
202
214
|
version: string;
|
|
203
215
|
name: string;
|
|
204
216
|
}>, "many">>;
|
|
217
|
+
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
218
|
+
inherit: z.ZodOptional<z.ZodBoolean>;
|
|
205
219
|
} & {
|
|
206
220
|
created_at: z.ZodString;
|
|
207
221
|
updated_at: z.ZodString;
|
|
@@ -243,6 +257,8 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
243
257
|
name: string;
|
|
244
258
|
value?: string | undefined;
|
|
245
259
|
}[] | undefined;
|
|
260
|
+
is_system?: boolean | undefined;
|
|
261
|
+
inherit?: boolean | undefined;
|
|
246
262
|
deployed_at?: string | undefined;
|
|
247
263
|
}, {
|
|
248
264
|
created_at: string;
|
|
@@ -265,6 +281,8 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
265
281
|
name: string;
|
|
266
282
|
value?: string | undefined;
|
|
267
283
|
}[] | undefined;
|
|
284
|
+
is_system?: boolean | undefined;
|
|
285
|
+
inherit?: boolean | undefined;
|
|
268
286
|
deployed_at?: string | undefined;
|
|
269
287
|
}>;
|
|
270
288
|
export type Action = z.infer<typeof actionSchema>;
|
|
@@ -3589,7 +3607,6 @@ export declare const clientInsertSchema: z.ZodObject<{
|
|
|
3589
3607
|
"private_key_jwt"
|
|
3590
3608
|
]>>>;
|
|
3591
3609
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3592
|
-
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3593
3610
|
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3594
3611
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3595
3612
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
@@ -3706,7 +3723,6 @@ export declare const clientInsertSchema: z.ZodObject<{
|
|
|
3706
3723
|
addons?: Record<string, any> | undefined;
|
|
3707
3724
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
3708
3725
|
client_metadata?: Record<string, string> | undefined;
|
|
3709
|
-
disable_sign_ups?: boolean | undefined;
|
|
3710
3726
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
3711
3727
|
mobile?: Record<string, any> | undefined;
|
|
3712
3728
|
initiate_login_uri?: string | undefined;
|
|
@@ -3767,7 +3783,6 @@ export declare const clientInsertSchema: z.ZodObject<{
|
|
|
3767
3783
|
addons?: Record<string, any> | undefined;
|
|
3768
3784
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
3769
3785
|
client_metadata?: Record<string, string> | undefined;
|
|
3770
|
-
disable_sign_ups?: boolean | undefined;
|
|
3771
3786
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
3772
3787
|
mobile?: Record<string, any> | undefined;
|
|
3773
3788
|
initiate_login_uri?: string | undefined;
|
|
@@ -3855,7 +3870,6 @@ export declare const clientSchema: z.ZodObject<{
|
|
|
3855
3870
|
"private_key_jwt"
|
|
3856
3871
|
]>>>;
|
|
3857
3872
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3858
|
-
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3859
3873
|
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3860
3874
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3861
3875
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
@@ -3976,7 +3990,6 @@ export declare const clientSchema: z.ZodObject<{
|
|
|
3976
3990
|
addons?: Record<string, any> | undefined;
|
|
3977
3991
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
3978
3992
|
client_metadata?: Record<string, string> | undefined;
|
|
3979
|
-
disable_sign_ups?: boolean | undefined;
|
|
3980
3993
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
3981
3994
|
mobile?: Record<string, any> | undefined;
|
|
3982
3995
|
initiate_login_uri?: string | undefined;
|
|
@@ -4039,7 +4052,6 @@ export declare const clientSchema: z.ZodObject<{
|
|
|
4039
4052
|
addons?: Record<string, any> | undefined;
|
|
4040
4053
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
4041
4054
|
client_metadata?: Record<string, string> | undefined;
|
|
4042
|
-
disable_sign_ups?: boolean | undefined;
|
|
4043
4055
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
4044
4056
|
mobile?: Record<string, any> | undefined;
|
|
4045
4057
|
initiate_login_uri?: string | undefined;
|
|
@@ -4079,19 +4091,19 @@ export declare const clientGrantInsertSchema: z.ZodObject<{
|
|
|
4079
4091
|
}, "strip", z.ZodTypeAny, {
|
|
4080
4092
|
client_id: string;
|
|
4081
4093
|
audience: string;
|
|
4094
|
+
is_system?: boolean | undefined;
|
|
4082
4095
|
scope?: string[] | undefined;
|
|
4083
4096
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4084
4097
|
allow_any_organization?: boolean | undefined;
|
|
4085
|
-
is_system?: boolean | undefined;
|
|
4086
4098
|
subject_type?: "user" | "client" | undefined;
|
|
4087
4099
|
authorization_details_types?: string[] | undefined;
|
|
4088
4100
|
}, {
|
|
4089
4101
|
client_id: string;
|
|
4090
4102
|
audience: string;
|
|
4103
|
+
is_system?: boolean | undefined;
|
|
4091
4104
|
scope?: string[] | undefined;
|
|
4092
4105
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4093
4106
|
allow_any_organization?: boolean | undefined;
|
|
4094
|
-
is_system?: boolean | undefined;
|
|
4095
4107
|
subject_type?: "user" | "client" | undefined;
|
|
4096
4108
|
authorization_details_types?: string[] | undefined;
|
|
4097
4109
|
}>;
|
|
@@ -4121,10 +4133,10 @@ export declare const clientGrantSchema: z.ZodObject<{
|
|
|
4121
4133
|
audience: string;
|
|
4122
4134
|
created_at?: string | undefined;
|
|
4123
4135
|
updated_at?: string | undefined;
|
|
4136
|
+
is_system?: boolean | undefined;
|
|
4124
4137
|
scope?: string[] | undefined;
|
|
4125
4138
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4126
4139
|
allow_any_organization?: boolean | undefined;
|
|
4127
|
-
is_system?: boolean | undefined;
|
|
4128
4140
|
subject_type?: "user" | "client" | undefined;
|
|
4129
4141
|
authorization_details_types?: string[] | undefined;
|
|
4130
4142
|
}, {
|
|
@@ -4133,10 +4145,10 @@ export declare const clientGrantSchema: z.ZodObject<{
|
|
|
4133
4145
|
audience: string;
|
|
4134
4146
|
created_at?: string | undefined;
|
|
4135
4147
|
updated_at?: string | undefined;
|
|
4148
|
+
is_system?: boolean | undefined;
|
|
4136
4149
|
scope?: string[] | undefined;
|
|
4137
4150
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4138
4151
|
allow_any_organization?: boolean | undefined;
|
|
4139
|
-
is_system?: boolean | undefined;
|
|
4140
4152
|
subject_type?: "user" | "client" | undefined;
|
|
4141
4153
|
authorization_details_types?: string[] | undefined;
|
|
4142
4154
|
}>;
|
|
@@ -4166,10 +4178,10 @@ export declare const clientGrantListSchema: z.ZodArray<z.ZodObject<{
|
|
|
4166
4178
|
audience: string;
|
|
4167
4179
|
created_at?: string | undefined;
|
|
4168
4180
|
updated_at?: string | undefined;
|
|
4181
|
+
is_system?: boolean | undefined;
|
|
4169
4182
|
scope?: string[] | undefined;
|
|
4170
4183
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4171
4184
|
allow_any_organization?: boolean | undefined;
|
|
4172
|
-
is_system?: boolean | undefined;
|
|
4173
4185
|
subject_type?: "user" | "client" | undefined;
|
|
4174
4186
|
authorization_details_types?: string[] | undefined;
|
|
4175
4187
|
}, {
|
|
@@ -4178,10 +4190,10 @@ export declare const clientGrantListSchema: z.ZodArray<z.ZodObject<{
|
|
|
4178
4190
|
audience: string;
|
|
4179
4191
|
created_at?: string | undefined;
|
|
4180
4192
|
updated_at?: string | undefined;
|
|
4193
|
+
is_system?: boolean | undefined;
|
|
4181
4194
|
scope?: string[] | undefined;
|
|
4182
4195
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4183
4196
|
allow_any_organization?: boolean | undefined;
|
|
4184
|
-
is_system?: boolean | undefined;
|
|
4185
4197
|
subject_type?: "user" | "client" | undefined;
|
|
4186
4198
|
authorization_details_types?: string[] | undefined;
|
|
4187
4199
|
}>, "many">;
|
|
@@ -12432,6 +12444,22 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
12432
12444
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
12433
12445
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
12434
12446
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
12447
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
12448
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
12449
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
12450
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
12451
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
12452
|
+
}, "strip", z.ZodTypeAny, {
|
|
12453
|
+
client_id?: string | undefined;
|
|
12454
|
+
client_secret?: string | undefined;
|
|
12455
|
+
token_endpoint?: string | undefined;
|
|
12456
|
+
userinfo_endpoint?: string | undefined;
|
|
12457
|
+
}, {
|
|
12458
|
+
client_id?: string | undefined;
|
|
12459
|
+
client_secret?: string | undefined;
|
|
12460
|
+
token_endpoint?: string | undefined;
|
|
12461
|
+
userinfo_endpoint?: string | undefined;
|
|
12462
|
+
}>>;
|
|
12435
12463
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
12436
12464
|
email: z.ZodOptional<z.ZodObject<{
|
|
12437
12465
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -12835,6 +12863,12 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
12835
12863
|
disable_signup?: boolean | undefined;
|
|
12836
12864
|
brute_force_protection?: boolean | undefined;
|
|
12837
12865
|
import_mode?: boolean | undefined;
|
|
12866
|
+
configuration?: {
|
|
12867
|
+
client_id?: string | undefined;
|
|
12868
|
+
client_secret?: string | undefined;
|
|
12869
|
+
token_endpoint?: string | undefined;
|
|
12870
|
+
userinfo_endpoint?: string | undefined;
|
|
12871
|
+
} | undefined;
|
|
12838
12872
|
attributes?: {
|
|
12839
12873
|
email?: {
|
|
12840
12874
|
validation?: {
|
|
@@ -12941,6 +12975,12 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
12941
12975
|
disable_signup?: boolean | undefined;
|
|
12942
12976
|
brute_force_protection?: boolean | undefined;
|
|
12943
12977
|
import_mode?: boolean | undefined;
|
|
12978
|
+
configuration?: {
|
|
12979
|
+
client_id?: string | undefined;
|
|
12980
|
+
client_secret?: string | undefined;
|
|
12981
|
+
token_endpoint?: string | undefined;
|
|
12982
|
+
userinfo_endpoint?: string | undefined;
|
|
12983
|
+
} | undefined;
|
|
12944
12984
|
attributes?: {
|
|
12945
12985
|
email?: {
|
|
12946
12986
|
validation?: {
|
|
@@ -13076,6 +13116,22 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13076
13116
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
13077
13117
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
13078
13118
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
13119
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
13120
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
13121
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
13122
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
13123
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
13124
|
+
}, "strip", z.ZodTypeAny, {
|
|
13125
|
+
client_id?: string | undefined;
|
|
13126
|
+
client_secret?: string | undefined;
|
|
13127
|
+
token_endpoint?: string | undefined;
|
|
13128
|
+
userinfo_endpoint?: string | undefined;
|
|
13129
|
+
}, {
|
|
13130
|
+
client_id?: string | undefined;
|
|
13131
|
+
client_secret?: string | undefined;
|
|
13132
|
+
token_endpoint?: string | undefined;
|
|
13133
|
+
userinfo_endpoint?: string | undefined;
|
|
13134
|
+
}>>;
|
|
13079
13135
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
13080
13136
|
email: z.ZodOptional<z.ZodObject<{
|
|
13081
13137
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -13479,6 +13535,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13479
13535
|
disable_signup?: boolean | undefined;
|
|
13480
13536
|
brute_force_protection?: boolean | undefined;
|
|
13481
13537
|
import_mode?: boolean | undefined;
|
|
13538
|
+
configuration?: {
|
|
13539
|
+
client_id?: string | undefined;
|
|
13540
|
+
client_secret?: string | undefined;
|
|
13541
|
+
token_endpoint?: string | undefined;
|
|
13542
|
+
userinfo_endpoint?: string | undefined;
|
|
13543
|
+
} | undefined;
|
|
13482
13544
|
attributes?: {
|
|
13483
13545
|
email?: {
|
|
13484
13546
|
validation?: {
|
|
@@ -13585,6 +13647,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13585
13647
|
disable_signup?: boolean | undefined;
|
|
13586
13648
|
brute_force_protection?: boolean | undefined;
|
|
13587
13649
|
import_mode?: boolean | undefined;
|
|
13650
|
+
configuration?: {
|
|
13651
|
+
client_id?: string | undefined;
|
|
13652
|
+
client_secret?: string | undefined;
|
|
13653
|
+
token_endpoint?: string | undefined;
|
|
13654
|
+
userinfo_endpoint?: string | undefined;
|
|
13655
|
+
} | undefined;
|
|
13588
13656
|
attributes?: {
|
|
13589
13657
|
email?: {
|
|
13590
13658
|
validation?: {
|
|
@@ -13691,6 +13759,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13691
13759
|
disable_signup?: boolean | undefined;
|
|
13692
13760
|
brute_force_protection?: boolean | undefined;
|
|
13693
13761
|
import_mode?: boolean | undefined;
|
|
13762
|
+
configuration?: {
|
|
13763
|
+
client_id?: string | undefined;
|
|
13764
|
+
client_secret?: string | undefined;
|
|
13765
|
+
token_endpoint?: string | undefined;
|
|
13766
|
+
userinfo_endpoint?: string | undefined;
|
|
13767
|
+
} | undefined;
|
|
13694
13768
|
attributes?: {
|
|
13695
13769
|
email?: {
|
|
13696
13770
|
validation?: {
|
|
@@ -13806,6 +13880,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13806
13880
|
disable_signup?: boolean | undefined;
|
|
13807
13881
|
brute_force_protection?: boolean | undefined;
|
|
13808
13882
|
import_mode?: boolean | undefined;
|
|
13883
|
+
configuration?: {
|
|
13884
|
+
client_id?: string | undefined;
|
|
13885
|
+
client_secret?: string | undefined;
|
|
13886
|
+
token_endpoint?: string | undefined;
|
|
13887
|
+
userinfo_endpoint?: string | undefined;
|
|
13888
|
+
} | undefined;
|
|
13809
13889
|
attributes?: {
|
|
13810
13890
|
email?: {
|
|
13811
13891
|
validation?: {
|
|
@@ -13970,6 +14050,22 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
13970
14050
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
13971
14051
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
13972
14052
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
14053
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
14054
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
14055
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
14056
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
14057
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
14058
|
+
}, "strip", z.ZodTypeAny, {
|
|
14059
|
+
client_id?: string | undefined;
|
|
14060
|
+
client_secret?: string | undefined;
|
|
14061
|
+
token_endpoint?: string | undefined;
|
|
14062
|
+
userinfo_endpoint?: string | undefined;
|
|
14063
|
+
}, {
|
|
14064
|
+
client_id?: string | undefined;
|
|
14065
|
+
client_secret?: string | undefined;
|
|
14066
|
+
token_endpoint?: string | undefined;
|
|
14067
|
+
userinfo_endpoint?: string | undefined;
|
|
14068
|
+
}>>;
|
|
13973
14069
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
13974
14070
|
email: z.ZodOptional<z.ZodObject<{
|
|
13975
14071
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -14373,6 +14469,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14373
14469
|
disable_signup?: boolean | undefined;
|
|
14374
14470
|
brute_force_protection?: boolean | undefined;
|
|
14375
14471
|
import_mode?: boolean | undefined;
|
|
14472
|
+
configuration?: {
|
|
14473
|
+
client_id?: string | undefined;
|
|
14474
|
+
client_secret?: string | undefined;
|
|
14475
|
+
token_endpoint?: string | undefined;
|
|
14476
|
+
userinfo_endpoint?: string | undefined;
|
|
14477
|
+
} | undefined;
|
|
14376
14478
|
attributes?: {
|
|
14377
14479
|
email?: {
|
|
14378
14480
|
validation?: {
|
|
@@ -14479,6 +14581,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14479
14581
|
disable_signup?: boolean | undefined;
|
|
14480
14582
|
brute_force_protection?: boolean | undefined;
|
|
14481
14583
|
import_mode?: boolean | undefined;
|
|
14584
|
+
configuration?: {
|
|
14585
|
+
client_id?: string | undefined;
|
|
14586
|
+
client_secret?: string | undefined;
|
|
14587
|
+
token_endpoint?: string | undefined;
|
|
14588
|
+
userinfo_endpoint?: string | undefined;
|
|
14589
|
+
} | undefined;
|
|
14482
14590
|
attributes?: {
|
|
14483
14591
|
email?: {
|
|
14484
14592
|
validation?: {
|
|
@@ -14585,6 +14693,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14585
14693
|
disable_signup?: boolean | undefined;
|
|
14586
14694
|
brute_force_protection?: boolean | undefined;
|
|
14587
14695
|
import_mode?: boolean | undefined;
|
|
14696
|
+
configuration?: {
|
|
14697
|
+
client_id?: string | undefined;
|
|
14698
|
+
client_secret?: string | undefined;
|
|
14699
|
+
token_endpoint?: string | undefined;
|
|
14700
|
+
userinfo_endpoint?: string | undefined;
|
|
14701
|
+
} | undefined;
|
|
14588
14702
|
attributes?: {
|
|
14589
14703
|
email?: {
|
|
14590
14704
|
validation?: {
|
|
@@ -14702,6 +14816,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14702
14816
|
disable_signup?: boolean | undefined;
|
|
14703
14817
|
brute_force_protection?: boolean | undefined;
|
|
14704
14818
|
import_mode?: boolean | undefined;
|
|
14819
|
+
configuration?: {
|
|
14820
|
+
client_id?: string | undefined;
|
|
14821
|
+
client_secret?: string | undefined;
|
|
14822
|
+
token_endpoint?: string | undefined;
|
|
14823
|
+
userinfo_endpoint?: string | undefined;
|
|
14824
|
+
} | undefined;
|
|
14705
14825
|
attributes?: {
|
|
14706
14826
|
email?: {
|
|
14707
14827
|
validation?: {
|
|
@@ -49531,11 +49651,11 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
49531
49651
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49532
49652
|
} | undefined;
|
|
49533
49653
|
id?: string | undefined;
|
|
49654
|
+
is_system?: boolean | undefined;
|
|
49534
49655
|
scopes?: {
|
|
49535
49656
|
value: string;
|
|
49536
49657
|
description?: string | undefined;
|
|
49537
49658
|
}[] | undefined;
|
|
49538
|
-
is_system?: boolean | undefined;
|
|
49539
49659
|
metadata?: Record<string, any> | undefined;
|
|
49540
49660
|
signing_alg?: string | undefined;
|
|
49541
49661
|
signing_secret?: string | undefined;
|
|
@@ -49557,12 +49677,12 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
49557
49677
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49558
49678
|
} | undefined;
|
|
49559
49679
|
id?: string | undefined;
|
|
49680
|
+
is_system?: boolean | undefined;
|
|
49560
49681
|
scopes?: {
|
|
49561
49682
|
value: string;
|
|
49562
49683
|
description?: string | undefined;
|
|
49563
49684
|
}[] | undefined;
|
|
49564
49685
|
token_lifetime?: number | undefined;
|
|
49565
|
-
is_system?: boolean | undefined;
|
|
49566
49686
|
metadata?: Record<string, any> | undefined;
|
|
49567
49687
|
signing_alg?: string | undefined;
|
|
49568
49688
|
signing_secret?: string | undefined;
|
|
@@ -49654,11 +49774,11 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
49654
49774
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49655
49775
|
} | undefined;
|
|
49656
49776
|
id?: string | undefined;
|
|
49777
|
+
is_system?: boolean | undefined;
|
|
49657
49778
|
scopes?: {
|
|
49658
49779
|
value: string;
|
|
49659
49780
|
description?: string | undefined;
|
|
49660
49781
|
}[] | undefined;
|
|
49661
|
-
is_system?: boolean | undefined;
|
|
49662
49782
|
metadata?: Record<string, any> | undefined;
|
|
49663
49783
|
signing_alg?: string | undefined;
|
|
49664
49784
|
signing_secret?: string | undefined;
|
|
@@ -49682,12 +49802,12 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
49682
49802
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49683
49803
|
} | undefined;
|
|
49684
49804
|
id?: string | undefined;
|
|
49805
|
+
is_system?: boolean | undefined;
|
|
49685
49806
|
scopes?: {
|
|
49686
49807
|
value: string;
|
|
49687
49808
|
description?: string | undefined;
|
|
49688
49809
|
}[] | undefined;
|
|
49689
49810
|
token_lifetime?: number | undefined;
|
|
49690
|
-
is_system?: boolean | undefined;
|
|
49691
49811
|
metadata?: Record<string, any> | undefined;
|
|
49692
49812
|
signing_alg?: string | undefined;
|
|
49693
49813
|
signing_secret?: string | undefined;
|
|
@@ -49779,11 +49899,11 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
49779
49899
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49780
49900
|
} | undefined;
|
|
49781
49901
|
id?: string | undefined;
|
|
49902
|
+
is_system?: boolean | undefined;
|
|
49782
49903
|
scopes?: {
|
|
49783
49904
|
value: string;
|
|
49784
49905
|
description?: string | undefined;
|
|
49785
49906
|
}[] | undefined;
|
|
49786
|
-
is_system?: boolean | undefined;
|
|
49787
49907
|
metadata?: Record<string, any> | undefined;
|
|
49788
49908
|
signing_alg?: string | undefined;
|
|
49789
49909
|
signing_secret?: string | undefined;
|
|
@@ -49807,12 +49927,12 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
49807
49927
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49808
49928
|
} | undefined;
|
|
49809
49929
|
id?: string | undefined;
|
|
49930
|
+
is_system?: boolean | undefined;
|
|
49810
49931
|
scopes?: {
|
|
49811
49932
|
value: string;
|
|
49812
49933
|
description?: string | undefined;
|
|
49813
49934
|
}[] | undefined;
|
|
49814
49935
|
token_lifetime?: number | undefined;
|
|
49815
|
-
is_system?: boolean | undefined;
|
|
49816
49936
|
metadata?: Record<string, any> | undefined;
|
|
49817
49937
|
signing_alg?: string | undefined;
|
|
49818
49938
|
signing_secret?: string | undefined;
|
|
@@ -51110,7 +51230,6 @@ export declare const Strategy: {
|
|
|
51110
51230
|
readonly SAMLP: "samlp";
|
|
51111
51231
|
readonly WAAD: "waad";
|
|
51112
51232
|
readonly ADFS: "adfs";
|
|
51113
|
-
readonly AUTH0: "auth0";
|
|
51114
51233
|
};
|
|
51115
51234
|
export declare const StrategyType: {
|
|
51116
51235
|
readonly DATABASE: "database";
|