authhero 8.22.0 → 8.23.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 +242 -127
- package/dist/authhero.mjs +20674 -15903
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +12 -4
- package/dist/types/helpers/backchannel-logout.d.ts +19 -0
- package/dist/types/helpers/client.d.ts +10 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +232 -126
- package/dist/types/routes/auth-api/index.d.ts +24 -20
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +4 -0
- package/dist/types/routes/management-api/action-executions.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 +68 -16
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- 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/index.d.ts +179 -77
- 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 +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +50 -0
- 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 +24 -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/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/utils/crypto.d.ts +3 -0
- package/dist/types/utils/jwt.d.ts +29 -0
- package/dist/types/utils/request-origin.d.ts +6 -0
- package/dist/types/utils/totp.d.ts +10 -0
- package/dist/types/variables.d.ts +8 -0
- package/package.json +6 -7
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "push" | "email" | "passkey" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1202,11 +1202,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1202
|
invitee: {
|
|
1203
1203
|
email?: string | undefined;
|
|
1204
1204
|
};
|
|
1205
|
+
roles?: string[] | undefined;
|
|
1205
1206
|
id?: string | undefined;
|
|
1206
|
-
connection_id?: string | undefined;
|
|
1207
1207
|
app_metadata?: Record<string, any> | undefined;
|
|
1208
1208
|
user_metadata?: Record<string, any> | undefined;
|
|
1209
|
-
|
|
1209
|
+
connection_id?: string | undefined;
|
|
1210
1210
|
ttl_sec?: number | undefined;
|
|
1211
1211
|
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1395
1394
|
show_as_button?: boolean | undefined;
|
|
1395
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -1954,6 +1954,56 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1954
1954
|
status: 200;
|
|
1955
1955
|
};
|
|
1956
1956
|
};
|
|
1957
|
+
} & {
|
|
1958
|
+
"/:id/users": {
|
|
1959
|
+
$get: {
|
|
1960
|
+
input: {
|
|
1961
|
+
param: {
|
|
1962
|
+
id: string;
|
|
1963
|
+
};
|
|
1964
|
+
} & {
|
|
1965
|
+
query: {
|
|
1966
|
+
page?: string | undefined;
|
|
1967
|
+
include_totals?: string | undefined;
|
|
1968
|
+
from?: string | undefined;
|
|
1969
|
+
per_page?: string | undefined;
|
|
1970
|
+
take?: string | undefined;
|
|
1971
|
+
};
|
|
1972
|
+
} & {
|
|
1973
|
+
header: {
|
|
1974
|
+
"tenant-id"?: string | undefined;
|
|
1975
|
+
};
|
|
1976
|
+
};
|
|
1977
|
+
output: {
|
|
1978
|
+
user_id: string;
|
|
1979
|
+
email?: string | undefined;
|
|
1980
|
+
name?: string | undefined;
|
|
1981
|
+
picture?: string | undefined;
|
|
1982
|
+
}[] | {
|
|
1983
|
+
start: number;
|
|
1984
|
+
limit: number;
|
|
1985
|
+
length: number;
|
|
1986
|
+
users: {
|
|
1987
|
+
user_id: string;
|
|
1988
|
+
email?: string | undefined;
|
|
1989
|
+
name?: string | undefined;
|
|
1990
|
+
picture?: string | undefined;
|
|
1991
|
+
}[];
|
|
1992
|
+
total?: number | undefined;
|
|
1993
|
+
next?: string | undefined;
|
|
1994
|
+
} | {
|
|
1995
|
+
users: {
|
|
1996
|
+
user_id: string;
|
|
1997
|
+
email?: string | undefined;
|
|
1998
|
+
name?: string | undefined;
|
|
1999
|
+
picture?: string | undefined;
|
|
2000
|
+
}[];
|
|
2001
|
+
next?: string | undefined;
|
|
2002
|
+
};
|
|
2003
|
+
outputFormat: "json";
|
|
2004
|
+
status: 200;
|
|
2005
|
+
};
|
|
2006
|
+
};
|
|
1957
2007
|
} & {
|
|
1958
2008
|
"/:id/permissions": {
|
|
1959
2009
|
$post: {
|
|
@@ -6867,7 +6917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6867
6917
|
};
|
|
6868
6918
|
};
|
|
6869
6919
|
output: {
|
|
6870
|
-
prompt: "status" | "
|
|
6920
|
+
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";
|
|
6871
6921
|
language: string;
|
|
6872
6922
|
}[];
|
|
6873
6923
|
outputFormat: "json";
|
|
@@ -6905,7 +6955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6905
6955
|
$get: {
|
|
6906
6956
|
input: {
|
|
6907
6957
|
param: {
|
|
6908
|
-
prompt: "status" | "
|
|
6958
|
+
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";
|
|
6909
6959
|
language: string;
|
|
6910
6960
|
};
|
|
6911
6961
|
} & {
|
|
@@ -6927,7 +6977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6927
6977
|
$put: {
|
|
6928
6978
|
input: {
|
|
6929
6979
|
param: {
|
|
6930
|
-
prompt: "status" | "
|
|
6980
|
+
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";
|
|
6931
6981
|
language: string;
|
|
6932
6982
|
};
|
|
6933
6983
|
} & {
|
|
@@ -6951,7 +7001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6951
7001
|
$delete: {
|
|
6952
7002
|
input: {
|
|
6953
7003
|
param: {
|
|
6954
|
-
prompt: "status" | "
|
|
7004
|
+
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";
|
|
6955
7005
|
language: string;
|
|
6956
7006
|
};
|
|
6957
7007
|
} & {
|
|
@@ -7850,7 +7900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7850
7900
|
tenant_id: string;
|
|
7851
7901
|
created_at: string;
|
|
7852
7902
|
updated_at: string;
|
|
7853
|
-
deploymentStatus: "
|
|
7903
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7854
7904
|
secrets?: {
|
|
7855
7905
|
[x: string]: string;
|
|
7856
7906
|
} | undefined;
|
|
@@ -7940,7 +7990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7940
7990
|
tenant_id: string;
|
|
7941
7991
|
created_at: string;
|
|
7942
7992
|
updated_at: string;
|
|
7943
|
-
deploymentStatus: "
|
|
7993
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7944
7994
|
secrets?: {
|
|
7945
7995
|
[x: string]: string;
|
|
7946
7996
|
} | undefined;
|
|
@@ -8764,7 +8814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8764
8814
|
created_at: string;
|
|
8765
8815
|
updated_at: string;
|
|
8766
8816
|
name: string;
|
|
8767
|
-
provider: "auth0" | "
|
|
8817
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8768
8818
|
connection: string;
|
|
8769
8819
|
enabled: boolean;
|
|
8770
8820
|
credentials: {
|
|
@@ -8796,7 +8846,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8796
8846
|
created_at: string;
|
|
8797
8847
|
updated_at: string;
|
|
8798
8848
|
name: string;
|
|
8799
|
-
provider: "auth0" | "
|
|
8849
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8800
8850
|
connection: string;
|
|
8801
8851
|
enabled: boolean;
|
|
8802
8852
|
credentials: {
|
|
@@ -8822,7 +8872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8822
8872
|
} & {
|
|
8823
8873
|
json: {
|
|
8824
8874
|
name: string;
|
|
8825
|
-
provider: "auth0" | "
|
|
8875
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8826
8876
|
connection: string;
|
|
8827
8877
|
credentials: {
|
|
8828
8878
|
domain: string;
|
|
@@ -8839,7 +8889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8839
8889
|
created_at: string;
|
|
8840
8890
|
updated_at: string;
|
|
8841
8891
|
name: string;
|
|
8842
|
-
provider: "auth0" | "
|
|
8892
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8843
8893
|
connection: string;
|
|
8844
8894
|
enabled: boolean;
|
|
8845
8895
|
credentials: {
|
|
@@ -8870,7 +8920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8870
8920
|
json: {
|
|
8871
8921
|
id?: string | undefined;
|
|
8872
8922
|
name?: string | undefined;
|
|
8873
|
-
provider?: "auth0" | "
|
|
8923
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8874
8924
|
connection?: string | undefined;
|
|
8875
8925
|
enabled?: boolean | undefined;
|
|
8876
8926
|
credentials?: {
|
|
@@ -8886,7 +8936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8886
8936
|
created_at: string;
|
|
8887
8937
|
updated_at: string;
|
|
8888
8938
|
name: string;
|
|
8889
|
-
provider: "auth0" | "
|
|
8939
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8890
8940
|
connection: string;
|
|
8891
8941
|
enabled: boolean;
|
|
8892
8942
|
credentials: {
|
|
@@ -8934,7 +8984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8934
8984
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8935
8985
|
};
|
|
8936
8986
|
id: string;
|
|
8937
|
-
status: "
|
|
8987
|
+
status: "active" | "suspended" | "paused";
|
|
8938
8988
|
filters?: {
|
|
8939
8989
|
type: string;
|
|
8940
8990
|
name: string;
|
|
@@ -8966,7 +9016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8966
9016
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8967
9017
|
};
|
|
8968
9018
|
id: string;
|
|
8969
|
-
status: "
|
|
9019
|
+
status: "active" | "suspended" | "paused";
|
|
8970
9020
|
filters?: {
|
|
8971
9021
|
type: string;
|
|
8972
9022
|
name: string;
|
|
@@ -8991,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8991
9041
|
name: string;
|
|
8992
9042
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8993
9043
|
sink: Record<string, unknown>;
|
|
8994
|
-
status?: "
|
|
9044
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
8995
9045
|
filters?: {
|
|
8996
9046
|
type: string;
|
|
8997
9047
|
name: string;
|
|
@@ -9006,7 +9056,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9006
9056
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9007
9057
|
};
|
|
9008
9058
|
id: string;
|
|
9009
|
-
status: "
|
|
9059
|
+
status: "active" | "suspended" | "paused";
|
|
9010
9060
|
filters?: {
|
|
9011
9061
|
type: string;
|
|
9012
9062
|
name: string;
|
|
@@ -9041,7 +9091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9041
9091
|
}[] | undefined;
|
|
9042
9092
|
isPriority?: boolean | undefined;
|
|
9043
9093
|
id?: string | undefined;
|
|
9044
|
-
status?: "
|
|
9094
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9045
9095
|
created_at?: string | undefined;
|
|
9046
9096
|
updated_at?: string | undefined;
|
|
9047
9097
|
};
|
|
@@ -9053,7 +9103,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9053
9103
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9054
9104
|
};
|
|
9055
9105
|
id: string;
|
|
9056
|
-
status: "
|
|
9106
|
+
status: "active" | "suspended" | "paused";
|
|
9057
9107
|
filters?: {
|
|
9058
9108
|
type: string;
|
|
9059
9109
|
name: string;
|
|
@@ -9104,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9104
9154
|
};
|
|
9105
9155
|
};
|
|
9106
9156
|
output: {
|
|
9107
|
-
type: "fn" | "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" | "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" | "
|
|
9157
|
+
type: "fn" | "i" | "sapi" | "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" | "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" | "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" | "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" | "srrt" | "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";
|
|
9108
9158
|
date: string;
|
|
9109
9159
|
isMobile: boolean;
|
|
9110
9160
|
log_id: string;
|
|
@@ -9143,7 +9193,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9143
9193
|
limit: number;
|
|
9144
9194
|
length: number;
|
|
9145
9195
|
logs: {
|
|
9146
|
-
type: "fn" | "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" | "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" | "
|
|
9196
|
+
type: "fn" | "i" | "sapi" | "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" | "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" | "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" | "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" | "srrt" | "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";
|
|
9147
9197
|
date: string;
|
|
9148
9198
|
isMobile: boolean;
|
|
9149
9199
|
log_id: string;
|
|
@@ -9182,7 +9232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9182
9232
|
next?: string | undefined;
|
|
9183
9233
|
} | {
|
|
9184
9234
|
logs: {
|
|
9185
|
-
type: "fn" | "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" | "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" | "
|
|
9235
|
+
type: "fn" | "i" | "sapi" | "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" | "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" | "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" | "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" | "srrt" | "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";
|
|
9186
9236
|
date: string;
|
|
9187
9237
|
isMobile: boolean;
|
|
9188
9238
|
log_id: string;
|
|
@@ -9236,7 +9286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9236
9286
|
};
|
|
9237
9287
|
};
|
|
9238
9288
|
output: {
|
|
9239
|
-
type: "fn" | "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" | "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" | "
|
|
9289
|
+
type: "fn" | "i" | "sapi" | "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" | "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" | "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" | "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" | "srrt" | "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";
|
|
9240
9290
|
date: string;
|
|
9241
9291
|
isMobile: boolean;
|
|
9242
9292
|
log_id: string;
|
|
@@ -9622,7 +9672,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9622
9672
|
[x: string]: any;
|
|
9623
9673
|
} | undefined;
|
|
9624
9674
|
oidc_logout?: {
|
|
9625
|
-
[x: string]:
|
|
9675
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9676
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9677
|
+
backchannel_logout_initiators?: {
|
|
9678
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9679
|
+
mode?: "custom" | "all" | undefined;
|
|
9680
|
+
selected_initiators?: string[] | undefined;
|
|
9681
|
+
} | undefined;
|
|
9626
9682
|
} | undefined;
|
|
9627
9683
|
grant_types?: string[] | undefined;
|
|
9628
9684
|
jwt_configuration?: {
|
|
@@ -9641,7 +9697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9641
9697
|
addons?: {
|
|
9642
9698
|
[x: string]: any;
|
|
9643
9699
|
} | undefined;
|
|
9644
|
-
token_endpoint_auth_method?: "none" | "
|
|
9700
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9645
9701
|
client_metadata?: {
|
|
9646
9702
|
[x: string]: string;
|
|
9647
9703
|
} | undefined;
|
|
@@ -9718,7 +9774,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9718
9774
|
[x: string]: any;
|
|
9719
9775
|
} | undefined;
|
|
9720
9776
|
oidc_logout?: {
|
|
9721
|
-
[x: string]:
|
|
9777
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9778
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9779
|
+
backchannel_logout_initiators?: {
|
|
9780
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9781
|
+
mode?: "custom" | "all" | undefined;
|
|
9782
|
+
selected_initiators?: string[] | undefined;
|
|
9783
|
+
} | undefined;
|
|
9722
9784
|
} | undefined;
|
|
9723
9785
|
grant_types?: string[] | undefined;
|
|
9724
9786
|
jwt_configuration?: {
|
|
@@ -9737,7 +9799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9737
9799
|
addons?: {
|
|
9738
9800
|
[x: string]: any;
|
|
9739
9801
|
} | undefined;
|
|
9740
|
-
token_endpoint_auth_method?: "none" | "
|
|
9802
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9741
9803
|
client_metadata?: {
|
|
9742
9804
|
[x: string]: string;
|
|
9743
9805
|
} | undefined;
|
|
@@ -9814,7 +9876,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9814
9876
|
[x: string]: any;
|
|
9815
9877
|
} | undefined;
|
|
9816
9878
|
oidc_logout?: {
|
|
9817
|
-
[x: string]:
|
|
9879
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9880
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9881
|
+
backchannel_logout_initiators?: {
|
|
9882
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9883
|
+
mode?: "custom" | "all" | undefined;
|
|
9884
|
+
selected_initiators?: string[] | undefined;
|
|
9885
|
+
} | undefined;
|
|
9818
9886
|
} | undefined;
|
|
9819
9887
|
grant_types?: string[] | undefined;
|
|
9820
9888
|
jwt_configuration?: {
|
|
@@ -9833,7 +9901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9833
9901
|
addons?: {
|
|
9834
9902
|
[x: string]: any;
|
|
9835
9903
|
} | undefined;
|
|
9836
|
-
token_endpoint_auth_method?: "none" | "
|
|
9904
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9837
9905
|
client_metadata?: {
|
|
9838
9906
|
[x: string]: string;
|
|
9839
9907
|
} | undefined;
|
|
@@ -9925,7 +9993,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9925
9993
|
[x: string]: any;
|
|
9926
9994
|
} | undefined;
|
|
9927
9995
|
oidc_logout?: {
|
|
9928
|
-
[x: string]:
|
|
9996
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9997
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9998
|
+
backchannel_logout_initiators?: {
|
|
9999
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10000
|
+
mode?: "custom" | "all" | undefined;
|
|
10001
|
+
selected_initiators?: string[] | undefined;
|
|
10002
|
+
} | undefined;
|
|
9929
10003
|
} | undefined;
|
|
9930
10004
|
grant_types?: string[] | undefined;
|
|
9931
10005
|
jwt_configuration?: {
|
|
@@ -9944,7 +10018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9944
10018
|
addons?: {
|
|
9945
10019
|
[x: string]: any;
|
|
9946
10020
|
} | undefined;
|
|
9947
|
-
token_endpoint_auth_method?: "none" | "
|
|
10021
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9948
10022
|
client_metadata?: {
|
|
9949
10023
|
[x: string]: string;
|
|
9950
10024
|
} | undefined;
|
|
@@ -10040,7 +10114,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10040
10114
|
connections?: string[] | undefined;
|
|
10041
10115
|
allowed_logout_urls?: string[] | undefined;
|
|
10042
10116
|
session_transfer?: Record<string, any> | undefined;
|
|
10043
|
-
oidc_logout?:
|
|
10117
|
+
oidc_logout?: {
|
|
10118
|
+
[x: string]: unknown;
|
|
10119
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10120
|
+
backchannel_logout_initiators?: {
|
|
10121
|
+
[x: string]: unknown;
|
|
10122
|
+
mode?: "custom" | "all" | undefined;
|
|
10123
|
+
selected_initiators?: string[] | undefined;
|
|
10124
|
+
} | undefined;
|
|
10125
|
+
} | undefined;
|
|
10044
10126
|
grant_types?: string[] | undefined;
|
|
10045
10127
|
jwt_configuration?: Record<string, any> | undefined;
|
|
10046
10128
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -10054,7 +10136,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10054
10136
|
custom_login_page_preview?: string | undefined;
|
|
10055
10137
|
form_template?: string | undefined;
|
|
10056
10138
|
addons?: Record<string, any> | undefined;
|
|
10057
|
-
token_endpoint_auth_method?: "none" | "
|
|
10139
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10058
10140
|
client_metadata?: Record<string, string> | undefined;
|
|
10059
10141
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10060
10142
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10115,7 +10197,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10115
10197
|
[x: string]: any;
|
|
10116
10198
|
} | undefined;
|
|
10117
10199
|
oidc_logout?: {
|
|
10118
|
-
[x: string]:
|
|
10200
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10201
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10202
|
+
backchannel_logout_initiators?: {
|
|
10203
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10204
|
+
mode?: "custom" | "all" | undefined;
|
|
10205
|
+
selected_initiators?: string[] | undefined;
|
|
10206
|
+
} | undefined;
|
|
10119
10207
|
} | undefined;
|
|
10120
10208
|
grant_types?: string[] | undefined;
|
|
10121
10209
|
jwt_configuration?: {
|
|
@@ -10134,7 +10222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10134
10222
|
addons?: {
|
|
10135
10223
|
[x: string]: any;
|
|
10136
10224
|
} | undefined;
|
|
10137
|
-
token_endpoint_auth_method?: "none" | "
|
|
10225
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10138
10226
|
client_metadata?: {
|
|
10139
10227
|
[x: string]: string;
|
|
10140
10228
|
} | undefined;
|
|
@@ -10209,7 +10297,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10209
10297
|
connections?: string[] | undefined;
|
|
10210
10298
|
allowed_logout_urls?: string[] | undefined;
|
|
10211
10299
|
session_transfer?: Record<string, any> | undefined;
|
|
10212
|
-
oidc_logout?:
|
|
10300
|
+
oidc_logout?: {
|
|
10301
|
+
[x: string]: unknown;
|
|
10302
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10303
|
+
backchannel_logout_initiators?: {
|
|
10304
|
+
[x: string]: unknown;
|
|
10305
|
+
mode?: "custom" | "all" | undefined;
|
|
10306
|
+
selected_initiators?: string[] | undefined;
|
|
10307
|
+
} | undefined;
|
|
10308
|
+
} | undefined;
|
|
10213
10309
|
grant_types?: string[] | undefined;
|
|
10214
10310
|
jwt_configuration?: Record<string, any> | undefined;
|
|
10215
10311
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -10223,7 +10319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10223
10319
|
custom_login_page_preview?: string | undefined;
|
|
10224
10320
|
form_template?: string | undefined;
|
|
10225
10321
|
addons?: Record<string, any> | undefined;
|
|
10226
|
-
token_endpoint_auth_method?: "none" | "
|
|
10322
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10227
10323
|
client_metadata?: Record<string, string> | undefined;
|
|
10228
10324
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10229
10325
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10284,7 +10380,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10284
10380
|
[x: string]: any;
|
|
10285
10381
|
} | undefined;
|
|
10286
10382
|
oidc_logout?: {
|
|
10287
|
-
[x: string]:
|
|
10383
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10384
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10385
|
+
backchannel_logout_initiators?: {
|
|
10386
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10387
|
+
mode?: "custom" | "all" | undefined;
|
|
10388
|
+
selected_initiators?: string[] | undefined;
|
|
10389
|
+
} | undefined;
|
|
10288
10390
|
} | undefined;
|
|
10289
10391
|
grant_types?: string[] | undefined;
|
|
10290
10392
|
jwt_configuration?: {
|
|
@@ -10303,7 +10405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10303
10405
|
addons?: {
|
|
10304
10406
|
[x: string]: any;
|
|
10305
10407
|
} | undefined;
|
|
10306
|
-
token_endpoint_auth_method?: "none" | "
|
|
10408
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10307
10409
|
client_metadata?: {
|
|
10308
10410
|
[x: string]: string;
|
|
10309
10411
|
} | undefined;
|
|
@@ -11570,7 +11672,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11570
11672
|
};
|
|
11571
11673
|
};
|
|
11572
11674
|
output: {
|
|
11573
|
-
type: "fn" | "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" | "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" | "
|
|
11675
|
+
type: "fn" | "i" | "sapi" | "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" | "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" | "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" | "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" | "srrt" | "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";
|
|
11574
11676
|
date: string;
|
|
11575
11677
|
isMobile: boolean;
|
|
11576
11678
|
log_id: string;
|
|
@@ -11609,7 +11711,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11609
11711
|
limit: number;
|
|
11610
11712
|
length: number;
|
|
11611
11713
|
logs: {
|
|
11612
|
-
type: "fn" | "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" | "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" | "
|
|
11714
|
+
type: "fn" | "i" | "sapi" | "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" | "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" | "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" | "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" | "srrt" | "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";
|
|
11613
11715
|
date: string;
|
|
11614
11716
|
isMobile: boolean;
|
|
11615
11717
|
log_id: string;
|
|
@@ -11928,7 +12030,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11928
12030
|
};
|
|
11929
12031
|
} & {
|
|
11930
12032
|
json: {
|
|
11931
|
-
template: "
|
|
12033
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11932
12034
|
body: string;
|
|
11933
12035
|
from: string;
|
|
11934
12036
|
subject: string;
|
|
@@ -11949,7 +12051,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11949
12051
|
};
|
|
11950
12052
|
} & {
|
|
11951
12053
|
json: {
|
|
11952
|
-
template: "
|
|
12054
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11953
12055
|
body: string;
|
|
11954
12056
|
from: string;
|
|
11955
12057
|
subject: string;
|
|
@@ -11961,7 +12063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11961
12063
|
};
|
|
11962
12064
|
};
|
|
11963
12065
|
output: {
|
|
11964
|
-
template: "
|
|
12066
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11965
12067
|
body: string;
|
|
11966
12068
|
from: string;
|
|
11967
12069
|
subject: string;
|
|
@@ -11984,7 +12086,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11984
12086
|
};
|
|
11985
12087
|
};
|
|
11986
12088
|
output: {
|
|
11987
|
-
name: "
|
|
12089
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11988
12090
|
body: string;
|
|
11989
12091
|
subject: string;
|
|
11990
12092
|
}[];
|
|
@@ -11997,7 +12099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11997
12099
|
$get: {
|
|
11998
12100
|
input: {
|
|
11999
12101
|
param: {
|
|
12000
|
-
templateName: "
|
|
12102
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12001
12103
|
};
|
|
12002
12104
|
} & {
|
|
12003
12105
|
header: {
|
|
@@ -12010,7 +12112,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12010
12112
|
} | {
|
|
12011
12113
|
input: {
|
|
12012
12114
|
param: {
|
|
12013
|
-
templateName: "
|
|
12115
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12014
12116
|
};
|
|
12015
12117
|
} & {
|
|
12016
12118
|
header: {
|
|
@@ -12018,7 +12120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12018
12120
|
};
|
|
12019
12121
|
};
|
|
12020
12122
|
output: {
|
|
12021
|
-
template: "
|
|
12123
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12022
12124
|
body: string;
|
|
12023
12125
|
from: string;
|
|
12024
12126
|
subject: string;
|
|
@@ -12037,7 +12139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12037
12139
|
$put: {
|
|
12038
12140
|
input: {
|
|
12039
12141
|
param: {
|
|
12040
|
-
templateName: "
|
|
12142
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12041
12143
|
};
|
|
12042
12144
|
} & {
|
|
12043
12145
|
header: {
|
|
@@ -12045,7 +12147,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12045
12147
|
};
|
|
12046
12148
|
} & {
|
|
12047
12149
|
json: {
|
|
12048
|
-
template: "
|
|
12150
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12049
12151
|
body: string;
|
|
12050
12152
|
subject: string;
|
|
12051
12153
|
syntax?: "liquid" | undefined;
|
|
@@ -12057,7 +12159,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12057
12159
|
};
|
|
12058
12160
|
};
|
|
12059
12161
|
output: {
|
|
12060
|
-
template: "
|
|
12162
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12061
12163
|
body: string;
|
|
12062
12164
|
from: string;
|
|
12063
12165
|
subject: string;
|
|
@@ -12076,7 +12178,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12076
12178
|
$patch: {
|
|
12077
12179
|
input: {
|
|
12078
12180
|
param: {
|
|
12079
|
-
templateName: "
|
|
12181
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12080
12182
|
};
|
|
12081
12183
|
} & {
|
|
12082
12184
|
header: {
|
|
@@ -12084,7 +12186,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12084
12186
|
};
|
|
12085
12187
|
} & {
|
|
12086
12188
|
json: {
|
|
12087
|
-
template?: "
|
|
12189
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12088
12190
|
body?: string | undefined;
|
|
12089
12191
|
from?: string | undefined;
|
|
12090
12192
|
subject?: string | undefined;
|
|
@@ -12101,7 +12203,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12101
12203
|
} | {
|
|
12102
12204
|
input: {
|
|
12103
12205
|
param: {
|
|
12104
|
-
templateName: "
|
|
12206
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12105
12207
|
};
|
|
12106
12208
|
} & {
|
|
12107
12209
|
header: {
|
|
@@ -12109,7 +12211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12109
12211
|
};
|
|
12110
12212
|
} & {
|
|
12111
12213
|
json: {
|
|
12112
|
-
template?: "
|
|
12214
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12113
12215
|
body?: string | undefined;
|
|
12114
12216
|
from?: string | undefined;
|
|
12115
12217
|
subject?: string | undefined;
|
|
@@ -12121,7 +12223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12121
12223
|
};
|
|
12122
12224
|
};
|
|
12123
12225
|
output: {
|
|
12124
|
-
template: "
|
|
12226
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12125
12227
|
body: string;
|
|
12126
12228
|
from: string;
|
|
12127
12229
|
subject: string;
|
|
@@ -12140,7 +12242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12140
12242
|
$delete: {
|
|
12141
12243
|
input: {
|
|
12142
12244
|
param: {
|
|
12143
|
-
templateName: "
|
|
12245
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12144
12246
|
};
|
|
12145
12247
|
} & {
|
|
12146
12248
|
header: {
|
|
@@ -12153,7 +12255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12153
12255
|
} | {
|
|
12154
12256
|
input: {
|
|
12155
12257
|
param: {
|
|
12156
|
-
templateName: "
|
|
12258
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12157
12259
|
};
|
|
12158
12260
|
} & {
|
|
12159
12261
|
header: {
|
|
@@ -12170,7 +12272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12170
12272
|
$post: {
|
|
12171
12273
|
input: {
|
|
12172
12274
|
param: {
|
|
12173
|
-
templateName: "
|
|
12275
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12174
12276
|
};
|
|
12175
12277
|
} & {
|
|
12176
12278
|
header: {
|
|
@@ -12791,12 +12893,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12791
12893
|
background_color: string;
|
|
12792
12894
|
background_image_url: string;
|
|
12793
12895
|
page_layout: "center" | "left" | "right";
|
|
12794
|
-
logo_placement?: "
|
|
12896
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12795
12897
|
};
|
|
12796
12898
|
widget: {
|
|
12797
12899
|
header_text_alignment: "center" | "left" | "right";
|
|
12798
12900
|
logo_height: number;
|
|
12799
|
-
logo_position: "
|
|
12901
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12800
12902
|
logo_url: string;
|
|
12801
12903
|
social_buttons_layout: "bottom" | "top";
|
|
12802
12904
|
};
|
|
@@ -12881,12 +12983,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12881
12983
|
background_color: string;
|
|
12882
12984
|
background_image_url: string;
|
|
12883
12985
|
page_layout: "center" | "left" | "right";
|
|
12884
|
-
logo_placement?: "
|
|
12986
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12885
12987
|
};
|
|
12886
12988
|
widget: {
|
|
12887
12989
|
header_text_alignment: "center" | "left" | "right";
|
|
12888
12990
|
logo_height: number;
|
|
12889
|
-
logo_position: "
|
|
12991
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12890
12992
|
logo_url: string;
|
|
12891
12993
|
social_buttons_layout: "bottom" | "top";
|
|
12892
12994
|
};
|
|
@@ -12960,12 +13062,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12960
13062
|
background_color: string;
|
|
12961
13063
|
background_image_url: string;
|
|
12962
13064
|
page_layout: "center" | "left" | "right";
|
|
12963
|
-
logo_placement?: "
|
|
13065
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12964
13066
|
};
|
|
12965
13067
|
widget: {
|
|
12966
13068
|
header_text_alignment: "center" | "left" | "right";
|
|
12967
13069
|
logo_height: number;
|
|
12968
|
-
logo_position: "
|
|
13070
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12969
13071
|
logo_url: string;
|
|
12970
13072
|
social_buttons_layout: "bottom" | "top";
|
|
12971
13073
|
};
|
|
@@ -13122,7 +13224,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13122
13224
|
} & {
|
|
13123
13225
|
json: {
|
|
13124
13226
|
body?: string | undefined;
|
|
13125
|
-
screen?: "password" | "
|
|
13227
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13126
13228
|
branding?: {
|
|
13127
13229
|
colors?: {
|
|
13128
13230
|
primary: string;
|
|
@@ -13208,12 +13310,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13208
13310
|
background_color: string;
|
|
13209
13311
|
background_image_url: string;
|
|
13210
13312
|
page_layout: "center" | "left" | "right";
|
|
13211
|
-
logo_placement?: "
|
|
13313
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13212
13314
|
} | undefined;
|
|
13213
13315
|
widget?: {
|
|
13214
13316
|
header_text_alignment: "center" | "left" | "right";
|
|
13215
13317
|
logo_height: number;
|
|
13216
|
-
logo_position: "
|
|
13318
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13217
13319
|
logo_url: string;
|
|
13218
13320
|
social_buttons_layout: "bottom" | "top";
|
|
13219
13321
|
} | undefined;
|
|
@@ -13366,7 +13468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13366
13468
|
output: {
|
|
13367
13469
|
id: string;
|
|
13368
13470
|
trigger_id: string;
|
|
13369
|
-
status: "
|
|
13471
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
13370
13472
|
results: {
|
|
13371
13473
|
action_name: string;
|
|
13372
13474
|
error: {
|