authhero 5.20.0 → 5.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 (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +17 -17
  3. package/dist/authhero.d.ts +314 -248
  4. package/dist/authhero.mjs +105 -66
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +12 -3
  8. package/dist/types/helpers/client.d.ts +20 -0
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/index.d.ts +247 -245
  11. package/dist/types/provisioning/index.d.ts +2 -0
  12. package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
  13. package/dist/types/provisioning/provisioner.d.ts +25 -0
  14. package/dist/types/routes/auth-api/index.d.ts +30 -30
  15. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/auth-api/well-known.d.ts +2 -2
  19. package/dist/types/routes/management-api/actions.d.ts +3 -3
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  22. package/dist/types/routes/management-api/clients.d.ts +7 -7
  23. package/dist/types/routes/management-api/connections.d.ts +1 -1
  24. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  25. package/dist/types/routes/management-api/email-templates.d.ts +33 -33
  26. package/dist/types/routes/management-api/forms.d.ts +126 -126
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  29. package/dist/types/routes/management-api/index.d.ts +209 -209
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  32. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  33. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  34. package/dist/types/routes/management-api/tenants.d.ts +27 -0
  35. package/dist/types/routes/management-api/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +38 -2
  37. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  38. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/types/AuthHeroConfig.d.ts +12 -0
  41. package/dist/types/utils/jwks.d.ts +4 -4
  42. package/package.json +5 -5
@@ -0,0 +1,2 @@
1
+ export { NoopTenantProvisioner } from "./noop-provisioner";
2
+ export type { TenantProvisioner, TenantProvisionerContext, } from "./provisioner";
@@ -0,0 +1,11 @@
1
+ import type { Tenant } from "@authhero/adapter-interfaces";
2
+ import type { TenantProvisioner, TenantProvisionerContext } from "./provisioner";
3
+ /**
4
+ * Default provisioner. Flips `provisioning_state` to `"ready"` and clears any
5
+ * prior error, doing nothing else. Correct for `deployment_type: "shared"`
6
+ * tenants (the historical default) and useful as a stand-in until the
7
+ * Cloudflare WFP provisioner is wired in.
8
+ */
9
+ export declare class NoopTenantProvisioner implements TenantProvisioner {
10
+ provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
11
+ }
@@ -0,0 +1,25 @@
1
+ import type { Tenant, TenantsDataAdapter } from "@authhero/adapter-interfaces";
2
+ export interface TenantProvisionerContext {
3
+ tenants: TenantsDataAdapter;
4
+ }
5
+ /**
6
+ * Drives a tenant from `provisioning_state: "pending"` to `"ready"` or
7
+ * `"failed"`. Owns whatever side effects are required to make the tenant
8
+ * actually serve traffic — creating a D1, uploading a worker to a dispatch
9
+ * namespace, wiring secrets, etc. — and writes the resulting state back via
10
+ * `ctx.tenants.update(...)`.
11
+ *
12
+ * Contract:
13
+ * - Implementations MUST be idempotent. The same tenant may be passed in
14
+ * twice if a previous run crashed mid-flight, the API is retried, or an
15
+ * operator manually re-triggers provisioning.
16
+ * - `provision()` MUST resolve (not reject) even on failure. Errors should
17
+ * be captured into `provisioning_error` and the state set to `"failed"`
18
+ * so the admin UI can render a useful message.
19
+ * - `provision()` should be safe to schedule via `ctx.executionCtx.waitUntil`
20
+ * on Cloudflare Workers — it must not depend on the originating request
21
+ * surviving.
22
+ */
23
+ export interface TenantProvisioner {
24
+ provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
25
+ }
@@ -288,7 +288,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
288
288
  scope?: string | undefined;
289
289
  grant_types?: string[] | undefined;
290
290
  response_types?: string[] | undefined;
291
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
291
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
292
292
  jwks_uri?: string | undefined;
293
293
  jwks?: Record<string, unknown> | undefined;
294
294
  software_id?: string | undefined;
@@ -377,7 +377,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
377
377
  scope?: string | undefined;
378
378
  grant_types?: string[] | undefined;
379
379
  response_types?: string[] | undefined;
380
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
380
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
381
381
  jwks_uri?: string | undefined;
382
382
  jwks?: Record<string, unknown> | undefined;
383
383
  software_id?: string | undefined;
@@ -723,20 +723,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
723
723
  email: string;
724
724
  send: "code" | "link";
725
725
  authParams: {
726
- username?: string | undefined;
727
- state?: string | undefined;
728
- act_as?: string | undefined;
726
+ audience?: string | undefined;
729
727
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
730
728
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
731
- redirect_uri?: string | undefined;
732
- audience?: string | undefined;
733
- organization?: string | undefined;
734
- nonce?: string | undefined;
735
729
  scope?: string | undefined;
730
+ username?: string | undefined;
731
+ state?: string | undefined;
736
732
  prompt?: string | undefined;
733
+ ui_locales?: string | undefined;
734
+ organization?: string | undefined;
735
+ redirect_uri?: string | undefined;
736
+ act_as?: string | undefined;
737
+ nonce?: string | undefined;
737
738
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
738
739
  code_challenge?: string | undefined;
739
- ui_locales?: string | undefined;
740
740
  max_age?: number | undefined;
741
741
  acr_values?: string | undefined;
742
742
  claims?: {
@@ -759,20 +759,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
759
759
  phone_number: string;
760
760
  send: "code" | "link";
761
761
  authParams: {
762
- username?: string | undefined;
763
- state?: string | undefined;
764
- act_as?: string | undefined;
762
+ audience?: string | undefined;
765
763
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
766
764
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
767
- redirect_uri?: string | undefined;
768
- audience?: string | undefined;
769
- organization?: string | undefined;
770
- nonce?: string | undefined;
771
765
  scope?: string | undefined;
766
+ username?: string | undefined;
767
+ state?: string | undefined;
772
768
  prompt?: string | undefined;
769
+ ui_locales?: string | undefined;
770
+ organization?: string | undefined;
771
+ redirect_uri?: string | undefined;
772
+ act_as?: string | undefined;
773
+ nonce?: string | undefined;
773
774
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
774
775
  code_challenge?: string | undefined;
775
- ui_locales?: string | undefined;
776
776
  max_age?: number | undefined;
777
777
  acr_values?: string | undefined;
778
778
  claims?: {
@@ -1001,7 +1001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1001
1001
  client_id: string;
1002
1002
  username: string;
1003
1003
  otp: string;
1004
- realm: "email" | "sms";
1004
+ realm: "sms" | "email";
1005
1005
  } | {
1006
1006
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1007
1007
  subject_token: string;
@@ -1048,7 +1048,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1048
1048
  client_id: string;
1049
1049
  username: string;
1050
1050
  otp: string;
1051
- realm: "email" | "sms";
1051
+ realm: "sms" | "email";
1052
1052
  } | {
1053
1053
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1054
1054
  subject_token: string;
@@ -1100,7 +1100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1100
1100
  client_id: string;
1101
1101
  username: string;
1102
1102
  otp: string;
1103
- realm: "email" | "sms";
1103
+ realm: "sms" | "email";
1104
1104
  } | {
1105
1105
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1106
1106
  subject_token: string;
@@ -1147,7 +1147,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1147
1147
  client_id: string;
1148
1148
  username: string;
1149
1149
  otp: string;
1150
- realm: "email" | "sms";
1150
+ realm: "sms" | "email";
1151
1151
  } | {
1152
1152
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1153
1153
  subject_token: string;
@@ -1207,7 +1207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1207
1207
  client_id: string;
1208
1208
  username: string;
1209
1209
  otp: string;
1210
- realm: "email" | "sms";
1210
+ realm: "sms" | "email";
1211
1211
  } | {
1212
1212
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1213
1213
  subject_token: string;
@@ -1254,7 +1254,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1254
1254
  client_id: string;
1255
1255
  username: string;
1256
1256
  otp: string;
1257
- realm: "email" | "sms";
1257
+ realm: "sms" | "email";
1258
1258
  } | {
1259
1259
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1260
1260
  subject_token: string;
@@ -1309,7 +1309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1309
1309
  client_id: string;
1310
1310
  username: string;
1311
1311
  otp: string;
1312
- realm: "email" | "sms";
1312
+ realm: "sms" | "email";
1313
1313
  } | {
1314
1314
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1315
1315
  subject_token: string;
@@ -1356,7 +1356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1356
1356
  client_id: string;
1357
1357
  username: string;
1358
1358
  otp: string;
1359
- realm: "email" | "sms";
1359
+ realm: "sms" | "email";
1360
1360
  } | {
1361
1361
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1362
1362
  subject_token: string;
@@ -1411,7 +1411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1411
1411
  client_id: string;
1412
1412
  username: string;
1413
1413
  otp: string;
1414
- realm: "email" | "sms";
1414
+ realm: "sms" | "email";
1415
1415
  } | {
1416
1416
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1417
1417
  subject_token: string;
@@ -1458,7 +1458,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1458
1458
  client_id: string;
1459
1459
  username: string;
1460
1460
  otp: string;
1461
- realm: "email" | "sms";
1461
+ realm: "sms" | "email";
1462
1462
  } | {
1463
1463
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
1464
1464
  subject_token: string;
@@ -1487,8 +1487,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1487
1487
  output: {
1488
1488
  keys: {
1489
1489
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
1490
- kid: string;
1491
- kty: "RSA" | "EC" | "oct";
1490
+ kty: "EC" | "RSA" | "oct";
1491
+ kid?: string | undefined;
1492
1492
  use?: "sig" | "enc" | undefined;
1493
1493
  n?: string | undefined;
1494
1494
  e?: string | undefined;
@@ -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
- state?: string | undefined;
19
- act_as?: string | undefined;
17
+ audience?: string | undefined;
20
18
  response_type?: AuthorizationResponseType | undefined;
21
19
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
22
- redirect_uri?: string | undefined;
23
- audience?: string | undefined;
24
- organization?: string | undefined;
25
- nonce?: string | undefined;
26
20
  scope?: string | undefined;
21
+ username?: string | undefined;
22
+ state?: string | undefined;
27
23
  prompt?: string | undefined;
24
+ ui_locales?: string | undefined;
25
+ organization?: string | undefined;
26
+ redirect_uri?: string | undefined;
27
+ act_as?: string | undefined;
28
+ nonce?: string | undefined;
28
29
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
29
30
  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
- state?: string | undefined;
55
- act_as?: string | undefined;
53
+ audience?: string | undefined;
56
54
  response_type?: AuthorizationResponseType | undefined;
57
55
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
58
- redirect_uri?: string | undefined;
59
- audience?: string | undefined;
60
- organization?: string | undefined;
61
- nonce?: string | undefined;
62
56
  scope?: string | undefined;
57
+ username?: string | undefined;
58
+ state?: string | undefined;
63
59
  prompt?: string | undefined;
60
+ ui_locales?: string | undefined;
61
+ organization?: string | undefined;
62
+ redirect_uri?: string | undefined;
63
+ act_as?: string | undefined;
64
+ nonce?: string | undefined;
64
65
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
65
66
  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?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
21
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
22
22
  jwks_uri?: string | undefined;
23
23
  jwks?: Record<string, unknown> | undefined;
24
24
  software_id?: string | undefined;
@@ -107,7 +107,7 @@ export declare const registerRoutes: OpenAPIHono<{
107
107
  scope?: string | undefined;
108
108
  grant_types?: string[] | undefined;
109
109
  response_types?: string[] | undefined;
110
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
110
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
111
111
  jwks_uri?: string | undefined;
112
112
  jwks?: Record<string, unknown> | undefined;
113
113
  software_id?: string | undefined;
@@ -40,7 +40,7 @@ export declare const tokenRoutes: OpenAPIHono<{
40
40
  client_id: string;
41
41
  username: string;
42
42
  otp: string;
43
- realm: "email" | "sms";
43
+ realm: "sms" | "email";
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: "email" | "sms";
90
+ realm: "sms" | "email";
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: "email" | "sms";
142
+ realm: "sms" | "email";
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: "email" | "sms";
189
+ realm: "sms" | "email";
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: "email" | "sms";
249
+ realm: "sms" | "email";
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: "email" | "sms";
296
+ realm: "sms" | "email";
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: "email" | "sms";
351
+ realm: "sms" | "email";
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: "email" | "sms";
398
+ realm: "sms" | "email";
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: "email" | "sms";
453
+ realm: "sms" | "email";
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: "email" | "sms";
500
+ realm: "sms" | "email";
501
501
  } | {
502
502
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
503
503
  subject_token: string;
@@ -9,8 +9,8 @@ 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
- kid: string;
13
- kty: "RSA" | "EC" | "oct";
12
+ kty: "EC" | "RSA" | "oct";
13
+ kid?: string | undefined;
14
14
  use?: "sig" | "enc" | undefined;
15
15
  n?: string | undefined;
16
16
  e?: string | undefined;
@@ -301,7 +301,7 @@ export declare const actionsRoutes: OpenAPIHono<{
301
301
  };
302
302
  output: {};
303
303
  outputFormat: string;
304
- status: 409;
304
+ status: 200;
305
305
  } | {
306
306
  input: {
307
307
  param: {
@@ -314,7 +314,7 @@ export declare const actionsRoutes: OpenAPIHono<{
314
314
  };
315
315
  output: {};
316
316
  outputFormat: string;
317
- status: 200;
317
+ status: 404;
318
318
  } | {
319
319
  input: {
320
320
  param: {
@@ -327,7 +327,7 @@ export declare const actionsRoutes: OpenAPIHono<{
327
327
  };
328
328
  output: {};
329
329
  outputFormat: string;
330
- status: 404;
330
+ status: 409;
331
331
  };
332
332
  };
333
333
  } & {
@@ -37,7 +37,7 @@ export declare const authenticationMethodsRoutes: OpenAPIHono<{
37
37
  };
38
38
  } & {
39
39
  json: {
40
- type: "push" | "email" | "phone" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
40
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
41
41
  phone_number?: string | undefined;
42
42
  totp_secret?: string | undefined;
43
43
  credential_id?: string | undefined;
@@ -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,7 +47,7 @@ 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;
@@ -78,7 +78,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
78
78
  organization_usage?: "deny" | "allow" | "require" | undefined;
79
79
  allow_any_organization?: boolean | undefined;
80
80
  is_system?: boolean | undefined;
81
- subject_type?: "user" | "client" | undefined;
81
+ subject_type?: "client" | "user" | undefined;
82
82
  authorization_details_types?: string[] | undefined;
83
83
  created_at?: string | undefined;
84
84
  updated_at?: string | undefined;
@@ -123,7 +123,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
123
123
  organization_usage?: "deny" | "allow" | "require" | undefined;
124
124
  allow_any_organization?: boolean | undefined;
125
125
  is_system?: boolean | undefined;
126
- subject_type?: "user" | "client" | undefined;
126
+ subject_type?: "client" | "user" | undefined;
127
127
  authorization_details_types?: string[] | undefined;
128
128
  };
129
129
  };
@@ -135,7 +135,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
135
135
  organization_usage?: "deny" | "allow" | "require" | undefined;
136
136
  allow_any_organization?: boolean | undefined;
137
137
  is_system?: boolean | undefined;
138
- subject_type?: "user" | "client" | undefined;
138
+ subject_type?: "client" | "user" | undefined;
139
139
  authorization_details_types?: string[] | undefined;
140
140
  created_at?: string | undefined;
141
141
  updated_at?: string | undefined;
@@ -159,7 +159,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
159
159
  organization_usage?: "deny" | "allow" | "require" | undefined;
160
160
  allow_any_organization?: boolean | undefined;
161
161
  is_system?: boolean | undefined;
162
- subject_type?: "user" | "client" | undefined;
162
+ subject_type?: "client" | "user" | undefined;
163
163
  authorization_details_types?: string[] | undefined;
164
164
  };
165
165
  };
@@ -171,7 +171,7 @@ export declare const clientGrantRoutes: OpenAPIHono<{
171
171
  organization_usage?: "deny" | "allow" | "require" | undefined;
172
172
  allow_any_organization?: boolean | undefined;
173
173
  is_system?: boolean | undefined;
174
- subject_type?: "user" | "client" | undefined;
174
+ subject_type?: "client" | "user" | undefined;
175
175
  authorization_details_types?: string[] | undefined;
176
176
  created_at?: string | undefined;
177
177
  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?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
75
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
76
76
  client_metadata?: {
77
77
  [x: string]: string;
78
78
  } | undefined;
@@ -168,7 +168,7 @@ export declare const clientRoutes: OpenAPIHono<{
168
168
  addons?: {
169
169
  [x: string]: any;
170
170
  } | undefined;
171
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
171
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
172
172
  client_metadata?: {
173
173
  [x: string]: string;
174
174
  } | undefined;
@@ -279,7 +279,7 @@ export declare const clientRoutes: OpenAPIHono<{
279
279
  addons?: {
280
280
  [x: string]: any;
281
281
  } | undefined;
282
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
282
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
283
283
  client_metadata?: {
284
284
  [x: string]: string;
285
285
  } | undefined;
@@ -389,7 +389,7 @@ export declare const clientRoutes: OpenAPIHono<{
389
389
  custom_login_page_preview?: string | undefined;
390
390
  form_template?: string | undefined;
391
391
  addons?: Record<string, any> | undefined;
392
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
392
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
393
393
  client_metadata?: Record<string, string> | undefined;
394
394
  hide_sign_up_disabled_error?: boolean | undefined;
395
395
  mobile?: Record<string, any> | undefined;
@@ -469,7 +469,7 @@ export declare const clientRoutes: OpenAPIHono<{
469
469
  addons?: {
470
470
  [x: string]: any;
471
471
  } | undefined;
472
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
472
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
473
473
  client_metadata?: {
474
474
  [x: string]: string;
475
475
  } | undefined;
@@ -558,7 +558,7 @@ export declare const clientRoutes: OpenAPIHono<{
558
558
  custom_login_page_preview?: string | undefined;
559
559
  form_template?: string | undefined;
560
560
  addons?: Record<string, any> | undefined;
561
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
561
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
562
562
  client_metadata?: Record<string, string> | undefined;
563
563
  hide_sign_up_disabled_error?: boolean | undefined;
564
564
  mobile?: Record<string, any> | undefined;
@@ -638,7 +638,7 @@ export declare const clientRoutes: OpenAPIHono<{
638
638
  addons?: {
639
639
  [x: string]: any;
640
640
  } | undefined;
641
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
641
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
642
642
  client_metadata?: {
643
643
  [x: string]: string;
644
644
  } | undefined;
@@ -852,7 +852,7 @@ export declare const connectionRoutes: OpenAPIHono<{
852
852
  };
853
853
  } | {
854
854
  mode: "inline";
855
- status: "success" | "error";
855
+ status: "error" | "success";
856
856
  connection_id: string;
857
857
  connection_name: string;
858
858
  strategy: string;
@@ -28,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" | "pending_verification" | "ready";
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" | "pending_verification" | "ready";
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?: {
@@ -130,7 +130,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
130
130
  domain_metadata?: Record<string, string> | undefined;
131
131
  custom_domain_id?: string | undefined;
132
132
  primary?: boolean | undefined;
133
- status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
133
+ status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
134
134
  origin_domain_name?: string | undefined;
135
135
  verification?: {
136
136
  methods: ({
@@ -151,7 +151,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
151
151
  type: "auth0_managed_certs" | "self_managed_certs";
152
152
  custom_domain_id: string;
153
153
  primary: boolean;
154
- status: "disabled" | "pending" | "pending_verification" | "ready";
154
+ status: "pending" | "ready" | "disabled" | "pending_verification";
155
155
  verification_method?: "txt" | undefined;
156
156
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
157
157
  domain_metadata?: {
@@ -198,7 +198,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
198
198
  type: "auth0_managed_certs" | "self_managed_certs";
199
199
  custom_domain_id: string;
200
200
  primary: boolean;
201
- status: "disabled" | "pending" | "pending_verification" | "ready";
201
+ status: "pending" | "ready" | "disabled" | "pending_verification";
202
202
  verification_method?: "txt" | undefined;
203
203
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
204
204
  domain_metadata?: {
@@ -244,7 +244,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
244
244
  type: "auth0_managed_certs" | "self_managed_certs";
245
245
  custom_domain_id: string;
246
246
  primary: boolean;
247
- status: "disabled" | "pending" | "pending_verification" | "ready";
247
+ status: "pending" | "ready" | "disabled" | "pending_verification";
248
248
  verification_method?: "txt" | undefined;
249
249
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
250
250
  domain_metadata?: {
@@ -285,7 +285,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
285
285
  type: "auth0_managed_certs" | "self_managed_certs";
286
286
  custom_domain_id: string;
287
287
  primary: boolean;
288
- status: "disabled" | "pending" | "pending_verification" | "ready";
288
+ status: "pending" | "ready" | "disabled" | "pending_verification";
289
289
  verification_method?: "txt" | undefined;
290
290
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
291
291
  domain_metadata?: {