authhero 5.13.0 → 5.14.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.
Files changed (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +126 -126
  3. package/dist/authhero.d.ts +149 -114
  4. package/dist/authhero.mjs +9962 -9822
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +7 -6
  8. package/dist/types/helpers/cimd.d.ts +32 -0
  9. package/dist/types/helpers/client.d.ts +3 -18
  10. package/dist/types/helpers/connection.d.ts +40 -0
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  12. package/dist/types/helpers/service-token.d.ts +11 -1
  13. package/dist/types/index.d.ts +148 -114
  14. package/dist/types/routes/auth-api/index.d.ts +48 -14
  15. package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/auth-api/well-known.d.ts +34 -0
  19. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  20. package/dist/types/routes/management-api/actions.d.ts +1 -1
  21. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  22. package/dist/types/routes/management-api/clients.d.ts +13 -13
  23. package/dist/types/routes/management-api/connections.d.ts +15 -15
  24. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  25. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  26. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/hooks.d.ts +24 -24
  29. package/dist/types/routes/management-api/index.d.ts +92 -92
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/tenants.d.ts +3 -0
  34. package/dist/types/routes/management-api/users.d.ts +2 -2
  35. package/dist/types/routes/universal-login/common.d.ts +12 -8
  36. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  37. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  38. package/dist/types/routes/universal-login/index.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  41. package/dist/types/utils/ssrf-fetch.d.ts +8 -0
  42. package/package.json +6 -6
@@ -288,7 +288,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
288
288
  scope?: string | undefined;
289
289
  grant_types?: string[] | undefined;
290
290
  response_types?: string[] | undefined;
291
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
291
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
292
292
  jwks_uri?: string | undefined;
293
293
  jwks?: Record<string, unknown> | undefined;
294
294
  software_id?: string | undefined;
@@ -377,7 +377,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
377
377
  scope?: string | undefined;
378
378
  grant_types?: string[] | undefined;
379
379
  response_types?: string[] | undefined;
380
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
380
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
381
381
  jwks_uri?: string | undefined;
382
382
  jwks?: Record<string, unknown> | undefined;
383
383
  software_id?: string | undefined;
@@ -723,6 +723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
723
723
  email: string;
724
724
  send: "code" | "link";
725
725
  authParams: {
726
+ audience?: string | undefined;
726
727
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
727
728
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
728
729
  scope?: string | undefined;
@@ -730,7 +731,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
730
731
  state?: string | undefined;
731
732
  act_as?: string | undefined;
732
733
  redirect_uri?: string | undefined;
733
- audience?: string | undefined;
734
734
  organization?: string | undefined;
735
735
  nonce?: string | undefined;
736
736
  prompt?: string | undefined;
@@ -759,6 +759,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
759
759
  phone_number: string;
760
760
  send: "code" | "link";
761
761
  authParams: {
762
+ audience?: string | undefined;
762
763
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
763
764
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
764
765
  scope?: string | undefined;
@@ -766,7 +767,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
766
767
  state?: string | undefined;
767
768
  act_as?: string | undefined;
768
769
  redirect_uri?: string | undefined;
769
- audience?: string | undefined;
770
770
  organization?: string | undefined;
771
771
  nonce?: string | undefined;
772
772
  prompt?: string | undefined;
@@ -1001,7 +1001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1001
1001
  client_id: string;
1002
1002
  username: string;
1003
1003
  otp: string;
1004
- realm: "email" | "sms";
1004
+ realm: "sms" | "email";
1005
1005
  };
1006
1006
  } & {
1007
1007
  json: {
@@ -1037,7 +1037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1037
1037
  client_id: string;
1038
1038
  username: string;
1039
1039
  otp: string;
1040
- realm: "email" | "sms";
1040
+ realm: "sms" | "email";
1041
1041
  };
1042
1042
  };
1043
1043
  output: {};
@@ -1078,7 +1078,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1078
1078
  client_id: string;
1079
1079
  username: string;
1080
1080
  otp: string;
1081
- realm: "email" | "sms";
1081
+ realm: "sms" | "email";
1082
1082
  };
