authhero 8.20.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 (40) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +136 -136
  3. package/dist/authhero.d.ts +182 -115
  4. package/dist/authhero.mjs +14055 -16300
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  8. package/dist/types/index.d.ts +182 -115
  9. package/dist/types/routes/auth-api/index.d.ts +28 -28
  10. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  11. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  12. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  13. package/dist/types/routes/auth-api/token.d.ts +10 -10
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +3 -1
  16. package/dist/types/routes/management-api/branding.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +24 -8
  18. package/dist/types/routes/management-api/clients.d.ts +14 -13
  19. package/dist/types/routes/management-api/connections.d.ts +16 -15
  20. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  21. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  22. package/dist/types/routes/management-api/flows.d.ts +1 -0
  23. package/dist/types/routes/management-api/forms.d.ts +1 -0
  24. package/dist/types/routes/management-api/grants.d.ts +1 -0
  25. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  26. package/dist/types/routes/management-api/hooks.d.ts +1 -0
  27. package/dist/types/routes/management-api/index.d.ts +152 -85
  28. package/dist/types/routes/management-api/logs.d.ts +4 -3
  29. package/dist/types/routes/management-api/organizations.d.ts +37 -3
  30. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  31. package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
  32. package/dist/types/routes/management-api/roles.d.ts +2 -0
  33. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  34. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  35. package/dist/types/routes/management-api/users.d.ts +7 -2
  36. package/dist/types/routes/universal-login/common.d.ts +8 -8
  37. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  38. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  39. package/dist/types/routes/universal-login/index.d.ts +2 -2
  40. package/package.json +5 -5
@@ -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?: "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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_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,16 +736,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
736
736
  email: string;
737
737
  send: "code" | "link";
738
738
  authParams: {
739
- username?: string | undefined;
740
- state?: string | undefined;
741
739
  audience?: string | undefined;
742
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
743
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
744
740
  scope?: string | undefined;
741
+ username?: string | undefined;
745
742
  organization?: string | undefined;
743
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
744
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
745
+ state?: string | undefined;
746
746
  nonce?: string | undefined;
747
- redirect_uri?: string | undefined;
748
747
  act_as?: string | undefined;
748
+ redirect_uri?: string | undefined;
749
749
  prompt?: string | undefined;
750
750
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
751
751
  code_challenge?: string | undefined;
@@ -772,16 +772,16 @@ 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
- state?: string | undefined;
777
775
  audience?: string | undefined;
778
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
779
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
780
776
  scope?: string | undefined;
777
+ username?: string | undefined;
781
778
  organization?: string | undefined;
779
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
780
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
781
+ state?: string | undefined;
782
782
  nonce?: string | undefined;
783
- redirect_uri?: string | undefined;
784
783
  act_as?: string | undefined;
784
+ redirect_uri?: string | undefined;
785
785
  prompt?: string | undefined;
786
786
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
787
787
  code_challenge?: 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;
@@ -14,16 +14,16 @@ export declare const passwordlessRoutes: OpenAPIHono<{
14
14
  email: string;
15
15
  send: "code" | "link";
16
16
  authParams: {
17
- username?: string | undefined;
18
- state?: string | undefined;
19
17
  audience?: string | undefined;
20
- response_type?: AuthorizationResponseType | undefined;
21
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
22
18
  scope?: string | undefined;
19
+ username?: string | undefined;
23
20
  organization?: string | undefined;
21
+ response_type?: AuthorizationResponseType | undefined;
22
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
23
+ state?: string | undefined;
24
24
  nonce?: string | undefined;
25
- redirect_uri?: string | undefined;
26
25
  act_as?: string | undefined;
26
+ redirect_uri?: string | undefined;
27
27
  prompt?: string | undefined;
28
28
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
29
29
  code_challenge?: string | undefined;
@@ -50,16 +50,16 @@ export declare const passwordlessRoutes: OpenAPIHono<{
50
50
  phone_number: string;
51
51
  send: "code" | "link";
52
52
  authParams: {
53
- username?: string | undefined;
54
- state?: string | undefined;
55
53
  audience?: string | undefined;
56
- response_type?: AuthorizationResponseType | undefined;
57
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
58
54
  scope?: string | undefined;
55
+ username?: string | undefined;
59
56
  organization?: string | undefined;
57
+ response_type?: AuthorizationResponseType | undefined;
58
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
59
+ state?: string | undefined;
60
60
  nonce?: string | undefined;
61
- redirect_uri?: string | undefined;
62
61
  act_as?: string | undefined;
62
+ redirect_uri?: string | undefined;
63
63
  prompt?: string | undefined;
64
64
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
65
65
  code_challenge?: 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?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_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?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_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
  };
@@ -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;
@@ -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;
@@ -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;