authhero 8.17.4 → 8.18.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.
- package/dist/authhero.cjs +106 -106
- package/dist/authhero.d.ts +192 -125
- package/dist/authhero.mjs +10071 -9941
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/helpers/provision-tenant-clients.d.ts +65 -0
- package/dist/types/index.d.ts +126 -122
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/management-api/index.d.ts +91 -89
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +4 -2
- package/package.json +1 -1
|
@@ -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" | "
|
|
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" | "
|
|
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;
|
|
@@ -736,16 +736,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
736
736
|
email: string;
|
|
737
737
|
send: "code" | "link";
|
|
738
738
|
authParams: {
|
|
739
|
+
audience?: string | undefined;
|
|
740
|
+
scope?: string | undefined;
|
|
739
741
|
username?: string | undefined;
|
|
740
742
|
state?: string | undefined;
|
|
741
|
-
|
|
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
|
-
|
|
746
|
+
redirect_uri?: string | undefined;
|
|
745
747
|
organization?: string | undefined;
|
|
746
748
|
nonce?: string | undefined;
|
|
747
|
-
redirect_uri?: string | undefined;
|
|
748
|
-
act_as?: 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
|
+
audience?: string | undefined;
|
|
776
|
+
scope?: string | undefined;
|
|
775
777
|
username?: string | undefined;
|
|
776
778
|
state?: string | undefined;
|
|
777
|
-
|
|
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
|
-
|
|
782
|
+
redirect_uri?: string | undefined;
|
|
781
783
|
organization?: string | undefined;
|
|
782
784
|
nonce?: string | undefined;
|
|
783
|
-
redirect_uri?: string | undefined;
|
|
784
|
-
act_as?: string | undefined;
|
|
785
785
|
prompt?: string | undefined;
|
|
786
786
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
787
787
|
code_challenge?: string | undefined;
|