authhero 8.25.2 → 8.26.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 +115 -115
- package/dist/authhero.d.ts +148 -120
- package/dist/authhero.mjs +55 -46
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +7 -7
- package/dist/types/helpers/codes-cleanup.d.ts +28 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +119 -117
- package/dist/types/routes/auth-api/index.d.ts +20 -20
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +16 -16
- package/dist/types/routes/management-api/connections.d.ts +20 -20
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +90 -90
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +5 -5
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +14 -14
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- 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" | "
|
|
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,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
|
-
state?: string | undefined;
|
|
741
739
|
audience?: string | undefined;
|
|
740
|
+
username?: string | undefined;
|
|
741
|
+
scope?: string | undefined;
|
|
742
742
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
743
743
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
744
|
-
|
|
744
|
+
state?: string | undefined;
|
|
745
|
+
prompt?: string | undefined;
|
|
746
|
+
ui_locales?: string | undefined;
|
|
745
747
|
organization?: string | undefined;
|
|
746
|
-
nonce?: string | undefined;
|
|
747
748
|
redirect_uri?: string | undefined;
|
|
748
749
|
act_as?: string | undefined;
|
|
749
|
-
|
|
750
|
+
nonce?: string | undefined;
|
|
750
751
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
751
752
|
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
|
-
state?: string | undefined;
|
|
777
775
|
audience?: string | undefined;
|
|
776
|
+
username?: string | undefined;
|
|
777
|
+
scope?: string | undefined;
|
|
778
778
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
779
779
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
780
|
-
|
|
780
|
+
state?: string | undefined;
|
|
781
|
+
prompt?: string | undefined;
|
|
782
|
+
ui_locales?: string | undefined;
|
|
781
783
|
organization?: string | undefined;
|
|
782
|
-
nonce?: string | undefined;
|
|
783
784
|
redirect_uri?: string | undefined;
|
|
784
785
|
act_as?: string | undefined;
|
|
785
|
-
|
|
786
|
+
nonce?: string | undefined;
|
|
786
787
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
787
788
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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
|
-
state?: string | undefined;
|
|
19
17
|
audience?: string | undefined;
|
|
18
|
+
username?: string | undefined;
|
|
19
|
+
scope?: string | undefined;
|
|
20
20
|
response_type?: AuthorizationResponseType | undefined;
|
|
21
21
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
22
|
-
|
|
22
|
+
state?: string | undefined;
|
|
23
|
+
prompt?: string | undefined;
|
|
24
|
+
ui_locales?: string | undefined;
|
|
23
25
|
organization?: string | undefined;
|
|
24
|
-
nonce?: string | undefined;
|
|
25
26
|
redirect_uri?: string | undefined;
|
|
26
27
|
act_as?: string | undefined;
|
|
27
|
-
|
|
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
53
|
audience?: string | undefined;
|
|
54
|
+
username?: string | undefined;
|
|
55
|
+
scope?: string | undefined;
|
|
56
56
|
response_type?: AuthorizationResponseType | undefined;
|
|
57
57
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
58
|
-
|
|
58
|
+
state?: string | undefined;
|
|
59
|
+
prompt?: string | undefined;
|
|
60
|
+
ui_locales?: string | undefined;
|
|
59
61
|
organization?: string | undefined;
|
|
60
|
-
nonce?: string | undefined;
|
|
61
62
|
redirect_uri?: string | undefined;
|
|
62
63
|
act_as?: string | undefined;
|
|
63
|
-
|
|
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" | "
|
|
21
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "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" | "
|
|
110
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "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;
|
|
@@ -9,14 +9,14 @@ export declare const revokeRoutes: OpenAPIHono<{
|
|
|
9
9
|
input: {
|
|
10
10
|
form: {
|
|
11
11
|
token: string;
|
|
12
|
-
token_type_hint?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
60
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
61
61
|
client_id?: string | undefined;
|
|
62
62
|
client_secret?: string | undefined;
|
|
63
63
|
};
|
|
@@ -31,7 +31,7 @@ export declare const actionExecutionsRoutes: OpenAPIHono<{
|
|
|
31
31
|
output: {
|
|
32
32
|
id: string;
|
|
33
33
|
trigger_id: string;
|
|
34
|
-
status: "
|
|
34
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
35
35
|
results: {
|
|
36
36
|
action_name: string;
|
|
37
37
|
error: {
|
|
@@ -78,7 +78,7 @@ export declare const actionExecutionsRoutes: OpenAPIHono<{
|
|
|
78
78
|
logs: {
|
|
79
79
|
action_name: string;
|
|
80
80
|
lines: {
|
|
81
|
-
level: "
|
|
81
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
82
82
|
message: string;
|
|
83
83
|
}[];
|
|
84
84
|
}[];
|
|
@@ -663,7 +663,7 @@ export declare const actionsRoutes: OpenAPIHono<{
|
|
|
663
663
|
args: import("hono/utils/types").JSONValue[];
|
|
664
664
|
}[];
|
|
665
665
|
logs: {
|
|
666
|
-
level: "
|
|
666
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
667
667
|
message: string;
|
|
668
668
|
}[];
|
|
669
669
|
error?: string | undefined;
|
|
@@ -37,7 +37,7 @@ export declare const authenticationMethodsRoutes: OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "push" | "email" | "passkey" | "
|
|
40
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -78,12 +78,12 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
78
78
|
background_color: string;
|
|
79
79
|
background_image_url: string;
|
|
80
80
|
page_layout: "center" | "left" | "right";
|
|
81
|
-
logo_placement?: "
|
|
81
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
82
82
|
};
|
|
83
83
|
widget: {
|
|
84
84
|
header_text_alignment: "center" | "left" | "right";
|
|
85
85
|
logo_height: number;
|
|
86
|
-
logo_position: "
|
|
86
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
87
87
|
logo_url: string;
|
|
88
88
|
social_buttons_layout: "bottom" | "top";
|
|
89
89
|
};
|
|
@@ -168,12 +168,12 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
168
168
|
background_color: string;
|
|
169
169
|
background_image_url: string;
|
|
170
170
|
page_layout: "center" | "left" | "right";
|
|
171
|
-
logo_placement?: "
|
|
171
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
172
172
|
};
|
|
173
173
|
widget: {
|
|
174
174
|
header_text_alignment: "center" | "left" | "right";
|
|
175
175
|
logo_height: number;
|
|
176
|
-
logo_position: "
|
|
176
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
177
177
|
logo_url: string;
|
|
178
178
|
social_buttons_layout: "bottom" | "top";
|
|
179
179
|
};
|
|
@@ -247,12 +247,12 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
247
247
|
background_color: string;
|
|
248
248
|
background_image_url: string;
|
|
249
249
|
page_layout: "center" | "left" | "right";
|
|
250
|
-
logo_placement?: "
|
|
250
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
251
251
|
};
|
|
252
252
|
widget: {
|
|
253
253
|
header_text_alignment: "center" | "left" | "right";
|
|
254
254
|
logo_height: number;
|
|
255
|
-
logo_position: "
|
|
255
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
256
256
|
logo_url: string;
|
|
257
257
|
social_buttons_layout: "bottom" | "top";
|
|
258
258
|
};
|
|
@@ -409,7 +409,7 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
409
409
|
} & {
|
|
410
410
|
json: {
|
|
411
411
|
body?: string | undefined;
|
|
412
|
-
screen?: "
|
|
412
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
413
413
|
branding?: {
|
|
414
414
|
colors?: {
|
|
415
415
|
primary: string;
|
|
@@ -495,12 +495,12 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
495
495
|
background_color: string;
|
|
496
496
|
background_image_url: string;
|
|
497
497
|
page_layout: "center" | "left" | "right";
|
|
498
|
-
logo_placement?: "
|
|
498
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
499
499
|
} | undefined;
|
|
500
500
|
widget?: {
|
|
501
501
|
header_text_alignment: "center" | "left" | "right";
|
|
502
502
|
logo_height: number;
|
|
503
|
-
logo_position: "
|
|
503
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
504
504
|
logo_url: string;
|
|
505
505
|
social_buttons_layout: "bottom" | "top";
|
|
506
506
|
} | undefined;
|
|
@@ -78,7 +78,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
78
78
|
addons?: {
|
|
79
79
|
[x: string]: any;
|
|
80
80
|
} | undefined;
|
|
81
|
-
token_endpoint_auth_method?: "none" | "
|
|
81
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
82
82
|
client_metadata?: {
|
|
83
83
|
[x: string]: string;
|
|
84
84
|
} | undefined;
|
|
@@ -180,7 +180,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
180
180
|
addons?: {
|
|
181
181
|
[x: string]: any;
|
|
182
182
|
} | undefined;
|
|
183
|
-
token_endpoint_auth_method?: "none" | "
|
|
183
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
184
184
|
client_metadata?: {
|
|
185
185
|
[x: string]: string;
|
|
186
186
|
} | undefined;
|
|
@@ -282,7 +282,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
282
282
|
addons?: {
|
|
283
283
|
[x: string]: any;
|
|
284
284
|
} | undefined;
|
|
285
|
-
token_endpoint_auth_method?: "none" | "
|
|
285
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
286
286
|
client_metadata?: {
|
|
287
287
|
[x: string]: string;
|
|
288
288
|
} | undefined;
|
|
@@ -399,7 +399,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
399
399
|
addons?: {
|
|
400
400
|
[x: string]: any;
|
|
401
401
|
} | undefined;
|
|
402
|
-
token_endpoint_auth_method?: "none" | "
|
|
402
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
403
403
|
client_metadata?: {
|
|
404
404
|
[x: string]: string;
|
|
405
405
|
} | undefined;
|
|
@@ -517,7 +517,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
517
517
|
custom_login_page_preview?: string | undefined;
|
|
518
518
|
form_template?: string | undefined;
|
|
519
519
|
addons?: Record<string, any> | undefined;
|
|
520
|
-
token_endpoint_auth_method?: "none" | "
|
|
520
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
521
521
|
client_metadata?: Record<string, string> | undefined;
|
|
522
522
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
523
523
|
mobile?: Record<string, any> | undefined;
|
|
@@ -603,7 +603,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
603
603
|
addons?: {
|
|
604
604
|
[x: string]: any;
|
|
605
605
|
} | undefined;
|
|
606
|
-
token_endpoint_auth_method?: "none" | "
|
|
606
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
607
607
|
client_metadata?: {
|
|
608
608
|
[x: string]: string;
|
|
609
609
|
} | undefined;
|
|
@@ -700,7 +700,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
700
700
|
custom_login_page_preview?: string | undefined;
|
|
701
701
|
form_template?: string | undefined;
|
|
702
702
|
addons?: Record<string, any> | undefined;
|
|
703
|
-
token_endpoint_auth_method?: "none" | "
|
|
703
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
704
704
|
client_metadata?: Record<string, string> | undefined;
|
|
705
705
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
706
706
|
mobile?: Record<string, any> | undefined;
|
|
@@ -786,7 +786,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
786
786
|
addons?: {
|
|
787
787
|
[x: string]: any;
|
|
788
788
|
} | undefined;
|
|
789
|
-
token_endpoint_auth_method?: "none" | "
|
|
789
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
790
790
|
client_metadata?: {
|
|
791
791
|
[x: string]: string;
|
|
792
792
|
} | undefined;
|
|
@@ -908,7 +908,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
908
908
|
active?: boolean | undefined;
|
|
909
909
|
} | undefined;
|
|
910
910
|
signup?: {
|
|
911
|
-
status?: "
|
|
911
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
912
912
|
verification?: {
|
|
913
913
|
active?: boolean | undefined;
|
|
914
914
|
} | undefined;
|
|
@@ -925,7 +925,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
925
925
|
active?: boolean | undefined;
|
|
926
926
|
} | undefined;
|
|
927
927
|
signup?: {
|
|
928
|
-
status?: "
|
|
928
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
929
929
|
} | undefined;
|
|
930
930
|
validation?: {
|
|
931
931
|
max_length?: number | undefined;
|
|
@@ -942,7 +942,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
942
942
|
active?: boolean | undefined;
|
|
943
943
|
} | undefined;
|
|
944
944
|
signup?: {
|
|
945
|
-
status?: "
|
|
945
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
946
946
|
} | undefined;
|
|
947
947
|
} | undefined;
|
|
948
948
|
} | undefined;
|
|
@@ -955,7 +955,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
955
955
|
} | undefined;
|
|
956
956
|
} | undefined;
|
|
957
957
|
passkey_options?: {
|
|
958
|
-
challenge_ui?: "
|
|
958
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
959
959
|
local_enrollment_enabled?: boolean | undefined;
|
|
960
960
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
961
961
|
} | undefined;
|
|
@@ -1062,7 +1062,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1062
1062
|
active?: boolean | undefined;
|
|
1063
1063
|
} | undefined;
|
|
1064
1064
|
signup?: {
|
|
1065
|
-
status?: "
|
|
1065
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1066
1066
|
verification?: {
|
|
1067
1067
|
active?: boolean | undefined;
|
|
1068
1068
|
} | undefined;
|
|
@@ -1079,7 +1079,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1079
1079
|
active?: boolean | undefined;
|
|
1080
1080
|
} | undefined;
|
|
1081
1081
|
signup?: {
|
|
1082
|
-
status?: "
|
|
1082
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1083
1083
|
} | undefined;
|
|
1084
1084
|
validation?: {
|
|
1085
1085
|
max_length?: number | undefined;
|
|
@@ -1096,7 +1096,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1096
1096
|
active?: boolean | undefined;
|
|
1097
1097
|
} | undefined;
|
|
1098
1098
|
signup?: {
|
|
1099
|
-
status?: "
|
|
1099
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1100
1100
|
} | undefined;
|
|
1101
1101
|
} | undefined;
|
|
1102
1102
|
} | undefined;
|
|
@@ -1109,7 +1109,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1109
1109
|
} | undefined;
|
|
1110
1110
|
} | undefined;
|
|
1111
1111
|
passkey_options?: {
|
|
1112
|
-
challenge_ui?: "
|
|
1112
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
1113
1113
|
local_enrollment_enabled?: boolean | undefined;
|
|
1114
1114
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
1115
1115
|
} | undefined;
|