authhero 9.6.1 → 9.6.4
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 +156 -142
- package/dist/authhero.d.ts +188 -188
- package/dist/authhero.mjs +11226 -11030
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/users.d.ts +111 -20
- package/dist/types/hooks/helpers/post-login-account-linking.d.ts +3 -2
- package/dist/types/index.d.ts +188 -188
- package/dist/types/routes/auth-api/authorize.d.ts +3 -3
- package/dist/types/routes/auth-api/index.d.ts +13 -13
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- 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/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +2 -2
- package/dist/types/routes/management-api/clients.d.ts +14 -14
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- 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/index.d.ts +170 -170
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- 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 +28 -28
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- 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
|
@@ -211,7 +211,7 @@ export declare const authorizeRoutes: OpenAPIHono<{
|
|
|
211
211
|
message: string;
|
|
212
212
|
};
|
|
213
213
|
outputFormat: "json";
|
|
214
|
-
status:
|
|
214
|
+
status: 400;
|
|
215
215
|
} | {
|
|
216
216
|
input: {
|
|
217
217
|
query: {
|
|
@@ -222,7 +222,7 @@ export declare const authorizeRoutes: OpenAPIHono<{
|
|
|
222
222
|
message: string;
|
|
223
223
|
};
|
|
224
224
|
outputFormat: "json";
|
|
225
|
-
status:
|
|
225
|
+
status: 403;
|
|
226
226
|
} | {
|
|
227
227
|
input: {
|
|
228
228
|
query: {
|
|
@@ -233,7 +233,7 @@ export declare const authorizeRoutes: OpenAPIHono<{
|
|
|
233
233
|
message: string;
|
|
234
234
|
};
|
|
235
235
|
outputFormat: "json";
|
|
236
|
-
status:
|
|
236
|
+
status: 409;
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
239
|
}, "/">;
|
|
@@ -676,7 +676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
676
676
|
message: string;
|
|
677
677
|
};
|
|
678
678
|
outputFormat: "json";
|
|
679
|
-
status:
|
|
679
|
+
status: 400;
|
|
680
680
|
} | {
|
|
681
681
|
input: {
|
|
682
682
|
query: {
|
|
@@ -687,7 +687,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
687
687
|
message: string;
|
|
688
688
|
};
|
|
689
689
|
outputFormat: "json";
|
|
690
|
-
status:
|
|
690
|
+
status: 403;
|
|
691
691
|
} | {
|
|
692
692
|
input: {
|
|
693
693
|
query: {
|
|
@@ -698,7 +698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
698
698
|
message: string;
|
|
699
699
|
};
|
|
700
700
|
outputFormat: "json";
|
|
701
|
-
status:
|
|
701
|
+
status: 409;
|
|
702
702
|
};
|
|
703
703
|
};
|
|
704
704
|
}, "/authorize"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -738,17 +738,17 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
738
738
|
authParams: {
|
|
739
739
|
username?: string | undefined;
|
|
740
740
|
audience?: string | undefined;
|
|
741
|
-
state?: string | undefined;
|
|
742
741
|
scope?: string | undefined;
|
|
743
|
-
act_as?: string | undefined;
|
|
744
742
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
745
743
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
746
|
-
|
|
744
|
+
state?: string | undefined;
|
|
747
745
|
organization?: string | undefined;
|
|
748
|
-
|
|
749
|
-
prompt?: string | undefined;
|
|
746
|
+
redirect_uri?: string | undefined;
|
|
750
747
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
751
748
|
code_challenge?: string | undefined;
|
|
749
|
+
nonce?: string | undefined;
|
|
750
|
+
act_as?: string | undefined;
|
|
751
|
+
prompt?: string | undefined;
|
|
752
752
|
ui_locales?: string | undefined;
|
|
753
753
|
max_age?: number | undefined;
|
|
754
754
|
acr_values?: string | undefined;
|
|
@@ -774,17 +774,17 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
774
774
|
authParams: {
|
|
775
775
|
username?: string | undefined;
|
|
776
776
|
audience?: string | undefined;
|
|
777
|
-
state?: string | undefined;
|
|
778
777
|
scope?: string | undefined;
|
|
779
|
-
act_as?: string | undefined;
|
|
780
778
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
781
779
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
782
|
-
|
|
780
|
+
state?: string | undefined;
|
|
783
781
|
organization?: string | undefined;
|
|
784
|
-
|
|
785
|
-
prompt?: string | undefined;
|
|
782
|
+
redirect_uri?: string | undefined;
|
|
786
783
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
787
784
|
code_challenge?: string | undefined;
|
|
785
|
+
nonce?: string | undefined;
|
|
786
|
+
act_as?: string | undefined;
|
|
787
|
+
prompt?: string | undefined;
|
|
788
788
|
ui_locales?: string | undefined;
|
|
789
789
|
max_age?: number | undefined;
|
|
790
790
|
acr_values?: string | undefined;
|
|
@@ -32,7 +32,7 @@ export declare const oidcLogoutRoutes: OpenAPIHono<{
|
|
|
32
32
|
};
|
|
33
33
|
output: {};
|
|
34
34
|
outputFormat: string;
|
|
35
|
-
status:
|
|
35
|
+
status: 302;
|
|
36
36
|
} | {
|
|
37
37
|
input: {
|
|
38
38
|
query: {
|
|
@@ -46,7 +46,7 @@ export declare const oidcLogoutRoutes: OpenAPIHono<{
|
|
|
46
46
|
};
|
|
47
47
|
output: {};
|
|
48
48
|
outputFormat: string;
|
|
49
|
-
status:
|
|
49
|
+
status: 400;
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
}, "/">;
|
|
@@ -16,17 +16,17 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
16
16
|
authParams: {
|
|
17
17
|
username?: string | undefined;
|
|
18
18
|
audience?: string | undefined;
|
|
19
|
-
state?: string | undefined;
|
|
20
19
|
scope?: string | undefined;
|
|
21
|
-
act_as?: string | undefined;
|
|
22
20
|
response_type?: AuthorizationResponseType | undefined;
|
|
23
21
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
24
|
-
|
|
22
|
+
state?: string | undefined;
|
|
25
23
|
organization?: string | undefined;
|
|
26
|
-
|
|
27
|
-
prompt?: string | undefined;
|
|
24
|
+
redirect_uri?: string | undefined;
|
|
28
25
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
29
26
|
code_challenge?: string | undefined;
|
|
27
|
+
nonce?: string | undefined;
|
|
28
|
+
act_as?: string | undefined;
|
|
29
|
+
prompt?: string | undefined;
|
|
30
30
|
ui_locales?: string | undefined;
|
|
31
31
|
max_age?: number | undefined;
|
|
32
32
|
acr_values?: string | undefined;
|
|
@@ -52,17 +52,17 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
52
52
|
authParams: {
|
|
53
53
|
username?: string | undefined;
|
|
54
54
|
audience?: string | undefined;
|
|
55
|
-
state?: string | undefined;
|
|
56
55
|
scope?: string | undefined;
|
|
57
|
-
act_as?: string | undefined;
|
|
58
56
|
response_type?: AuthorizationResponseType | undefined;
|
|
59
57
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
60
|
-
|
|
58
|
+
state?: string | undefined;
|
|
61
59
|
organization?: string | undefined;
|
|
62
|
-
|
|
63
|
-
prompt?: string | undefined;
|
|
60
|
+
redirect_uri?: string | undefined;
|
|
64
61
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
65
62
|
code_challenge?: string | undefined;
|
|
63
|
+
nonce?: string | undefined;
|
|
64
|
+
act_as?: string | undefined;
|
|
65
|
+
prompt?: string | undefined;
|
|
66
66
|
ui_locales?: string | undefined;
|
|
67
67
|
max_age?: number | undefined;
|
|
68
68
|
acr_values?: 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
|
};
|
|
@@ -37,7 +37,7 @@ export declare const authenticationMethodsRoutes: OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "
|
|
40
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -370,7 +370,7 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
370
370
|
};
|
|
371
371
|
output: {};
|
|
372
372
|
outputFormat: string;
|
|
373
|
-
status:
|
|
373
|
+
status: 204;
|
|
374
374
|
} | {
|
|
375
375
|
input: {
|
|
376
376
|
header: {
|
|
@@ -383,7 +383,7 @@ export declare const brandingRoutes: OpenAPIHono<{
|
|
|
383
383
|
};
|
|
384
384
|
output: {};
|
|
385
385
|
outputFormat: string;
|
|
386
|
-
status:
|
|
386
|
+
status: 400;
|
|
387
387
|
};
|
|
388
388
|
};
|
|
389
389
|
} & {
|
|
@@ -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;
|
|
@@ -912,7 +912,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
912
912
|
active?: boolean | undefined;
|
|
913
913
|
} | undefined;
|
|
914
914
|
signup?: {
|
|
915
|
-
status?: "
|
|
915
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
916
916
|
verification?: {
|
|
917
917
|
active?: boolean | undefined;
|
|
918
918
|
} | undefined;
|
|
@@ -929,7 +929,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
929
929
|
active?: boolean | undefined;
|
|
930
930
|
} | undefined;
|
|
931
931
|
signup?: {
|
|
932
|
-
status?: "
|
|
932
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
933
933
|
} | undefined;
|
|
934
934
|
validation?: {
|
|
935
935
|
max_length?: number | undefined;
|
|
@@ -946,7 +946,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
946
946
|
active?: boolean | undefined;
|
|
947
947
|
} | undefined;
|
|
948
948
|
signup?: {
|
|
949
|
-
status?: "
|
|
949
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
950
950
|
} | undefined;
|
|
951
951
|
} | undefined;
|
|
952
952
|
} | undefined;
|
|
@@ -1070,7 +1070,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1070
1070
|
active?: boolean | undefined;
|
|
1071
1071
|
} | undefined;
|
|
1072
1072
|
signup?: {
|
|
1073
|
-
status?: "
|
|
1073
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
1074
1074
|
verification?: {
|
|
1075
1075
|
active?: boolean | undefined;
|
|
1076
1076
|
} | undefined;
|
|
@@ -1087,7 +1087,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1087
1087
|
active?: boolean | undefined;
|
|
1088
1088
|
} | undefined;
|
|
1089
1089
|
signup?: {
|
|
1090
|
-
status?: "
|
|
1090
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
1091
1091
|
} | undefined;
|
|
1092
1092
|
validation?: {
|
|
1093
1093
|
max_length?: number | undefined;
|
|
@@ -1104,7 +1104,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1104
1104
|
active?: boolean | undefined;
|
|
1105
1105
|
} | undefined;
|
|
1106
1106
|
signup?: {
|
|
1107
|
-
status?: "
|
|
1107
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
1108
1108
|
} | undefined;
|
|
1109
1109
|
} | undefined;
|
|
1110
1110
|
} | undefined;
|
|
@@ -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: "
|
|
31
|
+
status: "disabled" | "pending" | "ready" | "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: "
|
|
72
|
+
status: "disabled" | "pending" | "ready" | "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?: {
|
|
@@ -133,7 +133,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
133
133
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
134
134
|
custom_domain_id: string;
|
|
135
135
|
primary: boolean;
|
|
136
|
-
status: "
|
|
136
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
137
137
|
verification_method?: "txt" | undefined;
|
|
138
138
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
139
139
|
domain_metadata?: {
|
|
@@ -180,7 +180,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
180
180
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
181
181
|
custom_domain_id: string;
|
|
182
182
|
primary: boolean;
|
|
183
|
-
status: "
|
|
183
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
184
184
|
verification_method?: "txt" | undefined;
|
|
185
185
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
186
186
|
domain_metadata?: {
|
|
@@ -226,7 +226,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
226
226
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
227
227
|
custom_domain_id: string;
|
|
228
228
|
primary: boolean;
|
|
229
|
-
status: "
|
|
229
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
230
230
|
verification_method?: "txt" | undefined;
|
|
231
231
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
232
232
|
domain_metadata?: {
|
|
@@ -267,7 +267,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
267
267
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
268
268
|
custom_domain_id: string;
|
|
269
269
|
primary: boolean;
|
|
270
|
-
status: "
|
|
270
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
271
271
|
verification_method?: "txt" | undefined;
|
|
272
272
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
273
273
|
domain_metadata?: {
|