authhero 9.7.0 → 9.9.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 +132 -132
- package/dist/authhero.d.ts +361 -249
- package/dist/authhero.mjs +11713 -11450
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +31 -8
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
- package/dist/types/helpers/signing-keys.d.ts +11 -0
- package/dist/types/index.d.ts +351 -249
- package/dist/types/routes/auth-api/index.d.ts +32 -12
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/token.d.ts +20 -0
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- 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 +312 -230
- package/dist/types/routes/management-api/keys.d.ts +92 -10
- 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 +4 -4
- package/dist/types/routes/management-api/users.d.ts +18 -18
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- 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/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/utils/encryption.d.ts +51 -0
- package/package.json +6 -6
|
@@ -7,26 +7,32 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
7
7
|
"/signing": {
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
|
+
query: {
|
|
11
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
12
|
+
};
|
|
13
|
+
} & {
|
|
10
14
|
header: {
|
|
11
15
|
"tenant-id"?: string | undefined;
|
|
12
16
|
};
|
|
13
17
|
};
|
|
14
18
|
output: {
|
|
19
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15
20
|
kid: string;
|
|
16
21
|
cert: string;
|
|
17
22
|
fingerprint: string;
|
|
18
23
|
thumbprint: string;
|
|
19
|
-
|
|
24
|
+
revoked_at?: string | undefined;
|
|
20
25
|
tenant_id?: string | undefined;
|
|
21
|
-
|
|
26
|
+
connection?: string | undefined;
|
|
22
27
|
current?: boolean | undefined;
|
|
23
28
|
next?: boolean | undefined;
|
|
24
29
|
previous?: boolean | undefined;
|
|
25
30
|
current_since?: string | undefined;
|
|
26
31
|
current_until?: string | undefined;
|
|
27
32
|
revoked?: boolean | undefined;
|
|
28
|
-
|
|
29
|
-
|
|
33
|
+
expires_at?: string | undefined;
|
|
34
|
+
expired?: boolean | undefined;
|
|
35
|
+
inherited?: boolean | undefined;
|
|
30
36
|
}[];
|
|
31
37
|
outputFormat: "json";
|
|
32
38
|
status: 200;
|
|
@@ -39,27 +45,33 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
39
45
|
param: {
|
|
40
46
|
kid: string;
|
|
41
47
|
};
|
|
48
|
+
} & {
|
|
49
|
+
query: {
|
|
50
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
51
|
+
};
|
|
42
52
|
} & {
|
|
43
53
|
header: {
|
|
44
54
|
"tenant-id"?: string | undefined;
|
|
45
55
|
};
|
|
46
56
|
};
|
|
47
57
|
output: {
|
|
58
|
+
type: "jwt_signing" | "saml_encryption";
|
|
48
59
|
kid: string;
|
|
49
60
|
cert: string;
|
|
50
61
|
fingerprint: string;
|
|
51
62
|
thumbprint: string;
|
|
52
|
-
|
|
63
|
+
revoked_at?: string | undefined;
|
|
53
64
|
tenant_id?: string | undefined;
|
|
54
|
-
|
|
65
|
+
connection?: string | undefined;
|
|
55
66
|
current?: boolean | undefined;
|
|
56
67
|
next?: boolean | undefined;
|
|
57
68
|
previous?: boolean | undefined;
|
|
58
69
|
current_since?: string | undefined;
|
|
59
70
|
current_until?: string | undefined;
|
|
60
71
|
revoked?: boolean | undefined;
|
|
61
|
-
|
|
62
|
-
|
|
72
|
+
expires_at?: string | undefined;
|
|
73
|
+
expired?: boolean | undefined;
|
|
74
|
+
inherited?: boolean | undefined;
|
|
63
75
|
};
|
|
64
76
|
outputFormat: "json";
|
|
65
77
|
status: 200;
|
|
@@ -69,15 +81,80 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
69
81
|
"/signing/rotate": {
|
|
70
82
|
$post: {
|
|
71
83
|
input: {
|
|
84
|
+
query: {
|
|
85
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
86
|
+
validity_days?: unknown;
|
|
87
|
+
activate_in_days?: unknown;
|
|
88
|
+
grace_days?: unknown;
|
|
89
|
+
};
|
|
90
|
+
} & {
|
|
72
91
|
header: {
|
|
73
92
|
"tenant-id"?: string | undefined;
|
|
74
93
|
};
|
|
75
94
|
};
|
|
76
|
-
output: {
|
|
77
|
-
|
|
95
|
+
output: {
|
|
96
|
+
type: "jwt_signing" | "saml_encryption";
|
|
97
|
+
kid: string;
|
|
98
|
+
cert: string;
|
|
99
|
+
fingerprint: string;
|
|
100
|
+
thumbprint: string;
|
|
101
|
+
revoked_at?: string | undefined;
|
|
102
|
+
tenant_id?: string | undefined;
|
|
103
|
+
connection?: string | undefined;
|
|
104
|
+
current?: boolean | undefined;
|
|
105
|
+
next?: boolean | undefined;
|
|
106
|
+
previous?: boolean | undefined;
|
|
107
|
+
current_since?: string | undefined;
|
|
108
|
+
current_until?: string | undefined;
|
|
109
|
+
revoked?: boolean | undefined;
|
|
110
|
+
expires_at?: string | undefined;
|
|
111
|
+
expired?: boolean | undefined;
|
|
112
|
+
inherited?: boolean | undefined;
|
|
113
|
+
};
|
|
114
|
+
outputFormat: "json";
|
|
78
115
|
status: 201;
|
|
79
116
|
};
|
|
80
117
|
};
|
|
118
|
+
} & {
|
|
119
|
+
"/signing/:kid/renew": {
|
|
120
|
+
$post: {
|
|
121
|
+
input: {
|
|
122
|
+
param: {
|
|
123
|
+
kid: string;
|
|
124
|
+
};
|
|
125
|
+
} & {
|
|
126
|
+
query: {
|
|
127
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
128
|
+
validity_days?: unknown;
|
|
129
|
+
};
|
|
130
|
+
} & {
|
|
131
|
+
header: {
|
|
132
|
+
"tenant-id"?: string | undefined;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
output: {
|
|
136
|
+
type: "jwt_signing" | "saml_encryption";
|
|
137
|
+
kid: string;
|
|
138
|
+
cert: string;
|
|
139
|
+
fingerprint: string;
|
|
140
|
+
thumbprint: string;
|
|
141
|
+
revoked_at?: string | undefined;
|
|
142
|
+
tenant_id?: string | undefined;
|
|
143
|
+
connection?: string | undefined;
|
|
144
|
+
current?: boolean | undefined;
|
|
145
|
+
next?: boolean | undefined;
|
|
146
|
+
previous?: boolean | undefined;
|
|
147
|
+
current_since?: string | undefined;
|
|
148
|
+
current_until?: string | undefined;
|
|
149
|
+
revoked?: boolean | undefined;
|
|
150
|
+
expires_at?: string | undefined;
|
|
151
|
+
expired?: boolean | undefined;
|
|
152
|
+
inherited?: boolean | undefined;
|
|
153
|
+
};
|
|
154
|
+
outputFormat: "json";
|
|
155
|
+
status: 200;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
81
158
|
} & {
|
|
82
159
|
"/signing/:kid/revoke": {
|
|
83
160
|
$put: {
|
|
@@ -85,6 +162,11 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
85
162
|
param: {
|
|
86
163
|
kid: string;
|
|
87
164
|
};
|
|
165
|
+
} & {
|
|
166
|
+
query: {
|
|
167
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
168
|
+
validity_days?: unknown;
|
|
169
|
+
};
|
|
88
170
|
} & {
|
|
89
171
|
header: {
|
|
90
172
|
"tenant-id"?: string | undefined;
|
|
@@ -24,7 +24,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
output: {
|
|
27
|
-
type: "
|
|
27
|
+
type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
28
28
|
date: string;
|
|
29
29
|
isMobile: boolean;
|
|
30
30
|
log_id: string;
|
|
@@ -63,7 +63,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
63
63
|
limit: number;
|
|
64
64
|
length: number;
|
|
65
65
|
logs: {
|
|
66
|
-
type: "
|
|
66
|
+
type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
67
67
|
date: string;
|
|
68
68
|
isMobile: boolean;
|
|
69
69
|
log_id: string;
|
|
@@ -102,7 +102,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
102
102
|
next?: string | undefined;
|
|
103
103
|
} | {
|
|
104
104
|
logs: {
|
|
105
|
-
type: "
|
|
105
|
+
type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
106
106
|
date: string;
|
|
107
107
|
isMobile: boolean;
|
|
108
108
|
log_id: string;
|
|
@@ -156,7 +156,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
156
156
|
};
|
|
157
157
|
};
|
|
158
158
|
output: {
|
|
159
|
-
type: "
|
|
159
|
+
type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
160
160
|
date: string;
|
|
161
161
|
isMobile: boolean;
|
|
162
162
|
log_id: string;
|
|
@@ -15,7 +15,7 @@ export declare const migrationSourcesRoutes: OpenAPIHono<{
|
|
|
15
15
|
created_at: string;
|
|
16
16
|
updated_at: string;
|
|
17
17
|
name: string;
|
|
18
|
-
provider: "auth0" | "
|
|
18
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
19
19
|
connection: string;
|
|
20
20
|
enabled: boolean;
|
|
21
21
|
credentials: {
|
|
@@ -47,7 +47,7 @@ export declare const migrationSourcesRoutes: OpenAPIHono<{
|
|
|
47
47
|
created_at: string;
|
|
48
48
|
updated_at: string;
|
|
49
49
|
name: string;
|
|
50
|
-
provider: "auth0" | "
|
|
50
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
51
51
|
connection: string;
|
|
52
52
|
enabled: boolean;
|
|
53
53
|
credentials: {
|
|
@@ -73,7 +73,7 @@ export declare const migrationSourcesRoutes: OpenAPIHono<{
|
|
|
73
73
|
} & {
|
|
74
74
|
json: {
|
|
75
75
|
name: string;
|
|
76
|
-
provider: "auth0" | "
|
|
76
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
77
77
|
connection: string;
|
|
78
78
|
credentials: {
|
|
79
79
|
domain: string;
|
|
@@ -90,7 +90,7 @@ export declare const migrationSourcesRoutes: OpenAPIHono<{
|
|
|
90
90
|
created_at: string;
|
|
91
91
|
updated_at: string;
|
|
92
92
|
name: string;
|
|
93
|
-
provider: "auth0" | "
|
|
93
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
94
94
|
connection: string;
|
|
95
95
|
enabled: boolean;
|
|
96
96
|
credentials: {
|
|
@@ -121,7 +121,7 @@ export declare const migrationSourcesRoutes: OpenAPIHono<{
|
|
|
121
121
|
json: {
|
|
122
122
|
id?: string | undefined;
|
|
123
123
|
name?: string | undefined;
|
|
124
|
-
provider?: "auth0" | "
|
|
124
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
125
125
|
connection?: string | undefined;
|
|
126
126
|
enabled?: boolean | undefined;
|
|
127
127
|
credentials?: {
|
|
@@ -137,7 +137,7 @@ export declare const migrationSourcesRoutes: OpenAPIHono<{
|
|
|
137
137
|
created_at: string;
|
|
138
138
|
updated_at: string;
|
|
139
139
|
name: string;
|
|
140
|
-
provider: "auth0" | "
|
|
140
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
141
141
|
connection: string;
|
|
142
142
|
enabled: boolean;
|
|
143
143
|
credentials: {
|
|
@@ -729,19 +729,19 @@ export declare const organizationRoutes: OpenAPIHono<{
|
|
|
729
729
|
} & {
|
|
730
730
|
json: {
|
|
731
731
|
client_id: string;
|
|
732
|
-
inviter: {
|
|
733
|
-
name?: string | undefined;
|
|
734
|
-
};
|
|
735
732
|
invitee: {
|
|
736
733
|
email?: string | undefined;
|
|
737
734
|
};
|
|
735
|
+
inviter: {
|
|
736
|
+
name?: string | undefined;
|
|
737
|
+
};
|
|
738
738
|
id?: string | undefined;
|
|
739
739
|
app_metadata?: Record<string, any> | undefined;
|
|
740
740
|
user_metadata?: Record<string, any> | undefined;
|
|
741
741
|
connection_id?: string | undefined;
|
|
742
742
|
roles?: string[] | undefined;
|
|
743
|
-
ttl_sec?: number | undefined;
|
|
744
743
|
send_invitation_email?: boolean | undefined;
|
|
744
|
+
ttl_sec?: number | undefined;
|
|
745
745
|
};
|
|
746
746
|
};
|
|
747
747
|
output: {
|
|
@@ -924,8 +924,8 @@ export declare const organizationRoutes: OpenAPIHono<{
|
|
|
924
924
|
};
|
|
925
925
|
} & {
|
|
926
926
|
json: {
|
|
927
|
-
assign_membership_on_login?: boolean | undefined;
|
|
928
927
|
show_as_button?: boolean | undefined;
|
|
928
|
+
assign_membership_on_login?: boolean | undefined;
|
|
929
929
|
is_signup_enabled?: boolean | undefined;
|
|
930
930
|
};
|
|
931
931
|
};
|
|
@@ -52,7 +52,7 @@ export declare const promptsRoutes: OpenAPIHono<{
|
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
output: {
|
|
55
|
-
prompt: "status" | "
|
|
55
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
56
56
|
language: string;
|
|
57
57
|
}[];
|
|
58
58
|
outputFormat: "json";
|
|
@@ -90,7 +90,7 @@ export declare const promptsRoutes: OpenAPIHono<{
|
|
|
90
90
|
$get: {
|
|
91
91
|
input: {
|
|
92
92
|
param: {
|
|
93
|
-
prompt: "status" | "
|
|
93
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
94
94
|
language: string;
|
|
95
95
|
};
|
|
96
96
|
} & {
|
|
@@ -112,7 +112,7 @@ export declare const promptsRoutes: OpenAPIHono<{
|
|
|
112
112
|
$put: {
|
|
113
113
|
input: {
|
|
114
114
|
param: {
|
|
115
|
-
prompt: "status" | "
|
|
115
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
116
116
|
language: string;
|
|
117
117
|
};
|
|
118
118
|
} & {
|
|
@@ -136,7 +136,7 @@ export declare const promptsRoutes: OpenAPIHono<{
|
|
|
136
136
|
$delete: {
|
|
137
137
|
input: {
|
|
138
138
|
param: {
|
|
139
|
-
prompt: "status" | "
|
|
139
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
140
140
|
language: string;
|
|
141
141
|
};
|
|
142
142
|
} & {
|
|
@@ -221,8 +221,8 @@ export declare const roleRoutes: OpenAPIHono<{
|
|
|
221
221
|
} & {
|
|
222
222
|
query: {
|
|
223
223
|
page?: string | undefined;
|
|
224
|
-
include_totals?: string | undefined;
|
|
225
224
|
from?: string | undefined;
|
|
225
|
+
include_totals?: string | undefined;
|
|
226
226
|
per_page?: string | undefined;
|
|
227
227
|
take?: string | undefined;
|
|
228
228
|
};
|
|
@@ -8,8 +8,8 @@ export declare const tenantExportImportRoutes: OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export declare const tenantExportImportRoutes: OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export declare const tenantExportImportRoutes: OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -210,16 +210,16 @@ export declare const tenantRoutes: OpenAPIHono<{
|
|
|
210
210
|
};
|
|
211
211
|
} & {
|
|
212
212
|
json: {
|
|
213
|
+
sessions?: {
|
|
214
|
+
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
215
|
+
} | undefined;
|
|
213
216
|
id?: string | undefined;
|
|
217
|
+
audience?: string | undefined;
|
|
214
218
|
allowed_logout_urls?: string[] | undefined;
|
|
215
219
|
oidc_logout?: {
|
|
216
220
|
rp_logout_end_session_endpoint_discovery?: boolean | undefined;
|
|
217
221
|
} | undefined;
|
|
218
222
|
default_organization?: string | undefined;
|
|
219
|
-
sessions?: {
|
|
220
|
-
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
221
|
-
} | undefined;
|
|
222
|
-
audience?: string | undefined;
|
|
223
223
|
friendly_name?: string | undefined;
|
|
224
224
|
picture_url?: string | undefined;
|
|
225
225
|
support_email?: string | undefined;
|
|
@@ -817,11 +817,9 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
817
817
|
};
|
|
818
818
|
};
|
|
819
819
|
output: {
|
|
820
|
-
id: string;
|
|
821
820
|
created_at: string;
|
|
821
|
+
id: string;
|
|
822
822
|
user_id: string;
|
|
823
|
-
client_id: string;
|
|
824
|
-
rotating: boolean;
|
|
825
823
|
device: {
|
|
826
824
|
initial_user_agent: string;
|
|
827
825
|
initial_ip: string;
|
|
@@ -830,6 +828,8 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
830
828
|
last_ip: string;
|
|
831
829
|
last_asn: string;
|
|
832
830
|
};
|
|
831
|
+
client_id: string;
|
|
832
|
+
rotating: boolean;
|
|
833
833
|
login_id: string;
|
|
834
834
|
resource_servers: {
|
|
835
835
|
audience: string;
|
|
@@ -839,20 +839,21 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
839
839
|
expires_at?: string | undefined;
|
|
840
840
|
idle_expires_at?: string | undefined;
|
|
841
841
|
session_id?: string | undefined;
|
|
842
|
-
organization?: string | undefined;
|
|
843
842
|
auth_connection?: string | undefined;
|
|
844
843
|
auth_strategy?: {
|
|
845
844
|
strategy: string;
|
|
846
845
|
strategy_type: string;
|
|
847
846
|
} | undefined;
|
|
847
|
+
organization?: string | undefined;
|
|
848
848
|
last_exchanged_at?: string | undefined;
|
|
849
849
|
}[] | {
|
|
850
|
+
start: number;
|
|
851
|
+
limit: number;
|
|
852
|
+
length: number;
|
|
850
853
|
tokens: {
|
|
851
|
-
id: string;
|
|
852
854
|
created_at: string;
|
|
855
|
+
id: string;
|
|
853
856
|
user_id: string;
|
|
854
|
-
client_id: string;
|
|
855
|
-
rotating: boolean;
|
|
856
857
|
device: {
|
|
857
858
|
initial_user_agent: string;
|
|
858
859
|
initial_ip: string;
|
|
@@ -861,6 +862,8 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
861
862
|
last_ip: string;
|
|
862
863
|
last_asn: string;
|
|
863
864
|
};
|
|
865
|
+
client_id: string;
|
|
866
|
+
rotating: boolean;
|
|
864
867
|
login_id: string;
|
|
865
868
|
resource_servers: {
|
|
866
869
|
audience: string;
|
|
@@ -870,25 +873,21 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
870
873
|
expires_at?: string | undefined;
|
|
871
874
|
idle_expires_at?: string | undefined;
|
|
872
875
|
session_id?: string | undefined;
|
|
873
|
-
organization?: string | undefined;
|
|
874
876
|
auth_connection?: string | undefined;
|
|
875
877
|
auth_strategy?: {
|
|
876
878
|
strategy: string;
|
|
877
879
|
strategy_type: string;
|
|
878
880
|
} | undefined;
|
|
881
|
+
organization?: string | undefined;
|
|
879
882
|
last_exchanged_at?: string | undefined;
|
|
880
883
|
}[];
|
|
884
|
+
total?: number | undefined;
|
|
881
885
|
next?: string | undefined;
|
|
882
886
|
} | {
|
|
883
|
-
start: number;
|
|
884
|
-
limit: number;
|
|
885
|
-
length: number;
|
|
886
887
|
tokens: {
|
|
887
|
-
id: string;
|
|
888
888
|
created_at: string;
|
|
889
|
+
id: string;
|
|
889
890
|
user_id: string;
|
|
890
|
-
client_id: string;
|
|
891
|
-
rotating: boolean;
|
|
892
891
|
device: {
|
|
893
892
|
initial_user_agent: string;
|
|
894
893
|
initial_ip: string;
|
|
@@ -897,6 +896,8 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
897
896
|
last_ip: string;
|
|
898
897
|
last_asn: string;
|
|
899
898
|
};
|
|
899
|
+
client_id: string;
|
|
900
|
+
rotating: boolean;
|
|
900
901
|
login_id: string;
|
|
901
902
|
resource_servers: {
|
|
902
903
|
audience: string;
|
|
@@ -906,15 +907,14 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
906
907
|
expires_at?: string | undefined;
|
|
907
908
|
idle_expires_at?: string | undefined;
|
|
908
909
|
session_id?: string | undefined;
|
|
909
|
-
organization?: string | undefined;
|
|
910
910
|
auth_connection?: string | undefined;
|
|
911
911
|
auth_strategy?: {
|
|
912
912
|
strategy: string;
|
|
913
913
|
strategy_type: string;
|
|
914
914
|
} | undefined;
|
|
915
|
+
organization?: string | undefined;
|
|
915
916
|
last_exchanged_at?: string | undefined;
|
|
916
917
|
}[];
|
|
917
|
-
total?: number | undefined;
|
|
918
918
|
next?: string | undefined;
|
|
919
919
|
};
|
|
920
920
|
outputFormat: "json";
|
|
@@ -963,7 +963,7 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
963
963
|
};
|
|
964
964
|
};
|
|
965
965
|
output: {
|
|
966
|
-
type: "
|
|
966
|
+
type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
967
967
|
date: string;
|
|
968
968
|
isMobile: boolean;
|
|
969
969
|
log_id: string;
|
|
@@ -1002,7 +1002,7 @@ export declare const userRoutes: OpenAPIHono<{
|
|
|
1002
1002
|
limit: number;
|
|
1003
1003
|
length: number;
|
|
1004
1004
|
logs: {
|
|
1005
|
-
type: "
|
|
1005
|
+
type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
1006
1006
|
date: string;
|
|
1007
1007
|
isMobile: boolean;
|
|
1008
1008
|
log_id: string;
|