authhero 9.6.0 → 9.6.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.
@@ -211,7 +211,7 @@ export declare const authorizeRoutes: OpenAPIHono<{
211
211
  message: string;
212
212
  };
213
213
  outputFormat: "json";
214
- status: 400;
214
+ status: 409;
215
215
  } | {
216
216
  input: {
217
217
  query: {
@@ -222,7 +222,7 @@ export declare const authorizeRoutes: OpenAPIHono<{
222
222
  message: string;
223
223
  };
224
224
  outputFormat: "json";
225
- status: 403;
225
+ status: 400;
226
226
  } | {
227
227
  input: {
228
228
  query: {
@@ -233,7 +233,7 @@ export declare const authorizeRoutes: OpenAPIHono<{
233
233
  message: string;
234
234
  };
235
235
  outputFormat: "json";
236
- status: 409;
236
+ status: 403;
237
237
  };
238
238
  };
239
239
  }, "/">;
@@ -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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
304
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
393
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
394
394
  jwks_uri?: string | undefined;
395
395
  jwks?: Record<string, unknown> | undefined;
396
396
  software_id?: string | undefined;
@@ -676,7 +676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
676
676
  message: string;
677
677
  };
678
678
  outputFormat: "json";
679
- status: 400;
679
+ status: 409;
680
680
  } | {
681
681
  input: {
682
682
  query: {
@@ -687,7 +687,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
687
687
  message: string;
688
688
  };
689
689
  outputFormat: "json";
690
- status: 403;
690
+ status: 400;
691
691
  } | {
692
692
  input: {
693
693
  query: {
@@ -698,7 +698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
698
698
  message: string;
699
699
  };
700
700
  outputFormat: "json";
701
- status: 409;
701
+ status: 403;
702
702
  };
703
703
  };
704
704
  }, "/authorize"> & import("hono/types").MergeSchemaPath<{
@@ -737,18 +737,18 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
737
737
  send: "code" | "link";
738
738
  authParams: {
739
739
  username?: string | undefined;
740
- state?: string | undefined;
741
740
  audience?: string | undefined;
741
+ state?: string | undefined;
742
+ scope?: string | undefined;
743
+ act_as?: string | undefined;
742
744
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
743
745
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
744
- scope?: string | undefined;
745
- organization?: string | undefined;
746
746
  redirect_uri?: string | undefined;
747
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
748
- code_challenge?: string | undefined;
747
+ organization?: 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;
@@ -773,18 +773,18 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
773
773
  send: "code" | "link";
774
774
  authParams: {
775
775
  username?: string | undefined;
776
- state?: string | undefined;
777
776
  audience?: string | undefined;
777
+ state?: string | undefined;
778
+ scope?: string | undefined;
779
+ act_as?: string | undefined;
778
780
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
779
781
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
780
- scope?: string | undefined;
781
- organization?: string | undefined;
782
782
  redirect_uri?: string | undefined;
783
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
784
- code_challenge?: string | undefined;
783
+ organization?: 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?: "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
  };
@@ -1014,7 +1014,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1014
1014
  client_id: string;
1015
1015
  username: string;
1016
1016
  otp: string;
1017
- realm: "sms" | "email";
1017
+ realm: "email" | "sms";
1018
1018
  } | {
1019
1019
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1020
1020
  subject_token: string;
@@ -1061,7 +1061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1061
1061
  client_id: string;
1062
1062
  username: string;
1063
1063
  otp: string;
1064
- realm: "sms" | "email";
1064
+ realm: "email" | "sms";
1065
1065
  } | {
1066
1066
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1067
1067
  subject_token: string;
@@ -1113,7 +1113,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1113
1113
  client_id: string;
1114
1114
  username: string;
1115
1115
  otp: string;
1116
- realm: "sms" | "email";
1116
+ realm: "email" | "sms";
1117
1117
  } | {
1118
1118
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1119
1119
  subject_token: string;
@@ -1160,7 +1160,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1160
1160
  client_id: string;
1161
1161
  username: string;
1162
1162
  otp: string;
1163
- realm: "sms" | "email";
1163
+ realm: "email" | "sms";
1164
1164
  } | {
1165
1165
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1166
1166
  subject_token: string;
@@ -1220,7 +1220,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1220
1220
  client_id: string;
1221
1221
  username: string;
1222
1222
  otp: string;
1223
- realm: "sms" | "email";
1223
+ realm: "email" | "sms";
1224
1224
  } | {
1225
1225
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1226
1226
  subject_token: string;
@@ -1267,7 +1267,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1267
1267
  client_id: string;
1268
1268
  username: string;
1269
1269
  otp: string;
1270
- realm: "sms" | "email";
1270
+ realm: "email" | "sms";
1271
1271
  } | {
1272
1272
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1273
1273
  subject_token: string;
@@ -1322,7 +1322,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1322
1322
  client_id: string;
1323
1323
  username: string;
1324
1324
  otp: string;
1325
- realm: "sms" | "email";
1325
+ realm: "email" | "sms";
1326
1326
  } | {
1327
1327
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1328
1328
  subject_token: string;
@@ -1369,7 +1369,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1369
1369
  client_id: string;
1370
1370
  username: string;
1371
1371
  otp: string;
1372
- realm: "sms" | "email";
1372
+ realm: "email" | "sms";
1373
1373
  } | {
1374
1374
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1375
1375
  subject_token: string;
@@ -1424,7 +1424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1424
1424
  client_id: string;
1425
1425
  username: string;
1426
1426
  otp: string;
1427
- realm: "sms" | "email";
1427
+ realm: "email" | "sms";
1428
1428
  } | {
1429
1429
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1430
1430
  subject_token: string;
@@ -1471,7 +1471,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1471
1471
  client_id: string;
1472
1472
  username: string;
1473
1473
  otp: string;
1474
- realm: "sms" | "email";
1474
+ realm: "email" | "sms";
1475
1475
  } | {
1476
1476
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1477
1477
  subject_token: string;
@@ -1707,7 +1707,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1707
1707
  };
1708
1708
  output: {};
1709
1709
  outputFormat: string;
1710
- status: 400;
1710
+ status: 302;
1711
1711
  } | {
1712
1712
  input: {
1713
1713
  query: {
@@ -1721,7 +1721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1721
1721
  };
1722
1722
  output: {};
1723
1723
  outputFormat: string;
1724
- status: 302;
1724
+ status: 400;
1725
1725
  };
1726
1726
  };
