authhero 4.109.0 → 4.111.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.
@@ -27,13 +27,13 @@ export declare const actionDependencySchema: z.ZodObject<{
27
27
  }>;
28
28
  export declare const actionSecretSchema: z.ZodObject<{
29
29
  name: z.ZodString;
30
- value: z.ZodString;
30
+ value: z.ZodOptional<z.ZodString>;
31
31
  }, "strip", z.ZodTypeAny, {
32
- value: string;
33
32
  name: string;
33
+ value?: string | undefined;
34
34
  }, {
35
- value: string;
36
35
  name: string;
36
+ value?: string | undefined;
37
37
  }>;
38
38
  export declare const actionInsertSchema: z.ZodObject<{
39
39
  name: z.ZodString;
@@ -61,13 +61,13 @@ export declare const actionInsertSchema: z.ZodObject<{
61
61
  }>, "many">>;
62
62
  secrets: z.ZodOptional<z.ZodArray<z.ZodObject<{
63
63
  name: z.ZodString;
64
- value: z.ZodString;
64
+ value: z.ZodOptional<z.ZodString>;
65
65
  }, "strip", z.ZodTypeAny, {
66
- value: string;
67
66
  name: string;
67
+ value?: string | undefined;
68
68
  }, {
69
- value: string;
70
69
  name: string;
70
+ value?: string | undefined;
71
71
  }>, "many">>;
72
72
  }, "strip", z.ZodTypeAny, {
73
73
  code: string;
@@ -82,8 +82,8 @@ export declare const actionInsertSchema: z.ZodObject<{
82
82
  name: string;
83
83
  }[] | undefined;
84
84
  secrets?: {
85
- value: string;
86
85
  name: string;
86
+ value?: string | undefined;
87
87
  }[] | undefined;
88
88
  }, {
89
89
  code: string;
@@ -98,8 +98,8 @@ export declare const actionInsertSchema: z.ZodObject<{
98
98
  name: string;
99
99
  }[] | undefined;
100
100
  secrets?: {
101
- value: string;
102
101
  name: string;
102
+ value?: string | undefined;
103
103
  }[] | undefined;
104
104
  }>;
105
105
  export type ActionInsert = z.infer<typeof actionInsertSchema>;
@@ -129,13 +129,13 @@ export declare const actionUpdateSchema: z.ZodObject<{
129
129
  }>, "many">>>;
130
130
  secrets: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
131
131
  name: z.ZodString;
132
- value: z.ZodString;
132
+ value: z.ZodOptional<z.ZodString>;
133
133
  }, "strip", z.ZodTypeAny, {
134
- value: string;
135
134
  name: string;
135
+ value?: string | undefined;
136
136
  }, {
137
- value: string;
138
137
  name: string;
138
+ value?: string | undefined;
139
139
  }>, "many">>>;
140
140
  } & {
141
141
  status: z.ZodOptional<z.ZodEnum<[
@@ -157,8 +157,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
157
157
  name: string;
158
158
  }[] | undefined;
159
159
  secrets?: {
160
- value: string;
161
160
  name: string;
161
+ value?: string | undefined;
162
162
  }[] | undefined;
163
163
  deployed_at?: string | undefined;
164
164
  }, {
@@ -175,8 +175,8 @@ export declare const actionUpdateSchema: z.ZodObject<{
175
175
  name: string;
176
176
  }[] | undefined;
177
177
  secrets?: {
178
- value: string;
179
178
  name: string;
179
+ value?: string | undefined;
180
180
  }[] | undefined;
181
181
  deployed_at?: string | undefined;
182
182
  }>;
@@ -3063,7 +3063,9 @@ export declare const clientInsertSchema: z.ZodObject<{
3063
3063
  token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
3064
3064
  "none",
3065
3065
  "client_secret_post",
3066
- "client_secret_basic"
3066
+ "client_secret_basic",
3067
+ "client_secret_jwt",
3068
+ "private_key_jwt"
3067
3069
  ]>>>;
3068
3070
  client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
3069
3071
  mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
