authhero 9.7.0 → 9.8.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 (34) hide show
  1. package/dist/authhero.cjs +144 -144
  2. package/dist/authhero.d.ts +334 -242
  3. package/dist/authhero.mjs +11866 -11658
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  6. package/dist/types/constants.d.ts +2 -0
  7. package/dist/types/helpers/signing-keys.d.ts +11 -0
  8. package/dist/types/index.d.ts +324 -242
  9. package/dist/types/routes/auth-api/index.d.ts +21 -21
  10. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  11. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  12. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  13. package/dist/types/routes/management-api/clients.d.ts +6 -6
  14. package/dist/types/routes/management-api/connections.d.ts +16 -16
  15. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  16. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  17. package/dist/types/routes/management-api/forms.d.ts +126 -126
  18. package/dist/types/routes/management-api/index.d.ts +298 -216
  19. package/dist/types/routes/management-api/keys.d.ts +86 -4
  20. package/dist/types/routes/management-api/logs.d.ts +4 -4
  21. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  22. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/roles.d.ts +1 -1
  25. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  26. package/dist/types/routes/management-api/tenants.d.ts +4 -4
  27. package/dist/types/routes/management-api/users.d.ts +18 -18
  28. package/dist/types/routes/universal-login/common.d.ts +6 -6
  29. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  30. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  31. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  32. package/dist/types/utils/encryption.d.ts +51 -0
  33. package/dist/types/utils/jwks.d.ts +2 -2
  34. package/package.json +3 -3
@@ -736,19 +736,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
736
736
  email: string;
737
737
  send: "code" | "link";
