authhero 8.20.0 → 8.22.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/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +142 -142
- package/dist/authhero.d.ts +402 -82
- package/dist/authhero.mjs +15092 -17184
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/errors/is-http-exception-like.d.ts +11 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +280 -79
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- 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 +3 -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/client-grants.d.ts +16 -0
- package/dist/types/routes/management-api/clients.d.ts +109 -13
- package/dist/types/routes/management-api/connections.d.ts +16 -15
- package/dist/types/routes/management-api/flows.d.ts +1 -0
- package/dist/types/routes/management-api/forms.d.ts +1 -0
- package/dist/types/routes/management-api/grants.d.ts +1 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/hooks.d.ts +1 -0
- package/dist/types/routes/management-api/index.d.ts +276 -76
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +42 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +36 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
- package/dist/types/routes/management-api/roles.d.ts +2 -0
- 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 +7 -2
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +12 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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 +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" | "
|
|
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,17 +736,17 @@ 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
|
+
scope?: string | undefined;
|
|
741
|
+
username?: 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;
|
|
745
746
|
organization?: string | undefined;
|
|
746
747
|
nonce?: string | undefined;
|
|
747
|
-
redirect_uri?: string | undefined;
|
|
748
748
|
act_as?: string | undefined;
|
|
749
|
-
|
|
749
|
+
redirect_uri?: string | undefined;
|
|
750
750
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
751
751
|
code_challenge?: string | undefined;
|
|
752
752
|
ui_locales?: string | undefined;
|
|
@@ -772,17 +772,17 @@ 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
|
+
scope?: string | undefined;
|
|
777
|
+
username?: 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;
|
|
781
782
|
organization?: string | undefined;
|
|
782
783
|
nonce?: string | undefined;
|
|
783
|
-
redirect_uri?: string | undefined;
|
|
784
784
|
act_as?: string | undefined;
|
|
785
|
-
|
|
785
|
+
redirect_uri?: string | undefined;
|
|
786
786
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
787
787
|
code_challenge?: string | undefined;
|
|
788
788
|
ui_locales?: 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?: "
|
|
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,17 +14,17 @@ 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
|
+
scope?: string | undefined;
|
|
19
|
+
username?: 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;
|
|
23
24
|
organization?: string | undefined;
|
|
24
25
|
nonce?: string | undefined;
|
|
25
|
-
redirect_uri?: string | undefined;
|
|
26
26
|
act_as?: string | undefined;
|
|
27
|
-
|
|
27
|
+
redirect_uri?: string | undefined;
|
|
28
28
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
29
29
|
code_challenge?: string | undefined;
|
|
30
30
|
ui_locales?: string | undefined;
|
|
@@ -50,17 +50,17 @@ 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
|
+
scope?: string | undefined;
|
|
55
|
+
username?: 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;
|
|
59
60
|
organization?: string | undefined;
|
|
60
61
|
nonce?: string | undefined;
|
|
61
|
-
redirect_uri?: string | undefined;
|
|
62
62
|
act_as?: string | undefined;
|
|
63
|
-
|
|
63
|
+
redirect_uri?: string | undefined;
|
|
64
64
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
65
65
|
code_challenge?: string | undefined;
|
|
66
66
|
ui_locales?: 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" | "
|
|
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
|
}[];
|
|
@@ -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: "
|
|
666
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
665
667
|
message: string;
|
|
666
668
|
}[];
|
|
667
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;
|
|
@@ -53,6 +53,22 @@ export declare const clientGrantRoutes: OpenAPIHono<{
|
|
|
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?: "user" | "client" | 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;
|
|
@@ -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" | "
|
|
75
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "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" | "
|
|
171
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
172
172
|
client_metadata?: {
|
|
173
173
|
[x: string]: string;
|
|
174
174
|
} | undefined;
|
|
@@ -213,6 +213,102 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
213
213
|
user_linking_mode?: "builtin" | "off" | undefined;
|
|
214
214
|
}[];
|
|
215
215
|
total?: number | undefined;
|
|
216
|
+
next?: string | undefined;
|
|
217
|
+
} | {
|
|
218
|
+
clients: {
|
|
219
|
+
created_at: string;
|
|
220
|
+
updated_at: string;
|
|
221
|
+
name: string;
|
|
222
|
+
global: boolean;
|
|
223
|
+
is_first_party: boolean;
|
|
224
|
+
oidc_conformant: boolean;
|
|
225
|
+
auth0_conformant: boolean;
|
|
226
|
+
sso: boolean;
|
|
227
|
+
sso_disabled: boolean;
|
|
228
|
+
cross_origin_authentication: boolean;
|
|
229
|
+
custom_login_page_on: boolean;
|
|
230
|
+
require_pushed_authorization_requests: boolean;
|
|
231
|
+
require_proof_of_possession: boolean;
|
|
232
|
+
client_id: string;
|
|
233
|
+
description?: string | undefined;
|
|
234
|
+
client_secret?: string | undefined;
|
|
235
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
236
|
+
logo_uri?: string | undefined;
|
|
237
|
+
callbacks?: string[] | undefined;
|
|
238
|
+
allowed_origins?: string[] | undefined;
|
|
239
|
+
web_origins?: string[] | undefined;
|
|
240
|
+
client_aliases?: string[] | undefined;
|
|
241
|
+
allowed_clients?: string[] | undefined;
|
|
242
|
+
connections?: string[] | undefined;
|
|
243
|
+
allowed_logout_urls?: string[] | undefined;
|
|
244
|
+
session_transfer?: {
|
|
245
|
+
[x: string]: any;
|
|
246
|
+
} | undefined;
|
|
247
|
+
oidc_logout?: {
|
|
248
|
+
[x: string]: any;
|
|
249
|
+
} | undefined;
|
|
250
|
+
grant_types?: string[] | undefined;
|
|
251
|
+
jwt_configuration?: {
|
|
252
|
+
[x: string]: any;
|
|
253
|
+
} | undefined;
|
|
254
|
+
signing_keys?: {
|
|
255
|
+
[x: string]: any;
|
|
256
|
+
}[] | undefined;
|
|
257
|
+
encryption_key?: {
|
|
258
|
+
[x: string]: any;
|
|
259
|
+
} | undefined;
|
|
260
|
+
cross_origin_loc?: string | undefined;
|
|
261
|
+
custom_login_page?: string | undefined;
|
|
262
|
+
custom_login_page_preview?: string | undefined;
|
|
263
|
+
form_template?: string | undefined;
|
|
264
|
+
addons?: {
|
|
265
|
+
[x: string]: any;
|
|
266
|
+
} | undefined;
|
|
267
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
268
|
+
client_metadata?: {
|
|
269
|
+
[x: string]: string;
|
|
270
|
+
} | undefined;
|
|
271
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
272
|
+
mobile?: {
|
|
273
|
+
[x: string]: any;
|
|
274
|
+
} | undefined;
|
|
275
|
+
initiate_login_uri?: string | undefined;
|
|
276
|
+
native_social_login?: {
|
|
277
|
+
[x: string]: any;
|
|
278
|
+
} | undefined;
|
|
279
|
+
refresh_token?: {
|
|
280
|
+
rotation_type?: "rotating" | "non-rotating" | undefined;
|
|
281
|
+
leeway?: number | undefined;
|
|
282
|
+
expiration_type?: "expiring" | "non-expiring" | undefined;
|
|
283
|
+
token_lifetime?: number | undefined;
|
|
284
|
+
infinite_token_lifetime?: boolean | undefined;
|
|
285
|
+
idle_token_lifetime?: number | undefined;
|
|
286
|
+
infinite_idle_token_lifetime?: boolean | undefined;
|
|
287
|
+
} | undefined;
|
|
288
|
+
default_organization?: {
|
|
289
|
+
[x: string]: any;
|
|
290
|
+
} | undefined;
|
|
291
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
292
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
293
|
+
client_authentication_methods?: {
|
|
294
|
+
[x: string]: any;
|
|
295
|
+
} | undefined;
|
|
296
|
+
signed_request_object?: {
|
|
297
|
+
[x: string]: any;
|
|
298
|
+
} | undefined;
|
|
299
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
300
|
+
par_request_expiry?: number | undefined;
|
|
301
|
+
token_quota?: {
|
|
302
|
+
[x: string]: any;
|
|
303
|
+
} | undefined;
|
|
304
|
+
owner_user_id?: string | undefined;
|
|
305
|
+
registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
|
|
306
|
+
registration_metadata?: {
|
|
307
|
+
[x: string]: any;
|
|
308
|
+
} | undefined;
|
|
309
|
+
user_linking_mode?: "builtin" | "off" | undefined;
|
|
310
|
+
}[];
|
|
311
|
+
next?: string | undefined;
|
|
216
312
|
};
|
|
217
313
|
outputFormat: "json";
|
|
218
314
|
status: 200;
|
|
@@ -279,7 +375,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
279
375
|
addons?: {
|
|
280
376
|
[x: string]: any;
|
|
281
377
|
} | undefined;
|
|
282
|
-
token_endpoint_auth_method?: "none" | "
|
|
378
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
283
379
|
client_metadata?: {
|
|
284
380
|
[x: string]: string;
|
|
285
381
|
} | undefined;
|
|
@@ -389,7 +485,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
389
485
|
custom_login_page_preview?: string | undefined;
|
|
390
486
|
form_template?: string | undefined;
|
|
391
487
|
addons?: Record<string, any> | undefined;
|
|
392
|
-
token_endpoint_auth_method?: "none" | "
|
|
488
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
393
489
|
client_metadata?: Record<string, string> | undefined;
|
|
394
490
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
395
491
|
mobile?: Record<string, any> | undefined;
|
|
@@ -469,7 +565,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
469
565
|
addons?: {
|
|
470
566
|
[x: string]: any;
|
|
471
567
|
} | undefined;
|
|
472
|
-
token_endpoint_auth_method?: "none" | "
|
|
568
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
473
569
|
client_metadata?: {
|
|
474
570
|
[x: string]: string;
|
|
475
571
|
} | undefined;
|
|
@@ -558,7 +654,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
558
654
|
custom_login_page_preview?: string | undefined;
|
|
559
655
|
form_template?: string | undefined;
|
|
560
656
|
addons?: Record<string, any> | undefined;
|
|
561
|
-
token_endpoint_auth_method?: "none" | "
|
|
657
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
562
658
|
client_metadata?: Record<string, string> | undefined;
|
|
563
659
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
564
660
|
mobile?: Record<string, any> | undefined;
|
|
@@ -638,7 +734,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
638
734
|
addons?: {
|
|
639
735
|
[x: string]: any;
|
|
640
736
|
} | undefined;
|
|
641
|
-
token_endpoint_auth_method?: "none" | "
|
|
737
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
642
738
|
client_metadata?: {
|
|
643
739
|
[x: string]: string;
|
|
644
740
|
} | undefined;
|
|
@@ -760,7 +856,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
760
856
|
active?: boolean | undefined;
|
|
761
857
|
} | undefined;
|
|
762
858
|
signup?: {
|
|
763
|
-
status?: "
|
|
859
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
764
860
|
verification?: {
|
|
765
861
|
active?: boolean | undefined;
|
|
766
862
|
} | undefined;
|
|
@@ -777,7 +873,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
777
873
|
active?: boolean | undefined;
|
|
778
874
|
} | undefined;
|
|
779
875
|
signup?: {
|
|
780
|
-
status?: "
|
|
876
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
781
877
|
} | undefined;
|
|
782
878
|
validation?: {
|
|
783
879
|
max_length?: number | undefined;
|
|
@@ -794,7 +890,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
794
890
|
active?: boolean | undefined;
|
|
795
891
|
} | undefined;
|
|
796
892
|
signup?: {
|
|
797
|
-
status?: "
|
|
893
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
798
894
|
} | undefined;
|
|
799
895
|
} | undefined;
|
|
800
896
|
} | undefined;
|
|
@@ -914,7 +1010,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
914
1010
|
active?: boolean | undefined;
|
|
915
1011
|
} | undefined;
|
|
916
1012
|
signup?: {
|
|
917
|
-
status?: "
|
|
1013
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
918
1014
|
verification?: {
|
|
919
1015
|
active?: boolean | undefined;
|
|
920
1016
|
} | undefined;
|
|
@@ -931,7 +1027,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
931
1027
|
active?: boolean | undefined;
|
|
932
1028
|
} | undefined;
|
|
933
1029
|
signup?: {
|
|
934
|
-
status?: "
|
|
1030
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
935
1031
|
} | undefined;
|
|
936
1032
|
validation?: {
|
|
937
1033
|
max_length?: number | undefined;
|
|
@@ -948,7 +1044,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
948
1044
|
active?: boolean | undefined;
|
|
949
1045
|
} | undefined;
|
|
950
1046
|
signup?: {
|
|
951
|
-
status?: "
|
|
1047
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
952
1048
|
} | undefined;
|
|
953
1049
|
} | undefined;
|
|
954
1050
|
} | undefined;
|