1083
1083
  } & {
1084
1084
  json: {
@@ -1114,7 +1114,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1114
1114
  client_id: string;
1115
1115
  username: string;
1116
1116
  otp: string;
1117
- realm: "email" | "sms";
1117
+ realm: "sms" | "email";
1118
1118
  };
1119
1119
  };
1120
1120
  output: {
@@ -1163,7 +1163,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1163
1163
  client_id: string;
1164
1164
  username: string;
1165
1165
  otp: string;
1166
- realm: "email" | "sms";
1166
+ realm: "sms" | "email";
1167
1167
  };
1168
1168
  } & {
1169
1169
  json: {
@@ -1199,7 +1199,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1199
1199
  client_id: string;
1200
1200
  username: string;
1201
1201
  otp: string;
1202
- realm: "email" | "sms";
1202
+ realm: "sms" | "email";
1203
1203
  };
1204
1204
  };
1205
1205
  output: {
@@ -1243,7 +1243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1243
1243
  client_id: string;
1244
1244
  username: string;
1245
1245
  otp: string;
1246
- realm: "email" | "sms";
1246
+ realm: "sms" | "email";
1247
1247
  };
1248
1248
  } & {
1249
1249
  json: {
@@ -1279,7 +1279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1279
1279
  client_id: string;
1280
1280
  username: string;
1281
1281
  otp: string;
1282
- realm: "email" | "sms";
1282
+ realm: "sms" | "email";
1283
1283
  };
1284
1284
  };
1285
1285
  output: {
@@ -1323,7 +1323,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1323
1323
  client_id: string;
1324
1324
  username: string;
1325
1325
  otp: string;
1326
- realm: "email" | "sms";
1326
+ realm: "sms" | "email";
1327
1327
  };
1328
1328
  } & {
1329
1329
  json: {
@@ -1359,7 +1359,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1359
1359
  client_id: string;
1360
1360
  username: string;
1361
1361
  otp: string;
1362
- realm: "email" | "sms";
1362
+ realm: "sms" | "email";
1363
1363
  };
1364
1364
  };