1727
1727
  }, "/oidc/logout"> & import("hono/types").MergeSchemaPath<{
@@ -15,18 +15,18 @@ export declare const passwordlessRoutes: OpenAPIHono<{
15
15
  send: "code" | "link";
16
16
  authParams: {
17
17
  username?: string | undefined;
18
- state?: string | undefined;
19
18
  audience?: string | undefined;
19
+ state?: string | undefined;
20
+ scope?: string | undefined;
21
+ act_as?: string | undefined;
20
22
  response_type?: AuthorizationResponseType | undefined;
21
23
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
22
- scope?: string | undefined;
23
- organization?: string | undefined;
24
24
  redirect_uri?: string | undefined;
25
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
26
- code_challenge?: string | undefined;
25
+ organization?: 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;
@@ -51,18 +51,18 @@ export declare const passwordlessRoutes: OpenAPIHono<{
51
51
  send: "code" | "link";
52
52
  authParams: {
53
53
  username?: string | undefined;
54
- state?: string | undefined;
55
54
  audience?: string | undefined;
55
+ state?: string | undefined;
56
+ scope?: string | undefined;
57
+ act_as?: string | undefined;
56
58
  response_type?: AuthorizationResponseType | undefined;
57
59
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
58
- scope?: string | undefined;
59
- organization?: string | undefined;
60
60
  redirect_uri?: string | undefined;
61
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
62
- code_challenge?: string | undefined;
61
+ organization?: 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;
@@ -40,7 +40,7 @@ export declare const tokenRoutes: OpenAPIHono<{
40
40
  client_id: string;
41
41
  username: string;
42
42
  otp: string;
43
- realm: "sms" | "email";
43
+ realm: "email" | "sms";
44
44
  } | {
45
45
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
46
46
  subject_token: string;
@@ -87,7 +87,7 @@ export declare const tokenRoutes: OpenAPIHono<{
87
87
  client_id: string;
88
88
  username: string;
89
89
  otp: string;
90
- realm: "sms" | "email";
90
+ realm: "email" | "sms";
91
91
  } | {
92
92
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
93
93
  subject_token: string;
@@ -139,7 +139,7 @@ export declare const tokenRoutes: OpenAPIHono<{
139
139
  client_id: string;
140
140
  username: string;
141
141
  otp: string;
142
- realm: "sms" | "email";
142
+ realm: "email" | "sms";
143
143
  } | {
144
144
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
145
145
  subject_token: string;
@@ -186,7 +186,7 @@ export declare const tokenRoutes: OpenAPIHono<{
186
186
  client_id: string;
187
187
  username: string;
188
188
  otp: string;
189
- realm: "sms" | "email";
189
+ realm: "email" | "sms";
190
190
  } | {
191
191
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
192
192
  subject_token: string;
@@ -246,7 +246,7 @@ export declare const tokenRoutes: OpenAPIHono<{
246
246
  client_id: string;
247
247
  username: string;
248
248
  otp: string;
249
- realm: "sms" | "email";
249
+ realm: "email" | "sms";
250
250
  } | {
251
251
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
252
252
  subject_token: string;
@@ -293,7 +293,7 @@ export declare const tokenRoutes: OpenAPIHono<{
293
293
  client_id: string;
294
294
  username: string;
295
295
  otp: string;
296
- realm: "sms" | "email";
296
+ realm: "email" | "sms";
297
297
  } | {
298
298
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
299
299
  subject_token: string;
@@ -348,7 +348,7 @@ export declare const tokenRoutes: OpenAPIHono<{
348
348
  client_id: string;
349
349
  username: string;
350
350
  otp: string;
351
- realm: "sms" | "email";
351
+ realm: "email" | "sms";
352
352
  } | {
353
353
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
354
354
  subject_token: string;
@@ -395,7 +395,7 @@ export declare const tokenRoutes: OpenAPIHono<{
395
395
  client_id: string;
396
396
  username: string;
397
397
  otp: string;
398
- realm: "sms" | "email";
398
+ realm: "email" | "sms";
399
399
  } | {
400
400
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
401
401
  subject_token: string;
@@ -450,7 +450,7 @@ export declare const tokenRoutes: OpenAPIHono<{
450
450
  client_id: string;
451
451
  username: string;
452
452
  otp: string;
453
- realm: "sms" | "email";
453
+ realm: "email" | "sms";
454
454
  } | {
455
455
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
456
456
  subject_token: string;
@@ -497,7 +497,7 @@ export declare const tokenRoutes: OpenAPIHono<{
497
497
  client_id: string;
498
498
  username: string;
499
499
  otp: string;
500
- realm: "sms" | "email";
500
+ realm: "email" | "sms";
501
501
  } | {
502
502
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
503
503
  subject_token: string;
@@ -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;