@@ -3179,7 +3181,7 @@ export declare const clientInsertSchema: z.ZodObject<{
3179
3181
  custom_login_page_preview?: string | undefined;
3180
3182
  form_template?: string | undefined;
3181
3183
  addons?: Record<string, any> | undefined;
3182
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
3184
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
3183
3185
  client_metadata?: Record<string, string> | undefined;
3184
3186
  mobile?: Record<string, any> | undefined;
3185
3187
  initiate_login_uri?: string | undefined;
@@ -3238,7 +3240,7 @@ export declare const clientInsertSchema: z.ZodObject<{
3238
3240
  custom_login_page_preview?: string | undefined;
3239
3241
  form_template?: string | undefined;
3240
3242
  addons?: Record<string, any> | undefined;
3241
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
3243
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
3242
3244
  client_metadata?: Record<string, string> | undefined;
3243
3245
  mobile?: Record<string, any> | undefined;
3244
3246
  initiate_login_uri?: string | undefined;
@@ -3321,7 +3323,9 @@ export declare const clientSchema: z.ZodObject<{
3321
3323
  token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
3322
3324
  "none",
3323
3325
  "client_secret_post",
3324
- "client_secret_basic"
3326
+ "client_secret_basic",
3327
+ "client_secret_jwt",
3328
+ "private_key_jwt"
3325
3329
  ]>>>;
3326
3330
  client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
3327
3331
  mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
@@ -3441,7 +3445,7 @@ export declare const clientSchema: z.ZodObject<{
3441
3445
  custom_login_page_preview?: string | undefined;
3442
3446
  form_template?: string | undefined;
3443
3447
  addons?: Record<string, any> | undefined;
3444
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
3448
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
3445
3449
  client_metadata?: Record<string, string> | undefined;
3446
3450
  mobile?: Record<string, any> | undefined;
3447
3451
  initiate_login_uri?: string | undefined;
@@ -3502,7 +3506,7 @@ export declare const clientSchema: z.ZodObject<{
3502
3506
  custom_login_page_preview?: string | undefined;
3503
3507
  form_template?: string | undefined;
3504
3508
  addons?: Record<string, any> | undefined;
3505
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
3509
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
3506
3510
  client_metadata?: Record<string, string> | undefined;
3507
3511
  mobile?: Record<string, any> | undefined;
3508
3512
  initiate_login_uri?: string | undefined;
@@ -11698,6 +11702,7 @@ export declare const connectionOptionsSchema: z.ZodObject<{
11698
11702
  twilio_sid: z.ZodOptional<z.ZodString>;
11699
11703
  twilio_token: z.ZodOptional<z.ZodString>;
11700
11704
  icon_url: z.ZodOptional<z.ZodString>;
11705
+ domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11701
11706
  passwordPolicy: z.ZodOptional<z.ZodEnum<[
11702
11707
  "none",
11703
11708
  "low",
@@ -12124,6 +12129,7 @@ export declare const connectionOptionsSchema: z.ZodObject<{
12124
12129
  twilio_sid?: string | undefined;
12125
12130
  twilio_token?: string | undefined;
12126
12131
  icon_url?: string | undefined;
12132
+ domain_aliases?: string[] | undefined;
12127
12133
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
12128
12134
  password_complexity_options?: {
12129
12135
  min_length?: number | undefined;
@@ -12227,6 +12233,7 @@ export declare const connectionOptionsSchema: z.ZodObject<{
12227
12233
  twilio_sid?: string | undefined;
12228
12234
  twilio_token?: string | undefined;
12229
12235
  icon_url?: string | undefined;
12236
+ domain_aliases?: string[] | undefined;
12230
12237
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
12231
12238
  password_complexity_options?: {
12232
12239
  min_length?: number | undefined;
@@ -12330,6 +12337,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
12330
12337
  twilio_sid: z.ZodOptional<z.ZodString>;
12331
12338
  twilio_token: z.ZodOptional<z.ZodString>;
12332
12339
  icon_url: z.ZodOptional<z.ZodString>;
12340
+ domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12333
12341
  passwordPolicy: z.ZodOptional<z.ZodEnum<[
12334
12342
  "none",
12335
12343
  "low",
@@ -12756,6 +12764,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
12756
12764
  twilio_sid?: string | undefined;
12757
12765
  twilio_token?: string | undefined;
12758
12766
  icon_url?: string | undefined;
12767
+ domain_aliases?: string[] | undefined;
12759
12768
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
12760
12769
  password_complexity_options?: {
12761
12770
  min_length?: number | undefined;
@@ -12859,6 +12868,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
12859
12868
  twilio_sid?: string | undefined;
12860
12869
  twilio_token?: string | undefined;
12861
12870
  icon_url?: string | undefined;
12871
+ domain_aliases?: string[] | undefined;
12862
12872
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
12863
12873
  password_complexity_options?: {
12864
12874
  min_length?: number | undefined;
@@ -12962,6 +12972,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
12962
12972
  twilio_sid?: string | undefined;
12963
12973
  twilio_token?: string | undefined;
12964
12974
  icon_url?: string | undefined;
12975
+ domain_aliases?: string[] | undefined;
12965
12976
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
12966
12977
  password_complexity_options?: {
12967
12978
  min_length?: number | undefined;
@@ -13074,6 +13085,7 @@ export declare const connectionInsertSchema: z.ZodObject<{
13074
13085
  twilio_sid?: string | undefined;
13075
13086
  twilio_token?: string | undefined;
13076
13087
  icon_url?: string | undefined;
13088
+ domain_aliases?: string[] | undefined;
13077
13089
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
13078
13090
  password_complexity_options?: {
13079
13091
  min_length?: number | undefined;
@@ -13206,6 +13218,7 @@ export declare const connectionSchema: z.ZodObject<{
13206
13218
  twilio_sid: z.ZodOptional<z.ZodString>;
13207
13219
  twilio_token: z.ZodOptional<z.ZodString>;
13208
13220
  icon_url: z.ZodOptional<z.ZodString>;
13221
+ domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13209
13222
  passwordPolicy: z.ZodOptional<z.ZodEnum<[
13210
13223
  "none",
13211
13224
  "low",
@@ -13632,6 +13645,7 @@ export declare const connectionSchema: z.ZodObject<{
13632
13645
  twilio_sid?: string | undefined;
13633
13646
  twilio_token?: string | undefined;
13634
13647
  icon_url?: string | undefined;
13648
+ domain_aliases?: string[] | undefined;
13635
13649
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
13636
13650
  password_complexity_options?: {
13637
13651
  min_length?: number | undefined;
@@ -13735,6 +13749,7 @@ export declare const connectionSchema: z.ZodObject<{
13735
13749
  twilio_sid?: string | undefined;
13736
13750
  twilio_token?: string | undefined;
13737
13751
  icon_url?: string | undefined;
13752
+ domain_aliases?: string[] | undefined;
13738
13753
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
13739
13754
  password_complexity_options?: {
13740
13755
  min_length?: number | undefined;
@@ -13838,6 +13853,7 @@ export declare const connectionSchema: z.ZodObject<{
13838
13853
  twilio_sid?: string | undefined;
13839
13854
  twilio_token?: string | undefined;
13840
13855
  icon_url?: string | undefined;
13856
+ domain_aliases?: string[] | undefined;
13841
13857
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
13842
13858
  password_complexity_options?: {
13843
13859
  min_length?: number | undefined;
@@ -13952,6 +13968,7 @@ export declare const connectionSchema: z.ZodObject<{
13952
13968
  twilio_sid?: string | undefined;
13953
13969
  twilio_token?: string | undefined;
13954
13970
  icon_url?: string | undefined;
13971
+ domain_aliases?: string[] | undefined;
13955
13972
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
13956
13973
  password_complexity_options?: {
13957
13974
  min_length?: number | undefined;
@@ -43139,7 +43156,7 @@ export declare const inviteSchema: z.ZodObject<{
43139
43156
  ticket_id?: string | undefined;
43140
43157
  }>;
43141
43158
  export type Invite = z.infer<typeof inviteSchema>;
43142
- export declare const jwksSchema: z.ZodObject<{
43159
+ export declare const jwksSchema: z.ZodEffects<z.ZodObject<{
43143
43160
  alg: z.ZodEnum<[
43144
43161
  "RS256",
43145
43162
  "RS384",
@@ -43151,41 +43168,74 @@ export declare const jwksSchema: z.ZodObject<{
43151
43168
  "HS384",
43152
43169
  "HS512"
43153
43170
  ]>;
43154
- e: z.ZodString;
43155
43171
  kid: z.ZodString;
43156
43172
  kty: z.ZodEnum<[
43157
43173
  "RSA",
43158
43174
  "EC",
43159
43175
  "oct"
43160
43176
  ]>;
43161
- n: z.ZodString;
43162
- x5t: z.ZodOptional<z.ZodString>;
43163
- x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43164
43177
  use: z.ZodOptional<z.ZodEnum<[
43165
43178
  "sig",
43166
43179
  "enc"
43167
43180
  ]>>;
43181
+ n: z.ZodOptional<z.ZodString>;
43182
+ e: z.ZodOptional<z.ZodString>;
43183
+ crv: z.ZodOptional<z.ZodString>;
43184
+ x: z.ZodOptional<z.ZodString>;
43185
+ y: z.ZodOptional<z.ZodString>;
43186
+ x5t: z.ZodOptional<z.ZodString>;
43187
+ x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43168
43188
  }, "strip", z.ZodTypeAny, {
43169
43189
  kid: string;
43170
43190
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43171
- e: string;
43172
43191
  kty: "RSA" | "EC" | "oct";
43173
- n: string;
43192
+ x?: string | undefined;
43193
+ y?: string | undefined;
43194
+ use?: "sig" | "enc" | undefined;
43195
+ n?: string | undefined;
43196
+ e?: string | undefined;
43197
+ crv?: string | undefined;
43174
43198
  x5t?: string | undefined;
43175
43199
  x5c?: string[] | undefined;
43176
- use?: "sig" | "enc" | undefined;
43177
43200
  }, {
43178
43201
  kid: string;
43179
43202
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43180
- e: string;
43181
43203
  kty: "RSA" | "EC" | "oct";
43182
- n: string;
43204
+ x?: string | undefined;
43205
+ y?: string | undefined;
43206
+ use?: "sig" | "enc" | undefined;
43207
+ n?: string | undefined;
43208
+ e?: string | undefined;
43209
+ crv?: string | undefined;
43210
+ x5t?: string | undefined;
43211
+ x5c?: string[] | undefined;
43212
+ }>, {
43213
+ kid: string;
43214
+ alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43215
+ kty: "RSA" | "EC" | "oct";
43216
+ x?: string | undefined;
43217
+ y?: string | undefined;
43218
+ use?: "sig" | "enc" | undefined;
43219
+ n?: string | undefined;
43220
+ e?: string | undefined;
43221
+ crv?: string | undefined;
43183
43222
  x5t?: string | undefined;
43184
43223
  x5c?: string[] | undefined;
43224
+ }, {
43225
+ kid: string;
43226
+ alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43227
+ kty: "RSA" | "EC" | "oct";
43228
+ x?: string | undefined;
43229
+ y?: string | undefined;
43185
43230
  use?: "sig" | "enc" | undefined;
43231
+ n?: string | undefined;
43232
+ e?: string | undefined;
43233
+ crv?: string | undefined;
43234
+ x5t?: string | undefined;
43235
+ x5c?: string[] | undefined;
43186
43236
  }>;
43187
43237
  export declare const jwksKeySchema: z.ZodObject<{
43188
- keys: z.ZodArray<z.ZodObject<{
43238
+ keys: z.ZodArray<z.ZodEffects<z.ZodObject<{
43189
43239
  alg: z.ZodEnum<[
43190
43240
  "RS256",
43191
43241
  "RS384",
@@ -43197,62 +43247,103 @@ export declare const jwksKeySchema: z.ZodObject<{
43197
43247
  "HS384",
43198
43248
  "HS512"
43199
43249
  ]>;
43200
- e: z.ZodString;
43201
43250
  kid: z.ZodString;
43202
43251
  kty: z.ZodEnum<[
43203
43252
  "RSA",
43204
43253
  "EC",
43205
43254
  "oct"
43206
43255
  ]>;
43207
- n: z.ZodString;
43208
- x5t: z.ZodOptional<z.ZodString>;
43209
- x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43210
43256
  use: z.ZodOptional<z.ZodEnum<[
43211
43257
  "sig",
43212
43258
  "enc"
43213
43259
  ]>>;
43260
+ n: z.ZodOptional<z.ZodString>;
43261
+ e: z.ZodOptional<z.ZodString>;
43262
+ crv: z.ZodOptional<z.ZodString>;
43263
+ x: z.ZodOptional<z.ZodString>;
43264
+ y: z.ZodOptional<z.ZodString>;
43265
+ x5t: z.ZodOptional<z.ZodString>;
43266
+ x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43214
43267
  }, "strip", z.ZodTypeAny, {
43215
43268
  kid: string;
43216
43269
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43217
- e: string;
43218
43270
  kty: "RSA" | "EC" | "oct";
43219
- n: string;
43271
+ x?: string | undefined;
43272
+ y?: string | undefined;
43273
+ use?: "sig" | "enc" | undefined;
43274
+ n?: string | undefined;
43275
+ e?: string | undefined;
43276
+ crv?: string | undefined;
43220
43277
  x5t?: string | undefined;
43221
43278
  x5c?: string[] | undefined;
43222
- use?: "sig" | "enc" | undefined;
43223
43279
  }, {
43224
43280
  kid: string;
43225
43281
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43226
- e: string;
43227
43282
  kty: "RSA" | "EC" | "oct";
43228
- n: string;
43283
+ x?: string | undefined;
43284
+ y?: string | undefined;
43285
+ use?: "sig" | "enc" | undefined;
43286
+ n?: string | undefined;
43287
+ e?: string | undefined;
43288
+ crv?: string | undefined;
43229
43289
  x5t?: string | undefined;
43230
43290
  x5c?: string[] | undefined;
43291
+ }>, {
43292
+ kid: string;
43293
+ alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43294
+ kty: "RSA" | "EC" | "oct";
43295
+ x?: string | undefined;
43296
+ y?: string | undefined;
43231
43297
  use?: "sig" | "enc" | undefined;
43298
+ n?: string | undefined;
43299
+ e?: string | undefined;
43300
+ crv?: string | undefined;
43301
+ x5t?: string | undefined;
43302
+ x5c?: string[] | undefined;
43303
+ }, {
43304
+ kid: string;
43305
+ alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43306
+ kty: "RSA" | "EC" | "oct";
43307
+ x?: string | undefined;
43308
+ y?: string | undefined;
43309
+ use?: "sig" | "enc" | undefined;
43310
+ n?: string | undefined;
43311
+ e?: string | undefined;
43312
+ crv?: string | undefined;
43313
+ x5t?: string | undefined;
43314
+ x5c?: string[] | undefined;
43232
43315
  }>, "many">;
43233
43316
  }, "strip", z.ZodTypeAny, {
43234
43317
  keys: {
43235
43318
  kid: string;
43236
43319
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43237
- e: string;
43238
43320
  kty: "RSA" | "EC" | "oct";
43239
- n: string;
43321
+ x?: string | undefined;
43322
+ y?: string | undefined;
43323
+ use?: "sig" | "enc" | undefined;
43324
+ n?: string | undefined;
43325
+ e?: string | undefined;
43326
+ crv?: string | undefined;
43240
43327
  x5t?: string | undefined;
43241
43328
  x5c?: string[] | undefined;
43242
- use?: "sig" | "enc" | undefined;
43243
43329
  }[];
43244
43330
  }, {
43245
43331
  keys: {
43246
43332
  kid: string;
43247
43333
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
43248
- e: string;
43249
43334
  kty: "RSA" | "EC" | "oct";
43250
- n: string;
43335
+ x?: string | undefined;
43336
+ y?: string | undefined;
43337
+ use?: "sig" | "enc" | undefined;
43338
+ n?: string | undefined;
43339
+ e?: string | undefined;
43340
+ crv?: string | undefined;
43251
43341
  x5t?: string | undefined;
43252
43342
  x5c?: string[] | undefined;
43253
- use?: "sig" | "enc" | undefined;
43254
43343
  }[];
43255
43344
  }>;
43345
+ export type Jwk = z.infer<typeof jwksSchema>;
43346
+ export type Jwks = z.infer<typeof jwksKeySchema>;
43256
43347
  export declare const openIDConfigurationSchema: z.ZodObject<{
43257
43348
  issuer: z.ZodString;
43258
43349
  authorization_endpoint: z.ZodString;
@@ -43275,6 +43366,7 @@ export declare const openIDConfigurationSchema: z.ZodObject<{
43275
43366
  claims_supported: z.ZodArray<z.ZodString, "many">;
43276
43367
  request_uri_parameter_supported: z.ZodBoolean;
43277
43368
  request_parameter_supported: z.ZodBoolean;
43369
+ request_object_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43278
43370
  token_endpoint_auth_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
43279
43371
  }, "strip", z.ZodTypeAny, {
43280
43372
  authorization_endpoint: string;
@@ -43299,6 +43391,7 @@ export declare const openIDConfigurationSchema: z.ZodObject<{
43299
43391
  registration_endpoint?: string | undefined;
43300
43392
  end_session_endpoint?: string | undefined;
43301
43393
  grant_types_supported?: string[] | undefined;
43394
+ request_object_signing_alg_values_supported?: string[] | undefined;
43302
43395
  }, {
43303
43396
  authorization_endpoint: string;
43304
43397
  token_endpoint: string;
@@ -43322,6 +43415,7 @@ export declare const openIDConfigurationSchema: z.ZodObject<{
43322
43415
  registration_endpoint?: string | undefined;
43323
43416
  end_session_endpoint?: string | undefined;
43324
43417
  grant_types_supported?: string[] | undefined;
43418
+ request_object_signing_alg_values_supported?: string[] | undefined;
43325
43419
  }>;
43326
43420
  export interface ListParams {
43327
43421
  page?: number;
@@ -43846,6 +43940,7 @@ export declare const LogTypes: {
43846
43940
  readonly SUCCESSFULLY_ACCEPTED_USER_INVITE: "si";
43847
43941
  readonly BREACHED_PASSWORD_ON_SIGNUP: "signup_pwd_leak";
43848
43942
  readonly SUCCESS_LOGOUT: "slo";
43943
+ readonly SUCCESS_HOOK: "sh";
43849
43944
  readonly SUCCESS_REVOCATION: "srrt";
43850
43945
  readonly SUCCESS_SIGNUP: "ss";
43851
43946
  readonly FAILED_SS_SSO_OPERATION: "ss_sso_failure";
@@ -43911,7 +44006,7 @@ export declare const LocationInfo: z.ZodObject<{
43911
44006
  continent_code: string;
43912
44007
  }>;
43913
44008
  export declare const logInsertSchema: z.ZodObject<{
43914
- type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
44009
+ type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
43915
44010
  date: z.ZodString;
43916
44011
  description: z.ZodOptional<z.ZodString>;
43917
44012
  ip: z.ZodOptional<z.ZodString>;
@@ -43976,7 +44071,7 @@ export declare const logInsertSchema: z.ZodObject<{
43976
44071
  continent_code: string;
43977
44072
  }>>;
43978
44073
  }, "strip", z.ZodTypeAny, {
43979
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
44074
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
43980
44075
  date: string;
43981
44076
  isMobile: boolean;
43982
44077
  description?: string | undefined;
@@ -44049,7 +44144,7 @@ export declare const logInsertSchema: z.ZodObject<{
44049
44144
  export type LogInsert = z.infer<typeof logInsertSchema>;
44050
44145
  export declare const logSchema: z.ZodObject<{
44051
44146
  log_id: z.ZodString;
44052
- type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
44147
+ type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
44053
44148
  date: z.ZodString;
44054
44149
  description: z.ZodOptional<z.ZodString>;
44055
44150
  ip: z.ZodOptional<z.ZodString>;
@@ -44113,7 +44208,7 @@ export declare const logSchema: z.ZodObject<{
44113
44208
  continent_code: string;
44114
44209
  }>>;
44115
44210
  }, "strip", z.ZodTypeAny, {
44116
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
44211
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
44117
44212
  date: string;
44118
44213
  isMobile: boolean;
44119
44214
  log_id: string;
@@ -44977,6 +45072,7 @@ export declare const tenantInsertSchema: z.ZodObject<{
44977
45072
  }>>;
44978
45073
  allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
44979
45074
  default_redirection_uri: z.ZodOptional<z.ZodString>;
45075
+ default_client_id: z.ZodOptional<z.ZodString>;
44980
45076
  enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
44981
45077
  default_directory: z.ZodOptional<z.ZodString>;
44982
45078
  error_page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -45567,6 +45663,7 @@ export declare const tenantInsertSchema: z.ZodObject<{
45567
45663
  mode?: "persistent" | "non-persistent" | undefined;
45568
45664
  } | undefined;
45569
45665
  default_redirection_uri?: string | undefined;
45666
+ default_client_id?: string | undefined;
45570
45667
  enabled_locales?: string[] | undefined;
45571
45668
  default_directory?: string | undefined;
45572
45669
  error_page?: {
@@ -45732,6 +45829,7 @@ export declare const tenantInsertSchema: z.ZodObject<{
45732
45829
  mode?: "persistent" | "non-persistent" | undefined;
45733
45830
  } | undefined;
45734
45831
  default_redirection_uri?: string | undefined;
45832
+ default_client_id?: string | undefined;
45735
45833
  enabled_locales?: string[] | undefined;
45736
45834
  default_directory?: string | undefined;
45737
45835
  error_page?: {
@@ -45901,6 +45999,7 @@ export declare const tenantSchema: z.ZodObject<{
45901
45999
  }>>;
45902
46000
  allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45903
46001
  default_redirection_uri: z.ZodOptional<z.ZodString>;
46002
+ default_client_id: z.ZodOptional<z.ZodString>;
45904
46003
  enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45905
46004
  default_directory: z.ZodOptional<z.ZodString>;
45906
46005
  error_page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -46495,6 +46594,7 @@ export declare const tenantSchema: z.ZodObject<{
46495
46594
  mode?: "persistent" | "non-persistent" | undefined;
46496
46595
  } | undefined;
46497
46596
  default_redirection_uri?: string | undefined;
46597
+ default_client_id?: string | undefined;
46498
46598
  enabled_locales?: string[] | undefined;
46499
46599
  default_directory?: string | undefined;
46500
46600
  error_page?: {
@@ -46662,6 +46762,7 @@ export declare const tenantSchema: z.ZodObject<{
46662
46762
  mode?: "persistent" | "non-persistent" | undefined;
46663
46763
  } | undefined;
46664
46764
  default_redirection_uri?: string | undefined;
46765
+ default_client_id?: string | undefined;
46665
46766
  enabled_locales?: string[] | undefined;
46666
46767
  default_directory?: string | undefined;
46667
46768
  error_page?: {
@@ -47098,14 +47199,29 @@ export declare const pageBackgroundSchema: z.ZodObject<{
47098
47199
  "left",
47099
47200
  "right"
47100
47201
  ]>;
47202
+ /**
47203
+ * Where the tenant logo renders on the page.
47204
+ * - "widget" (default): inside the widget card via the widget's own header.
47205
+ * - "chip": as a floating pill in the top-left page corner. The widget's
47206
+ * internal logo is suppressed when this is selected.
47207
+ * - "none": no logo on the page or in the widget.
47208
+ * Optional for backwards compatibility; absent values mean "widget".
47209
+ */
47210
+ logo_placement: z.ZodOptional<z.ZodEnum<[
47211
+ "widget",
47212
+ "chip",
47213
+ "none"
47214
+ ]>>;
47101
47215
  }, "strip", z.ZodTypeAny, {
47102
47216
  background_color: string;
47103
47217
  background_image_url: string;
47104
47218
  page_layout: "center" | "left" | "right";
47219
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47105
47220
  }, {
47106
47221
  background_color: string;
47107
47222
  background_image_url: string;
47108
47223
  page_layout: "center" | "left" | "right";
47224
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47109
47225
  }>;
47110
47226
  export declare const widgetSchema: z.ZodObject<{
47111
47227
  header_text_alignment: z.ZodEnum<[
@@ -47376,14 +47492,29 @@ export declare const themeInsertSchema: z.ZodObject<{
47376
47492
  "left",
47377
47493
  "right"
47378
47494
  ]>;
47495
+ /**
47496
+ * Where the tenant logo renders on the page.
47497
+ * - "widget" (default): inside the widget card via the widget's own header.
47498
+ * - "chip": as a floating pill in the top-left page corner. The widget's
47499
+ * internal logo is suppressed when this is selected.
47500
+ * - "none": no logo on the page or in the widget.
47501
+ * Optional for backwards compatibility; absent values mean "widget".
47502
+ */
47503
+ logo_placement: z.ZodOptional<z.ZodEnum<[
47504
+ "widget",
47505
+ "chip",
47506
+ "none"
47507
+ ]>>;
47379
47508
  }, "strip", z.ZodTypeAny, {
47380
47509
  background_color: string;
47381
47510
  background_image_url: string;
47382
47511
  page_layout: "center" | "left" | "right";
47512
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47383
47513
  }, {
47384
47514
  background_color: string;
47385
47515
  background_image_url: string;
47386
47516
  page_layout: "center" | "left" | "right";
47517
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47387
47518
  }>;
47388
47519
  widget: z.ZodObject<{
47389
47520
  header_text_alignment: z.ZodEnum<[
@@ -47421,6 +47552,7 @@ export declare const themeInsertSchema: z.ZodObject<{
47421
47552
  background_color: string;
47422
47553
  background_image_url: string;
47423
47554
  page_layout: "center" | "left" | "right";
47555
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47424
47556
  };
47425
47557
  colors: {
47426
47558
  error: string;
@@ -47443,6 +47575,13 @@ export declare const themeInsertSchema: z.ZodObject<{
47443
47575
  widget_background: string;
47444
47576
  widget_border: string;
47445
47577
  };
47578
+ widget: {
47579
+ logo_url: string;
47580
+ header_text_alignment: "center" | "left" | "right";
47581
+ logo_height: number;
47582
+ logo_position: "none" | "center" | "left" | "right";
47583
+ social_buttons_layout: "bottom" | "top";
47584
+ };
47446
47585
  borders: {
47447
47586
  button_border_radius: number;
47448
47587
  button_border_weight: number;
@@ -47484,18 +47623,12 @@ export declare const themeInsertSchema: z.ZodObject<{
47484
47623
  bold: boolean;
47485
47624
  };
47486
47625
  };
47487
- widget: {
47488
- logo_url: string;
47489
- header_text_alignment: "center" | "left" | "right";
47490
- logo_height: number;
47491
- logo_position: "none" | "center" | "left" | "right";
47492
- social_buttons_layout: "bottom" | "top";
47493
- };
47494
47626
  }, {
47495
47627
  page_background: {
47496
47628
  background_color: string;
47497
47629
  background_image_url: string;
47498
47630
  page_layout: "center" | "left" | "right";
47631
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47499
47632
  };
47500
47633
  colors: {
47501
47634
  error: string;
@@ -47518,6 +47651,13 @@ export declare const themeInsertSchema: z.ZodObject<{
47518
47651
  widget_background: string;
47519
47652
  widget_border: string;
47520
47653
  };
47654
+ widget: {
47655
+ logo_url: string;
47656
+ header_text_alignment: "center" | "left" | "right";
47657
+ logo_height: number;
47658
+ logo_position: "none" | "center" | "left" | "right";
47659
+ social_buttons_layout: "bottom" | "top";
47660
+ };
47521
47661
  borders: {
47522
47662
  button_border_radius: number;
47523
47663
  button_border_weight: number;
@@ -47559,13 +47699,6 @@ export declare const themeInsertSchema: z.ZodObject<{
47559
47699
  bold: boolean;
47560
47700
  };
47561
47701
  };
47562
- widget: {
47563
- logo_url: string;
47564
- header_text_alignment: "center" | "left" | "right";
47565
- logo_height: number;
47566
- logo_position: "none" | "center" | "left" | "right";
47567
- social_buttons_layout: "bottom" | "top";
47568
- };
47569
47702
  }>;
47570
47703
  export type ThemeInsert = z.input<typeof themeInsertSchema>;
47571
47704
  export declare const themeSchema: z.ZodObject<{
@@ -47806,14 +47939,29 @@ export declare const themeSchema: z.ZodObject<{
47806
47939
  "left",
47807
47940
  "right"
47808
47941
  ]>;
47942
+ /**
47943
+ * Where the tenant logo renders on the page.
47944
+ * - "widget" (default): inside the widget card via the widget's own header.
47945
+ * - "chip": as a floating pill in the top-left page corner. The widget's
47946
+ * internal logo is suppressed when this is selected.
47947
+ * - "none": no logo on the page or in the widget.
47948
+ * Optional for backwards compatibility; absent values mean "widget".
47949
+ */
47950
+ logo_placement: z.ZodOptional<z.ZodEnum<[
47951
+ "widget",
47952
+ "chip",
47953
+ "none"
47954
+ ]>>;
47809
47955
  }, "strip", z.ZodTypeAny, {
47810
47956
  background_color: string;
47811
47957
  background_image_url: string;
47812
47958
  page_layout: "center" | "left" | "right";
47959
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47813
47960
  }, {
47814
47961
  background_color: string;
47815
47962
  background_image_url: string;
47816
47963
  page_layout: "center" | "left" | "right";
47964
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47817
47965
  }>;
47818
47966
  widget: z.ZodObject<{
47819
47967
  header_text_alignment: z.ZodEnum<[
@@ -47853,6 +48001,7 @@ export declare const themeSchema: z.ZodObject<{
47853
48001
  background_color: string;
47854
48002
  background_image_url: string;
47855
48003
  page_layout: "center" | "left" | "right";
48004
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47856
48005
  };
47857
48006
  colors: {
47858
48007
  error: string;
@@ -47875,6 +48024,13 @@ export declare const themeSchema: z.ZodObject<{
47875
48024
  widget_background: string;
47876
48025
  widget_border: string;
47877
48026
  };
48027
+ widget: {
48028
+ logo_url: string;
48029
+ header_text_alignment: "center" | "left" | "right";
48030
+ logo_height: number;
48031
+ logo_position: "none" | "center" | "left" | "right";
48032
+ social_buttons_layout: "bottom" | "top";
48033
+ };
47878
48034
  borders: {
47879
48035
  button_border_radius: number;
47880
48036
  button_border_weight: number;
@@ -47916,19 +48072,13 @@ export declare const themeSchema: z.ZodObject<{
47916
48072
  bold: boolean;
47917
48073
  };
47918
48074
  };
47919
- widget: {
47920
- logo_url: string;
47921
- header_text_alignment: "center" | "left" | "right";
47922
- logo_height: number;
47923
- logo_position: "none" | "center" | "left" | "right";
47924
- social_buttons_layout: "bottom" | "top";
47925
- };
47926
48075
  themeId: string;
47927
48076
  }, {
47928
48077
  page_background: {
47929
48078
  background_color: string;
47930
48079
  background_image_url: string;
47931
48080
  page_layout: "center" | "left" | "right";
48081
+ logo_placement?: "none" | "widget" | "chip" | undefined;
47932
48082
  };
47933
48083
  colors: {
47934
48084
  error: string;
@@ -47951,6 +48101,13 @@ export declare const themeSchema: z.ZodObject<{
47951
48101
  widget_background: string;
47952
48102
  widget_border: string;
47953
48103
  };
48104
+ widget: {
48105
+ logo_url: string;
48106
+ header_text_alignment: "center" | "left" | "right";
48107
+ logo_height: number;
48108
+ logo_position: "none" | "center" | "left" | "right";
48109
+ social_buttons_layout: "bottom" | "top";
48110
+ };
47954
48111
  borders: {
47955
48112
  button_border_radius: number;
47956
48113
  button_border_weight: number;
@@ -47992,13 +48149,6 @@ export declare const themeSchema: z.ZodObject<{
47992
48149
  bold: boolean;
47993
48150
  };
47994
48151
  };
47995
- widget: {
47996
- logo_url: string;
47997
- header_text_alignment: "center" | "left" | "right";
47998
- logo_height: number;
47999
- logo_position: "none" | "center" | "left" | "right";
48000
- social_buttons_layout: "bottom" | "top";
48001
- };
48002
48152
  themeId: string;
48003
48153
  }>;
48004
48154
  export type Theme = z.infer<typeof themeSchema>;
@@ -50846,6 +50996,37 @@ export interface OutboxAdapter {
50846
50996
  /** Delete processed events older than the given ISO date. Returns count deleted. */
50847
50997
  cleanup(olderThan: string): Promise<number>;
50848
50998
  }
50999
+ /**
51000
+ * Logical buckets that consumers can rate-limit against. Backends decide
51001
+ * how each scope is enforced (e.g. mapping to a separate Cloudflare Workers
51002
+ * Rate Limiter binding with its own deploy-time limit/period).
51003
+ */
51004
+ export type RateLimitScope = "pre-login" | "pre-user-registration" | "brute-force";
51005
+ export interface RateLimitDecision {
51006
+ /** True if the request is allowed; false if the limit was exceeded. */
51007
+ allowed: boolean;
51008
+ /** Optional retry-after hint in seconds (omitted if the backend can't tell). */
51009
+ retryAfterSeconds?: number;
51010
+ }
51011
+ export interface RateLimitAdapter {
51012
+ /**
51013
+ * Consume one unit of quota for the given scope and key.
51014
+ *
51015
+ * The numeric threshold and window are backend-specific; the
51016
+ * Cloudflare Workers Rate Limiter binding bakes them in at deploy
51017
+ * time and cannot honor a per-tenant override. Callers that need
51018
+ * per-tenant `max_attempts` should layer their own counter on top.
51019
+ *
51020
+ * Returns `{ allowed: true }` if the scope is not configured, so
51021
+ * callers can opt in by configuring backends without changing call
51022
+ * sites.
51023
+ */
51024
+ consume(scope: RateLimitScope, key: string): Promise<RateLimitDecision>;
51025
+ }
51026
+ export interface CodeExecutionLog {
51027
+ level: "log" | "info" | "warn" | "error" | "debug";
51028
+ message: string;
51029
+ }
50849
51030
  export interface CodeExecutionResult {
50850
51031
  success: boolean;
50851
51032
  error?: string;
@@ -50854,6 +51035,12 @@ export interface CodeExecutionResult {
50854
51035
  method: string;
50855
51036
  args: unknown[];
50856
51037
  }>;
51038
+ /**
51039
+ * Console output captured from the user code during execution. Populated by
51040
+ * executors that shadow `console.*` inside the sandbox; absent on executors
51041
+ * that don't support capture.
51042
+ */
51043
+ logs?: CodeExecutionLog[];
50857
51044
  }
50858
51045
  export interface CodeExecutor {
50859
51046
  execute(params: {
@@ -50937,6 +51124,13 @@ export interface DataAdapters {
50937
51124
  smsService?: SmsServiceAdapter;
50938
51125
  /** Optional outbox adapter for transactional audit event capture */
50939
51126
  outbox?: OutboxAdapter;
51127
+ /**
51128
+ * Optional rate-limit adapter for short-window abuse protection
51129
+ * (e.g. backed by the Cloudflare Workers Rate Limiter binding).
51130
+ * Auth flows treat this as opt-in: when undefined, no extra
51131
+ * throttling is applied.
51132
+ */
51133
+ rateLimit?: RateLimitAdapter;
50940
51134
  /**
50941
51135
  * Execute a callback within a database transaction.
50942
51136
  * The callback receives a set of adapters scoped to the transaction.
@@ -51008,6 +51202,7 @@ export type Variables = {
51008
51202
  countryCode?: CountryCode;
51009
51203
  outboxEventPromises?: Promise<string>[];
51010
51204
  backgroundPromises?: Promise<void>[];
51205
+ client_authenticated_via_assertion?: boolean;
51011
51206
  };
51012
51207
  /**
51013
51208
  * Interface for SAML signing implementations.
@@ -51058,6 +51253,7 @@ declare const enrichedClientSchema: z.ZodObject<{
51058
51253
  }>>;
51059
51254
  allowed_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51060
51255
  default_redirection_uri: z.ZodOptional<z.ZodString>;
51256
+ default_client_id: z.ZodOptional<z.ZodString>;
51061
51257
  enabled_locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51062
51258
  default_directory: z.ZodOptional<z.ZodString>;
51063
51259
  error_page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -51652,6 +51848,7 @@ declare const enrichedClientSchema: z.ZodObject<{
51652
51848
  mode?: "persistent" | "non-persistent" | undefined;
51653
51849
  } | undefined;
51654
51850
  default_redirection_uri?: string | undefined;
51851
+ default_client_id?: string | undefined;
51655
51852
  enabled_locales?: string[] | undefined;
51656
51853
  default_directory?: string | undefined;
51657
51854
  error_page?: {
@@ -51819,6 +52016,7 @@ declare const enrichedClientSchema: z.ZodObject<{
51819
52016
  mode?: "persistent" | "non-persistent" | undefined;
51820
52017
  } | undefined;
51821
52018
  default_redirection_uri?: string | undefined;
52019
+ default_client_id?: string | undefined;
51822
52020
  enabled_locales?: string[] | undefined;
51823
52021
  default_directory?: string | undefined;
51824
52022
  error_page?: {
@@ -51991,6 +52189,7 @@ declare const enrichedClientSchema: z.ZodObject<{
51991
52189
  twilio_sid: z.ZodOptional<z.ZodString>;
51992
52190
  twilio_token: z.ZodOptional<z.ZodString>;
51993
52191
  icon_url: z.ZodOptional<z.ZodString>;
52192
+ domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51994
52193
  passwordPolicy: z.ZodOptional<z.ZodEnum<[
51995
52194
  "none",
51996
52195
  "low",
@@ -52417,6 +52616,7 @@ declare const enrichedClientSchema: z.ZodObject<{
52417
52616
  twilio_sid?: string | undefined;
52418
52617
  twilio_token?: string | undefined;
52419
52618
  icon_url?: string | undefined;
52619
+ domain_aliases?: string[] | undefined;
52420
52620
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
52421
52621
  password_complexity_options?: {
52422
52622
  min_length?: number | undefined;
@@ -52520,6 +52720,7 @@ declare const enrichedClientSchema: z.ZodObject<{
52520
52720
  twilio_sid?: string | undefined;
52521
52721
  twilio_token?: string | undefined;
52522
52722
  icon_url?: string | undefined;
52723
+ domain_aliases?: string[] | undefined;
52523
52724
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
52524
52725
  password_complexity_options?: {
52525
52726
  min_length?: number | undefined;
@@ -52623,6 +52824,7 @@ declare const enrichedClientSchema: z.ZodObject<{
52623
52824
  twilio_sid?: string | undefined;
52624
52825
  twilio_token?: string | undefined;
52625
52826
  icon_url?: string | undefined;
52827
+ domain_aliases?: string[] | undefined;
52626
52828
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
52627
52829
  password_complexity_options?: {
52628
52830
  min_length?: number | undefined;
@@ -52737,6 +52939,7 @@ declare const enrichedClientSchema: z.ZodObject<{
52737
52939
  twilio_sid?: string | undefined;
52738
52940
  twilio_token?: string | undefined;
52739
52941
  icon_url?: string | undefined;
52942
+ domain_aliases?: string[] | undefined;
52740
52943
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
52741
52944
  password_complexity_options?: {
52742
52945
  min_length?: number | undefined;
@@ -52902,7 +53105,9 @@ declare const enrichedClientSchema: z.ZodObject<{
52902
53105
  token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
52903
53106
  "none",
52904
53107
  "client_secret_post",
52905
- "client_secret_basic"
53108
+ "client_secret_basic",
53109
+ "client_secret_jwt",
53110
+ "private_key_jwt"
52906
53111
  ]>>>;
52907
53112
  client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
52908
53113
  mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
@@ -53002,6 +53207,7 @@ declare const enrichedClientSchema: z.ZodObject<{
53002
53207
  mode?: "persistent" | "non-persistent" | undefined;
53003
53208
  } | undefined;
53004
53209
  default_redirection_uri?: string | undefined;
53210
+ default_client_id?: string | undefined;
53005
53211
  enabled_locales?: string[] | undefined;
53006
53212
  default_directory?: string | undefined;
53007
53213
  error_page?: {
@@ -53175,6 +53381,7 @@ declare const enrichedClientSchema: z.ZodObject<{
53175
53381
  twilio_sid?: string | undefined;
53176
53382
  twilio_token?: string | undefined;
53177
53383
  icon_url?: string | undefined;
53384
+ domain_aliases?: string[] | undefined;
53178
53385
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
53179
53386
  password_complexity_options?: {
53180
53387
  min_length?: number | undefined;
@@ -53299,7 +53506,7 @@ declare const enrichedClientSchema: z.ZodObject<{
53299
53506
  custom_login_page_preview?: string | undefined;
53300
53507
  form_template?: string | undefined;
53301
53508
  addons?: Record<string, any> | undefined;
53302
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
53509
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
53303
53510
  client_metadata?: Record<string, string> | undefined;
53304
53511
  mobile?: Record<string, any> | undefined;
53305
53512
  initiate_login_uri?: string | undefined;
@@ -53351,6 +53558,7 @@ declare const enrichedClientSchema: z.ZodObject<{
53351
53558
  mode?: "persistent" | "non-persistent" | undefined;
53352
53559
  } | undefined;
53353
53560
  default_redirection_uri?: string | undefined;
53561
+ default_client_id?: string | undefined;
53354
53562
  enabled_locales?: string[] | undefined;
53355
53563
  default_directory?: string | undefined;
53356
53564
  error_page?: {
@@ -53543,7 +53751,7 @@ declare const enrichedClientSchema: z.ZodObject<{
53543
53751
  custom_login_page_preview?: string | undefined;
53544
53752
  form_template?: string | undefined;
53545
53753
  addons?: Record<string, any> | undefined;
53546
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
53754
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
53547
53755
  client_metadata?: Record<string, string> | undefined;
53548
53756
  mobile?: Record<string, any> | undefined;
53549
53757
  initiate_login_uri?: string | undefined;
@@ -53936,6 +54144,16 @@ export interface OutboxConfig {
53936
54144
  * A per-client `user_linking_mode` overrides this service-level default.
53937
54145
  */
53938
54146
  export type UserLinkingMode = "builtin" | "off";
54147
+ /**
54148
+ * Resolver form for the service-level user-linking mode. Receives the
54149
+ * resolved `tenant_id` (and `client_id`, when the request has one) and
54150
+ * returns the mode to use for that request. May be async.
54151
+ */
54152
+ export type UserLinkingModeResolver = (params: {
54153
+ tenant_id: string;
54154
+ client_id?: string;
54155
+ }) => UserLinkingMode | Promise<UserLinkingMode>;
54156
+ export type UserLinkingModeOption = UserLinkingMode | UserLinkingModeResolver;
53939
54157
  export interface AuthHeroConfig {
53940
54158
  dataAdapter: DataAdapters;
53941
54159
  /**
@@ -54042,6 +54260,7 @@ export interface AuthHeroConfig {
54042
54260
  * dataAdapter,
54043
54261
  * poweredByLogo: {
54044
54262
  * url: "https://example.com/logo.svg",
54263
+ * darkUrl: "https://example.com/logo-dark.svg", // optional dark-mode variant
54045
54264
  * alt: "Powered by Example",
54046
54265
  * href: "https://example.com", // optional link
54047
54266
  * height: 24, // optional height in pixels (default: 20)
@@ -54050,8 +54269,10 @@ export interface AuthHeroConfig {
54050
54269
  * ```
54051
54270
  */
54052
54271
  poweredByLogo?: {
54053
- /** URL of the logo image */
54272
+ /** URL of the logo image (used in light mode, and in dark mode if `darkUrl` is not provided) */
54054
54273
  url: string;
54274
+ /** Optional dark-mode variant; falls back to `url` when omitted */
54275
+ darkUrl?: string;
54055
54276
  /** Alt text for the logo */
54056
54277
  alt: string;
54057
54278
  /** Optional link URL - if provided, the logo will be clickable */
@@ -54129,9 +54350,13 @@ export interface AuthHeroConfig {
54129
54350
  * lookup by verified email at user creation and email update. A per-client
54130
54351
  * `user_linking_mode` setting overrides this default.
54131
54352
  *
54353
+ * Accepts either a static value or a resolver function that receives
54354
+ * `{ tenant_id, client_id }` and returns the mode (sync or async). Use
54355
+ * the resolver form to disable built-in linking on a per-tenant basis.
54356
+ *
54132
54357
  * @default "builtin"
54133
54358
  */
54134
- userLinkingMode?: UserLinkingMode;
54359
+ userLinkingMode?: UserLinkingModeOption;
54135
54360
  }
54136
54361
  export type UserInfo = {
54137
54362
  sub: string;
@@ -54184,6 +54409,7 @@ export type Bindings = {
54184
54409
  samlSigner?: SamlSigner;
54185
54410
  poweredByLogo?: {
54186
54411
  url: string;
54412
+ darkUrl?: string;
54187
54413
  alt: string;
54188
54414
  href?: string;
54189
54415
  height?: number;
@@ -54191,10 +54417,28 @@ export type Bindings = {
54191
54417
  codeExecutor?: CodeExecutor;
54192
54418
  webhookInvoker?: WebhookInvoker;
54193
54419
  outbox?: OutboxConfig;
54194
- userLinkingMode?: UserLinkingMode;
54420
+ userLinkingMode?: UserLinkingModeOption;
54421
+ /**
54422
+ * Allow outbound fetches (jwks_uri, request_uri) to localhost / private IP
54423
+ * ranges and over plain http. Intended for tests and local development;
54424
+ * leave unset (or false) in production so SSRF protection stays on.
54425
+ */
54426
+ ALLOW_PRIVATE_OUTBOUND_FETCH?: boolean;
54195
54427
  };
54428
+ /**
54429
+ * Supported signing-key shapes. Note: `EC-P-521` is not supported on
54430
+ * Cloudflare Workers (`workerd`) — `crypto.subtle.generateKey` will reject
54431
+ * `{ name: "ECDSA", namedCurve: "P-521" }` there. Callers running on Workers
54432
+ * must pick `RSA`, `EC-P-256`, or `EC-P-384`.
54433
+ */
54434
+ export type SigningKeyType = "RSA" | "EC-P-256" | "EC-P-384" | "EC-P-521";
54196
54435
  export interface CreateX509CertificateParams {
54197
54436
  name: string;
54437
+ /**
54438
+ * The key type to generate. Defaults to "RSA" (RS256-compatible) for
54439
+ * backwards compatibility with existing tenants.
54440
+ */
54441
+ keyType?: SigningKeyType;
54198
54442
  }
54199
54443
  declare function createX509Certificate(params: CreateX509CertificateParams): Promise<SigningKey>;
54200
54444
  export type AppLogoProps = {
@@ -61711,6 +61955,7 @@ export declare function init(config: AuthHeroConfig): {
61711
61955
  twilio_sid?: string | undefined | undefined;
61712
61956
  twilio_token?: string | undefined | undefined;
61713
61957
  icon_url?: string | undefined | undefined;
61958
+ domain_aliases?: string[] | undefined | undefined;
61714
61959
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
61715
61960
  password_complexity_options?: {
61716
61961
  min_length?: number | undefined | undefined;
@@ -61833,6 +62078,7 @@ export declare function init(config: AuthHeroConfig): {
61833
62078
  twilio_sid?: string | undefined | undefined;
61834
62079
  twilio_token?: string | undefined | undefined;
61835
62080
  icon_url?: string | undefined | undefined;
62081
+ domain_aliases?: string[] | undefined | undefined;
61836
62082
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
61837
62083
  password_complexity_options?: {
61838
62084
  min_length?: number | undefined | undefined;
@@ -61974,6 +62220,7 @@ export declare function init(config: AuthHeroConfig): {
61974
62220
  twilio_sid?: string | undefined | undefined;
61975
62221
  twilio_token?: string | undefined | undefined;
61976
62222
  icon_url?: string | undefined | undefined;
62223
+ domain_aliases?: string[] | undefined | undefined;
61977
62224
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
61978
62225
  password_complexity_options?: {
61979
62226
  min_length?: number | undefined | undefined;
@@ -62143,6 +62390,7 @@ export declare function init(config: AuthHeroConfig): {
62143
62390
  twilio_sid?: string | undefined | undefined;
62144
62391
  twilio_token?: string | undefined | undefined;
62145
62392
  icon_url?: string | undefined | undefined;
62393
+ domain_aliases?: string[] | undefined | undefined;
62146
62394
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
62147
62395
  password_complexity_options?: {
62148
62396
  min_length?: number | undefined | undefined;
@@ -62291,6 +62539,7 @@ export declare function init(config: AuthHeroConfig): {
62291
62539
  twilio_sid?: string | undefined | undefined;
62292
62540
  twilio_token?: string | undefined | undefined;
62293
62541
  icon_url?: string | undefined | undefined;
62542
+ domain_aliases?: string[] | undefined | undefined;
62294
62543
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
62295
62544
  password_complexity_options?: {
62296
62545
  min_length?: number | undefined | undefined;
@@ -63468,7 +63717,7 @@ export declare function init(config: AuthHeroConfig): {
63468
63717
  };
63469
63718
  };
63470
63719
  output: {
63471
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
63720
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
63472
63721
  date: string;
63473
63722
  isMobile: boolean;
63474
63723
  log_id: string;
@@ -63507,7 +63756,7 @@ export declare function init(config: AuthHeroConfig): {
63507
63756
  start: number;
63508
63757
  limit: number;
63509
63758
  logs: {
63510
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
63759
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
63511
63760
  date: string;
63512
63761
  isMobile: boolean;
63513
63762
  log_id: string;
@@ -63561,7 +63810,7 @@ export declare function init(config: AuthHeroConfig): {
63561
63810
  };
63562
63811
  };
63563
63812
  output: {
63564
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
63813
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
63565
63814
  date: string;
63566
63815
  isMobile: boolean;
63567
63816
  log_id: string;
@@ -63882,7 +64131,7 @@ export declare function init(config: AuthHeroConfig): {
63882
64131
  addons?: {
63883
64132
  [x: string]: any;
63884
64133
  } | undefined;
63885
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
64134
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined | undefined;
63886
64135
  client_metadata?: {
63887
64136
  [x: string]: string;
63888
64137
  } | undefined;
@@ -63977,7 +64226,7 @@ export declare function init(config: AuthHeroConfig): {
63977
64226
  addons?: {
63978
64227
  [x: string]: any;
63979
64228
  } | undefined;
63980
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
64229
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined | undefined;
63981
64230
  client_metadata?: {
63982
64231
  [x: string]: string;
63983
64232
  } | undefined;
@@ -64087,7 +64336,7 @@ export declare function init(config: AuthHeroConfig): {
64087
64336
  addons?: {
64088
64337
  [x: string]: any;
64089
64338
  } | undefined;
64090
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
64339
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined | undefined;
64091
64340
  client_metadata?: {
64092
64341
  [x: string]: string;
64093
64342
  } | undefined;
@@ -64187,7 +64436,7 @@ export declare function init(config: AuthHeroConfig): {
64187
64436
  custom_login_page_preview?: string | undefined;
64188
64437
  form_template?: string | undefined;
64189
64438
  addons?: Record<string, any> | undefined;
64190
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
64439
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
64191
64440
  client_metadata?: Record<string, string> | undefined;
64192
64441
  mobile?: Record<string, any> | undefined;
64193
64442
  initiate_login_uri?: string | undefined;
@@ -64275,7 +64524,7 @@ export declare function init(config: AuthHeroConfig): {
64275
64524
  addons?: {
64276
64525
  [x: string]: any;
64277
64526
  } | undefined;
64278
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
64527
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined | undefined;
64279
64528
  client_metadata?: {
64280
64529
  [x: string]: string;
64281
64530
  } | undefined;
@@ -64354,7 +64603,7 @@ export declare function init(config: AuthHeroConfig): {
64354
64603
  custom_login_page_preview?: string | undefined;
64355
64604
  form_template?: string | undefined;
64356
64605
  addons?: Record<string, any> | undefined;
64357
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
64606
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
64358
64607
  client_metadata?: Record<string, string> | undefined;
64359
64608
  mobile?: Record<string, any> | undefined;
64360
64609
  initiate_login_uri?: string | undefined;
@@ -64433,7 +64682,7 @@ export declare function init(config: AuthHeroConfig): {
64433
64682
  addons?: {
64434
64683
  [x: string]: any;
64435
64684
  } | undefined;
64436
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
64685
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
64437
64686
  client_metadata?: {
64438
64687
  [x: string]: string;
64439
64688
  } | undefined;
@@ -64524,6 +64773,7 @@ export declare function init(config: AuthHeroConfig): {
64524
64773
  twilio_sid?: string | undefined | undefined;
64525
64774
  twilio_token?: string | undefined | undefined;
64526
64775
  icon_url?: string | undefined | undefined;
64776
+ domain_aliases?: string[] | undefined | undefined;
64527
64777
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
64528
64778
  password_complexity_options?: {
64529
64779
  min_length?: number | undefined | undefined;
@@ -64668,6 +64918,7 @@ export declare function init(config: AuthHeroConfig): {
64668
64918
  twilio_sid?: string | undefined | undefined;
64669
64919
  twilio_token?: string | undefined | undefined;
64670
64920
  icon_url?: string | undefined | undefined;
64921
+ domain_aliases?: string[] | undefined | undefined;
64671
64922
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
64672
64923
  password_complexity_options?: {
64673
64924
  min_length?: number | undefined | undefined;
@@ -65599,7 +65850,7 @@ export declare function init(config: AuthHeroConfig): {
65599
65850
  };
65600
65851
  };
65601
65852
  output: {
65602
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
65853
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
65603
65854
  date: string;
65604
65855
  isMobile: boolean;
65605
65856
  log_id: string;
@@ -65638,7 +65889,7 @@ export declare function init(config: AuthHeroConfig): {
65638
65889
  start: number;
65639
65890
  limit: number;
65640
65891
  logs: {
65641
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
65892
+ type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
65642
65893
  date: string;
65643
65894
  isMobile: boolean;
65644
65895
  log_id: string;
@@ -66369,6 +66620,7 @@ export declare function init(config: AuthHeroConfig): {
66369
66620
  background_color: string;
66370
66621
  background_image_url: string;
66371
66622
  page_layout: "center" | "left" | "right";
66623
+ logo_placement?: "none" | "widget" | "chip" | undefined | undefined;
66372
66624
  };
66373
66625
  colors: {
66374
66626
  error: string;
@@ -66391,6 +66643,13 @@ export declare function init(config: AuthHeroConfig): {
66391
66643
  widget_background: string;
66392
66644
  widget_border: string;
66393
66645
  };
66646
+ widget: {
66647
+ logo_url: string;
66648
+ header_text_alignment: "center" | "left" | "right";
66649
+ logo_height: number;
66650
+ logo_position: "none" | "center" | "left" | "right";
66651
+ social_buttons_layout: "bottom" | "top";
66652
+ };
66394
66653
  borders: {
66395
66654
  button_border_radius: number;
66396
66655
  button_border_weight: number;
@@ -66432,13 +66691,6 @@ export declare function init(config: AuthHeroConfig): {
66432
66691
  bold: boolean;
66433
66692
  };
66434
66693
  };
66435
- widget: {
66436
- logo_url: string;
66437
- header_text_alignment: "center" | "left" | "right";
66438
- logo_height: number;
66439
- logo_position: "none" | "center" | "left" | "right";
66440
- social_buttons_layout: "bottom" | "top";
66441
- };
66442
66694
  themeId: string;
66443
66695
  };
66444
66696
  outputFormat: "json";
@@ -66458,6 +66710,7 @@ export declare function init(config: AuthHeroConfig): {
66458
66710
  background_color?: string | undefined;
66459
66711
  background_image_url?: string | undefined;
66460
66712
  page_layout?: "center" | "left" | "right" | undefined;
66713
+ logo_placement?: "none" | "widget" | "chip" | undefined;
66461
66714
  } | undefined;
66462
66715
  colors?: {
66463
66716
  header?: string | undefined;
@@ -66480,6 +66733,13 @@ export declare function init(config: AuthHeroConfig): {
66480
66733
  widget_background?: string | undefined;
66481
66734
  widget_border?: string | undefined;
66482
66735
  } | undefined;
66736
+ widget?: {
66737
+ header_text_alignment?: "center" | "left" | "right" | undefined;
66738
+ logo_height?: number | undefined;
66739
+ logo_position?: "none" | "center" | "left" | "right" | undefined;
66740
+ logo_url?: string | undefined;
66741
+ social_buttons_layout?: "bottom" | "top" | undefined;
66742
+ } | undefined;
66483
66743
  borders?: {
66484
66744
  button_border_radius?: number | undefined;
66485
66745
  button_border_weight?: number | undefined;
@@ -66521,13 +66781,6 @@ export declare function init(config: AuthHeroConfig): {
66521
66781
  size?: number | undefined;
66522
66782
  } | undefined;
66523
66783
  } | undefined;
66524
- widget?: {
66525
- header_text_alignment?: "center" | "left" | "right" | undefined;
66526
- logo_height?: number | undefined;
66527
- logo_position?: "none" | "center" | "left" | "right" | undefined;
66528
- logo_url?: string | undefined;
66529
- social_buttons_layout?: "bottom" | "top" | undefined;
66530
- } | undefined;
66531
66784
  themeId?: string | undefined;
66532
66785
  };
66533
66786
  };
@@ -66536,6 +66789,7 @@ export declare function init(config: AuthHeroConfig): {
66536
66789
  background_color: string;
66537
66790
  background_image_url: string;
66538
66791
  page_layout: "center" | "left" | "right";
66792
+ logo_placement?: "none" | "widget" | "chip" | undefined | undefined;
66539
66793
  };
66540
66794
  colors: {
66541
66795
  error: string;
@@ -66558,6 +66812,13 @@ export declare function init(config: AuthHeroConfig): {
66558
66812
  widget_background: string;
66559
66813
  widget_border: string;
66560
66814
  };
66815
+ widget: {
66816
+ logo_url: string;
66817
+ header_text_alignment: "center" | "left" | "right";
66818
+ logo_height: number;
66819
+ logo_position: "none" | "center" | "left" | "right";
66820
+ social_buttons_layout: "bottom" | "top";
66821
+ };
66561
66822
  borders: {
66562
66823
  button_border_radius: number;
66563
66824
  button_border_weight: number;
@@ -66599,13 +66860,6 @@ export declare function init(config: AuthHeroConfig): {
66599
66860
  bold: boolean;
66600
66861
  };
66601
66862
  };
66602
- widget: {
66603
- logo_url: string;
66604
- header_text_alignment: "center" | "left" | "right";
66605
- logo_height: number;
66606
- logo_position: "none" | "center" | "left" | "right";
66607
- social_buttons_layout: "bottom" | "top";
66608
- };
66609
66863
  themeId: string;
66610
66864
  };
66611
66865
  outputFormat: "json";
@@ -66957,8 +67211,8 @@ export declare function init(config: AuthHeroConfig): {
66957
67211
  name: string;
66958
67212
  }[] | undefined;
66959
67213
  secrets?: {
66960
- value: string;
66961
67214
  name: string;
67215
+ value?: string | undefined;
66962
67216
  }[] | undefined;
66963
67217
  };
66964
67218
  };
@@ -67066,8 +67320,8 @@ export declare function init(config: AuthHeroConfig): {
67066
67320
  name: string;
67067
67321
  }[] | undefined;
67068
67322
  secrets?: {
67069
- value: string;
67070
67323
  name: string;
67324
+ value?: string | undefined;
67071
67325
  }[] | undefined;
67072
67326
  };
67073
67327
  };
@@ -67097,8 +67351,8 @@ export declare function init(config: AuthHeroConfig): {
67097
67351
  name: string;
67098
67352
  }[] | undefined;
67099
67353
  secrets?: {
67100
- value: string;
67101
67354
  name: string;
67355
+ value?: string | undefined;
67102
67356
  }[] | undefined;
67103
67357
  };
67104
67358
  };
@@ -67349,6 +67603,7 @@ export declare function init(config: AuthHeroConfig): {
67349
67603
  state: string;
67350
67604
  return_to: string;
67351
67605
  scope?: string | undefined;
67606
+ audience?: string | undefined;
67352
67607
  integration_type?: string | undefined;
67353
67608
  };
67354
67609
  };
@@ -67362,6 +67617,7 @@ export declare function init(config: AuthHeroConfig): {
67362
67617
  state: string;
67363
67618
  return_to: string;
67364
67619
  scope?: string | undefined;
67620
+ audience?: string | undefined;
67365
67621
  integration_type?: string | undefined;
67366
67622
  };
67367
67623
  };
@@ -67375,6 +67631,7 @@ export declare function init(config: AuthHeroConfig): {
67375
67631
  state: string;
67376
67632
  return_to: string;
67377
67633
  scope?: string | undefined;
67634
+ audience?: string | undefined;
67378
67635
  integration_type?: string | undefined;
67379
67636
  };
67380
67637
  };
@@ -67392,17 +67649,18 @@ export declare function init(config: AuthHeroConfig): {
67392
67649
  client_secret?: string | undefined;
67393
67650
  logo_uri?: string | undefined;
67394
67651
  grant_types?: string[] | undefined;
67395
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
67652
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
67396
67653
  scope?: string | undefined;
67654
+ audience?: string | undefined;
67397
67655
  client_name?: string | undefined;
67398
67656
  jwks_uri?: string | undefined;
67657
+ jwks?: Record<string, unknown> | undefined;
67399
67658
  redirect_uris?: string[] | undefined;
67400
67659
  client_uri?: string | undefined;
67401
67660
  tos_uri?: string | undefined;
67402
67661
  policy_uri?: string | undefined;
67403
67662
  contacts?: string[] | undefined;
67404
67663
  response_types?: string[] | undefined;
67405
- jwks?: Record<string, unknown> | undefined;
67406
67664
  software_id?: string | undefined;
67407
67665
  software_version?: string | undefined;
67408
67666
  };
@@ -67480,17 +67738,18 @@ export declare function init(config: AuthHeroConfig): {
67480
67738
  client_secret?: string | undefined;
67481
67739
  logo_uri?: string | undefined;
67482
67740
  grant_types?: string[] | undefined;
67483
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
67741
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
67484
67742
  scope?: string | undefined;
67743
+ audience?: string | undefined;
67485
67744
  client_name?: string | undefined;
67486
67745
  jwks_uri?: string | undefined;
67746
+ jwks?: Record<string, unknown> | undefined;
67487
67747
  redirect_uris?: string[] | undefined;
67488
67748
  client_uri?: string | undefined;
67489
67749
  tos_uri?: string | undefined;
67490
67750
  policy_uri?: string | undefined;
67491
67751
  contacts?: string[] | undefined;
67492
67752
  response_types?: string[] | undefined;
67493
- jwks?: Record<string, unknown> | undefined;
67494
67753
  software_id?: string | undefined;
67495
67754
  software_version?: string | undefined;
67496
67755
  };
@@ -67593,6 +67852,7 @@ export declare function init(config: AuthHeroConfig): {
67593
67852
  acr_values?: string | undefined;
67594
67853
  vendor_id?: string | undefined;
67595
67854
  login_hint?: string | undefined;
67855
+ request_uri?: string | undefined;
67596
67856
  };
67597
67857
  };
67598
67858
  output: Response;
@@ -67625,6 +67885,7 @@ export declare function init(config: AuthHeroConfig): {
67625
67885
  acr_values?: string | undefined;
67626
67886
  vendor_id?: string | undefined;
67627
67887
  login_hint?: string | undefined;
67888
+ request_uri?: string | undefined;
67628
67889
  };
67629
67890
  };
67630
67891
  output: {};
@@ -67657,6 +67918,7 @@ export declare function init(config: AuthHeroConfig): {
67657
67918
  acr_values?: string | undefined;
67658
67919
  vendor_id?: string | undefined;
67659
67920
  login_hint?: string | undefined;
67921
+ request_uri?: string | undefined;
67660
67922
  };
67661
67923
  };
67662
67924
  output: string | {
@@ -67697,6 +67959,7 @@ export declare function init(config: AuthHeroConfig): {
67697
67959
  acr_values?: string | undefined;
67698
67960
  vendor_id?: string | undefined;
67699
67961
  login_hint?: string | undefined;
67962
+ request_uri?: string | undefined;
67700
67963
  };
67701
67964
  };
67702
67965
  output: {
@@ -67731,6 +67994,7 @@ export declare function init(config: AuthHeroConfig): {
67731
67994
  acr_values?: string | undefined;
67732
67995
  vendor_id?: string | undefined;
67733
67996
  login_hint?: string | undefined;
67997
+ request_uri?: string | undefined;
67734
67998
  };
67735
67999
  };
67736
68000
  output: {
@@ -68049,6 +68313,8 @@ export declare function init(config: AuthHeroConfig): {
68049
68313
  scope?: string | undefined;
68050
68314
  audience?: string | undefined;
68051
68315
  organization?: string | undefined;
68316
+ client_assertion?: string | undefined;
68317
+ client_assertion_type?: string | undefined;
68052
68318
  } | {
68053
68319
  code: string;
68054
68320
  grant_type: "authorization_code";
@@ -68057,6 +68323,8 @@ export declare function init(config: AuthHeroConfig): {
68057
68323
  organization?: string | undefined;
68058
68324
  redirect_uri?: string | undefined;
68059
68325
  code_verifier?: string | undefined;
68326
+ client_assertion?: string | undefined;
68327
+ client_assertion_type?: string | undefined;
68060
68328
  } | {
68061
68329
  refresh_token: string;
68062
68330
  grant_type: "refresh_token";
@@ -68064,6 +68332,8 @@ export declare function init(config: AuthHeroConfig): {
68064
68332
  client_secret?: string | undefined;
68065
68333
  organization?: string | undefined;
68066
68334
  redirect_uri?: string | undefined;
68335
+ client_assertion?: string | undefined;
68336
+ client_assertion_type?: string | undefined;
68067
68337
  } | {
68068
68338
  client_id: string;
68069
68339
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68079,6 +68349,8 @@ export declare function init(config: AuthHeroConfig): {
68079
68349
  scope?: string | undefined;
68080
68350
  audience?: string | undefined;
68081
68351
  organization?: string | undefined;
68352
+ client_assertion?: string | undefined;
68353
+ client_assertion_type?: string | undefined;
68082
68354
  } | {
68083
68355
  code: string;
68084
68356
  grant_type: "authorization_code";
@@ -68087,6 +68359,8 @@ export declare function init(config: AuthHeroConfig): {
68087
68359
  organization?: string | undefined;
68088
68360
  redirect_uri?: string | undefined;
68089
68361
  code_verifier?: string | undefined;
68362
+ client_assertion?: string | undefined;
68363
+ client_assertion_type?: string | undefined;
68090
68364
  } | {
68091
68365
  refresh_token: string;
68092
68366
  grant_type: "refresh_token";
@@ -68094,6 +68368,8 @@ export declare function init(config: AuthHeroConfig): {
68094
68368
  client_secret?: string | undefined;
68095
68369
  organization?: string | undefined;
68096
68370
  redirect_uri?: string | undefined;
68371
+ client_assertion?: string | undefined;
68372
+ client_assertion_type?: string | undefined;
68097
68373
  } | {
68098
68374
  client_id: string;
68099
68375
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68114,6 +68390,8 @@ export declare function init(config: AuthHeroConfig): {
68114
68390
  scope?: string | undefined;
68115
68391
  audience?: string | undefined;
68116
68392
  organization?: string | undefined;
68393
+ client_assertion?: string | undefined;
68394
+ client_assertion_type?: string | undefined;
68117
68395
  } | {
68118
68396
  code: string;
68119
68397
  grant_type: "authorization_code";
@@ -68122,6 +68400,8 @@ export declare function init(config: AuthHeroConfig): {
68122
68400
  organization?: string | undefined;
68123
68401
  redirect_uri?: string | undefined;
68124
68402
  code_verifier?: string | undefined;
68403
+ client_assertion?: string | undefined;
68404
+ client_assertion_type?: string | undefined;
68125
68405
  } | {
68126
68406
  refresh_token: string;
68127
68407
  grant_type: "refresh_token";
@@ -68129,6 +68409,8 @@ export declare function init(config: AuthHeroConfig): {
68129
68409
  client_secret?: string | undefined;
68130
68410
  organization?: string | undefined;
68131
68411
  redirect_uri?: string | undefined;
68412
+ client_assertion?: string | undefined;
68413
+ client_assertion_type?: string | undefined;
68132
68414
  } | {
68133
68415
  client_id: string;
68134
68416
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68144,6 +68426,8 @@ export declare function init(config: AuthHeroConfig): {
68144
68426
  scope?: string | undefined;
68145
68427
  audience?: string | undefined;
68146
68428
  organization?: string | undefined;
68429
+ client_assertion?: string | undefined;
68430
+ client_assertion_type?: string | undefined;
68147
68431
  } | {
68148
68432
  code: string;
68149
68433
  grant_type: "authorization_code";
@@ -68152,6 +68436,8 @@ export declare function init(config: AuthHeroConfig): {
68152
68436
  organization?: string | undefined;
68153
68437
  redirect_uri?: string | undefined;
68154
68438
  code_verifier?: string | undefined;
68439
+ client_assertion?: string | undefined;
68440
+ client_assertion_type?: string | undefined;
68155
68441
  } | {
68156
68442
  refresh_token: string;
68157
68443
  grant_type: "refresh_token";
@@ -68159,6 +68445,8 @@ export declare function init(config: AuthHeroConfig): {
68159
68445
  client_secret?: string | undefined;
68160
68446
  organization?: string | undefined;
68161
68447
  redirect_uri?: string | undefined;
68448
+ client_assertion?: string | undefined;
68449
+ client_assertion_type?: string | undefined;
68162
68450
  } | {
68163
68451
  client_id: string;
68164
68452
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68187,6 +68475,8 @@ export declare function init(config: AuthHeroConfig): {
68187
68475
  scope?: string | undefined;
68188
68476
  audience?: string | undefined;
68189
68477
  organization?: string | undefined;
68478
+ client_assertion?: string | undefined;
68479
+ client_assertion_type?: string | undefined;
68190
68480
  } | {
68191
68481
  code: string;
68192
68482
  grant_type: "authorization_code";
@@ -68195,6 +68485,8 @@ export declare function init(config: AuthHeroConfig): {
68195
68485
  organization?: string | undefined;
68196
68486
  redirect_uri?: string | undefined;
68197
68487
  code_verifier?: string | undefined;
68488
+ client_assertion?: string | undefined;
68489
+ client_assertion_type?: string | undefined;
68198
68490
  } | {
68199
68491
  refresh_token: string;
68200
68492
  grant_type: "refresh_token";
@@ -68202,6 +68494,8 @@ export declare function init(config: AuthHeroConfig): {
68202
68494
  client_secret?: string | undefined;
68203
68495
  organization?: string | undefined;
68204
68496
  redirect_uri?: string | undefined;
68497
+ client_assertion?: string | undefined;
68498
+ client_assertion_type?: string | undefined;
68205
68499
  } | {
68206
68500
  client_id: string;
68207
68501
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68217,6 +68511,8 @@ export declare function init(config: AuthHeroConfig): {
68217
68511
  scope?: string | undefined;
68218
68512
  audience?: string | undefined;
68219
68513
  organization?: string | undefined;
68514
+ client_assertion?: string | undefined;
68515
+ client_assertion_type?: string | undefined;
68220
68516
  } | {
68221
68517
  code: string;
68222
68518
  grant_type: "authorization_code";
@@ -68225,6 +68521,8 @@ export declare function init(config: AuthHeroConfig): {
68225
68521
  organization?: string | undefined;
68226
68522
  redirect_uri?: string | undefined;
68227
68523
  code_verifier?: string | undefined;
68524
+ client_assertion?: string | undefined;
68525
+ client_assertion_type?: string | undefined;
68228
68526
  } | {
68229
68527
  refresh_token: string;
68230
68528
  grant_type: "refresh_token";
@@ -68232,6 +68530,8 @@ export declare function init(config: AuthHeroConfig): {
68232
68530
  client_secret?: string | undefined;
68233
68531
  organization?: string | undefined;
68234
68532
  redirect_uri?: string | undefined;
68533
+ client_assertion?: string | undefined;
68534
+ client_assertion_type?: string | undefined;
68235
68535
  } | {
68236
68536
  client_id: string;
68237
68537
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68255,6 +68555,8 @@ export declare function init(config: AuthHeroConfig): {
68255
68555
  scope?: string | undefined;
68256
68556
  audience?: string | undefined;
68257
68557
  organization?: string | undefined;
68558
+ client_assertion?: string | undefined;
68559
+ client_assertion_type?: string | undefined;
68258
68560
  } | {
68259
68561
  code: string;
68260
68562
  grant_type: "authorization_code";
@@ -68263,6 +68565,8 @@ export declare function init(config: AuthHeroConfig): {
68263
68565
  organization?: string | undefined;
68264
68566
  redirect_uri?: string | undefined;
68265
68567
  code_verifier?: string | undefined;
68568
+ client_assertion?: string | undefined;
68569
+ client_assertion_type?: string | undefined;
68266
68570
  } | {
68267
68571
  refresh_token: string;
68268
68572
  grant_type: "refresh_token";
@@ -68270,6 +68574,8 @@ export declare function init(config: AuthHeroConfig): {
68270
68574
  client_secret?: string | undefined;
68271
68575
  organization?: string | undefined;
68272
68576
  redirect_uri?: string | undefined;
68577
+ client_assertion?: string | undefined;
68578
+ client_assertion_type?: string | undefined;
68273
68579
  } | {
68274
68580
  client_id: string;
68275
68581
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68285,6 +68591,8 @@ export declare function init(config: AuthHeroConfig): {
68285
68591
  scope?: string | undefined;
68286
68592
  audience?: string | undefined;
68287
68593
  organization?: string | undefined;
68594
+ client_assertion?: string | undefined;
68595
+ client_assertion_type?: string | undefined;
68288
68596
  } | {
68289
68597
  code: string;
68290
68598
  grant_type: "authorization_code";
@@ -68293,6 +68601,8 @@ export declare function init(config: AuthHeroConfig): {
68293
68601
  organization?: string | undefined;
68294
68602
  redirect_uri?: string | undefined;
68295
68603
  code_verifier?: string | undefined;
68604
+ client_assertion?: string | undefined;
68605
+ client_assertion_type?: string | undefined;
68296
68606
  } | {
68297
68607
  refresh_token: string;
68298
68608
  grant_type: "refresh_token";
@@ -68300,6 +68610,8 @@ export declare function init(config: AuthHeroConfig): {
68300
68610
  client_secret?: string | undefined;
68301
68611
  organization?: string | undefined;
68302
68612
  redirect_uri?: string | undefined;
68613
+ client_assertion?: string | undefined;
68614
+ client_assertion_type?: string | undefined;
68303
68615
  } | {
68304
68616
  client_id: string;
68305
68617
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68323,6 +68635,8 @@ export declare function init(config: AuthHeroConfig): {
68323
68635
  scope?: string | undefined;
68324
68636
  audience?: string | undefined;
68325
68637
  organization?: string | undefined;
68638
+ client_assertion?: string | undefined;
68639
+ client_assertion_type?: string | undefined;
68326
68640
  } | {
68327
68641
  code: string;
68328
68642
  grant_type: "authorization_code";
@@ -68331,6 +68645,8 @@ export declare function init(config: AuthHeroConfig): {
68331
68645
  organization?: string | undefined;
68332
68646
  redirect_uri?: string | undefined;
68333
68647
  code_verifier?: string | undefined;
68648
+ client_assertion?: string | undefined;
68649
+ client_assertion_type?: string | undefined;
68334
68650
  } | {
68335
68651
  refresh_token: string;
68336
68652
  grant_type: "refresh_token";
@@ -68338,6 +68654,8 @@ export declare function init(config: AuthHeroConfig): {
68338
68654
  client_secret?: string | undefined;
68339
68655
  organization?: string | undefined;
68340
68656
  redirect_uri?: string | undefined;
68657
+ client_assertion?: string | undefined;
68658
+ client_assertion_type?: string | undefined;
68341
68659
  } | {
68342
68660
  client_id: string;
68343
68661
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68353,6 +68671,8 @@ export declare function init(config: AuthHeroConfig): {
68353
68671
  scope?: string | undefined;
68354
68672
  audience?: string | undefined;
68355
68673
  organization?: string | undefined;
68674
+ client_assertion?: string | undefined;
68675
+ client_assertion_type?: string | undefined;
68356
68676
  } | {
68357
68677
  code: string;
68358
68678
  grant_type: "authorization_code";
@@ -68361,6 +68681,8 @@ export declare function init(config: AuthHeroConfig): {
68361
68681
  organization?: string | undefined;
68362
68682
  redirect_uri?: string | undefined;
68363
68683
  code_verifier?: string | undefined;
68684
+ client_assertion?: string | undefined;
68685
+ client_assertion_type?: string | undefined;
68364
68686
  } | {
68365
68687
  refresh_token: string;
68366
68688
  grant_type: "refresh_token";
@@ -68368,6 +68690,8 @@ export declare function init(config: AuthHeroConfig): {
68368
68690
  client_secret?: string | undefined;
68369
68691
  organization?: string | undefined;
68370
68692
  redirect_uri?: string | undefined;
68693
+ client_assertion?: string | undefined;
68694
+ client_assertion_type?: string | undefined;
68371
68695
  } | {
68372
68696
  client_id: string;
68373
68697
  grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
@@ -68392,12 +68716,15 @@ export declare function init(config: AuthHeroConfig): {
68392
68716
  keys: {
68393
68717
  kid: string;
68394
68718
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
68395
- e: string;
68396
68719
  kty: "RSA" | "EC" | "oct";
68397
- n: string;
68720
+ x?: string | undefined | undefined;
68721
+ y?: string | undefined | undefined;
68722
+ use?: "sig" | "enc" | undefined | undefined;
68723
+ n?: string | undefined | undefined;
68724
+ e?: string | undefined | undefined;
68725
+ crv?: string | undefined | undefined;
68398
68726
  x5t?: string | undefined | undefined;
68399
68727
  x5c?: string[] | undefined | undefined;
68400
- use?: "sig" | "enc" | undefined | undefined;
68401
68728
  }[];
68402
68729
  };
68403
68730
  outputFormat: "json";
@@ -68431,6 +68758,7 @@ export declare function init(config: AuthHeroConfig): {
68431
68758
  registration_endpoint?: string | undefined | undefined;
68432
68759
  end_session_endpoint?: string | undefined | undefined;
68433
68760
  grant_types_supported?: string[] | undefined | undefined;
68761
+ request_object_signing_alg_values_supported?: string[] | undefined | undefined;
68434
68762
  };
68435
68763
  outputFormat: "json";
68436
68764
  status: 200;