1365
1365
  output: {
@@ -1420,6 +1420,40 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1420
1420
  grant_types_supported?: string[] | undefined;
1421
1421
  claims_parameter_supported?: boolean | undefined;
1422
1422
  request_object_signing_alg_values_supported?: string[] | undefined;
1423
+ client_id_metadata_document_supported?: boolean | undefined;
1424
+ };
1425
+ outputFormat: "json";
1426
+ status: 200;
1427
+ };
1428
+ };
1429
+ } & {
1430
+ "/oauth-authorization-server": {
1431
+ $get: {
1432
+ input: {};
1433
+ output: {
1434
+ issuer: string;
1435
+ authorization_endpoint: string;
1436
+ token_endpoint: string;
1437
+ userinfo_endpoint: string;
1438
+ jwks_uri: string;
1439
+ revocation_endpoint: string;
1440
+ scopes_supported: string[];
1441
+ response_types_supported: string[];
1442
+ code_challenge_methods_supported: string[];
1443
+ response_modes_supported: string[];
1444
+ subject_types_supported: string[];
1445
+ id_token_signing_alg_values_supported: string[];
1446
+ token_endpoint_auth_methods_supported: string[];
1447
+ claims_supported: string[];
1448
+ request_uri_parameter_supported: boolean;
1449
+ request_parameter_supported: boolean;
1450
+ token_endpoint_auth_signing_alg_values_supported: string[];
1451
+ registration_endpoint?: string | undefined;
1452
+ end_session_endpoint?: string | undefined;
1453
+ grant_types_supported?: string[] | undefined;
1454
+ claims_parameter_supported?: boolean | undefined;
1455
+ request_object_signing_alg_values_supported?: string[] | undefined;
1456
+ client_id_metadata_document_supported?: boolean | undefined;
1423
1457
  };
1424
1458
  outputFormat: "json";
1425
1459
  status: 200;
@@ -14,6 +14,7 @@ export declare const passwordlessRoutes: OpenAPIHono<{
14
14
  email: string;
15
15
  send: "code" | "link";
16
16
  authParams: {
17
+ audience?: string | undefined;
17
18
  response_type?: AuthorizationResponseType | undefined;
18
19
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
19
20
  scope?: string | undefined;
@@ -21,7 +22,6 @@ export declare const passwordlessRoutes: OpenAPIHono<{
21
22
  state?: string | undefined;
22
23
  act_as?: string | undefined;
23
24
  redirect_uri?: string | undefined;
24
- audience?: string | undefined;
25
25
  organization?: string | undefined;
26
26
  nonce?: string | undefined;
27
27
  prompt?: string | undefined;
@@ -50,6 +50,7 @@ export declare const passwordlessRoutes: OpenAPIHono<{
50
50
  phone_number: string;
51
51
  send: "code" | "link";
52
52
  authParams: {
53
+ audience?: string | undefined;
53
54
  response_type?: AuthorizationResponseType | undefined;
54
55
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
55
56
  scope?: string | undefined;
@@ -57,7 +58,6 @@ export declare const passwordlessRoutes: OpenAPIHono<{
57
58
  state?: string | undefined;
58
59
  act_as?: string | undefined;
59
60
  redirect_uri?: string | undefined;
60
- audience?: string | undefined;
61
61
  organization?: string | undefined;
62
62
  nonce?: string | undefined;
63
63
  prompt?: string | undefined;
@@ -18,7 +18,7 @@ export declare const registerRoutes: OpenAPIHono<{
18
18
  scope?: string | undefined;
19
19
  grant_types?: string[] | undefined;
20
20
  response_types?: string[] | undefined;
21
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
21
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
22
22
  jwks_uri?: string | undefined;
23
23
  jwks?: Record<string, unknown> | undefined;
24
24
  software_id?: string | undefined;
@@ -107,7 +107,7 @@ export declare const registerRoutes: OpenAPIHono<{
107
107
  scope?: string | undefined;
108
108
  grant_types?: string[] | undefined;
109
109
  response_types?: string[] | undefined;
110
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
110
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
111
111
  jwks_uri?: string | undefined;
112
112
  jwks?: Record<string, unknown> | undefined;
113
113
  software_id?: string | undefined;
@@ -40,7 +40,7 @@ export declare const tokenRoutes: OpenAPIHono<{
40
40
  client_id: string;
41
41
  username: string;
42
42
  otp: string;
43
- realm: "email" | "sms";
43
+ realm: "sms" | "email";
44
44
  };
45
45
  } & {
46
46
  json: {
@@ -76,7 +76,7 @@ export declare const tokenRoutes: OpenAPIHono<{
76
76
  client_id: string;
77
77
  username: string;
78
78
  otp: string;
79
- realm: "email" | "sms";
79
+ realm: "sms" | "email";
80
80
  };
81
81
  };
82
82
  output: {};
@@ -117,7 +117,7 @@ export declare const tokenRoutes: OpenAPIHono<{
117
117
  client_id: string;
118
118
  username: string;
119
119
  otp: string;
120
- realm: "email" | "sms";
120
+ realm: "sms" | "email";
121
121
  };
122
122
  } & {
123
123
  json: {
@@ -153,7 +153,7 @@ export declare const tokenRoutes: OpenAPIHono<{
153
153
  client_id: string;
154
154
  username: string;
155
155
  otp: string;
156
- realm: "email" | "sms";
156
+ realm: "sms" | "email";
157
157
  };
158
158
  };
159
159
  output: {
@@ -202,7 +202,7 @@ export declare const tokenRoutes: OpenAPIHono<{
202
202
  client_id: string;
203
203
  username: string;
204
204
  otp: string;
205
- realm: "email" | "sms";
205
+ realm: "sms" | "email";
206
206
  };
207
207
  } & {
208
208
  json: {
@@ -238,7 +238,7 @@ export declare const tokenRoutes: OpenAPIHono<{
238
238
  client_id: string;
239
239
  username: string;
240
240
  otp: string;
241
- realm: "email" | "sms";
241
+ realm: "sms" | "email";
242
242
  };
243
243
  };
244
244
  output: {
@@ -282,7 +282,7 @@ export declare const tokenRoutes: OpenAPIHono<{
282
282
  client_id: string;
283
283
  username: string;
284
284
  otp: string;
285
- realm: "email" | "sms";
285
+ realm: "sms" | "email";
286
286
  };
287
287
  } & {
288
288
  json: {
@@ -318,7 +318,7 @@ export declare const tokenRoutes: OpenAPIHono<{
318
318
  client_id: string;
319
319
  username: string;
320
320
  otp: string;
321
- realm: "email" | "sms";
321
+ realm: "sms" | "email";
322
322
  };
323
323
  };
324
324
  output: {
@@ -362,7 +362,7 @@ export declare const tokenRoutes: OpenAPIHono<{
362
362
  client_id: string;
363
363
  username: string;
364
364
  otp: string;
365
- realm: "email" | "sms";
365
+ realm: "sms" | "email";
366
366
  };
367
367
  } & {
368
368
  json: {
@@ -398,7 +398,7 @@ export declare const tokenRoutes: OpenAPIHono<{
398
398
  client_id: string;
399
399
  username: string;
400
400
  otp: string;
401
- realm: "email" | "sms";
401
+ realm: "sms" | "email";
402
402
  };
403
403
  };
404
404
  output: {
@@ -52,6 +52,40 @@ export declare const wellKnownRoutes: import("hono/hono-base").HonoBase<{
52
52
  grant_types_supported?: string[] | undefined;
53
53
  claims_parameter_supported?: boolean | undefined;
54
54
  request_object_signing_alg_values_supported?: string[] | undefined;
55
+ client_id_metadata_document_supported?: boolean | undefined;
56
+ };
57
+ outputFormat: "json";
58
+ status: 200;
59
+ };
60
+ };
61
+ } & {
62
+ "/oauth-authorization-server": {
63
+ $get: {
64
+ input: {};
65
+ output: {
66
+ issuer: string;
67
+ authorization_endpoint: string;
68
+ token_endpoint: string;
69
+ userinfo_endpoint: string;
70
+ jwks_uri: string;
71
+ revocation_endpoint: string;
72
+ scopes_supported: string[];
73
+ response_types_supported: string[];
74
+ code_challenge_methods_supported: string[];
75
+ response_modes_supported: string[];
76
+ subject_types_supported: string[];
77
+ id_token_signing_alg_values_supported: string[];
78
+ token_endpoint_auth_methods_supported: string[];
79
+ claims_supported: string[];
80
+ request_uri_parameter_supported: boolean;
81
+ request_parameter_supported: boolean;
82
+ token_endpoint_auth_signing_alg_values_supported: string[];
83
+ registration_endpoint?: string | undefined;
84
+ end_session_endpoint?: string | undefined;
85
+ grant_types_supported?: string[] | undefined;
86
+ claims_parameter_supported?: boolean | undefined;
87
+ request_object_signing_alg_values_supported?: string[] | undefined;
88
+ client_id_metadata_document_supported?: boolean | undefined;
55
89
  };
56
90
  outputFormat: "json";
57
91
  status: 200;
@@ -31,7 +31,7 @@ export declare const actionExecutionsRoutes: OpenAPIHono<{
31
31
  output: {
32
32
  id: string;
33
33
  trigger_id: string;
34
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
34
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
35
35
  results: {
36
36
  action_name: string;
37
37
  error: {
@@ -78,7 +78,7 @@ export declare const actionExecutionsRoutes: OpenAPIHono<{
78
78
  logs: {
79
79
  action_name: string;
80
80
  lines: {
81
- level: "error" | "log" | "debug" | "info" | "warn";
81
+ level: "error" | "log" | "info" | "warn" | "debug";
82
82
  message: string;
83
83
  }[];
84
84
  }[];
@@ -661,7 +661,7 @@ export declare const actionsRoutes: OpenAPIHono<{
661
661
  args: import("hono/utils/types").JSONValue[];
662
662
  }[];
663
663
  logs: {
664
- level: "error" | "log" | "debug" | "info" | "warn";
664
+ level: "error" | "log" | "info" | "warn" | "debug";
665
665
  message: string;
666
666
  }[];
667
667
  error?: string | undefined;
@@ -37,7 +37,7 @@ export declare const authenticationMethodsRoutes: OpenAPIHono<{
37
37
  };
38
38
  } & {
39
39
  json: {
40
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
40
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
41
41
  phone_number?: string | undefined;
42
42
  totp_secret?: string | undefined;
43
43
  credential_id?: string | undefined;
@@ -72,7 +72,7 @@ export declare const clientRoutes: OpenAPIHono<{
72
72
  addons?: {
73
73
  [x: string]: any;
74
74
  } | undefined;
75
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
75
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
76
76
  client_metadata?: {
77
77
  [x: string]: string;
78
78
  } | undefined;
@@ -168,7 +168,7 @@ export declare const clientRoutes: OpenAPIHono<{
168
168
  addons?: {
169
169
  [x: string]: any;
170
170
  } | undefined;
171
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
171
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
172
172
  client_metadata?: {
173
173
  [x: string]: string;
174
174
  } | undefined;
@@ -279,7 +279,7 @@ export declare const clientRoutes: OpenAPIHono<{
279
279
  addons?: {
280
280
  [x: string]: any;
281
281
  } | undefined;
282
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
282
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
283
283
  client_metadata?: {
284
284
  [x: string]: string;
285
285
  } | undefined;
@@ -389,7 +389,7 @@ export declare const clientRoutes: OpenAPIHono<{
389
389
  custom_login_page_preview?: string | undefined;
390
390
  form_template?: string | undefined;
391
391
  addons?: Record<string, any> | undefined;
392
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
392
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
393
393
  client_metadata?: Record<string, string> | undefined;
394
394
  hide_sign_up_disabled_error?: boolean | undefined;
395
395
  mobile?: Record<string, any> | undefined;
@@ -469,7 +469,7 @@ export declare const clientRoutes: OpenAPIHono<{
469
469
  addons?: {
470
470
  [x: string]: any;
471
471
  } | undefined;
472
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
472
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
473
473
  client_metadata?: {
474
474
  [x: string]: string;
475
475
  } | undefined;
@@ -558,7 +558,7 @@ export declare const clientRoutes: OpenAPIHono<{
558
558
  custom_login_page_preview?: string | undefined;
559
559
  form_template?: string | undefined;
560
560
  addons?: Record<string, any> | undefined;
561
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
561
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
562
562
  client_metadata?: Record<string, string> | undefined;
563
563
  hide_sign_up_disabled_error?: boolean | undefined;
564
564
  mobile?: Record<string, any> | undefined;
@@ -638,7 +638,7 @@ export declare const clientRoutes: OpenAPIHono<{
638
638
  addons?: {
639
639
  [x: string]: any;
640
640
  } | undefined;
641
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
641
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
642
642
  client_metadata?: {
643
643
  [x: string]: string;
644
644
  } | undefined;
@@ -760,7 +760,7 @@ export declare const clientRoutes: OpenAPIHono<{
760
760
  active?: boolean | undefined;
761
761
  } | undefined;
762
762
  signup?: {
763
- status?: "optional" | "disabled" | "required" | undefined;
763
+ status?: "optional" | "required" | "disabled" | undefined;
764
764
  verification?: {
765
765
  active?: boolean | undefined;
766
766
  } | undefined;
@@ -777,7 +777,7 @@ export declare const clientRoutes: OpenAPIHono<{
777
777
  active?: boolean | undefined;
778
778
  } | undefined;
779
779
  signup?: {
780
- status?: "optional" | "disabled" | "required" | undefined;
780
+ status?: "optional" | "required" | "disabled" | undefined;
781
781
  } | undefined;
782
782
  validation?: {
783
783
  max_length?: number | undefined;
@@ -794,7 +794,7 @@ export declare const clientRoutes: OpenAPIHono<{
794
794
  active?: boolean | undefined;
795
795
  } | undefined;
796
796
  signup?: {
797
- status?: "optional" | "disabled" | "required" | undefined;
797
+ status?: "optional" | "required" | "disabled" | undefined;
798
798
  } | undefined;
799
799
  } | undefined;
800
800
  } | undefined;
@@ -914,7 +914,7 @@ export declare const clientRoutes: OpenAPIHono<{
914
914
  active?: boolean | undefined;
915
915
  } | undefined;
916
916
  signup?: {
917
- status?: "optional" | "disabled" | "required" | undefined;
917
+ status?: "optional" | "required" | "disabled" | undefined;
918
918
  verification?: {
919
919
  active?: boolean | undefined;
920
920
  } | undefined;
@@ -931,7 +931,7 @@ export declare const clientRoutes: OpenAPIHono<{
931
931
  active?: boolean | undefined;
932
932
  } | undefined;
933
933
  signup?: {
934
- status?: "optional" | "disabled" | "required" | undefined;
934
+ status?: "optional" | "required" | "disabled" | undefined;
935
935
  } | undefined;
936
936
  validation?: {
937
937
  max_length?: number | undefined;
@@ -948,7 +948,7 @@ export declare const clientRoutes: OpenAPIHono<{
948
948
  active?: boolean | undefined;
949
949
  } | undefined;
950
950
  signup?: {
951
- status?: "optional" | "disabled" | "required" | undefined;
951
+ status?: "optional" | "required" | "disabled" | undefined;
952
952
  } | undefined;
953
953
  } | undefined;
954
954
  } | undefined;
@@ -82,7 +82,7 @@ export declare const connectionRoutes: OpenAPIHono<{
82
82
  active?: boolean | undefined;
83
83
  } | undefined;
84
84
  signup?: {
85
- status?: "optional" | "disabled" | "required" | undefined;
85
+ status?: "optional" | "required" | "disabled" | undefined;
86
86
  verification?: {
87
87
  active?: boolean | undefined;
88
88
  } | undefined;
@@ -99,7 +99,7 @@ export declare const connectionRoutes: OpenAPIHono<{
99
99
  active?: boolean | undefined;
100
100
  } | undefined;
101
101
  signup?: {
102
- status?: "optional" | "disabled" | "required" | undefined;
102
+ status?: "optional" | "required" | "disabled" | undefined;
103
103
  } | undefined;
104
104
  validation?: {
105
105
  max_length?: number | undefined;
@@ -116,7 +116,7 @@ export declare const connectionRoutes: OpenAPIHono<{
116
116
  active?: boolean | undefined;
117
117
  } | undefined;
118
118
  signup?: {
119
- status?: "optional" | "disabled" | "required" | undefined;
119
+ status?: "optional" | "required" | "disabled" | undefined;
120
120
  } | undefined;
121
121
  } | undefined;
122
122
  } | undefined;
@@ -216,7 +216,7 @@ export declare const connectionRoutes: OpenAPIHono<{
216
216
  active?: boolean | undefined;
217
217
  } | undefined;
218
218
  signup?: {
219
- status?: "optional" | "disabled" | "required" | undefined;
219
+ status?: "optional" | "required" | "disabled" | undefined;
220
220
  verification?: {
221
221
  active?: boolean | undefined;
222
222
  } | undefined;
@@ -233,7 +233,7 @@ export declare const connectionRoutes: OpenAPIHono<{
233
233
  active?: boolean | undefined;
234
234
  } | undefined;
235
235
  signup?: {
236
- status?: "optional" | "disabled" | "required" | undefined;
236
+ status?: "optional" | "required" | "disabled" | undefined;
237
237
  } | undefined;
238
238
  validation?: {
239
239
  max_length?: number | undefined;
@@ -250,7 +250,7 @@ export declare const connectionRoutes: OpenAPIHono<{
250
250
  active?: boolean | undefined;
251
251
  } | undefined;
252
252
  signup?: {
253
- status?: "optional" | "disabled" | "required" | undefined;
253
+ status?: "optional" | "required" | "disabled" | undefined;
254
254
  } | undefined;
255
255
  } | undefined;
256
256
  } | undefined;
@@ -365,7 +365,7 @@ export declare const connectionRoutes: OpenAPIHono<{
365
365
  active?: boolean | undefined;
366
366
  } | undefined;
367
367
  signup?: {
368
- status?: "optional" | "disabled" | "required" | undefined;
368
+ status?: "optional" | "required" | "disabled" | undefined;
369
369
  verification?: {
370
370
  active?: boolean | undefined;
371
371
  } | undefined;
@@ -382,7 +382,7 @@ export declare const connectionRoutes: OpenAPIHono<{
382
382
  active?: boolean | undefined;
383
383
  } | undefined;
384
384
  signup?: {
385
- status?: "optional" | "disabled" | "required" | undefined;
385
+ status?: "optional" | "required" | "disabled" | undefined;
386
386
  } | undefined;
387
387
  validation?: {
388
388
  max_length?: number | undefined;
@@ -399,7 +399,7 @@ export declare const connectionRoutes: OpenAPIHono<{
399
399
  active?: boolean | undefined;
400
400
  } | undefined;
401
401
  signup?: {
402
- status?: "optional" | "disabled" | "required" | undefined;
402
+ status?: "optional" | "required" | "disabled" | undefined;
403
403
  } | undefined;
404
404
  } | undefined;
405
405
  } | undefined;
@@ -544,7 +544,7 @@ export declare const connectionRoutes: OpenAPIHono<{
544
544
  active?: boolean | undefined;
545
545
  } | undefined;
546
546
  signup?: {
547
- status?: "optional" | "disabled" | "required" | undefined;
547
+ status?: "optional" | "required" | "disabled" | undefined;
548
548
  verification?: {
549
549
  active?: boolean | undefined;
550
550
  } | undefined;
@@ -561,7 +561,7 @@ export declare const connectionRoutes: OpenAPIHono<{
561
561
  active?: boolean | undefined;
562
562
  } | undefined;
563
563
  signup?: {
564
- status?: "optional" | "disabled" | "required" | undefined;
564
+ status?: "optional" | "required" | "disabled" | undefined;
565
565
  } | undefined;
566
566
  validation?: {
567
567
  max_length?: number | undefined;
@@ -578,7 +578,7 @@ export declare const connectionRoutes: OpenAPIHono<{
578
578
  active?: boolean | undefined;
579
579
  } | undefined;
580
580
  signup?: {
581
- status?: "optional" | "disabled" | "required" | undefined;
581
+ status?: "optional" | "required" | "disabled" | undefined;
582
582
  } | undefined;
583
583
  } | undefined;
584
584
  } | undefined;
@@ -702,7 +702,7 @@ export declare const connectionRoutes: OpenAPIHono<{
702
702
  active?: boolean | undefined;
703
703
  } | undefined;
704
704
  signup?: {
705
- status?: "optional" | "disabled" | "required" | undefined;
705
+ status?: "optional" | "required" | "disabled" | undefined;
706
706
  verification?: {
707
707
  active?: boolean | undefined;
708
708
  } | undefined;
@@ -719,7 +719,7 @@ export declare const connectionRoutes: OpenAPIHono<{
719
719
  active?: boolean | undefined;
720
720
  } | undefined;
721
721
  signup?: {
722
- status?: "optional" | "disabled" | "required" | undefined;
722
+ status?: "optional" | "required" | "disabled" | undefined;
723
723
  } | undefined;
724
724
  validation?: {
725
725
  max_length?: number | undefined;
@@ -736,7 +736,7 @@ export declare const connectionRoutes: OpenAPIHono<{
736
736
  active?: boolean | undefined;
737
737
  } | undefined;
738
738
  signup?: {
739
- status?: "optional" | "disabled" | "required" | undefined;
739
+ status?: "optional" | "required" | "disabled" | undefined;
740
740
  } | undefined;
741
741
  } | undefined;
742
742
  } | undefined;