authhero 8.19.0 → 8.21.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 (44) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +317 -250
  4. package/dist/authhero.mjs +14752 -16956
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  8. package/dist/types/helpers/hook-events.d.ts +35 -15
  9. package/dist/types/hooks/link-users.d.ts +9 -1
  10. package/dist/types/hooks/user-registration.d.ts +8 -5
  11. package/dist/types/index.d.ts +317 -250
  12. package/dist/types/routes/auth-api/index.d.ts +22 -22
  13. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  14. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  15. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  16. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  17. package/dist/types/routes/management-api/actions.d.ts +3 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/branding.d.ts +1 -1
  20. package/dist/types/routes/management-api/client-grants.d.ts +24 -8
  21. package/dist/types/routes/management-api/clients.d.ts +14 -13
  22. package/dist/types/routes/management-api/connections.d.ts +17 -16
  23. package/dist/types/routes/management-api/flows.d.ts +1 -0
  24. package/dist/types/routes/management-api/forms.d.ts +127 -126
  25. package/dist/types/routes/management-api/grants.d.ts +1 -0
  26. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  27. package/dist/types/routes/management-api/hooks.d.ts +25 -24
  28. package/dist/types/routes/management-api/index.d.ts +288 -221
  29. package/dist/types/routes/management-api/logs.d.ts +4 -3
  30. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  31. package/dist/types/routes/management-api/organizations.d.ts +36 -2
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
  34. package/dist/types/routes/management-api/roles.d.ts +8 -6
  35. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  36. package/dist/types/routes/management-api/users.d.ts +7 -2
  37. package/dist/types/routes/universal-login/common.d.ts +8 -8
  38. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  39. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  40. package/dist/types/routes/universal-login/index.d.ts +2 -2
  41. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  42. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  43. package/dist/types/types/IdToken.d.ts +1 -1
  44. package/package.json +6 -6
@@ -301,7 +301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
301
301
  scope?: string | undefined;
302
302
  grant_types?: string[] | undefined;
303
303
  response_types?: string[] | undefined;
304
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
304
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
305
305
  jwks_uri?: string | undefined;
306
306
  jwks?: Record<string, unknown> | undefined;
307
307
  software_id?: string | undefined;
@@ -390,7 +390,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
390
390
  scope?: string | undefined;
391
391
  grant_types?: string[] | undefined;
392
392
  response_types?: string[] | undefined;
393
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
393
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
394
394
  jwks_uri?: string | undefined;
395
395
  jwks?: Record<string, unknown> | undefined;
396
396
  software_id?: string | undefined;
@@ -736,20 +736,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
736
736
  email: string;
737
737
  send: "code" | "link";
