authhero 5.13.0 → 5.14.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 +126 -126
- package/dist/authhero.d.ts +149 -114
- package/dist/authhero.mjs +9962 -9822
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +7 -6
- package/dist/types/helpers/cimd.d.ts +32 -0
- package/dist/types/helpers/client.d.ts +3 -18
- package/dist/types/helpers/connection.d.ts +40 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/service-token.d.ts +11 -1
- package/dist/types/index.d.ts +148 -114
- package/dist/types/routes/auth-api/index.d.ts +48 -14
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- 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 +34 -0
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +13 -13
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +24 -24
- package/dist/types/routes/management-api/index.d.ts +92 -92
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +3 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +12 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/utils/ssrf-fetch.d.ts +8 -0
- package/package.json +6 -6
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "push" | "email" | "passkey" | "
|
|
40
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
177
177
|
};
|
|
178
178
|
};
|
|
179
179
|
output: {
|
|
180
|
-
name: "
|
|
180
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
181
181
|
enabled: boolean;
|
|
182
182
|
trial_expired?: boolean | undefined;
|
|
183
183
|
}[];
|
|
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
332
332
|
$get: {
|
|
333
333
|
input: {
|
|
334
334
|
param: {
|
|
335
|
-
factor_name: "
|
|
335
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
336
336
|
};
|
|
337
337
|
} & {
|
|
338
338
|
header: {
|
|
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
340
340
|
};
|
|
341
341
|
};
|
|
342
342
|
output: {
|
|
343
|
-
name: "
|
|
343
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
344
344
|
enabled: boolean;
|
|
345
345
|
trial_expired?: boolean | undefined;
|
|
346
346
|
};
|
|
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
353
353
|
$put: {
|
|
354
354
|
input: {
|
|
355
355
|
param: {
|
|
356
|
-
factor_name: "
|
|
356
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
357
357
|
};
|
|
358
358
|
} & {
|
|
359
359
|
header: {
|
|
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
365
365
|
};
|
|
366
366
|
};
|
|
367
367
|
output: {
|
|
368
|
-
name: "
|
|
368
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -1111,9 +1111,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1111
1111
|
email?: string | undefined;
|
|
1112
1112
|
};
|
|
1113
1113
|
id?: string | undefined;
|
|
1114
|
-
connection_id?: string | undefined;
|
|
1115
1114
|
app_metadata?: Record<string, any> | undefined;
|
|
1116
1115
|
user_metadata?: Record<string, any> | undefined;
|
|
1116
|
+
connection_id?: string | undefined;
|
|
1117
1117
|
roles?: string[] | undefined;
|
|
1118
1118
|
ttl_sec?: number | undefined;
|
|
1119
1119
|
send_invitation_email?: boolean | undefined;
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "status" | "
|
|
6604
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6605
6605
|
language: string;
|
|
6606
6606
|
}[];
|
|
6607
6607
|
outputFormat: "json";
|
|
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6639
6639
|
$get: {
|
|
6640
6640
|
input: {
|
|
6641
6641
|
param: {
|
|
6642
|
-
prompt: "status" | "
|
|
6642
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6643
6643
|
language: string;
|
|
6644
6644
|
};
|
|
6645
6645
|
} & {
|
|
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6661
6661
|
$put: {
|
|
6662
6662
|
input: {
|
|
6663
6663
|
param: {
|
|
6664
|
-
prompt: "status" | "
|
|
6664
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6665
6665
|
language: string;
|
|
6666
6666
|
};
|
|
6667
6667
|
} & {
|
|
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6685
6685
|
$delete: {
|
|
6686
6686
|
input: {
|
|
6687
6687
|
param: {
|
|
6688
|
-
prompt: "status" | "
|
|
6688
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6689
6689
|
language: string;
|
|
6690
6690
|
};
|
|
6691
6691
|
} & {
|
|
@@ -6777,7 +6777,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6777
6777
|
active?: boolean | undefined;
|
|
6778
6778
|
} | undefined;
|
|
6779
6779
|
signup?: {
|
|
6780
|
-
status?: "optional" | "
|
|
6780
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
6781
6781
|
verification?: {
|
|
6782
6782
|
active?: boolean | undefined;
|
|
6783
6783
|
} | undefined;
|
|
@@ -6794,7 +6794,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6794
6794
|
active?: boolean | undefined;
|
|
6795
6795
|
} | undefined;
|
|
6796
6796
|
signup?: {
|
|
6797
|
-
status?: "optional" | "
|
|
6797
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
6798
6798
|
} | undefined;
|
|
6799
6799
|
validation?: {
|
|
6800
6800
|
max_length?: number | undefined;
|
|
@@ -6811,7 +6811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6811
6811
|
active?: boolean | undefined;
|
|
6812
6812
|
} | undefined;
|
|
6813
6813
|
signup?: {
|
|
6814
|
-
status?: "optional" | "
|
|
6814
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
6815
6815
|
} | undefined;
|
|
6816
6816
|
} | undefined;
|
|
6817
6817
|
} | undefined;
|
|
@@ -6911,7 +6911,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6911
6911
|
active?: boolean | undefined;
|
|
6912
6912
|
} | undefined;
|
|
6913
6913
|
signup?: {
|
|
6914
|
-
status?: "optional" | "
|
|
6914
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
6915
6915
|
verification?: {
|
|
6916
6916
|
active?: boolean | undefined;
|
|
6917
6917
|
} | undefined;
|
|
@@ -6928,7 +6928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6928
6928
|
active?: boolean | undefined;
|
|
6929
6929
|
} | undefined;
|
|
6930
6930
|
signup?: {
|
|
6931
|
-
status?: "optional" | "
|
|
6931
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
6932
6932
|
} | undefined;
|
|
6933
6933
|
validation?: {
|
|
6934
6934
|
max_length?: number | undefined;
|
|
@@ -6945,7 +6945,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6945
6945
|
active?: boolean | undefined;
|
|
6946
6946
|
} | undefined;
|
|
6947
6947
|
signup?: {
|
|
6948
|
-
status?: "optional" | "
|
|
6948
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
6949
6949
|
} | undefined;
|
|
6950
6950
|
} | undefined;
|
|
6951
6951
|
} | undefined;
|
|
@@ -7060,7 +7060,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7060
7060
|
active?: boolean | undefined;
|
|
7061
7061
|
} | undefined;
|
|
7062
7062
|
signup?: {
|
|
7063
|
-
status?: "optional" | "
|
|
7063
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7064
7064
|
verification?: {
|
|
7065
7065
|
active?: boolean | undefined;
|
|
7066
7066
|
} | undefined;
|
|
@@ -7077,7 +7077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7077
7077
|
active?: boolean | undefined;
|
|
7078
7078
|
} | undefined;
|
|
7079
7079
|
signup?: {
|
|
7080
|
-
status?: "optional" | "
|
|
7080
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7081
7081
|
} | undefined;
|
|
7082
7082
|
validation?: {
|
|
7083
7083
|
max_length?: number | undefined;
|
|
@@ -7094,7 +7094,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7094
7094
|
active?: boolean | undefined;
|
|
7095
7095
|
} | undefined;
|
|
7096
7096
|
signup?: {
|
|
7097
|
-
status?: "optional" | "
|
|
7097
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7098
7098
|
} | undefined;
|
|
7099
7099
|
} | undefined;
|
|
7100
7100
|
} | undefined;
|
|
@@ -7239,7 +7239,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7239
7239
|
active?: boolean | undefined;
|
|
7240
7240
|
} | undefined;
|
|
7241
7241
|
signup?: {
|
|
7242
|
-
status?: "optional" | "
|
|
7242
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7243
7243
|
verification?: {
|
|
7244
7244
|
active?: boolean | undefined;
|
|
7245
7245
|
} | undefined;
|
|
@@ -7256,7 +7256,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7256
7256
|
active?: boolean | undefined;
|
|
7257
7257
|
} | undefined;
|
|
7258
7258
|
signup?: {
|
|
7259
|
-
status?: "optional" | "
|
|
7259
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7260
7260
|
} | undefined;
|
|
7261
7261
|
validation?: {
|
|
7262
7262
|
max_length?: number | undefined;
|
|
@@ -7273,7 +7273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7273
7273
|
active?: boolean | undefined;
|
|
7274
7274
|
} | undefined;
|
|
7275
7275
|
signup?: {
|
|
7276
|
-
status?: "optional" | "
|
|
7276
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7277
7277
|
} | undefined;
|
|
7278
7278
|
} | undefined;
|
|
7279
7279
|
} | undefined;
|
|
@@ -7397,7 +7397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7397
7397
|
active?: boolean | undefined;
|
|
7398
7398
|
} | undefined;
|
|
7399
7399
|
signup?: {
|
|
7400
|
-
status?: "optional" | "
|
|
7400
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7401
7401
|
verification?: {
|
|
7402
7402
|
active?: boolean | undefined;
|
|
7403
7403
|
} | undefined;
|
|
@@ -7414,7 +7414,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7414
7414
|
active?: boolean | undefined;
|
|
7415
7415
|
} | undefined;
|
|
7416
7416
|
signup?: {
|
|
7417
|
-
status?: "optional" | "
|
|
7417
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7418
7418
|
} | undefined;
|
|
7419
7419
|
validation?: {
|
|
7420
7420
|
max_length?: number | undefined;
|
|
@@ -7431,7 +7431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7431
7431
|
active?: boolean | undefined;
|
|
7432
7432
|
} | undefined;
|
|
7433
7433
|
signup?: {
|
|
7434
|
-
status?: "optional" | "
|
|
7434
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7435
7435
|
} | undefined;
|
|
7436
7436
|
} | undefined;
|
|
7437
7437
|
} | undefined;
|
|
@@ -7721,7 +7721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7721
7721
|
};
|
|
7722
7722
|
};
|
|
7723
7723
|
output: ({
|
|
7724
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7724
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7725
7725
|
enabled: boolean;
|
|
7726
7726
|
synchronous: boolean;
|
|
7727
7727
|
created_at: string;
|
|
@@ -7733,7 +7733,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7733
7733
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7734
7734
|
} | undefined;
|
|
7735
7735
|
} | {
|
|
7736
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7736
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7737
7737
|
enabled: boolean;
|
|
7738
7738
|
synchronous: boolean;
|
|
7739
7739
|
created_at: string;
|
|
@@ -7745,7 +7745,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7745
7745
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7746
7746
|
} | undefined;
|
|
7747
7747
|
} | {
|
|
7748
|
-
trigger_id: "post-user-
|
|
7748
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
7749
7749
|
enabled: boolean;
|
|
7750
7750
|
synchronous: boolean;
|
|
7751
7751
|
created_at: string;
|
|
@@ -7757,7 +7757,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7757
7757
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7758
7758
|
} | undefined;
|
|
7759
7759
|
} | {
|
|
7760
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7760
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
7761
7761
|
enabled: boolean;
|
|
7762
7762
|
synchronous: boolean;
|
|
7763
7763
|
created_at: string;
|
|
@@ -7773,7 +7773,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7773
7773
|
limit: number;
|
|
7774
7774
|
length: number;
|
|
7775
7775
|
hooks: ({
|
|
7776
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7776
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7777
7777
|
enabled: boolean;
|
|
7778
7778
|
synchronous: boolean;
|
|
7779
7779
|
created_at: string;
|
|
@@ -7785,7 +7785,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7785
7785
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7786
7786
|
} | undefined;
|
|
7787
7787
|
} | {
|
|
7788
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7788
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7789
7789
|
enabled: boolean;
|
|
7790
7790
|
synchronous: boolean;
|
|
7791
7791
|
created_at: string;
|
|
@@ -7797,7 +7797,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7797
7797
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7798
7798
|
} | undefined;
|
|
7799
7799
|
} | {
|
|
7800
|
-
trigger_id: "post-user-
|
|
7800
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
7801
7801
|
enabled: boolean;
|
|
7802
7802
|
synchronous: boolean;
|
|
7803
7803
|
created_at: string;
|
|
@@ -7809,7 +7809,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7809
7809
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7810
7810
|
} | undefined;
|
|
7811
7811
|
} | {
|
|
7812
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7812
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
7813
7813
|
enabled: boolean;
|
|
7814
7814
|
synchronous: boolean;
|
|
7815
7815
|
created_at: string;
|
|
@@ -7836,7 +7836,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7836
7836
|
};
|
|
7837
7837
|
} & {
|
|
7838
7838
|
json: {
|
|
7839
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7839
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7840
7840
|
url: string;
|
|
7841
7841
|
enabled?: boolean | undefined;
|
|
7842
7842
|
synchronous?: boolean | undefined;
|
|
@@ -7844,7 +7844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7844
7844
|
hook_id?: string | undefined;
|
|
7845
7845
|
metadata?: Record<string, unknown> | undefined;
|
|
7846
7846
|
} | {
|
|
7847
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7847
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7848
7848
|
form_id: string;
|
|
7849
7849
|
enabled?: boolean | undefined;
|
|
7850
7850
|
synchronous?: boolean | undefined;
|
|
@@ -7852,7 +7852,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7852
7852
|
hook_id?: string | undefined;
|
|
7853
7853
|
metadata?: Record<string, unknown> | undefined;
|
|
7854
7854
|
} | {
|
|
7855
|
-
trigger_id: "post-user-
|
|
7855
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
7856
7856
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
7857
7857
|
enabled?: boolean | undefined;
|
|
7858
7858
|
synchronous?: boolean | undefined;
|
|
@@ -7860,7 +7860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7860
7860
|
hook_id?: string | undefined;
|
|
7861
7861
|
metadata?: Record<string, unknown> | undefined;
|
|
7862
7862
|
} | {
|
|
7863
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7863
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
7864
7864
|
code_id: string;
|
|
7865
7865
|
enabled?: boolean | undefined;
|
|
7866
7866
|
synchronous?: boolean | undefined;
|
|
@@ -7870,7 +7870,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7870
7870
|
};
|
|
7871
7871
|
};
|
|
7872
7872
|
output: {
|
|
7873
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7873
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7874
7874
|
enabled: boolean;
|
|
7875
7875
|
synchronous: boolean;
|
|
7876
7876
|
created_at: string;
|
|
@@ -7882,7 +7882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7882
7882
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7883
7883
|
} | undefined;
|
|
7884
7884
|
} | {
|
|
7885
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7885
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7886
7886
|
enabled: boolean;
|
|
7887
7887
|
synchronous: boolean;
|
|
7888
7888
|
created_at: string;
|
|
@@ -7894,7 +7894,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7894
7894
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7895
7895
|
} | undefined;
|
|
7896
7896
|
} | {
|
|
7897
|
-
trigger_id: "post-user-
|
|
7897
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
7898
7898
|
enabled: boolean;
|
|
7899
7899
|
synchronous: boolean;
|
|
7900
7900
|
created_at: string;
|
|
@@ -7906,7 +7906,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7906
7906
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7907
7907
|
} | undefined;
|
|
7908
7908
|
} | {
|
|
7909
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7909
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
7910
7910
|
enabled: boolean;
|
|
7911
7911
|
synchronous: boolean;
|
|
7912
7912
|
created_at: string;
|
|
@@ -7952,7 +7952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7952
7952
|
json: unknown;
|
|
7953
7953
|
};
|
|
7954
7954
|
output: {
|
|
7955
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7955
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7956
7956
|
enabled: boolean;
|
|
7957
7957
|
synchronous: boolean;
|
|
7958
7958
|
created_at: string;
|
|
@@ -7964,7 +7964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7964
7964
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7965
7965
|
} | undefined;
|
|
7966
7966
|
} | {
|
|
7967
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7967
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
7968
7968
|
enabled: boolean;
|
|
7969
7969
|
synchronous: boolean;
|
|
7970
7970
|
created_at: string;
|
|
@@ -7976,7 +7976,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7976
7976
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7977
7977
|
} | undefined;
|
|
7978
7978
|
} | {
|
|
7979
|
-
trigger_id: "post-user-
|
|
7979
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
7980
7980
|
enabled: boolean;
|
|
7981
7981
|
synchronous: boolean;
|
|
7982
7982
|
created_at: string;
|
|
@@ -7988,7 +7988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7988
7988
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
7989
7989
|
} | undefined;
|
|
7990
7990
|
} | {
|
|
7991
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
7991
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
7992
7992
|
enabled: boolean;
|
|
7993
7993
|
synchronous: boolean;
|
|
7994
7994
|
created_at: string;
|
|
@@ -8030,7 +8030,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8030
8030
|
};
|
|
8031
8031
|
};
|
|
8032
8032
|
output: {
|
|
8033
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8033
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8034
8034
|
enabled: boolean;
|
|
8035
8035
|
synchronous: boolean;
|
|
8036
8036
|
created_at: string;
|
|
@@ -8042,7 +8042,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8042
8042
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8043
8043
|
} | undefined;
|
|
8044
8044
|
} | {
|
|
8045
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8045
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
8046
8046
|
enabled: boolean;
|
|
8047
8047
|
synchronous: boolean;
|
|
8048
8048
|
created_at: string;
|
|
@@ -8054,7 +8054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8054
8054
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8055
8055
|
} | undefined;
|
|
8056
8056
|
} | {
|
|
8057
|
-
trigger_id: "post-user-
|
|
8057
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
8058
8058
|
enabled: boolean;
|
|
8059
8059
|
synchronous: boolean;
|
|
8060
8060
|
created_at: string;
|
|
@@ -8066,7 +8066,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8066
8066
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8067
8067
|
} | undefined;
|
|
8068
8068
|
} | {
|
|
8069
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
8069
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
8070
8070
|
enabled: boolean;
|
|
8071
8071
|
synchronous: boolean;
|
|
8072
8072
|
created_at: string;
|
|
@@ -8126,7 +8126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8126
8126
|
log_type: string;
|
|
8127
8127
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8128
8128
|
actor: {
|
|
8129
|
-
type: "
|
|
8129
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8130
8130
|
id?: string | undefined;
|
|
8131
8131
|
email?: string | undefined;
|
|
8132
8132
|
org_id?: string | undefined;
|
|
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8774
8774
|
};
|
|
8775
8775
|
};
|
|
8776
8776
|
output: {
|
|
8777
|
-
type: "fn" | "i" | "
|
|
8777
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "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";
|
|
8778
8778
|
date: string;
|
|
8779
8779
|
isMobile: boolean;
|
|
8780
8780
|
log_id: string;
|
|
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8813
8813
|
limit: number;
|
|
8814
8814
|
length: number;
|
|
8815
8815
|
logs: {
|
|
8816
|
-
type: "fn" | "i" | "
|
|
8816
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "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";
|
|
8817
8817
|
date: string;
|
|
8818
8818
|
isMobile: boolean;
|
|
8819
8819
|
log_id: string;
|
|
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8867
8867
|
};
|
|
8868
8868
|
};
|
|
8869
8869
|
output: {
|
|
8870
|
-
type: "fn" | "i" | "
|
|
8870
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "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";
|
|
8871
8871
|
date: string;
|
|
8872
8872
|
isMobile: boolean;
|
|
8873
8873
|
log_id: string;
|
|
@@ -9181,7 +9181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9181
9181
|
addons?: {
|
|
9182
9182
|
[x: string]: any;
|
|
9183
9183
|
} | undefined;
|
|
9184
|
-
token_endpoint_auth_method?: "
|
|
9184
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9185
9185
|
client_metadata?: {
|
|
9186
9186
|
[x: string]: string;
|
|
9187
9187
|
} | undefined;
|
|
@@ -9277,7 +9277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9277
9277
|
addons?: {
|
|
9278
9278
|
[x: string]: any;
|
|
9279
9279
|
} | undefined;
|
|
9280
|
-
token_endpoint_auth_method?: "
|
|
9280
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9281
9281
|
client_metadata?: {
|
|
9282
9282
|
[x: string]: string;
|
|
9283
9283
|
} | undefined;
|
|
@@ -9388,7 +9388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9388
9388
|
addons?: {
|
|
9389
9389
|
[x: string]: any;
|
|
9390
9390
|
} | undefined;
|
|
9391
|
-
token_endpoint_auth_method?: "
|
|
9391
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9392
9392
|
client_metadata?: {
|
|
9393
9393
|
[x: string]: string;
|
|
9394
9394
|
} | undefined;
|
|
@@ -9498,7 +9498,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9498
9498
|
custom_login_page_preview?: string | undefined;
|
|
9499
9499
|
form_template?: string | undefined;
|
|
9500
9500
|
addons?: Record<string, any> | undefined;
|
|
9501
|
-
token_endpoint_auth_method?: "
|
|
9501
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9502
9502
|
client_metadata?: Record<string, string> | undefined;
|
|
9503
9503
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9504
9504
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9578,7 +9578,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9578
9578
|
addons?: {
|
|
9579
9579
|
[x: string]: any;
|
|
9580
9580
|
} | undefined;
|
|
9581
|
-
token_endpoint_auth_method?: "
|
|
9581
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9582
9582
|
client_metadata?: {
|
|
9583
9583
|
[x: string]: string;
|
|
9584
9584
|
} | undefined;
|
|
@@ -9667,7 +9667,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9667
9667
|
custom_login_page_preview?: string | undefined;
|
|
9668
9668
|
form_template?: string | undefined;
|
|
9669
9669
|
addons?: Record<string, any> | undefined;
|
|
9670
|
-
token_endpoint_auth_method?: "
|
|
9670
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9671
9671
|
client_metadata?: Record<string, string> | undefined;
|
|
9672
9672
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9673
9673
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9747,7 +9747,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9747
9747
|
addons?: {
|
|
9748
9748
|
[x: string]: any;
|
|
9749
9749
|
} | undefined;
|
|
9750
|
-
token_endpoint_auth_method?: "
|
|
9750
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9751
9751
|
client_metadata?: {
|
|
9752
9752
|
[x: string]: string;
|
|
9753
9753
|
} | undefined;
|
|
@@ -9869,7 +9869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9869
9869
|
active?: boolean | undefined;
|
|
9870
9870
|
} | undefined;
|
|
9871
9871
|
signup?: {
|
|
9872
|
-
status?: "optional" | "
|
|
9872
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9873
9873
|
verification?: {
|
|
9874
9874
|
active?: boolean | undefined;
|
|
9875
9875
|
} | undefined;
|
|
@@ -9886,7 +9886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9886
9886
|
active?: boolean | undefined;
|
|
9887
9887
|
} | undefined;
|
|
9888
9888
|
signup?: {
|
|
9889
|
-
status?: "optional" | "
|
|
9889
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9890
9890
|
} | undefined;
|
|
9891
9891
|
validation?: {
|
|
9892
9892
|
max_length?: number | undefined;
|
|
@@ -9903,7 +9903,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9903
9903
|
active?: boolean | undefined;
|
|
9904
9904
|
} | undefined;
|
|
9905
9905
|
signup?: {
|
|
9906
|
-
status?: "optional" | "
|
|
9906
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
9907
9907
|
} | undefined;
|
|
9908
9908
|
} | undefined;
|
|
9909
9909
|
} | undefined;
|
|
@@ -10023,7 +10023,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10023
10023
|
active?: boolean | undefined;
|
|
10024
10024
|
} | undefined;
|
|
10025
10025
|
signup?: {
|
|
10026
|
-
status?: "optional" | "
|
|
10026
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10027
10027
|
verification?: {
|
|
10028
10028
|
active?: boolean | undefined;
|
|
10029
10029
|
} | undefined;
|
|
@@ -10040,7 +10040,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10040
10040
|
active?: boolean | undefined;
|
|
10041
10041
|
} | undefined;
|
|
10042
10042
|
signup?: {
|
|
10043
|
-
status?: "optional" | "
|
|
10043
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10044
10044
|
} | undefined;
|
|
10045
10045
|
validation?: {
|
|
10046
10046
|
max_length?: number | undefined;
|
|
@@ -10057,7 +10057,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10057
10057
|
active?: boolean | undefined;
|
|
10058
10058
|
} | undefined;
|
|
10059
10059
|
signup?: {
|
|
10060
|
-
status?: "optional" | "
|
|
10060
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10061
10061
|
} | undefined;
|
|
10062
10062
|
} | undefined;
|
|
10063
10063
|
} | undefined;
|
|
@@ -11011,7 +11011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11011
11011
|
};
|
|
11012
11012
|
};
|
|
11013
11013
|
output: {
|
|
11014
|
-
type: "fn" | "i" | "
|
|
11014
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "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";
|
|
11015
11015
|
date: string;
|
|
11016
11016
|
isMobile: boolean;
|
|
11017
11017
|
log_id: string;
|
|
@@ -11050,7 +11050,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11050
11050
|
limit: number;
|
|
11051
11051
|
length: number;
|
|
11052
11052
|
logs: {
|
|
11053
|
-
type: "fn" | "i" | "
|
|
11053
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "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";
|
|
11054
11054
|
date: string;
|
|
11055
11055
|
isMobile: boolean;
|
|
11056
11056
|
log_id: string;
|
|
@@ -11365,7 +11365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11365
11365
|
};
|
|
11366
11366
|
} & {
|
|
11367
11367
|
json: {
|
|
11368
|
-
template: "
|
|
11368
|
+
template: "change_password" | "verify_email" | "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";
|
|
11369
11369
|
body: string;
|
|
11370
11370
|
from: string;
|
|
11371
11371
|
subject: string;
|
|
@@ -11386,7 +11386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11386
11386
|
};
|
|
11387
11387
|
} & {
|
|
11388
11388
|
json: {
|
|
11389
|
-
template: "
|
|
11389
|
+
template: "change_password" | "verify_email" | "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";
|
|
11390
11390
|
body: string;
|
|
11391
11391
|
from: string;
|
|
11392
11392
|
subject: string;
|
|
@@ -11398,7 +11398,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11398
11398
|
};
|
|
11399
11399
|
};
|
|
11400
11400
|
output: {
|
|
11401
|
-
template: "
|
|
11401
|
+
template: "change_password" | "verify_email" | "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";
|
|
11402
11402
|
body: string;
|
|
11403
11403
|
from: string;
|
|
11404
11404
|
subject: string;
|
|
@@ -11417,7 +11417,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11417
11417
|
$get: {
|
|
11418
11418
|
input: {
|
|
11419
11419
|
param: {
|
|
11420
|
-
templateName: "
|
|
11420
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11421
11421
|
};
|
|
11422
11422
|
} & {
|
|
11423
11423
|
header: {
|
|
@@ -11430,7 +11430,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11430
11430
|
} | {
|
|
11431
11431
|
input: {
|
|
11432
11432
|
param: {
|
|
11433
|
-
templateName: "
|
|
11433
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11434
11434
|
};
|
|
11435
11435
|
} & {
|
|
11436
11436
|
header: {
|
|
@@ -11438,7 +11438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11438
11438
|
};
|
|
11439
11439
|
};
|
|
11440
11440
|
output: {
|
|
11441
|
-
template: "
|
|
11441
|
+
template: "change_password" | "verify_email" | "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";
|
|
11442
11442
|
body: string;
|
|
11443
11443
|
from: string;
|
|
11444
11444
|
subject: string;
|
|
@@ -11457,7 +11457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11457
11457
|
$put: {
|
|
11458
11458
|
input: {
|
|
11459
11459
|
param: {
|
|
11460
|
-
templateName: "
|
|
11460
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11461
11461
|
};
|
|
11462
11462
|
} & {
|
|
11463
11463
|
header: {
|
|
@@ -11465,7 +11465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11465
11465
|
};
|
|
11466
11466
|
} & {
|
|
11467
11467
|
json: {
|
|
11468
|
-
template: "
|
|
11468
|
+
template: "change_password" | "verify_email" | "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";
|
|
11469
11469
|
body: string;
|
|
11470
11470
|
from: string;
|
|
11471
11471
|
subject: string;
|
|
@@ -11477,7 +11477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11477
11477
|
};
|
|
11478
11478
|
};
|
|
11479
11479
|
output: {
|
|
11480
|
-
template: "
|
|
11480
|
+
template: "change_password" | "verify_email" | "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";
|
|
11481
11481
|
body: string;
|
|
11482
11482
|
from: string;
|
|
11483
11483
|
subject: string;
|
|
@@ -11496,7 +11496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11496
11496
|
$patch: {
|
|
11497
11497
|
input: {
|
|
11498
11498
|
param: {
|
|
11499
|
-
templateName: "
|
|
11499
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11500
11500
|
};
|
|
11501
11501
|
} & {
|
|
11502
11502
|
header: {
|
|
@@ -11504,7 +11504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11504
11504
|
};
|
|
11505
11505
|
} & {
|
|
11506
11506
|
json: {
|
|
11507
|
-
template?: "
|
|
11507
|
+
template?: "change_password" | "verify_email" | "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;
|
|
11508
11508
|
body?: string | undefined;
|
|
11509
11509
|
from?: string | undefined;
|
|
11510
11510
|
subject?: string | undefined;
|
|
@@ -11521,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11521
11521
|
} | {
|
|
11522
11522
|
input: {
|
|
11523
11523
|
param: {
|
|
11524
|
-
templateName: "
|
|
11524
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
11525
11525
|
};
|
|
11526
11526
|
} & {
|
|
11527
11527
|
header: {
|
|
@@ -11529,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11529
11529
|
};
|
|
11530
11530
|
} & {
|
|
11531
11531
|
json: {
|
|
11532
|
-
template?: "
|
|
11532
|
+
template?: "change_password" | "verify_email" | "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;
|
|
11533
11533
|
body?: string | undefined;
|
|
11534
11534
|
from?: string | undefined;
|
|
11535
11535
|
subject?: string | undefined;
|
|
@@ -11541,7 +11541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11541
11541
|
};
|
|
11542
11542
|
};
|
|
11543
11543
|
output: {
|
|
11544
|
-
template: "
|
|
11544
|
+
template: "change_password" | "verify_email" | "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";
|
|
11545
11545
|
body: string;
|
|
11546
11546
|
from: string;
|
|
11547
11547
|
subject: string;
|
|
@@ -11816,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11816
11816
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11817
11817
|
custom_domain_id: string;
|
|
11818
11818
|
primary: boolean;
|
|
11819
|
-
status: "
|
|
11819
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11820
11820
|
verification_method?: "txt" | undefined;
|
|
11821
11821
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11822
11822
|
domain_metadata?: {
|
|
@@ -11857,7 +11857,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11857
11857
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11858
11858
|
custom_domain_id: string;
|
|
11859
11859
|
primary: boolean;
|
|
11860
|
-
status: "
|
|
11860
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11861
11861
|
verification_method?: "txt" | undefined;
|
|
11862
11862
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11863
11863
|
domain_metadata?: {
|
|
@@ -11918,7 +11918,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11918
11918
|
domain_metadata?: Record<string, string> | undefined;
|
|
11919
11919
|
custom_domain_id?: string | undefined;
|
|
11920
11920
|
primary?: boolean | undefined;
|
|
11921
|
-
status?: "
|
|
11921
|
+
status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
|
|
11922
11922
|
origin_domain_name?: string | undefined;
|
|
11923
11923
|
verification?: {
|
|
11924
11924
|
methods: ({
|
|
@@ -11939,7 +11939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11939
11939
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11940
11940
|
custom_domain_id: string;
|
|
11941
11941
|
primary: boolean;
|
|
11942
|
-
status: "
|
|
11942
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11943
11943
|
verification_method?: "txt" | undefined;
|
|
11944
11944
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11945
11945
|
domain_metadata?: {
|
|
@@ -11986,7 +11986,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11986
11986
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11987
11987
|
custom_domain_id: string;
|
|
11988
11988
|
primary: boolean;
|
|
11989
|
-
status: "
|
|
11989
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11990
11990
|
verification_method?: "txt" | undefined;
|
|
11991
11991
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11992
11992
|
domain_metadata?: {
|
|
@@ -12027,7 +12027,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12027
12027
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12028
12028
|
custom_domain_id: string;
|
|
12029
12029
|
primary: boolean;
|
|
12030
|
-
status: "
|
|
12030
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12031
12031
|
verification_method?: "txt" | undefined;
|
|
12032
12032
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12033
12033
|
domain_metadata?: {
|
|
@@ -12587,7 +12587,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12587
12587
|
output: {
|
|
12588
12588
|
id: string;
|
|
12589
12589
|
trigger_id: string;
|
|
12590
|
-
status: "
|
|
12590
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
12591
12591
|
results: {
|
|
12592
12592
|
action_name: string;
|
|
12593
12593
|
error: {
|
|
@@ -12634,7 +12634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12634
12634
|
logs: {
|
|
12635
12635
|
action_name: string;
|
|
12636
12636
|
lines: {
|
|
12637
|
-
level: "error" | "log" | "
|
|
12637
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
12638
12638
|
message: string;
|
|
12639
12639
|
}[];
|
|
12640
12640
|
}[];
|
|
@@ -13301,7 +13301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13301
13301
|
args: import("hono/utils/types").JSONValue[];
|
|
13302
13302
|
}[];
|
|
13303
13303
|
logs: {
|
|
13304
|
-
level: "error" | "log" | "
|
|
13304
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13305
13305
|
message: string;
|
|
13306
13306
|
}[];
|
|
13307
13307
|
error?: string | undefined;
|