738
738
  authParams: {
739
- username?: string | undefined;
740
- organization?: string | undefined;
741
- audience?: string | undefined;
742
739
  scope?: string | undefined;
740
+ username?: string | undefined;
741
+ act_as?: string | undefined;
743
742
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
744
743
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
745
- state?: string | undefined;
746
- code_challenge?: string | undefined;
747
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
748
744
  redirect_uri?: string | undefined;
745
+ audience?: string | undefined;
746
+ organization?: string | undefined;
747
+ state?: string | undefined;
749
748
  nonce?: string | undefined;
750
- act_as?: string | undefined;
751
749
  prompt?: string | undefined;
750
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
751
+ code_challenge?: string | undefined;
752
752
  ui_locales?: string | undefined;
753
753
  max_age?: number | undefined;
754
754
  acr_values?: string | undefined;
@@ -772,19 +772,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
772
772
  phone_number: string;
773
773
  send: "code" | "link";
774
774
  authParams: {
775
- username?: string | undefined;
776
- organization?: string | undefined;
777
- audience?: string | undefined;
778
775
  scope?: string | undefined;
776
+ username?: string | undefined;
777
+ act_as?: string | undefined;
779
778
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
780
779
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
781
- state?: string | undefined;
782
- code_challenge?: string | undefined;
783
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
784
780
  redirect_uri?: string | undefined;
781
+ audience?: string | undefined;
782
+ organization?: string | undefined;
783
+ state?: string | undefined;
785
784
  nonce?: string | undefined;
786
- act_as?: string | undefined;
787
785
  prompt?: string | undefined;
786
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
787
+ code_challenge?: string | undefined;
788
788
  ui_locales?: string | undefined;
789
789
  max_age?: number | undefined;
790
790
  acr_values?: string | undefined;
@@ -916,14 +916,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
916
916
  input: {
917
917
  form: {
918
918
  token: string;
919
- token_type_hint?: "access_token" | "refresh_token" | undefined;
919
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
920
920
  client_id?: string | undefined;
921
921
  client_secret?: string | undefined;
922
922
  };
923
923
  } & {
924
924
  json: {
925
925
  token: string;
926
- token_type_hint?: "access_token" | "refresh_token" | undefined;
926
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
927
927
  client_id?: string | undefined;
928
928
  client_secret?: string | undefined;
929
929
  };
@@ -935,14 +935,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
935
935
  input: {
936
936
  form: {
937
937
  token: string;
938
- token_type_hint?: "access_token" | "refresh_token" | undefined;
938
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
939
939
  client_id?: string | undefined;
940
940
  client_secret?: string | undefined;
941
941
  };
942
942
  } & {
943
943
  json: {
944
944
  token: string;
945
- token_type_hint?: "access_token" | "refresh_token" | undefined;
945
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
946
946
  client_id?: string | undefined;
947
947
  client_secret?: string | undefined;
948
948
  };
@@ -957,14 +957,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
957
957
  input: {
958
958
  form: {
959
959
  token: string;
960
- token_type_hint?: "access_token" | "refresh_token" | undefined;
960
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
961
961
  client_id?: string | undefined;
962
962
  client_secret?: string | undefined;
963
963
  };
964
964
  } & {
965
965
  json: {
966
966
  token: string;
967
- token_type_hint?: "access_token" | "refresh_token" | undefined;
967
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
968
968
  client_id?: string | undefined;
969
969
  client_secret?: string | undefined;
970
970
  };
@@ -1500,7 +1500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1500
1500
  output: {
1501
1501
  keys: {
1502
1502
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
1503
- kty: "EC" | "RSA" | "oct";
1503
+ kty: "RSA" | "EC" | "oct";
1504
1504
  kid?: string | undefined;
1505
1505
  use?: "sig" | "enc" | undefined;
1506
1506
  n?: string | undefined;
@@ -14,19 +14,19 @@ export declare const passwordlessRoutes: OpenAPIHono<{
14
14
  email: string;
15
15
  send: "code" | "link";
16
16
  authParams: {
17
- username?: string | undefined;
18
- organization?: string | undefined;
19
- audience?: string | undefined;
20
17
  scope?: string | undefined;
18
+ username?: string | undefined;
19
+ act_as?: string | undefined;
21
20
  response_type?: AuthorizationResponseType | undefined;
22
21
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
23
- state?: string | undefined;
24
- code_challenge?: string | undefined;
25
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
26
22
  redirect_uri?: string | undefined;
23
+ audience?: string | undefined;
24
+ organization?: string | undefined;
25
+ state?: string | undefined;
27
26
  nonce?: string | undefined;
28
- act_as?: 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
- username?: string | undefined;
54
- organization?: string | undefined;
55
- audience?: string | undefined;
56
53
  scope?: string | undefined;
54
+ username?: string | undefined;
55
+ act_as?: string | undefined;
57
56
  response_type?: AuthorizationResponseType | undefined;
58
57
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
59
- state?: string | undefined;
60
- code_challenge?: string | undefined;
61
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
62
58
  redirect_uri?: string | undefined;
59
+ audience?: string | undefined;
60
+ organization?: string | undefined;
61
+ state?: string | undefined;
63
62
  nonce?: string | undefined;
64
- act_as?: 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;
@@ -9,14 +9,14 @@ export declare const revokeRoutes: OpenAPIHono<{
9
9
  input: {
10
10
  form: {
11
11
  token: string;
12
- token_type_hint?: "access_token" | "refresh_token" | undefined;
12
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
13
13
  client_id?: string | undefined;
14
14
  client_secret?: string | undefined;
15
15
  };
16
16
  } & {
17
17
  json: {
18
18
  token: string;
19
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
20
20
  client_id?: string | undefined;
21
21
  client_secret?: string | undefined;
22
22
  };
@@ -28,14 +28,14 @@ export declare const revokeRoutes: OpenAPIHono<{
28
28
  input: {
29
29
  form: {
30
30
  token: string;
31
- token_type_hint?: "access_token" | "refresh_token" | undefined;
31
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
32
32
  client_id?: string | undefined;
33
33
  client_secret?: string | undefined;
34
34
  };
35
35
  } & {
36
36
  json: {
37
37
  token: string;
38
- token_type_hint?: "access_token" | "refresh_token" | undefined;
38
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
39
39
  client_id?: string | undefined;
40
40
  client_secret?: string | undefined;
41
41
  };
@@ -50,14 +50,14 @@ export declare const revokeRoutes: OpenAPIHono<{
50
50
  input: {
51
51
  form: {
52
52
  token: string;
53
- token_type_hint?: "access_token" | "refresh_token" | undefined;
53
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
54
54
  client_id?: string | undefined;
55
55
  client_secret?: string | undefined;
56
56
  };
57
57
  } & {
58
58
  json: {
59
59
  token: string;
60
- token_type_hint?: "access_token" | "refresh_token" | undefined;
60
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
61
61
  client_id?: string | undefined;
62
62
  client_secret?: string | undefined;
63
63
  };
@@ -9,7 +9,7 @@ export declare const wellKnownRoutes: import("hono/hono-base").HonoBase<{
9
9
  output: {
10
10
  keys: {
11
11
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
12
- kty: "EC" | "RSA" | "oct";
12
+ kty: "RSA" | "EC" | "oct";
13
13
  kid?: string | undefined;
14
14
  use?: "sig" | "enc" | undefined;
15
15
  n?: string | undefined;
@@ -912,7 +912,7 @@ export declare const clientRoutes: OpenAPIHono<{
912
912
  active?: boolean | undefined;
913
913
  } | undefined;
914
914
  signup?: {
915
- status?: "required" | "optional" | "disabled" | undefined;
915
+ status?: "optional" | "required" | "disabled" | undefined;
916
916
  verification?: {
917
917
  active?: boolean | undefined;
918
918
  } | undefined;
@@ -929,7 +929,7 @@ export declare const clientRoutes: OpenAPIHono<{
929
929
  active?: boolean | undefined;
930
930
  } | undefined;
931
931
  signup?: {
932
- status?: "required" | "optional" | "disabled" | undefined;
932
+ status?: "optional" | "required" | "disabled" | undefined;
933
933
  } | undefined;
934
934
  validation?: {
935
935
  max_length?: number | undefined;
@@ -946,7 +946,7 @@ export declare const clientRoutes: OpenAPIHono<{
946
946
  active?: boolean | undefined;
947
947
  } | undefined;
948
948
  signup?: {
949
- status?: "required" | "optional" | "disabled" | undefined;
949
+ status?: "optional" | "required" | "disabled" | undefined;
950
950
  } | undefined;
951
951
  } | undefined;
952
952
  } | undefined;
@@ -1070,7 +1070,7 @@ export declare const clientRoutes: OpenAPIHono<{
1070
1070
  active?: boolean | undefined;
1071
1071
  } | undefined;
1072
1072
  signup?: {
1073
- status?: "required" | "optional" | "disabled" | undefined;
1073
+ status?: "optional" | "required" | "disabled" | undefined;
1074
1074
  verification?: {
1075
1075
  active?: boolean | undefined;
1076
1076
  } | undefined;
@@ -1087,7 +1087,7 @@ export declare const clientRoutes: OpenAPIHono<{
1087
1087
  active?: boolean | undefined;
1088
1088
  } | undefined;
1089
1089
  signup?: {
1090
- status?: "required" | "optional" | "disabled" | undefined;
1090
+ status?: "optional" | "required" | "disabled" | undefined;
1091
1091
  } | undefined;
1092
1092
  validation?: {
1093
1093
  max_length?: number | undefined;
@@ -1104,7 +1104,7 @@ export declare const clientRoutes: OpenAPIHono<{
1104
1104
  active?: boolean | undefined;
1105
1105
  } | undefined;
1106
1106
  signup?: {
1107
- status?: "required" | "optional" | "disabled" | undefined;
1107
+ status?: "optional" | "required" | "disabled" | undefined;
1108
1108
  } | undefined;
1109
1109
  } | undefined;
1110
1110
  } | undefined;
@@ -86,7 +86,7 @@ export declare const connectionRoutes: OpenAPIHono<{
86
86
  active?: boolean | undefined;
87
87
  } | undefined;
88
88
  signup?: {
89
- status?: "required" | "optional" | "disabled" | undefined;
89
+ status?: "optional" | "required" | "disabled" | undefined;
90
90
  verification?: {
91
91
  active?: boolean | undefined;
92
92
  } | undefined;
@@ -103,7 +103,7 @@ export declare const connectionRoutes: OpenAPIHono<{
103
103
  active?: boolean | undefined;
104
104
  } | undefined;
105
105
  signup?: {
106
- status?: "required" | "optional" | "disabled" | undefined;
106
+ status?: "optional" | "required" | "disabled" | undefined;
107
107
  } | undefined;
108
108
  validation?: {
109
109
  max_length?: number | undefined;
@@ -120,7 +120,7 @@ export declare const connectionRoutes: OpenAPIHono<{
120
120
  active?: boolean | undefined;
121
121
  } | undefined;
122
122
  signup?: {
123
- status?: "required" | "optional" | "disabled" | undefined;
123
+ status?: "optional" | "required" | "disabled" | undefined;
124
124
  } | undefined;
125
125
  } | undefined;
126
126
  } | undefined;
@@ -224,7 +224,7 @@ export declare const connectionRoutes: OpenAPIHono<{
224
224
  active?: boolean | undefined;
225
225
  } | undefined;
226
226
  signup?: {
227
- status?: "required" | "optional" | "disabled" | undefined;
227
+ status?: "optional" | "required" | "disabled" | undefined;
228
228
  verification?: {
229
229
  active?: boolean | undefined;
230
230
  } | undefined;
@@ -241,7 +241,7 @@ export declare const connectionRoutes: OpenAPIHono<{
241
241
  active?: boolean | undefined;
242
242
  } | undefined;
243
243
  signup?: {
244
- status?: "required" | "optional" | "disabled" | undefined;
244
+ status?: "optional" | "required" | "disabled" | undefined;
245
245
  } | undefined;
246
246
  validation?: {
247
247
  max_length?: number | undefined;
@@ -258,7 +258,7 @@ export declare const connectionRoutes: OpenAPIHono<{
258
258
  active?: boolean | undefined;
259
259
  } | undefined;
260
260
  signup?: {
261
- status?: "required" | "optional" | "disabled" | undefined;
261
+ status?: "optional" | "required" | "disabled" | undefined;
262
262
  } | undefined;
263
263
  } | undefined;
264
264
  } | undefined;
@@ -378,7 +378,7 @@ export declare const connectionRoutes: OpenAPIHono<{
378
378
  active?: boolean | undefined;
379
379
  } | undefined;
380
380
  signup?: {
381
- status?: "required" | "optional" | "disabled" | undefined;
381
+ status?: "optional" | "required" | "disabled" | undefined;
382
382
  verification?: {
383
383
  active?: boolean | undefined;
384
384
  } | undefined;
@@ -395,7 +395,7 @@ export declare const connectionRoutes: OpenAPIHono<{
395
395
  active?: boolean | undefined;
396
396
  } | undefined;
397
397
  signup?: {
398
- status?: "required" | "optional" | "disabled" | undefined;
398
+ status?: "optional" | "required" | "disabled" | undefined;
399
399
  } | undefined;
400
400
  validation?: {
401
401
  max_length?: number | undefined;
@@ -412,7 +412,7 @@ export declare const connectionRoutes: OpenAPIHono<{
412
412
  active?: boolean | undefined;
413
413
  } | undefined;
414
414
  signup?: {
415
- status?: "required" | "optional" | "disabled" | undefined;
415
+ status?: "optional" | "required" | "disabled" | undefined;
416
416
  } | undefined;
417
417
  } | undefined;
418
418
  } | undefined;
@@ -561,7 +561,7 @@ export declare const connectionRoutes: OpenAPIHono<{
561
561
  active?: boolean | undefined;
562
562
  } | undefined;
563
563
  signup?: {
564
- status?: "required" | "optional" | "disabled" | undefined;
564
+ status?: "optional" | "required" | "disabled" | undefined;
565
565
  verification?: {
566
566
  active?: boolean | undefined;
567
567
  } | undefined;
@@ -578,7 +578,7 @@ export declare const connectionRoutes: OpenAPIHono<{
578
578
  active?: boolean | undefined;
579
579
  } | undefined;
580
580
  signup?: {
581
- status?: "required" | "optional" | "disabled" | undefined;
581
+ status?: "optional" | "required" | "disabled" | undefined;
582
582
  } | undefined;
583
583
  validation?: {
584
584
  max_length?: number | undefined;
@@ -595,7 +595,7 @@ export declare const connectionRoutes: OpenAPIHono<{
595
595
  active?: boolean | undefined;
596
596
  } | undefined;
597
597
  signup?: {
598
- status?: "required" | "optional" | "disabled" | undefined;
598
+ status?: "optional" | "required" | "disabled" | undefined;
599
599
  } | undefined;
600
600
  } | undefined;
601
601
  } | undefined;
@@ -723,7 +723,7 @@ export declare const connectionRoutes: OpenAPIHono<{
723
723
  active?: boolean | undefined;
724
724
  } | undefined;
725
725
  signup?: {
726
- status?: "required" | "optional" | "disabled" | undefined;
726
+ status?: "optional" | "required" | "disabled" | undefined;
727
727
  verification?: {
728
728
  active?: boolean | undefined;
729
729
  } | undefined;
@@ -740,7 +740,7 @@ export declare const connectionRoutes: OpenAPIHono<{
740
740
  active?: boolean | undefined;
741
741
  } | undefined;
742
742
  signup?: {
743
- status?: "required" | "optional" | "disabled" | undefined;
743
+ status?: "optional" | "required" | "disabled" | undefined;
744
744
  } | undefined;
745
745
  validation?: {
746
746
  max_length?: number | undefined;
@@ -757,7 +757,7 @@ export declare const connectionRoutes: OpenAPIHono<{
757
757
  active?: boolean | undefined;
758
758
  } | undefined;
759
759
  signup?: {
760
- status?: "required" | "optional" | "disabled" | undefined;
760
+ status?: "optional" | "required" | "disabled" | undefined;
761
761
  } | undefined;
762
762
  } | undefined;
763
763
  } | undefined;
@@ -873,7 +873,7 @@ export declare const connectionRoutes: OpenAPIHono<{
873
873
  };
874
874
  } | {
875
875
  mode: "inline";
876
- status: "error" | "success";
876
+ status: "success" | "error";
877
877
  connection_id: string;
878
878
  connection_name: string;
879
879
  strategy: string;
@@ -28,7 +28,7 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
31
+ status: "pending" | "ready" | "disabled" | "pending_verification";
32
32
  verification_method?: "txt" | undefined;
33
33
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
34
34
  domain_metadata?: {
@@ -69,7 +69,7 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
72
+ status: "pending" | "ready" | "disabled" | "pending_verification";
73
73
  verification_method?: "txt" | undefined;
74
74
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
75
75
  domain_metadata?: {
@@ -133,7 +133,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
133
133
  type: "auth0_managed_certs" | "self_managed_certs";
134
134
  custom_domain_id: string;
135
135
  primary: boolean;
136
- status: "disabled" | "pending" | "ready" | "pending_verification";
136
+ status: "pending" | "ready" | "disabled" | "pending_verification";
137
137
  verification_method?: "txt" | undefined;
138
138
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
139
139
  domain_metadata?: {
@@ -180,7 +180,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
180
180
  type: "auth0_managed_certs" | "self_managed_certs";
181
181
  custom_domain_id: string;
182
182
  primary: boolean;
183
- status: "disabled" | "pending" | "ready" | "pending_verification";
183
+ status: "pending" | "ready" | "disabled" | "pending_verification";
184
184
  verification_method?: "txt" | undefined;
185
185
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
186
186
  domain_metadata?: {
@@ -226,7 +226,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
226
226
  type: "auth0_managed_certs" | "self_managed_certs";
227
227
  custom_domain_id: string;
228
228
  primary: boolean;
229
- status: "disabled" | "pending" | "ready" | "pending_verification";
229
+ status: "pending" | "ready" | "disabled" | "pending_verification";
230
230
  verification_method?: "txt" | undefined;
231
231
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
232
232
  domain_metadata?: {
@@ -267,7 +267,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
267
267
  type: "auth0_managed_certs" | "self_managed_certs";
268
268
  custom_domain_id: string;
269
269
  primary: boolean;
270
- status: "disabled" | "pending" | "ready" | "pending_verification";
270
+ status: "pending" | "ready" | "disabled" | "pending_verification";
271
271
  verification_method?: "txt" | undefined;
272
272
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
273
273
  domain_metadata?: {