authhero 4.119.0 → 5.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/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +132 -232
- package/dist/authhero.d.ts +262 -88
- package/dist/authhero.mjs +16345 -16016
- package/dist/stats.html +1 -1
- package/package.json +4 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -69,6 +69,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
69
69
|
name: string;
|
|
70
70
|
value?: string | undefined;
|
|
71
71
|
}>, "many">>;
|
|
72
|
+
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
73
|
+
inherit: z.ZodOptional<z.ZodBoolean>;
|
|
72
74
|
}, "strip", z.ZodTypeAny, {
|
|
73
75
|
code: string;
|
|
74
76
|
name: string;
|
|
@@ -85,6 +87,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
85
87
|
name: string;
|
|
86
88
|
value?: string | undefined;
|
|
87
89
|
}[] | undefined;
|
|
90
|
+
is_system?: boolean | undefined;
|
|
91
|
+
inherit?: boolean | undefined;
|
|
88
92
|
}, {
|
|
89
93
|
code: string;
|
|
90
94
|
name: string;
|
|
@@ -101,6 +105,8 @@ export declare const actionInsertSchema: z.ZodObject<{
|
|
|
101
105
|
name: string;
|
|
102
106
|
value?: string | undefined;
|
|
103
107
|
}[] | undefined;
|
|
108
|
+
is_system?: boolean | undefined;
|
|
109
|
+
inherit?: boolean | undefined;
|
|
104
110
|
}>;
|
|
105
111
|
export type ActionInsert = z.infer<typeof actionInsertSchema>;
|
|
106
112
|
export declare const actionUpdateSchema: z.ZodObject<{
|
|
@@ -137,6 +143,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
137
143
|
name: string;
|
|
138
144
|
value?: string | undefined;
|
|
139
145
|
}>, "many">>>;
|
|
146
|
+
is_system: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
147
|
+
inherit: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
140
148
|
} & {
|
|
141
149
|
status: z.ZodOptional<z.ZodEnum<[
|
|
142
150
|
"draft",
|
|
@@ -160,6 +168,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
160
168
|
name: string;
|
|
161
169
|
value?: string | undefined;
|
|
162
170
|
}[] | undefined;
|
|
171
|
+
is_system?: boolean | undefined;
|
|
172
|
+
inherit?: boolean | undefined;
|
|
163
173
|
deployed_at?: string | undefined;
|
|
164
174
|
}, {
|
|
165
175
|
code?: string | undefined;
|
|
@@ -178,6 +188,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
|
|
|
178
188
|
name: string;
|
|
179
189
|
value?: string | undefined;
|
|
180
190
|
}[] | undefined;
|
|
191
|
+
is_system?: boolean | undefined;
|
|
192
|
+
inherit?: boolean | undefined;
|
|
181
193
|
deployed_at?: string | undefined;
|
|
182
194
|
}>;
|
|
183
195
|
export type ActionUpdate = z.infer<typeof actionUpdateSchema>;
|
|
@@ -205,6 +217,8 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
205
217
|
version: string;
|
|
206
218
|
name: string;
|
|
207
219
|
}>, "many">>;
|
|
220
|
+
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
221
|
+
inherit: z.ZodOptional<z.ZodBoolean>;
|
|
208
222
|
} & {
|
|
209
223
|
created_at: z.ZodString;
|
|
210
224
|
updated_at: z.ZodString;
|
|
@@ -246,6 +260,8 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
246
260
|
name: string;
|
|
247
261
|
value?: string | undefined;
|
|
248
262
|
}[] | undefined;
|
|
263
|
+
is_system?: boolean | undefined;
|
|
264
|
+
inherit?: boolean | undefined;
|
|
249
265
|
deployed_at?: string | undefined;
|
|
250
266
|
}, {
|
|
251
267
|
created_at: string;
|
|
@@ -268,6 +284,8 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
268
284
|
name: string;
|
|
269
285
|
value?: string | undefined;
|
|
270
286
|
}[] | undefined;
|
|
287
|
+
is_system?: boolean | undefined;
|
|
288
|
+
inherit?: boolean | undefined;
|
|
271
289
|
deployed_at?: string | undefined;
|
|
272
290
|
}>;
|
|
273
291
|
export type Action = z.infer<typeof actionSchema>;
|
|
@@ -3592,7 +3610,6 @@ export declare const clientInsertSchema: z.ZodObject<{
|
|
|
3592
3610
|
"private_key_jwt"
|
|
3593
3611
|
]>>>;
|
|
3594
3612
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3595
|
-
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3596
3613
|
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3597
3614
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3598
3615
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
@@ -3709,7 +3726,6 @@ export declare const clientInsertSchema: z.ZodObject<{
|
|
|
3709
3726
|
addons?: Record<string, any> | undefined;
|
|
3710
3727
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
3711
3728
|
client_metadata?: Record<string, string> | undefined;
|
|
3712
|
-
disable_sign_ups?: boolean | undefined;
|
|
3713
3729
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
3714
3730
|
mobile?: Record<string, any> | undefined;
|
|
3715
3731
|
initiate_login_uri?: string | undefined;
|
|
@@ -3770,7 +3786,6 @@ export declare const clientInsertSchema: z.ZodObject<{
|
|
|
3770
3786
|
addons?: Record<string, any> | undefined;
|
|
3771
3787
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
3772
3788
|
client_metadata?: Record<string, string> | undefined;
|
|
3773
|
-
disable_sign_ups?: boolean | undefined;
|
|
3774
3789
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
3775
3790
|
mobile?: Record<string, any> | undefined;
|
|
3776
3791
|
initiate_login_uri?: string | undefined;
|
|
@@ -3858,7 +3873,6 @@ export declare const clientSchema: z.ZodObject<{
|
|
|
3858
3873
|
"private_key_jwt"
|
|
3859
3874
|
]>>>;
|
|
3860
3875
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3861
|
-
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3862
3876
|
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3863
3877
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3864
3878
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
@@ -3979,7 +3993,6 @@ export declare const clientSchema: z.ZodObject<{
|
|
|
3979
3993
|
addons?: Record<string, any> | undefined;
|
|
3980
3994
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
3981
3995
|
client_metadata?: Record<string, string> | undefined;
|
|
3982
|
-
disable_sign_ups?: boolean | undefined;
|
|
3983
3996
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
3984
3997
|
mobile?: Record<string, any> | undefined;
|
|
3985
3998
|
initiate_login_uri?: string | undefined;
|
|
@@ -4042,7 +4055,6 @@ export declare const clientSchema: z.ZodObject<{
|
|
|
4042
4055
|
addons?: Record<string, any> | undefined;
|
|
4043
4056
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
4044
4057
|
client_metadata?: Record<string, string> | undefined;
|
|
4045
|
-
disable_sign_ups?: boolean | undefined;
|
|
4046
4058
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
4047
4059
|
mobile?: Record<string, any> | undefined;
|
|
4048
4060
|
initiate_login_uri?: string | undefined;
|
|
@@ -4082,19 +4094,19 @@ export declare const clientGrantInsertSchema: z.ZodObject<{
|
|
|
4082
4094
|
}, "strip", z.ZodTypeAny, {
|
|
4083
4095
|
client_id: string;
|
|
4084
4096
|
audience: string;
|
|
4097
|
+
is_system?: boolean | undefined;
|
|
4085
4098
|
scope?: string[] | undefined;
|
|
4086
4099
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4087
4100
|
allow_any_organization?: boolean | undefined;
|
|
4088
|
-
is_system?: boolean | undefined;
|
|
4089
4101
|
subject_type?: "user" | "client" | undefined;
|
|
4090
4102
|
authorization_details_types?: string[] | undefined;
|
|
4091
4103
|
}, {
|
|
4092
4104
|
client_id: string;
|
|
4093
4105
|
audience: string;
|
|
4106
|
+
is_system?: boolean | undefined;
|
|
4094
4107
|
scope?: string[] | undefined;
|
|
4095
4108
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4096
4109
|
allow_any_organization?: boolean | undefined;
|
|
4097
|
-
is_system?: boolean | undefined;
|
|
4098
4110
|
subject_type?: "user" | "client" | undefined;
|
|
4099
4111
|
authorization_details_types?: string[] | undefined;
|
|
4100
4112
|
}>;
|
|
@@ -4124,10 +4136,10 @@ export declare const clientGrantSchema: z.ZodObject<{
|
|
|
4124
4136
|
audience: string;
|
|
4125
4137
|
created_at?: string | undefined;
|
|
4126
4138
|
updated_at?: string | undefined;
|
|
4139
|
+
is_system?: boolean | undefined;
|
|
4127
4140
|
scope?: string[] | undefined;
|
|
4128
4141
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4129
4142
|
allow_any_organization?: boolean | undefined;
|
|
4130
|
-
is_system?: boolean | undefined;
|
|
4131
4143
|
subject_type?: "user" | "client" | undefined;
|
|
4132
4144
|
authorization_details_types?: string[] | undefined;
|
|
4133
4145
|
}, {
|
|
@@ -4136,10 +4148,10 @@ export declare const clientGrantSchema: z.ZodObject<{
|
|
|
4136
4148
|
audience: string;
|
|
4137
4149
|
created_at?: string | undefined;
|
|
4138
4150
|
updated_at?: string | undefined;
|
|
4151
|
+
is_system?: boolean | undefined;
|
|
4139
4152
|
scope?: string[] | undefined;
|
|
4140
4153
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4141
4154
|
allow_any_organization?: boolean | undefined;
|
|
4142
|
-
is_system?: boolean | undefined;
|
|
4143
4155
|
subject_type?: "user" | "client" | undefined;
|
|
4144
4156
|
authorization_details_types?: string[] | undefined;
|
|
4145
4157
|
}>;
|
|
@@ -4169,10 +4181,10 @@ export declare const clientGrantListSchema: z.ZodArray<z.ZodObject<{
|
|
|
4169
4181
|
audience: string;
|
|
4170
4182
|
created_at?: string | undefined;
|
|
4171
4183
|
updated_at?: string | undefined;
|
|
4184
|
+
is_system?: boolean | undefined;
|
|
4172
4185
|
scope?: string[] | undefined;
|
|
4173
4186
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4174
4187
|
allow_any_organization?: boolean | undefined;
|
|
4175
|
-
is_system?: boolean | undefined;
|
|
4176
4188
|
subject_type?: "user" | "client" | undefined;
|
|
4177
4189
|
authorization_details_types?: string[] | undefined;
|
|
4178
4190
|
}, {
|
|
@@ -4181,10 +4193,10 @@ export declare const clientGrantListSchema: z.ZodArray<z.ZodObject<{
|
|
|
4181
4193
|
audience: string;
|
|
4182
4194
|
created_at?: string | undefined;
|
|
4183
4195
|
updated_at?: string | undefined;
|
|
4196
|
+
is_system?: boolean | undefined;
|
|
4184
4197
|
scope?: string[] | undefined;
|
|
4185
4198
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
4186
4199
|
allow_any_organization?: boolean | undefined;
|
|
4187
|
-
is_system?: boolean | undefined;
|
|
4188
4200
|
subject_type?: "user" | "client" | undefined;
|
|
4189
4201
|
authorization_details_types?: string[] | undefined;
|
|
4190
4202
|
}>, "many">;
|
|
@@ -12435,6 +12447,22 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
12435
12447
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
12436
12448
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
12437
12449
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
12450
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
12451
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
12452
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
12453
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
12454
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
12455
|
+
}, "strip", z.ZodTypeAny, {
|
|
12456
|
+
client_id?: string | undefined;
|
|
12457
|
+
client_secret?: string | undefined;
|
|
12458
|
+
token_endpoint?: string | undefined;
|
|
12459
|
+
userinfo_endpoint?: string | undefined;
|
|
12460
|
+
}, {
|
|
12461
|
+
client_id?: string | undefined;
|
|
12462
|
+
client_secret?: string | undefined;
|
|
12463
|
+
token_endpoint?: string | undefined;
|
|
12464
|
+
userinfo_endpoint?: string | undefined;
|
|
12465
|
+
}>>;
|
|
12438
12466
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
12439
12467
|
email: z.ZodOptional<z.ZodObject<{
|
|
12440
12468
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -12838,6 +12866,12 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
12838
12866
|
disable_signup?: boolean | undefined;
|
|
12839
12867
|
brute_force_protection?: boolean | undefined;
|
|
12840
12868
|
import_mode?: boolean | undefined;
|
|
12869
|
+
configuration?: {
|
|
12870
|
+
client_id?: string | undefined;
|
|
12871
|
+
client_secret?: string | undefined;
|
|
12872
|
+
token_endpoint?: string | undefined;
|
|
12873
|
+
userinfo_endpoint?: string | undefined;
|
|
12874
|
+
} | undefined;
|
|
12841
12875
|
attributes?: {
|
|
12842
12876
|
email?: {
|
|
12843
12877
|
validation?: {
|
|
@@ -12944,6 +12978,12 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
12944
12978
|
disable_signup?: boolean | undefined;
|
|
12945
12979
|
brute_force_protection?: boolean | undefined;
|
|
12946
12980
|
import_mode?: boolean | undefined;
|
|
12981
|
+
configuration?: {
|
|
12982
|
+
client_id?: string | undefined;
|
|
12983
|
+
client_secret?: string | undefined;
|
|
12984
|
+
token_endpoint?: string | undefined;
|
|
12985
|
+
userinfo_endpoint?: string | undefined;
|
|
12986
|
+
} | undefined;
|
|
12947
12987
|
attributes?: {
|
|
12948
12988
|
email?: {
|
|
12949
12989
|
validation?: {
|
|
@@ -13079,6 +13119,22 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13079
13119
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
13080
13120
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
13081
13121
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
13122
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
13123
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
13124
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
13125
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
13126
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
13127
|
+
}, "strip", z.ZodTypeAny, {
|
|
13128
|
+
client_id?: string | undefined;
|
|
13129
|
+
client_secret?: string | undefined;
|
|
13130
|
+
token_endpoint?: string | undefined;
|
|
13131
|
+
userinfo_endpoint?: string | undefined;
|
|
13132
|
+
}, {
|
|
13133
|
+
client_id?: string | undefined;
|
|
13134
|
+
client_secret?: string | undefined;
|
|
13135
|
+
token_endpoint?: string | undefined;
|
|
13136
|
+
userinfo_endpoint?: string | undefined;
|
|
13137
|
+
}>>;
|
|
13082
13138
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
13083
13139
|
email: z.ZodOptional<z.ZodObject<{
|
|
13084
13140
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -13482,6 +13538,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13482
13538
|
disable_signup?: boolean | undefined;
|
|
13483
13539
|
brute_force_protection?: boolean | undefined;
|
|
13484
13540
|
import_mode?: boolean | undefined;
|
|
13541
|
+
configuration?: {
|
|
13542
|
+
client_id?: string | undefined;
|
|
13543
|
+
client_secret?: string | undefined;
|
|
13544
|
+
token_endpoint?: string | undefined;
|
|
13545
|
+
userinfo_endpoint?: string | undefined;
|
|
13546
|
+
} | undefined;
|
|
13485
13547
|
attributes?: {
|
|
13486
13548
|
email?: {
|
|
13487
13549
|
validation?: {
|
|
@@ -13588,6 +13650,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13588
13650
|
disable_signup?: boolean | undefined;
|
|
13589
13651
|
brute_force_protection?: boolean | undefined;
|
|
13590
13652
|
import_mode?: boolean | undefined;
|
|
13653
|
+
configuration?: {
|
|
13654
|
+
client_id?: string | undefined;
|
|
13655
|
+
client_secret?: string | undefined;
|
|
13656
|
+
token_endpoint?: string | undefined;
|
|
13657
|
+
userinfo_endpoint?: string | undefined;
|
|
13658
|
+
} | undefined;
|
|
13591
13659
|
attributes?: {
|
|
13592
13660
|
email?: {
|
|
13593
13661
|
validation?: {
|
|
@@ -13694,6 +13762,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13694
13762
|
disable_signup?: boolean | undefined;
|
|
13695
13763
|
brute_force_protection?: boolean | undefined;
|
|
13696
13764
|
import_mode?: boolean | undefined;
|
|
13765
|
+
configuration?: {
|
|
13766
|
+
client_id?: string | undefined;
|
|
13767
|
+
client_secret?: string | undefined;
|
|
13768
|
+
token_endpoint?: string | undefined;
|
|
13769
|
+
userinfo_endpoint?: string | undefined;
|
|
13770
|
+
} | undefined;
|
|
13697
13771
|
attributes?: {
|
|
13698
13772
|
email?: {
|
|
13699
13773
|
validation?: {
|
|
@@ -13809,6 +13883,12 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
13809
13883
|
disable_signup?: boolean | undefined;
|
|
13810
13884
|
brute_force_protection?: boolean | undefined;
|
|
13811
13885
|
import_mode?: boolean | undefined;
|
|
13886
|
+
configuration?: {
|
|
13887
|
+
client_id?: string | undefined;
|
|
13888
|
+
client_secret?: string | undefined;
|
|
13889
|
+
token_endpoint?: string | undefined;
|
|
13890
|
+
userinfo_endpoint?: string | undefined;
|
|
13891
|
+
} | undefined;
|
|
13812
13892
|
attributes?: {
|
|
13813
13893
|
email?: {
|
|
13814
13894
|
validation?: {
|
|
@@ -13973,6 +14053,22 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
13973
14053
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
13974
14054
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
13975
14055
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
14056
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
14057
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
14058
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
14059
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
14060
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
14061
|
+
}, "strip", z.ZodTypeAny, {
|
|
14062
|
+
client_id?: string | undefined;
|
|
14063
|
+
client_secret?: string | undefined;
|
|
14064
|
+
token_endpoint?: string | undefined;
|
|
14065
|
+
userinfo_endpoint?: string | undefined;
|
|
14066
|
+
}, {
|
|
14067
|
+
client_id?: string | undefined;
|
|
14068
|
+
client_secret?: string | undefined;
|
|
14069
|
+
token_endpoint?: string | undefined;
|
|
14070
|
+
userinfo_endpoint?: string | undefined;
|
|
14071
|
+
}>>;
|
|
13976
14072
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
13977
14073
|
email: z.ZodOptional<z.ZodObject<{
|
|
13978
14074
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -14376,6 +14472,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14376
14472
|
disable_signup?: boolean | undefined;
|
|
14377
14473
|
brute_force_protection?: boolean | undefined;
|
|
14378
14474
|
import_mode?: boolean | undefined;
|
|
14475
|
+
configuration?: {
|
|
14476
|
+
client_id?: string | undefined;
|
|
14477
|
+
client_secret?: string | undefined;
|
|
14478
|
+
token_endpoint?: string | undefined;
|
|
14479
|
+
userinfo_endpoint?: string | undefined;
|
|
14480
|
+
} | undefined;
|
|
14379
14481
|
attributes?: {
|
|
14380
14482
|
email?: {
|
|
14381
14483
|
validation?: {
|
|
@@ -14482,6 +14584,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14482
14584
|
disable_signup?: boolean | undefined;
|
|
14483
14585
|
brute_force_protection?: boolean | undefined;
|
|
14484
14586
|
import_mode?: boolean | undefined;
|
|
14587
|
+
configuration?: {
|
|
14588
|
+
client_id?: string | undefined;
|
|
14589
|
+
client_secret?: string | undefined;
|
|
14590
|
+
token_endpoint?: string | undefined;
|
|
14591
|
+
userinfo_endpoint?: string | undefined;
|
|
14592
|
+
} | undefined;
|
|
14485
14593
|
attributes?: {
|
|
14486
14594
|
email?: {
|
|
14487
14595
|
validation?: {
|
|
@@ -14588,6 +14696,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14588
14696
|
disable_signup?: boolean | undefined;
|
|
14589
14697
|
brute_force_protection?: boolean | undefined;
|
|
14590
14698
|
import_mode?: boolean | undefined;
|
|
14699
|
+
configuration?: {
|
|
14700
|
+
client_id?: string | undefined;
|
|
14701
|
+
client_secret?: string | undefined;
|
|
14702
|
+
token_endpoint?: string | undefined;
|
|
14703
|
+
userinfo_endpoint?: string | undefined;
|
|
14704
|
+
} | undefined;
|
|
14591
14705
|
attributes?: {
|
|
14592
14706
|
email?: {
|
|
14593
14707
|
validation?: {
|
|
@@ -14705,6 +14819,12 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
14705
14819
|
disable_signup?: boolean | undefined;
|
|
14706
14820
|
brute_force_protection?: boolean | undefined;
|
|
14707
14821
|
import_mode?: boolean | undefined;
|
|
14822
|
+
configuration?: {
|
|
14823
|
+
client_id?: string | undefined;
|
|
14824
|
+
client_secret?: string | undefined;
|
|
14825
|
+
token_endpoint?: string | undefined;
|
|
14826
|
+
userinfo_endpoint?: string | undefined;
|
|
14827
|
+
} | undefined;
|
|
14708
14828
|
attributes?: {
|
|
14709
14829
|
email?: {
|
|
14710
14830
|
validation?: {
|
|
@@ -49534,11 +49654,11 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
49534
49654
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49535
49655
|
} | undefined;
|
|
49536
49656
|
id?: string | undefined;
|
|
49657
|
+
is_system?: boolean | undefined;
|
|
49537
49658
|
scopes?: {
|
|
49538
49659
|
value: string;
|
|
49539
49660
|
description?: string | undefined;
|
|
49540
49661
|
}[] | undefined;
|
|
49541
|
-
is_system?: boolean | undefined;
|
|
49542
49662
|
metadata?: Record<string, any> | undefined;
|
|
49543
49663
|
signing_alg?: string | undefined;
|
|
49544
49664
|
signing_secret?: string | undefined;
|
|
@@ -49560,12 +49680,12 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
49560
49680
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49561
49681
|
} | undefined;
|
|
49562
49682
|
id?: string | undefined;
|
|
49683
|
+
is_system?: boolean | undefined;
|
|
49563
49684
|
scopes?: {
|
|
49564
49685
|
value: string;
|
|
49565
49686
|
description?: string | undefined;
|
|
49566
49687
|
}[] | undefined;
|
|
49567
49688
|
token_lifetime?: number | undefined;
|
|
49568
|
-
is_system?: boolean | undefined;
|
|
49569
49689
|
metadata?: Record<string, any> | undefined;
|
|
49570
49690
|
signing_alg?: string | undefined;
|
|
49571
49691
|
signing_secret?: string | undefined;
|
|
@@ -49657,11 +49777,11 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
49657
49777
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49658
49778
|
} | undefined;
|
|
49659
49779
|
id?: string | undefined;
|
|
49780
|
+
is_system?: boolean | undefined;
|
|
49660
49781
|
scopes?: {
|
|
49661
49782
|
value: string;
|
|
49662
49783
|
description?: string | undefined;
|
|
49663
49784
|
}[] | undefined;
|
|
49664
|
-
is_system?: boolean | undefined;
|
|
49665
49785
|
metadata?: Record<string, any> | undefined;
|
|
49666
49786
|
signing_alg?: string | undefined;
|
|
49667
49787
|
signing_secret?: string | undefined;
|
|
@@ -49685,12 +49805,12 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
49685
49805
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49686
49806
|
} | undefined;
|
|
49687
49807
|
id?: string | undefined;
|
|
49808
|
+
is_system?: boolean | undefined;
|
|
49688
49809
|
scopes?: {
|
|
49689
49810
|
value: string;
|
|
49690
49811
|
description?: string | undefined;
|
|
49691
49812
|
}[] | undefined;
|
|
49692
49813
|
token_lifetime?: number | undefined;
|
|
49693
|
-
is_system?: boolean | undefined;
|
|
49694
49814
|
metadata?: Record<string, any> | undefined;
|
|
49695
49815
|
signing_alg?: string | undefined;
|
|
49696
49816
|
signing_secret?: string | undefined;
|
|
@@ -49782,11 +49902,11 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
49782
49902
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49783
49903
|
} | undefined;
|
|
49784
49904
|
id?: string | undefined;
|
|
49905
|
+
is_system?: boolean | undefined;
|
|
49785
49906
|
scopes?: {
|
|
49786
49907
|
value: string;
|
|
49787
49908
|
description?: string | undefined;
|
|
49788
49909
|
}[] | undefined;
|
|
49789
|
-
is_system?: boolean | undefined;
|
|
49790
49910
|
metadata?: Record<string, any> | undefined;
|
|
49791
49911
|
signing_alg?: string | undefined;
|
|
49792
49912
|
signing_secret?: string | undefined;
|
|
@@ -49810,12 +49930,12 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
49810
49930
|
enable_introspection_endpoint?: boolean | undefined;
|
|
49811
49931
|
} | undefined;
|
|
49812
49932
|
id?: string | undefined;
|
|
49933
|
+
is_system?: boolean | undefined;
|
|
49813
49934
|
scopes?: {
|
|
49814
49935
|
value: string;
|
|
49815
49936
|
description?: string | undefined;
|
|
49816
49937
|
}[] | undefined;
|
|
49817
49938
|
token_lifetime?: number | undefined;
|
|
49818
|
-
is_system?: boolean | undefined;
|
|
49819
49939
|
metadata?: Record<string, any> | undefined;
|
|
49820
49940
|
signing_alg?: string | undefined;
|
|
49821
49941
|
signing_secret?: string | undefined;
|
|
@@ -51113,7 +51233,6 @@ export declare const Strategy: {
|
|
|
51113
51233
|
readonly SAMLP: "samlp";
|
|
51114
51234
|
readonly WAAD: "waad";
|
|
51115
51235
|
readonly ADFS: "adfs";
|
|
51116
|
-
readonly AUTH0: "auth0";
|
|
51117
51236
|
};
|
|
51118
51237
|
export declare const StrategyType: {
|
|
51119
51238
|
readonly DATABASE: "database";
|
|
@@ -53259,6 +53378,22 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53259
53378
|
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
53260
53379
|
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
53261
53380
|
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
53381
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
53382
|
+
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
53383
|
+
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
53384
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
53385
|
+
client_secret: z.ZodOptional<z.ZodString>;
|
|
53386
|
+
}, "strip", z.ZodTypeAny, {
|
|
53387
|
+
client_id?: string | undefined;
|
|
53388
|
+
client_secret?: string | undefined;
|
|
53389
|
+
token_endpoint?: string | undefined;
|
|
53390
|
+
userinfo_endpoint?: string | undefined;
|
|
53391
|
+
}, {
|
|
53392
|
+
client_id?: string | undefined;
|
|
53393
|
+
client_secret?: string | undefined;
|
|
53394
|
+
token_endpoint?: string | undefined;
|
|
53395
|
+
userinfo_endpoint?: string | undefined;
|
|
53396
|
+
}>>;
|
|
53262
53397
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
53263
53398
|
email: z.ZodOptional<z.ZodObject<{
|
|
53264
53399
|
identifier: z.ZodOptional<z.ZodObject<{
|
|
@@ -53662,6 +53797,12 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53662
53797
|
disable_signup?: boolean | undefined;
|
|
53663
53798
|
brute_force_protection?: boolean | undefined;
|
|
53664
53799
|
import_mode?: boolean | undefined;
|
|
53800
|
+
configuration?: {
|
|
53801
|
+
client_id?: string | undefined;
|
|
53802
|
+
client_secret?: string | undefined;
|
|
53803
|
+
token_endpoint?: string | undefined;
|
|
53804
|
+
userinfo_endpoint?: string | undefined;
|
|
53805
|
+
} | undefined;
|
|
53665
53806
|
attributes?: {
|
|
53666
53807
|
email?: {
|
|
53667
53808
|
validation?: {
|
|
@@ -53768,6 +53909,12 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53768
53909
|
disable_signup?: boolean | undefined;
|
|
53769
53910
|
brute_force_protection?: boolean | undefined;
|
|
53770
53911
|
import_mode?: boolean | undefined;
|
|
53912
|
+
configuration?: {
|
|
53913
|
+
client_id?: string | undefined;
|
|
53914
|
+
client_secret?: string | undefined;
|
|
53915
|
+
token_endpoint?: string | undefined;
|
|
53916
|
+
userinfo_endpoint?: string | undefined;
|
|
53917
|
+
} | undefined;
|
|
53771
53918
|
attributes?: {
|
|
53772
53919
|
email?: {
|
|
53773
53920
|
validation?: {
|
|
@@ -53874,6 +54021,12 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53874
54021
|
disable_signup?: boolean | undefined;
|
|
53875
54022
|
brute_force_protection?: boolean | undefined;
|
|
53876
54023
|
import_mode?: boolean | undefined;
|
|
54024
|
+
configuration?: {
|
|
54025
|
+
client_id?: string | undefined;
|
|
54026
|
+
client_secret?: string | undefined;
|
|
54027
|
+
token_endpoint?: string | undefined;
|
|
54028
|
+
userinfo_endpoint?: string | undefined;
|
|
54029
|
+
} | undefined;
|
|
53877
54030
|
attributes?: {
|
|
53878
54031
|
email?: {
|
|
53879
54032
|
validation?: {
|
|
@@ -53991,6 +54144,12 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
53991
54144
|
disable_signup?: boolean | undefined;
|
|
53992
54145
|
brute_force_protection?: boolean | undefined;
|
|
53993
54146
|
import_mode?: boolean | undefined;
|
|
54147
|
+
configuration?: {
|
|
54148
|
+
client_id?: string | undefined;
|
|
54149
|
+
client_secret?: string | undefined;
|
|
54150
|
+
token_endpoint?: string | undefined;
|
|
54151
|
+
userinfo_endpoint?: string | undefined;
|
|
54152
|
+
} | undefined;
|
|
53994
54153
|
attributes?: {
|
|
53995
54154
|
email?: {
|
|
53996
54155
|
validation?: {
|
|
@@ -54143,7 +54302,6 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
54143
54302
|
"private_key_jwt"
|
|
54144
54303
|
]>>>;
|
|
54145
54304
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
54146
|
-
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
54147
54305
|
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
54148
54306
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
54149
54307
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
@@ -54437,6 +54595,12 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
54437
54595
|
disable_signup?: boolean | undefined;
|
|
54438
54596
|
brute_force_protection?: boolean | undefined;
|
|
54439
54597
|
import_mode?: boolean | undefined;
|
|
54598
|
+
configuration?: {
|
|
54599
|
+
client_id?: string | undefined;
|
|
54600
|
+
client_secret?: string | undefined;
|
|
54601
|
+
token_endpoint?: string | undefined;
|
|
54602
|
+
userinfo_endpoint?: string | undefined;
|
|
54603
|
+
} | undefined;
|
|
54440
54604
|
attributes?: {
|
|
54441
54605
|
email?: {
|
|
54442
54606
|
validation?: {
|
|
@@ -54545,7 +54709,6 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
54545
54709
|
addons?: Record<string, any> | undefined;
|
|
54546
54710
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
54547
54711
|
client_metadata?: Record<string, string> | undefined;
|
|
54548
|
-
disable_sign_ups?: boolean | undefined;
|
|
54549
54712
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
54550
54713
|
mobile?: Record<string, any> | undefined;
|
|
54551
54714
|
initiate_login_uri?: string | undefined;
|
|
@@ -54792,7 +54955,6 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
54792
54955
|
addons?: Record<string, any> | undefined;
|
|
54793
54956
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
54794
54957
|
client_metadata?: Record<string, string> | undefined;
|
|
54795
|
-
disable_sign_ups?: boolean | undefined;
|
|
54796
54958
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
54797
54959
|
mobile?: Record<string, any> | undefined;
|
|
54798
54960
|
initiate_login_uri?: string | undefined;
|
|
@@ -56421,53 +56583,6 @@ export declare class LocalCodeExecutor implements CodeExecutor {
|
|
|
56421
56583
|
timeoutMs?: number;
|
|
56422
56584
|
}): Promise<CodeExecutionResult>;
|
|
56423
56585
|
}
|
|
56424
|
-
/**
|
|
56425
|
-
* Worker Loader binding type (Cloudflare Dynamic Workers).
|
|
56426
|
-
* Configure in wrangler.toml:
|
|
56427
|
-
* [[worker_loaders]]
|
|
56428
|
-
* binding = "LOADER"
|
|
56429
|
-
*/
|
|
56430
|
-
export interface WorkerLoader {
|
|
56431
|
-
load(code: WorkerCode): WorkerStub;
|
|
56432
|
-
get(id: string, callback: () => Promise<WorkerCode>): WorkerStub;
|
|
56433
|
-
}
|
|
56434
|
-
export interface WorkerCode {
|
|
56435
|
-
compatibilityDate: string;
|
|
56436
|
-
mainModule: string;
|
|
56437
|
-
modules: Record<string, string>;
|
|
56438
|
-
globalOutbound?: null;
|
|
56439
|
-
}
|
|
56440
|
-
export interface WorkerStub {
|
|
56441
|
-
getEntrypoint(): {
|
|
56442
|
-
fetch(request: Request): Promise<Response>;
|
|
56443
|
-
};
|
|
56444
|
-
}
|
|
56445
|
-
export interface CloudflareCodeExecutorOptions {
|
|
56446
|
-
loader: WorkerLoader;
|
|
56447
|
-
compatibilityDate?: string;
|
|
56448
|
-
}
|
|
56449
|
-
/**
|
|
56450
|
-
* Cloudflare Dynamic Workers code executor.
|
|
56451
|
-
* Spins up isolated Workers on demand via the Worker Loader binding
|
|
56452
|
-
* to execute user-authored hook code in a sandboxed environment.
|
|
56453
|
-
*
|
|
56454
|
-
* Uses `env.LOADER.get(id, callback)` to cache workers by hookCodeId + code hash,
|
|
56455
|
-
* so the same code stays warm across requests while code updates get a fresh worker.
|
|
56456
|
-
* Network access is blocked via `globalOutbound: null`.
|
|
56457
|
-
*/
|
|
56458
|
-
export declare class CloudflareCodeExecutor implements CodeExecutor {
|
|
56459
|
-
private loader;
|
|
56460
|
-
private compatibilityDate;
|
|
56461
|
-
constructor(options: CloudflareCodeExecutorOptions);
|
|
56462
|
-
execute(params: {
|
|
56463
|
-
code: string;
|
|
56464
|
-
hookCodeId?: string;
|
|
56465
|
-
triggerId: string;
|
|
56466
|
-
event: Record<string, unknown>;
|
|
56467
|
-
timeoutMs?: number;
|
|
56468
|
-
cpuLimitMs?: number;
|
|
56469
|
-
}): Promise<CodeExecutionResult>;
|
|
56470
|
-
}
|
|
56471
56586
|
export declare function init(config: AuthHeroConfig): {
|
|
56472
56587
|
app: OpenAPIHono<{
|
|
56473
56588
|
Bindings: Bindings;
|
|
@@ -57746,11 +57861,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
57746
57861
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
57747
57862
|
} | undefined;
|
|
57748
57863
|
id?: string | undefined | undefined;
|
|
57864
|
+
is_system?: boolean | undefined | undefined;
|
|
57749
57865
|
scopes?: {
|
|
57750
57866
|
value: string;
|
|
57751
57867
|
description?: string | undefined | undefined;
|
|
57752
57868
|
}[] | undefined;
|
|
57753
|
-
is_system?: boolean | undefined | undefined;
|
|
57754
57869
|
metadata?: {
|
|
57755
57870
|
[x: string]: any;
|
|
57756
57871
|
} | undefined;
|
|
@@ -57782,11 +57897,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
57782
57897
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
57783
57898
|
} | undefined;
|
|
57784
57899
|
id?: string | undefined | undefined;
|
|
57900
|
+
is_system?: boolean | undefined | undefined;
|
|
57785
57901
|
scopes?: {
|
|
57786
57902
|
value: string;
|
|
57787
57903
|
description?: string | undefined | undefined;
|
|
57788
57904
|
}[] | undefined;
|
|
57789
|
-
is_system?: boolean | undefined | undefined;
|
|
57790
57905
|
metadata?: {
|
|
57791
57906
|
[x: string]: any;
|
|
57792
57907
|
} | undefined;
|
|
@@ -57833,11 +57948,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
57833
57948
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
57834
57949
|
} | undefined;
|
|
57835
57950
|
id?: string | undefined | undefined;
|
|
57951
|
+
is_system?: boolean | undefined | undefined;
|
|
57836
57952
|
scopes?: {
|
|
57837
57953
|
value: string;
|
|
57838
57954
|
description?: string | undefined | undefined;
|
|
57839
57955
|
}[] | undefined;
|
|
57840
|
-
is_system?: boolean | undefined | undefined;
|
|
57841
57956
|
metadata?: {
|
|
57842
57957
|
[x: string]: any;
|
|
57843
57958
|
} | undefined;
|
|
@@ -57929,11 +58044,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
57929
58044
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
57930
58045
|
} | undefined;
|
|
57931
58046
|
id?: string | undefined | undefined;
|
|
58047
|
+
is_system?: boolean | undefined | undefined;
|
|
57932
58048
|
scopes?: {
|
|
57933
58049
|
value: string;
|
|
57934
58050
|
description?: string | undefined | undefined;
|
|
57935
58051
|
}[] | undefined;
|
|
57936
|
-
is_system?: boolean | undefined | undefined;
|
|
57937
58052
|
metadata?: {
|
|
57938
58053
|
[x: string]: any;
|
|
57939
58054
|
} | undefined;
|
|
@@ -58004,11 +58119,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
58004
58119
|
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
58005
58120
|
} | undefined;
|
|
58006
58121
|
id?: string | undefined | undefined;
|
|
58122
|
+
is_system?: boolean | undefined | undefined;
|
|
58007
58123
|
scopes?: {
|
|
58008
58124
|
value: string;
|
|
58009
58125
|
description?: string | undefined | undefined;
|
|
58010
58126
|
}[] | undefined;
|
|
58011
|
-
is_system?: boolean | undefined | undefined;
|
|
58012
58127
|
metadata?: {
|
|
58013
58128
|
[x: string]: any;
|
|
58014
58129
|
} | undefined;
|
|
@@ -63128,6 +63243,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63128
63243
|
disable_signup?: boolean | undefined | undefined;
|
|
63129
63244
|
brute_force_protection?: boolean | undefined | undefined;
|
|
63130
63245
|
import_mode?: boolean | undefined | undefined;
|
|
63246
|
+
configuration?: {
|
|
63247
|
+
client_id?: string | undefined | undefined;
|
|
63248
|
+
client_secret?: string | undefined | undefined;
|
|
63249
|
+
token_endpoint?: string | undefined | undefined;
|
|
63250
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
63251
|
+
} | undefined;
|
|
63131
63252
|
attributes?: {
|
|
63132
63253
|
email?: {
|
|
63133
63254
|
validation?: {
|
|
@@ -63253,6 +63374,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63253
63374
|
disable_signup?: boolean | undefined | undefined;
|
|
63254
63375
|
brute_force_protection?: boolean | undefined | undefined;
|
|
63255
63376
|
import_mode?: boolean | undefined | undefined;
|
|
63377
|
+
configuration?: {
|
|
63378
|
+
client_id?: string | undefined | undefined;
|
|
63379
|
+
client_secret?: string | undefined | undefined;
|
|
63380
|
+
token_endpoint?: string | undefined | undefined;
|
|
63381
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
63382
|
+
} | undefined;
|
|
63256
63383
|
attributes?: {
|
|
63257
63384
|
email?: {
|
|
63258
63385
|
validation?: {
|
|
@@ -63397,6 +63524,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63397
63524
|
disable_signup?: boolean | undefined | undefined;
|
|
63398
63525
|
brute_force_protection?: boolean | undefined | undefined;
|
|
63399
63526
|
import_mode?: boolean | undefined | undefined;
|
|
63527
|
+
configuration?: {
|
|
63528
|
+
client_id?: string | undefined | undefined;
|
|
63529
|
+
client_secret?: string | undefined | undefined;
|
|
63530
|
+
token_endpoint?: string | undefined | undefined;
|
|
63531
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
63532
|
+
} | undefined;
|
|
63400
63533
|
attributes?: {
|
|
63401
63534
|
email?: {
|
|
63402
63535
|
validation?: {
|
|
@@ -63510,9 +63643,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63510
63643
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
63511
63644
|
response_type?: AuthorizationResponseType | undefined;
|
|
63512
63645
|
id?: string | undefined;
|
|
63646
|
+
is_system?: boolean | undefined;
|
|
63513
63647
|
display_name?: string | undefined;
|
|
63514
63648
|
strategy?: string | undefined;
|
|
63515
|
-
is_system?: boolean | undefined;
|
|
63516
63649
|
metadata?: Record<string, any> | undefined;
|
|
63517
63650
|
enabled_clients?: string[] | undefined;
|
|
63518
63651
|
is_domain_connection?: boolean | undefined;
|
|
@@ -63569,6 +63702,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63569
63702
|
disable_signup?: boolean | undefined | undefined;
|
|
63570
63703
|
brute_force_protection?: boolean | undefined | undefined;
|
|
63571
63704
|
import_mode?: boolean | undefined | undefined;
|
|
63705
|
+
configuration?: {
|
|
63706
|
+
client_id?: string | undefined | undefined;
|
|
63707
|
+
client_secret?: string | undefined | undefined;
|
|
63708
|
+
token_endpoint?: string | undefined | undefined;
|
|
63709
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
63710
|
+
} | undefined;
|
|
63572
63711
|
attributes?: {
|
|
63573
63712
|
email?: {
|
|
63574
63713
|
validation?: {
|
|
@@ -63662,8 +63801,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63662
63801
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
63663
63802
|
response_type?: AuthorizationResponseType | undefined;
|
|
63664
63803
|
id?: string | undefined;
|
|
63665
|
-
display_name?: string | undefined;
|
|
63666
63804
|
is_system?: boolean | undefined;
|
|
63805
|
+
display_name?: string | undefined;
|
|
63667
63806
|
metadata?: Record<string, any> | undefined;
|
|
63668
63807
|
enabled_clients?: string[] | undefined;
|
|
63669
63808
|
is_domain_connection?: boolean | undefined;
|
|
@@ -63720,6 +63859,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63720
63859
|
disable_signup?: boolean | undefined | undefined;
|
|
63721
63860
|
brute_force_protection?: boolean | undefined | undefined;
|
|
63722
63861
|
import_mode?: boolean | undefined | undefined;
|
|
63862
|
+
configuration?: {
|
|
63863
|
+
client_id?: string | undefined | undefined;
|
|
63864
|
+
client_secret?: string | undefined | undefined;
|
|
63865
|
+
token_endpoint?: string | undefined | undefined;
|
|
63866
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
63867
|
+
} | undefined;
|
|
63723
63868
|
attributes?: {
|
|
63724
63869
|
email?: {
|
|
63725
63870
|
validation?: {
|
|
@@ -65066,10 +65211,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65066
65211
|
audience: string;
|
|
65067
65212
|
created_at?: string | undefined | undefined;
|
|
65068
65213
|
updated_at?: string | undefined | undefined;
|
|
65214
|
+
is_system?: boolean | undefined | undefined;
|
|
65069
65215
|
scope?: string[] | undefined | undefined;
|
|
65070
65216
|
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
65071
65217
|
allow_any_organization?: boolean | undefined | undefined;
|
|
65072
|
-
is_system?: boolean | undefined | undefined;
|
|
65073
65218
|
subject_type?: "user" | "client" | undefined | undefined;
|
|
65074
65219
|
authorization_details_types?: string[] | undefined | undefined;
|
|
65075
65220
|
}[] | {
|
|
@@ -65082,10 +65227,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65082
65227
|
audience: string;
|
|
65083
65228
|
created_at?: string | undefined | undefined;
|
|
65084
65229
|
updated_at?: string | undefined | undefined;
|
|
65230
|
+
is_system?: boolean | undefined | undefined;
|
|
65085
65231
|
scope?: string[] | undefined | undefined;
|
|
65086
65232
|
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
65087
65233
|
allow_any_organization?: boolean | undefined | undefined;
|
|
65088
|
-
is_system?: boolean | undefined | undefined;
|
|
65089
65234
|
subject_type?: "user" | "client" | undefined | undefined;
|
|
65090
65235
|
authorization_details_types?: string[] | undefined | undefined;
|
|
65091
65236
|
}[];
|
|
@@ -65113,10 +65258,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65113
65258
|
audience: string;
|
|
65114
65259
|
created_at?: string | undefined | undefined;
|
|
65115
65260
|
updated_at?: string | undefined | undefined;
|
|
65261
|
+
is_system?: boolean | undefined | undefined;
|
|
65116
65262
|
scope?: string[] | undefined | undefined;
|
|
65117
65263
|
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
65118
65264
|
allow_any_organization?: boolean | undefined | undefined;
|
|
65119
|
-
is_system?: boolean | undefined | undefined;
|
|
65120
65265
|
subject_type?: "user" | "client" | undefined | undefined;
|
|
65121
65266
|
authorization_details_types?: string[] | undefined | undefined;
|
|
65122
65267
|
};
|
|
@@ -65170,10 +65315,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65170
65315
|
audience: string;
|
|
65171
65316
|
created_at?: string | undefined | undefined;
|
|
65172
65317
|
updated_at?: string | undefined | undefined;
|
|
65318
|
+
is_system?: boolean | undefined | undefined;
|
|
65173
65319
|
scope?: string[] | undefined | undefined;
|
|
65174
65320
|
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
65175
65321
|
allow_any_organization?: boolean | undefined | undefined;
|
|
65176
|
-
is_system?: boolean | undefined | undefined;
|
|
65177
65322
|
subject_type?: "user" | "client" | undefined | undefined;
|
|
65178
65323
|
authorization_details_types?: string[] | undefined | undefined;
|
|
65179
65324
|
};
|
|
@@ -65206,10 +65351,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65206
65351
|
audience: string;
|
|
65207
65352
|
created_at?: string | undefined | undefined;
|
|
65208
65353
|
updated_at?: string | undefined | undefined;
|
|
65354
|
+
is_system?: boolean | undefined | undefined;
|
|
65209
65355
|
scope?: string[] | undefined | undefined;
|
|
65210
65356
|
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
65211
65357
|
allow_any_organization?: boolean | undefined | undefined;
|
|
65212
|
-
is_system?: boolean | undefined | undefined;
|
|
65213
65358
|
subject_type?: "user" | "client" | undefined | undefined;
|
|
65214
65359
|
authorization_details_types?: string[] | undefined | undefined;
|
|
65215
65360
|
};
|
|
@@ -65297,7 +65442,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65297
65442
|
client_metadata?: {
|
|
65298
65443
|
[x: string]: string;
|
|
65299
65444
|
} | undefined;
|
|
65300
|
-
disable_sign_ups?: boolean | undefined | undefined;
|
|
65301
65445
|
hide_sign_up_disabled_error?: boolean | undefined | undefined;
|
|
65302
65446
|
mobile?: {
|
|
65303
65447
|
[x: string]: any;
|
|
@@ -65394,7 +65538,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65394
65538
|
client_metadata?: {
|
|
65395
65539
|
[x: string]: string;
|
|
65396
65540
|
} | undefined;
|
|
65397
|
-
disable_sign_ups?: boolean | undefined | undefined;
|
|
65398
65541
|
hide_sign_up_disabled_error?: boolean | undefined | undefined;
|
|
65399
65542
|
mobile?: {
|
|
65400
65543
|
[x: string]: any;
|
|
@@ -65506,7 +65649,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65506
65649
|
client_metadata?: {
|
|
65507
65650
|
[x: string]: string;
|
|
65508
65651
|
} | undefined;
|
|
65509
|
-
disable_sign_ups?: boolean | undefined | undefined;
|
|
65510
65652
|
hide_sign_up_disabled_error?: boolean | undefined | undefined;
|
|
65511
65653
|
mobile?: {
|
|
65512
65654
|
[x: string]: any;
|
|
@@ -65606,7 +65748,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65606
65748
|
addons?: Record<string, any> | undefined;
|
|
65607
65749
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
65608
65750
|
client_metadata?: Record<string, string> | undefined;
|
|
65609
|
-
disable_sign_ups?: boolean | undefined;
|
|
65610
65751
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
65611
65752
|
mobile?: Record<string, any> | undefined;
|
|
65612
65753
|
initiate_login_uri?: string | undefined;
|
|
@@ -65698,7 +65839,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65698
65839
|
client_metadata?: {
|
|
65699
65840
|
[x: string]: string;
|
|
65700
65841
|
} | undefined;
|
|
65701
|
-
disable_sign_ups?: boolean | undefined | undefined;
|
|
65702
65842
|
hide_sign_up_disabled_error?: boolean | undefined | undefined;
|
|
65703
65843
|
mobile?: {
|
|
65704
65844
|
[x: string]: any;
|
|
@@ -65777,7 +65917,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65777
65917
|
addons?: Record<string, any> | undefined;
|
|
65778
65918
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
65779
65919
|
client_metadata?: Record<string, string> | undefined;
|
|
65780
|
-
disable_sign_ups?: boolean | undefined;
|
|
65781
65920
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
65782
65921
|
mobile?: Record<string, any> | undefined;
|
|
65783
65922
|
initiate_login_uri?: string | undefined;
|
|
@@ -65860,7 +65999,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65860
65999
|
client_metadata?: {
|
|
65861
66000
|
[x: string]: string;
|
|
65862
66001
|
} | undefined;
|
|
65863
|
-
disable_sign_ups?: boolean | undefined;
|
|
65864
66002
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
65865
66003
|
mobile?: {
|
|
65866
66004
|
[x: string]: any;
|
|
@@ -65970,6 +66108,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
65970
66108
|
disable_signup?: boolean | undefined | undefined;
|
|
65971
66109
|
brute_force_protection?: boolean | undefined | undefined;
|
|
65972
66110
|
import_mode?: boolean | undefined | undefined;
|
|
66111
|
+
configuration?: {
|
|
66112
|
+
client_id?: string | undefined | undefined;
|
|
66113
|
+
client_secret?: string | undefined | undefined;
|
|
66114
|
+
token_endpoint?: string | undefined | undefined;
|
|
66115
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
66116
|
+
} | undefined;
|
|
65973
66117
|
attributes?: {
|
|
65974
66118
|
email?: {
|
|
65975
66119
|
validation?: {
|
|
@@ -66117,6 +66261,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
66117
66261
|
disable_signup?: boolean | undefined | undefined;
|
|
66118
66262
|
brute_force_protection?: boolean | undefined | undefined;
|
|
66119
66263
|
import_mode?: boolean | undefined | undefined;
|
|
66264
|
+
configuration?: {
|
|
66265
|
+
client_id?: string | undefined | undefined;
|
|
66266
|
+
client_secret?: string | undefined | undefined;
|
|
66267
|
+
token_endpoint?: string | undefined | undefined;
|
|
66268
|
+
userinfo_endpoint?: string | undefined | undefined;
|
|
66269
|
+
} | undefined;
|
|
66120
66270
|
attributes?: {
|
|
66121
66271
|
email?: {
|
|
66122
66272
|
validation?: {
|
|
@@ -68501,6 +68651,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68501
68651
|
name: string;
|
|
68502
68652
|
value?: string | undefined | undefined;
|
|
68503
68653
|
}[] | undefined;
|
|
68654
|
+
is_system?: boolean | undefined | undefined;
|
|
68655
|
+
inherit?: boolean | undefined | undefined;
|
|
68504
68656
|
deployed_at?: string | undefined | undefined;
|
|
68505
68657
|
};
|
|
68506
68658
|
display_name: string;
|
|
@@ -68561,6 +68713,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68561
68713
|
name: string;
|
|
68562
68714
|
value?: string | undefined | undefined;
|
|
68563
68715
|
}[] | undefined;
|
|
68716
|
+
is_system?: boolean | undefined | undefined;
|
|
68717
|
+
inherit?: boolean | undefined | undefined;
|
|
68564
68718
|
deployed_at?: string | undefined | undefined;
|
|
68565
68719
|
};
|
|
68566
68720
|
display_name: string;
|
|
@@ -68693,6 +68847,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68693
68847
|
name: string;
|
|
68694
68848
|
value?: string | undefined | undefined;
|
|
68695
68849
|
}[] | undefined;
|
|
68850
|
+
is_system?: boolean | undefined | undefined;
|
|
68851
|
+
inherit?: boolean | undefined | undefined;
|
|
68696
68852
|
deployed_at?: string | undefined | undefined;
|
|
68697
68853
|
}[] | {
|
|
68698
68854
|
length: number;
|
|
@@ -68719,6 +68875,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68719
68875
|
name: string;
|
|
68720
68876
|
value?: string | undefined | undefined;
|
|
68721
68877
|
}[] | undefined;
|
|
68878
|
+
is_system?: boolean | undefined | undefined;
|
|
68879
|
+
inherit?: boolean | undefined | undefined;
|
|
68722
68880
|
deployed_at?: string | undefined | undefined;
|
|
68723
68881
|
}[];
|
|
68724
68882
|
total?: number | undefined;
|
|
@@ -68751,6 +68909,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68751
68909
|
name: string;
|
|
68752
68910
|
value?: string | undefined;
|
|
68753
68911
|
}[] | undefined;
|
|
68912
|
+
is_system?: boolean | undefined;
|
|
68913
|
+
inherit?: boolean | undefined;
|
|
68754
68914
|
};
|
|
68755
68915
|
};
|
|
68756
68916
|
output: {
|
|
@@ -68774,6 +68934,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68774
68934
|
name: string;
|
|
68775
68935
|
value?: string | undefined | undefined;
|
|
68776
68936
|
}[] | undefined;
|
|
68937
|
+
is_system?: boolean | undefined | undefined;
|
|
68938
|
+
inherit?: boolean | undefined | undefined;
|
|
68777
68939
|
deployed_at?: string | undefined | undefined;
|
|
68778
68940
|
};
|
|
68779
68941
|
outputFormat: "json";
|
|
@@ -68826,6 +68988,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68826
68988
|
name: string;
|
|
68827
68989
|
value?: string | undefined | undefined;
|
|
68828
68990
|
}[] | undefined;
|
|
68991
|
+
is_system?: boolean | undefined | undefined;
|
|
68992
|
+
inherit?: boolean | undefined | undefined;
|
|
68829
68993
|
deployed_at?: string | undefined | undefined;
|
|
68830
68994
|
};
|
|
68831
68995
|
outputFormat: "json";
|
|
@@ -68860,6 +69024,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68860
69024
|
name: string;
|
|
68861
69025
|
value?: string | undefined;
|
|
68862
69026
|
}[] | undefined;
|
|
69027
|
+
is_system?: boolean | undefined;
|
|
69028
|
+
inherit?: boolean | undefined;
|
|
68863
69029
|
};
|
|
68864
69030
|
};
|
|
68865
69031
|
output: {};
|
|
@@ -68891,6 +69057,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68891
69057
|
name: string;
|
|
68892
69058
|
value?: string | undefined;
|
|
68893
69059
|
}[] | undefined;
|
|
69060
|
+
is_system?: boolean | undefined;
|
|
69061
|
+
inherit?: boolean | undefined;
|
|
68894
69062
|
};
|
|
68895
69063
|
};
|
|
68896
69064
|
output: {
|
|
@@ -68914,6 +69082,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
68914
69082
|
name: string;
|
|
68915
69083
|
value?: string | undefined | undefined;
|
|
68916
69084
|
}[] | undefined;
|
|
69085
|
+
is_system?: boolean | undefined | undefined;
|
|
69086
|
+
inherit?: boolean | undefined | undefined;
|
|
68917
69087
|
deployed_at?: string | undefined | undefined;
|
|
68918
69088
|
};
|
|
68919
69089
|
outputFormat: "json";
|
|
@@ -69009,6 +69179,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
69009
69179
|
name: string;
|
|
69010
69180
|
value?: string | undefined | undefined;
|
|
69011
69181
|
}[] | undefined;
|
|
69182
|
+
is_system?: boolean | undefined | undefined;
|
|
69183
|
+
inherit?: boolean | undefined | undefined;
|
|
69012
69184
|
deployed_at?: string | undefined | undefined;
|
|
69013
69185
|
};
|
|
69014
69186
|
outputFormat: "json";
|
|
@@ -69219,6 +69391,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
69219
69391
|
name: string;
|
|
69220
69392
|
value?: string | undefined | undefined;
|
|
69221
69393
|
}[] | undefined;
|
|
69394
|
+
is_system?: boolean | undefined | undefined;
|
|
69395
|
+
inherit?: boolean | undefined | undefined;
|
|
69222
69396
|
deployed_at?: string | undefined | undefined;
|
|
69223
69397
|
};
|
|
69224
69398
|
outputFormat: "json";
|