authhero 5.13.1 → 5.14.1

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 (44) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +133 -133
  3. package/dist/authhero.d.ts +246 -195
  4. package/dist/authhero.mjs +10592 -10388
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/password.d.ts +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +1 -0
  9. package/dist/types/emails/index.d.ts +1 -1
  10. package/dist/types/helpers/cimd.d.ts +32 -0
  11. package/dist/types/helpers/client.d.ts +3 -18
  12. package/dist/types/helpers/connection.d.ts +40 -0
  13. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  14. package/dist/types/index.d.ts +245 -195
  15. package/dist/types/routes/auth-api/account.d.ts +2 -2
  16. package/dist/types/routes/auth-api/index.d.ts +50 -16
  17. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  18. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/well-known.d.ts +34 -0
  21. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  22. package/dist/types/routes/management-api/actions.d.ts +1 -1
  23. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  24. package/dist/types/routes/management-api/clients.d.ts +13 -13
  25. package/dist/types/routes/management-api/connections.d.ts +1 -1
  26. package/dist/types/routes/management-api/custom-domains.d.ts +13 -13
  27. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  28. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  29. package/dist/types/routes/management-api/flows.d.ts +7 -7
  30. package/dist/types/routes/management-api/index.d.ts +173 -173
  31. package/dist/types/routes/management-api/logs.d.ts +3 -3
  32. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  33. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenants.d.ts +3 -0
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +4 -0
  38. package/dist/types/routes/universal-login/error-page.d.ts +2 -1
  39. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  40. package/dist/types/routes/universal-login/u2-index.d.ts +22 -6
  41. package/dist/types/routes/universal-login/u2-routes.d.ts +22 -6
  42. package/dist/types/utils/ssrf-fetch.d.ts +8 -0
  43. package/dist/types/variables.d.ts +1 -1
  44. package/package.json +6 -6
@@ -11,7 +11,7 @@ export declare const accountRoutes: OpenAPIHono<{
11
11
  client_id: string;
12
12
  redirect_url?: string | undefined;
13
13
  login_hint?: string | undefined;
14
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
15
15
  };
16
16
  };
17
17
  output: {};
@@ -23,7 +23,7 @@ export declare const accountRoutes: OpenAPIHono<{
23
23
  client_id: string;
24
24
  redirect_url?: string | undefined;
25
25
  login_hint?: string | undefined;
26
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
26
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
27
27
  };
28
28
  };
29
29
  output: {
@@ -434,7 +434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
434
434
  client_id: string;
435
435
  redirect_url?: string | undefined;
436
436
  login_hint?: string | undefined;
437
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
437
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
438
438
  };
439
439
  };
440
440
  output: {};
@@ -446,7 +446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
446
446
  client_id: string;
447
447
  redirect_url?: string | undefined;
448
448
  login_hint?: string | undefined;
449
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
449
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
450
450
  };
451
451
  };