738
738
  authParams: {
739
- username?: string | undefined;
740
- scope?: string | undefined;
741
739
  audience?: string | undefined;
740
+ scope?: string | undefined;
741
+ username?: string | undefined;
742
742
  organization?: string | undefined;
743
- state?: string | undefined;
744
743
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
745
744
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
746
- prompt?: string | undefined;
747
- ui_locales?: string | undefined;
748
- redirect_uri?: string | undefined;
749
- act_as?: string | undefined;
745
+ state?: string | undefined;
750
746
  nonce?: string | undefined;
747
+ act_as?: string | undefined;
748
+ redirect_uri?: string | undefined;
749
+ prompt?: string | undefined;
751
750
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
752
751
  code_challenge?: string | undefined;
752
+ ui_locales?: string | undefined;
753
753
  max_age?: number | undefined;
754
754
  acr_values?: string | undefined;
755
755
  claims?: {
@@ -772,20 +772,20 @@ 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
- scope?: string | undefined;
777
775
  audience?: string | undefined;
776
+ scope?: string | undefined;
777
+ username?: string | undefined;
778
778
  organization?: string | undefined;
779
- state?: string | undefined;
780
779
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
781
780
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
782
- prompt?: string | undefined;
783
- ui_locales?: string | undefined;
784
- redirect_uri?: string | undefined;
785
- act_as?: string | undefined;
781
+ state?: string | undefined;
786
782
  nonce?: string | undefined;
783
+ act_as?: string | undefined;
784
+ redirect_uri?: string | undefined;
785
+ prompt?: string | undefined;
787
786
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
788
787
  code_challenge?: string | undefined;
788
+ ui_locales?: string | undefined;
789
789
  max_age?: number | undefined;
790
790
  acr_values?: string | undefined;
791
791
  claims?: {
@@ -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?: "refresh_token" | "access_token" | undefined;
919
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
926
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
938
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
945
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
960
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
967
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
968
968
  client_id?: string | undefined;
969
969
  client_secret?: string | undefined;
970
970
  };
@@ -14,20 +14,20 @@ export declare const passwordlessRoutes: OpenAPIHono<{
14
14
  email: string;
15
15
  send: "code" | "link";
16
16
  authParams: {
17
- username?: string | undefined;
18
- scope?: string | undefined;
19
17
  audience?: string | undefined;
18
+ scope?: string | undefined;
19
+ username?: string | undefined;
20
20
  organization?: string | undefined;
21
- state?: string | undefined;
22
21
  response_type?: AuthorizationResponseType | undefined;
23
22
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
24
- prompt?: string | undefined;
25
- ui_locales?: string | undefined;
26
- redirect_uri?: string | undefined;
27
- act_as?: string | undefined;
23
+ state?: string | undefined;
28
24
  nonce?: string | undefined;
25
+ act_as?: string | undefined;
26
+ redirect_uri?: string | undefined;
27
+ prompt?: string | undefined;
29
28
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
30
29
  code_challenge?: string | undefined;
30
+ ui_locales?: string | undefined;
31
31
  max_age?: number | undefined;
32
32
  acr_values?: string | undefined;
33
33
  claims?: {
@@ -50,20 +50,20 @@ export declare const passwordlessRoutes: OpenAPIHono<{
50
50
  phone_number: string;
51
51
  send: "code" | "link";
52
52
  authParams: {
53
- username?: string | undefined;
54
- scope?: string | undefined;
55
53
  audience?: string | undefined;
54
+ scope?: string | undefined;
55
+ username?: string | undefined;
56
56
  organization?: string | undefined;
57
- state?: string | undefined;
58
57
  response_type?: AuthorizationResponseType | undefined;
59
58
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
60
- prompt?: string | undefined;
61
- ui_locales?: string | undefined;
62
- redirect_uri?: string | undefined;
63
- act_as?: string | undefined;
59
+ state?: string | undefined;
64
60
  nonce?: string | undefined;
61
+ act_as?: string | undefined;
62
+ redirect_uri?: string | undefined;
63
+ prompt?: string | undefined;
65
64
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
66
65
  code_challenge?: string | undefined;
66
+ ui_locales?: string | undefined;
67
67
  max_age?: number | undefined;
68
68
  acr_values?: string | undefined;
69
69
  claims?: {
@@ -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?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "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?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
111
111
  jwks_uri?: string | undefined;
112
112
  jwks?: Record<string, unknown> | undefined;
113
113
  software_id?: 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?: "refresh_token" | "access_token" | undefined;
12
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
19
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
31
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
38
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
53
+ token_type_hint?: "access_token" | "refresh_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?: "refresh_token" | "access_token" | undefined;
60
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
61
61
  client_id?: string | undefined;
62
62
  client_secret?: string | undefined;
63
63
  };
@@ -78,7 +78,7 @@ export declare const actionExecutionsRoutes: OpenAPIHono<{
78
78
  logs: {
79
79
  action_name: string;
80
80
  lines: {
81
- level: "log" | "error" | "info" | "warn" | "debug";
81
+ level: "error" | "log" | "info" | "warn" | "debug";
82
82
  message: string;
83
83
  }[];
84
84
  }[];
@@ -77,6 +77,7 @@ export declare const actionsRoutes: OpenAPIHono<{
77
77
  }[] | undefined;
78
78
  }[];
79
79
  total?: number | undefined;
80
+ next?: string | undefined;
80
81
  };
81
82
  outputFormat: "json";
82
83
  status: 200;
@@ -485,6 +486,7 @@ export declare const actionsRoutes: OpenAPIHono<{
485
486
  }[] | undefined;
486
487
  }[];
487
488
  total?: number | undefined;
489
+ next?: string | undefined;
488
490
  };
489
491
  outputFormat: "json";
490
492
  status: 200;
@@ -661,7 +663,7 @@ export declare const actionsRoutes: OpenAPIHono<{
661
663
  args: import("hono/utils/types").JSONValue[];
662
664
  }[];
663
665
  logs: {
664
- level: "log" | "error" | "info" | "warn" | "debug";
666
+ level: "error" | "log" | "info" | "warn" | "debug";
665
667
  message: string;
666
668
  }[];
667
669
  error?: string | undefined;
@@ -37,7 +37,7 @@ export declare const authenticationMethodsRoutes: OpenAPIHono<{
37
37
  };
38
38
  } & {
39
39
  json: {
40
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
40
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
41
41
  phone_number?: string | undefined;
42
42
  totp_secret?: string | undefined;
43
43
  credential_id?: string | undefined;
@@ -409,7 +409,7 @@ export declare const brandingRoutes: OpenAPIHono<{
409
409
  } & {
410
410
  json: {
411
411
  body?: string | undefined;
412
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
412
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
413
413
  branding?: {
414
414
  colors?: {
415
415
  primary: string;
@@ -16,7 +16,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
16
16
  audience?: string | undefined;
17
17
  client_id?: string | undefined;
18
18
  allow_any_organization?: string | undefined;
19
- subject_type?: "user" | "client" | undefined;
19
+ subject_type?: "client" | "user" | undefined;
20
20
  };
21
21
  } & {
22
22
  header: {
@@ -31,7 +31,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
31
31
  organization_usage?: "deny" | "allow" | "require" | undefined;
32
32
  allow_any_organization?: boolean | undefined;
33
33
  is_system?: boolean | undefined;
34
- subject_type?: "user" | "client" | undefined;
34
+ subject_type?: "client" | "user" | undefined;
35
35
  authorization_details_types?: string[] | undefined;
36
36
  created_at?: string | undefined;
37
37
  updated_at?: string | undefined;
@@ -47,12 +47,28 @@ export declare const clientGrantRoutes: OpenAPIHono<{
47
47
  organization_usage?: "deny" | "allow" | "require" | undefined;
48
48
  allow_any_organization?: boolean | undefined;
49
49
  is_system?: boolean | undefined;
50
- subject_type?: "user" | "client" | undefined;
50
+ subject_type?: "client" | "user" | undefined;
51
51
  authorization_details_types?: string[] | undefined;
52
52
  created_at?: string | undefined;
53
53
  updated_at?: string | undefined;
54
54
  }[];
55
55
  total?: number | undefined;
56
+ next?: string | undefined;
57
+ } | {
58
+ client_grants: {
59
+ id: string;
60
+ client_id: string;
61
+ audience: string;
62
+ scope?: string[] | undefined;
63
+ organization_usage?: "deny" | "allow" | "require" | undefined;
64
+ allow_any_organization?: boolean | undefined;
65
+ is_system?: boolean | undefined;
66
+ subject_type?: "client" | "user" | undefined;
67
+ authorization_details_types?: string[] | undefined;
68
+ created_at?: string | undefined;
69
+ updated_at?: string | undefined;
70
+ }[];
71
+ next?: string | undefined;
56
72
  };
57
73
  outputFormat: "json";
58
74
  status: 200;
@@ -78,7 +94,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
78
94
  organization_usage?: "deny" | "allow" | "require" | undefined;
79
95
  allow_any_organization?: boolean | undefined;
80
96
  is_system?: boolean | undefined;
81
- subject_type?: "user" | "client" | undefined;
97
+ subject_type?: "client" | "user" | undefined;
82
98
  authorization_details_types?: string[] | undefined;
83
99
  created_at?: string | undefined;
84
100
  updated_at?: string | undefined;
@@ -123,7 +139,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
123
139
  organization_usage?: "deny" | "allow" | "require" | undefined;
124
140
  allow_any_organization?: boolean | undefined;
125
141
  is_system?: boolean | undefined;
126
- subject_type?: "user" | "client" | undefined;
142
+ subject_type?: "client" | "user" | undefined;
127
143
  authorization_details_types?: string[] | undefined;
128
144
  };
129
145
  };
@@ -135,7 +151,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
135
151
  organization_usage?: "deny" | "allow" | "require" | undefined;
136
152
  allow_any_organization?: boolean | undefined;
137
153
  is_system?: boolean | undefined;
138
- subject_type?: "user" | "client" | undefined;
154
+ subject_type?: "client" | "user" | undefined;
139
155
  authorization_details_types?: string[] | undefined;
140
156
  created_at?: string | undefined;
141
157
  updated_at?: string | undefined;
@@ -159,7 +175,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
159
175
  organization_usage?: "deny" | "allow" | "require" | undefined;
160
176
  allow_any_organization?: boolean | undefined;
161
177
  is_system?: boolean | undefined;
162
- subject_type?: "user" | "client" | undefined;
178
+ subject_type?: "client" | "user" | undefined;
163
179
  authorization_details_types?: string[] | undefined;
164
180
  };
165
181
  };
@@ -171,7 +187,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
171
187
  organization_usage?: "deny" | "allow" | "require" | undefined;
172
188
  allow_any_organization?: boolean | undefined;
173
189
  is_system?: boolean | undefined;
174
- subject_type?: "user" | "client" | undefined;
190
+ subject_type?: "client" | "user" | undefined;
175
191
  authorization_details_types?: string[] | undefined;
176
192
  created_at?: string | undefined;
177
193
  updated_at?: 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?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "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?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
172
172
  client_metadata?: {
173
173
  [x: string]: string;
174
174
  } | undefined;
@@ -213,6 +213,7 @@ export declare const clientRoutes: OpenAPIHono<{
213
213
  user_linking_mode?: "builtin" | "off" | undefined;
214
214
  }[];
215
215
  total?: number | undefined;
216
+ next?: string | undefined;
216
217
  };
217
218
  outputFormat: "json";
218
219
  status: 200;
@@ -279,7 +280,7 @@ export declare const clientRoutes: OpenAPIHono<{
279
280
  addons?: {
280
281
  [x: string]: any;
281
282
  } | undefined;
282
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
283
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
283
284
  client_metadata?: {
284
285
  [x: string]: string;
285
286
  } | undefined;
@@ -389,7 +390,7 @@ export declare const clientRoutes: OpenAPIHono<{
389
390
  custom_login_page_preview?: string | undefined;
390
391
  form_template?: string | undefined;
391
392
  addons?: Record<string, any> | undefined;
392
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
393
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
393
394
  client_metadata?: Record<string, string> | undefined;
394
395
  hide_sign_up_disabled_error?: boolean | undefined;
395
396
  mobile?: Record<string, any> | undefined;
@@ -469,7 +470,7 @@ export declare const clientRoutes: OpenAPIHono<{
469
470
  addons?: {
470
471
  [x: string]: any;
471
472
  } | undefined;
472
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
473
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
473
474
  client_metadata?: {
474
475
  [x: string]: string;
475
476
  } | undefined;
@@ -558,7 +559,7 @@ export declare const clientRoutes: OpenAPIHono<{
558
559
  custom_login_page_preview?: string | undefined;
559
560
  form_template?: string | undefined;
560
561
  addons?: Record<string, any> | undefined;
561
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
562
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
562
563
  client_metadata?: Record<string, string> | undefined;
563
564
  hide_sign_up_disabled_error?: boolean | undefined;
564
565
  mobile?: Record<string, any> | undefined;
@@ -638,7 +639,7 @@ export declare const clientRoutes: OpenAPIHono<{
638
639
  addons?: {
639
640
  [x: string]: any;
640
641
  } | undefined;
641
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
642
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
642
643
  client_metadata?: {
643
644
  [x: string]: string;
644
645
  } | undefined;
@@ -760,7 +761,7 @@ export declare const clientRoutes: OpenAPIHono<{
760
761
  active?: boolean | undefined;
761
762
  } | undefined;
762
763
  signup?: {
763
- status?: "optional" | "required" | "disabled" | undefined;
764
+ status?: "required" | "optional" | "disabled" | undefined;
764
765
  verification?: {
765
766
  active?: boolean | undefined;
766
767
  } | undefined;
@@ -777,7 +778,7 @@ export declare const clientRoutes: OpenAPIHono<{
777
778
  active?: boolean | undefined;
778
779
  } | undefined;
779
780
  signup?: {
780
- status?: "optional" | "required" | "disabled" | undefined;
781
+ status?: "required" | "optional" | "disabled" | undefined;
781
782
  } | undefined;
782
783
  validation?: {
783
784
  max_length?: number | undefined;
@@ -794,7 +795,7 @@ export declare const clientRoutes: OpenAPIHono<{
794
795
  active?: boolean | undefined;
795
796
  } | undefined;
796
797
  signup?: {
797
- status?: "optional" | "required" | "disabled" | undefined;
798
+ status?: "required" | "optional" | "disabled" | undefined;
798
799
  } | undefined;
799
800
  } | undefined;
800
801
  } | undefined;
@@ -914,7 +915,7 @@ export declare const clientRoutes: OpenAPIHono<{
914
915
  active?: boolean | undefined;
915
916
  } | undefined;
916
917
  signup?: {
917
- status?: "optional" | "required" | "disabled" | undefined;
918
+ status?: "required" | "optional" | "disabled" | undefined;
918
919
  verification?: {
919
920
  active?: boolean | undefined;
920
921
  } | undefined;
@@ -931,7 +932,7 @@ export declare const clientRoutes: OpenAPIHono<{
931
932
  active?: boolean | undefined;
932
933
  } | undefined;
933
934
  signup?: {
934
- status?: "optional" | "required" | "disabled" | undefined;
935
+ status?: "required" | "optional" | "disabled" | undefined;
935
936
  } | undefined;
936
937
  validation?: {
937
938
  max_length?: number | undefined;
@@ -948,7 +949,7 @@ export declare const clientRoutes: OpenAPIHono<{
948
949
  active?: boolean | undefined;
949
950
  } | undefined;
950
951
  signup?: {
951
- status?: "optional" | "required" | "disabled" | undefined;
952
+ status?: "required" | "optional" | "disabled" | undefined;
952
953
  } | undefined;
953
954
  } | undefined;
954
955
  } | undefined;