452
452
  output: {
@@ -723,19 +723,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
723
723
  email: string;
724
724
  send: "code" | "link";
725
725
  authParams: {
726
- audience?: string | undefined;
727
726
  state?: string | undefined;
728
- code_challenge?: string | undefined;
729
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
730
- redirect_uri?: string | undefined;
731
- nonce?: string | undefined;
727
+ username?: string | undefined;
732
728
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
733
729
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
734
730
  scope?: string | undefined;
735
- username?: string | undefined;
731
+ audience?: string | undefined;
736
732
  act_as?: string | undefined;
733
+ redirect_uri?: string | undefined;
737
734
  organization?: string | undefined;
735
+ nonce?: string | undefined;
738
736
  prompt?: string | undefined;
737
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
738
+ code_challenge?: string | undefined;
739
739
  ui_locales?: string | undefined;
740
740
  max_age?: number | undefined;
741
741
  acr_values?: string | undefined;
@@ -759,19 +759,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
759
759
  phone_number: string;
760
760
  send: "code" | "link";
761
761
  authParams: {
762
- audience?: string | undefined;
763
762
  state?: string | undefined;
764
- code_challenge?: string | undefined;
765
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
766
- redirect_uri?: string | undefined;
767
- nonce?: string | undefined;
763
+ username?: string | undefined;
768
764
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
769
765
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
770
766
  scope?: string | undefined;
771
- username?: string | undefined;
767
+ audience?: string | undefined;
772
768
  act_as?: string | undefined;
769
+ redirect_uri?: string | undefined;
773
770
  organization?: string | undefined;
771
+ nonce?: string | undefined;
774
772
  prompt?: string | undefined;
773
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
774
+ code_challenge?: string | undefined;
775
775
  ui_locales?: string | undefined;
776
776
  max_age?: number | undefined;
777
777
  acr_values?: string | undefined;
@@ -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;
@@ -1532,7 +1566,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1532
1566
  };
1533
1567
  output: {};
1534
1568
  outputFormat: string;
1535
- status: 200;
1569
+ status: 302;
1536
1570
  } | {
1537
1571
  input: {
1538
1572
  query: {
@@ -1546,7 +1580,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1546
1580
  };
1547
1581
  output: {};
1548
1582
  outputFormat: string;
1549
- status: 302;
1583
+ status: 200;
1550
1584
  } | {
1551
1585
  input: {
1552
1586
  query: {
@@ -18,7 +18,7 @@ export declare const oidcLogoutRoutes: OpenAPIHono<{
18
18
  };
19
19
  output: {};
20
20
  outputFormat: string;
21
- status: 200;
21
+ status: 302;
22
22
  } | {
23
23
  input: {
24
24
  query: {
@@ -32,7 +32,7 @@ export declare const oidcLogoutRoutes: OpenAPIHono<{
32
32
  };
33
33
  output: {};
34
34
  outputFormat: string;
35
- status: 302;
35
+ status: 200;
36
36
  } | {
37
37
  input: {
38
38
  query: {
@@ -14,19 +14,19 @@ export declare const passwordlessRoutes: OpenAPIHono<{
14
14
  email: string;
15
15
  send: "code" | "link";
16
16
  authParams: {
17
- audience?: string | undefined;
18
17
  state?: string | undefined;
19
- code_challenge?: string | undefined;
20
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
21
- redirect_uri?: string | undefined;
22
- nonce?: string | undefined;
18
+ username?: string | undefined;
23
19
  response_type?: AuthorizationResponseType | undefined;
24
20
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
25
21
  scope?: string | undefined;
26
- username?: string | undefined;
22
+ audience?: string | undefined;
27
23
  act_as?: string | undefined;
24
+ redirect_uri?: string | undefined;
28
25
  organization?: string | undefined;
26
+ nonce?: string | undefined;
29
27
  prompt?: string | undefined;
28
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
29
+ code_challenge?: string | undefined;
30
30
  ui_locales?: string | undefined;
31
31
  max_age?: number | undefined;
32
32
  acr_values?: string | undefined;
@@ -50,19 +50,19 @@ export declare const passwordlessRoutes: OpenAPIHono<{
50
50
  phone_number: string;
51
51
  send: "code" | "link";
52
52
  authParams: {
53
- audience?: string | undefined;
54
53
  state?: string | undefined;
55
- code_challenge?: string | undefined;
56
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
57
- redirect_uri?: string | undefined;
58
- nonce?: string | undefined;
54
+ username?: string | undefined;
59
55
  response_type?: AuthorizationResponseType | undefined;
60
56
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
61
57
  scope?: string | undefined;
62
- username?: string | undefined;
58
+ audience?: string | undefined;
63
59
  act_as?: string | undefined;
60
+ redirect_uri?: string | undefined;
64
61
  organization?: string | undefined;
62
+ nonce?: string | undefined;
65
63
  prompt?: string | undefined;
64
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
65
+ code_challenge?: string | undefined;
66
66
  ui_locales?: string | undefined;
67
67
  max_age?: number | undefined;
68
68
  acr_values?: 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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
111
111
  jwks_uri?: string | undefined;
112
112
  jwks?: Record<string, unknown> | undefined;
113
113
  software_id?: string | undefined;
@@ -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: "log" | "error" | "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: "log" | "error" | "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: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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;
@@ -852,7 +852,7 @@ export declare const connectionRoutes: OpenAPIHono<{
852
852
  };
853
853
  } | {
854
854
  mode: "inline";
855
- status: "success" | "error";
855
+ status: "error" | "success";
856
856
  connection_id: string;
857
857
  connection_name: string;
858
858
  strategy: string;
@@ -28,9 +28,9 @@ export declare const customDomainRoutes: OpenAPIHono<{
28
28
  type: "auth0_managed_certs" | "self_managed_certs";
29
29
  custom_domain_id: string;
30
30
  primary: boolean;
31
- status: "pending" | "disabled" | "pending_verification" | "ready";
31
+ status: "disabled" | "pending" | "pending_verification" | "ready";
32
32
  verification_method?: "txt" | undefined;
33
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
33
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
34
34
  domain_metadata?: {
35
35
  [x: string]: string;
36
36
  } | undefined;
@@ -69,9 +69,9 @@ export declare const customDomainRoutes: OpenAPIHono<{
69
69
  type: "auth0_managed_certs" | "self_managed_certs";
70
70
  custom_domain_id: string;
71
71
  primary: boolean;
72
- status: "pending" | "disabled" | "pending_verification" | "ready";
72
+ status: "disabled" | "pending" | "pending_verification" | "ready";
73
73
  verification_method?: "txt" | undefined;
74
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
74
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
75
75
  domain_metadata?: {
76
76
  [x: string]: string;
77
77
  } | undefined;
@@ -126,11 +126,11 @@ export declare const customDomainRoutes: OpenAPIHono<{
126
126
  domain?: string | undefined;
127
127
  type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
128
128
  verification_method?: "txt" | undefined;
129
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
129
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
130
130
  domain_metadata?: Record<string, string> | undefined;
131
131
  custom_domain_id?: string | undefined;
132
132
  primary?: boolean | undefined;
133
- status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
133
+ status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
134
134
  origin_domain_name?: string | undefined;
135
135
  verification?: {
136
136
  methods: ({
@@ -151,9 +151,9 @@ export declare const customDomainRoutes: OpenAPIHono<{
151
151
  type: "auth0_managed_certs" | "self_managed_certs";
152
152
  custom_domain_id: string;
153
153
  primary: boolean;
154
- status: "pending" | "disabled" | "pending_verification" | "ready";
154
+ status: "disabled" | "pending" | "pending_verification" | "ready";
155
155
  verification_method?: "txt" | undefined;
156
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
156
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
157
157
  domain_metadata?: {
158
158
  [x: string]: string;
159
159
  } | undefined;
@@ -189,7 +189,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
189
189
  custom_domain_id?: string | undefined;
190
190
  verification_method?: "txt" | undefined;
191
191
  tls_policy?: "recommended" | undefined;
192
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
192
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
193
193
  domain_metadata?: Record<string, string> | undefined;
194
194
  };
195
195
  };
@@ -198,9 +198,9 @@ export declare const customDomainRoutes: OpenAPIHono<{
198
198
  type: "auth0_managed_certs" | "self_managed_certs";
199
199
  custom_domain_id: string;
200
200
  primary: boolean;
201
- status: "pending" | "disabled" | "pending_verification" | "ready";
201
+ status: "disabled" | "pending" | "pending_verification" | "ready";
202
202
  verification_method?: "txt" | undefined;
203
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
203
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
204
204
  domain_metadata?: {
205
205
  [x: string]: string;
206
206
  } | undefined;
@@ -239,9 +239,9 @@ export declare const customDomainRoutes: OpenAPIHono<{
239
239
  type: "auth0_managed_certs" | "self_managed_certs";
240
240
  custom_domain_id: string;
241
241
  primary: boolean;
242
- status: "pending" | "disabled" | "pending_verification" | "ready";
242
+ status: "disabled" | "pending" | "pending_verification" | "ready";
243
243
  verification_method?: "txt" | undefined;
244
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
244
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
245
245
  domain_metadata?: {
246
246
  [x: string]: string;
247
247
  } | undefined;