authhero 8.20.0 → 8.21.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 +136 -136
- package/dist/authhero.d.ts +182 -115
- package/dist/authhero.mjs +14055 -16300
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/index.d.ts +182 -115
- package/dist/types/routes/auth-api/index.d.ts +28 -28
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +3 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +24 -8
- package/dist/types/routes/management-api/clients.d.ts +14 -13
- package/dist/types/routes/management-api/connections.d.ts +16 -15
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +1 -0
- package/dist/types/routes/management-api/forms.d.ts +1 -0
- package/dist/types/routes/management-api/grants.d.ts +1 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +1 -0
- package/dist/types/routes/management-api/index.d.ts +152 -85
- package/dist/types/routes/management-api/logs.d.ts +4 -3
- package/dist/types/routes/management-api/organizations.d.ts +37 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
- package/dist/types/routes/management-api/roles.d.ts +2 -0
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +7 -2
- package/dist/types/routes/universal-login/common.d.ts +8 -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/package.json +5 -5
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -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
|
};
|
|
@@ -554,6 +554,39 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
554
554
|
} | undefined;
|
|
555
555
|
}[];
|
|
556
556
|
total?: number | undefined;
|
|
557
|
+
next?: string | undefined;
|
|
558
|
+
} | {
|
|
559
|
+
organizations: {
|
|
560
|
+
created_at: string;
|
|
561
|
+
updated_at: string;
|
|
562
|
+
id: string;
|
|
563
|
+
name: string;
|
|
564
|
+
display_name?: string | undefined;
|
|
565
|
+
branding?: {
|
|
566
|
+
logo_url?: string | undefined;
|
|
567
|
+
colors?: {
|
|
568
|
+
primary?: string | undefined;
|
|
569
|
+
page_background?: string | undefined;
|
|
570
|
+
} | undefined;
|
|
571
|
+
} | undefined;
|
|
572
|
+
metadata?: {
|
|
573
|
+
[x: string]: any;
|
|
574
|
+
} | undefined;
|
|
575
|
+
enabled_connections?: {
|
|
576
|
+
connection_id: string;
|
|
577
|
+
assign_membership_on_login: boolean;
|
|
578
|
+
show_as_button: boolean;
|
|
579
|
+
is_signup_enabled: boolean;
|
|
580
|
+
}[] | undefined;
|
|
581
|
+
token_quota?: {
|
|
582
|
+
client_credentials?: {
|
|
583
|
+
enforce: boolean;
|
|
584
|
+
per_day: number;
|
|
585
|
+
per_hour: number;
|
|
586
|
+
} | undefined;
|
|
587
|
+
} | undefined;
|
|
588
|
+
}[];
|
|
589
|
+
next?: string | undefined;
|
|
557
590
|
};
|
|
558
591
|
outputFormat: "json";
|
|
559
592
|
status: 200;
|
|
@@ -1170,10 +1203,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1170
1203
|
email?: string | undefined;
|
|
1171
1204
|
};
|
|
1172
1205
|
id?: string | undefined;
|
|
1173
|
-
app_metadata?: Record<string, any> | undefined;
|
|
1174
|
-
user_metadata?: Record<string, any> | undefined;
|
|
1175
1206
|
connection_id?: string | undefined;
|
|
1176
1207
|
roles?: string[] | undefined;
|
|
1208
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1209
|
+
user_metadata?: Record<string, any> | undefined;
|
|
1177
1210
|
ttl_sec?: number | undefined;
|
|
1178
1211
|
send_invitation_email?: boolean | undefined;
|
|
1179
1212
|
};
|
|
@@ -1274,6 +1307,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1274
1307
|
updated_at?: string | undefined;
|
|
1275
1308
|
}[];
|
|
1276
1309
|
total?: number | undefined;
|
|
1310
|
+
next?: string | undefined;
|
|
1277
1311
|
};
|
|
1278
1312
|
outputFormat: "json";
|
|
1279
1313
|
status: 200;
|
|
@@ -1357,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1357
1391
|
};
|
|
1358
1392
|
} & {
|
|
1359
1393
|
json: {
|
|
1360
|
-
show_as_button?: boolean | undefined;
|
|
1361
1394
|
assign_membership_on_login?: boolean | undefined;
|
|
1395
|
+
show_as_button?: boolean | undefined;
|
|
1362
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1363
1397
|
};
|
|
1364
1398
|
};
|
|
@@ -1486,6 +1520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1486
1520
|
updated_at?: string | undefined;
|
|
1487
1521
|
}[];
|
|
1488
1522
|
total?: number | undefined;
|
|
1523
|
+
next?: string | undefined;
|
|
1489
1524
|
};
|
|
1490
1525
|
outputFormat: "json";
|
|
1491
1526
|
status: 200;
|
|
@@ -1757,6 +1792,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1757
1792
|
updated_at?: string | undefined;
|
|
1758
1793
|
}[];
|
|
1759
1794
|
total?: number | undefined;
|
|
1795
|
+
next?: string | undefined;
|
|
1760
1796
|
};
|
|
1761
1797
|
outputFormat: "json";
|
|
1762
1798
|
status: 200;
|
|
@@ -1912,6 +1948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1912
1948
|
created_at: string;
|
|
1913
1949
|
}[];
|
|
1914
1950
|
total?: number | undefined;
|
|
1951
|
+
next?: string | undefined;
|
|
1915
1952
|
};
|
|
1916
1953
|
outputFormat: "json";
|
|
1917
1954
|
status: 200;
|
|
@@ -2089,6 +2126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2089
2126
|
id: string;
|
|
2090
2127
|
}[];
|
|
2091
2128
|
total?: number | undefined;
|
|
2129
|
+
next?: string | undefined;
|
|
2092
2130
|
};
|
|
2093
2131
|
outputFormat: "json";
|
|
2094
2132
|
status: 200;
|
|
@@ -3617,6 +3655,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3617
3655
|
} | undefined;
|
|
3618
3656
|
}[];
|
|
3619
3657
|
total?: number | undefined;
|
|
3658
|
+
next?: string | undefined;
|
|
3620
3659
|
};
|
|
3621
3660
|
outputFormat: "json";
|
|
3622
3661
|
status: 200;
|
|
@@ -6828,7 +6867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6867
|
};
|
|
6829
6868
|
};
|
|
6830
6869
|
output: {
|
|
6831
|
-
prompt: "status" | "
|
|
6870
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6832
6871
|
language: string;
|
|
6833
6872
|
}[];
|
|
6834
6873
|
outputFormat: "json";
|
|
@@ -6866,7 +6905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6905
|
$get: {
|
|
6867
6906
|
input: {
|
|
6868
6907
|
param: {
|
|
6869
|
-
prompt: "status" | "
|
|
6908
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6870
6909
|
language: string;
|
|
6871
6910
|
};
|
|
6872
6911
|
} & {
|
|
@@ -6888,7 +6927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6927
|
$put: {
|
|
6889
6928
|
input: {
|
|
6890
6929
|
param: {
|
|
6891
|
-
prompt: "status" | "
|
|
6930
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6892
6931
|
language: string;
|
|
6893
6932
|
};
|
|
6894
6933
|
} & {
|
|
@@ -6912,7 +6951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6951
|
$delete: {
|
|
6913
6952
|
input: {
|
|
6914
6953
|
param: {
|
|
6915
|
-
prompt: "status" | "
|
|
6954
|
+
prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6916
6955
|
language: string;
|
|
6917
6956
|
};
|
|
6918
6957
|
} & {
|
|
@@ -7004,7 +7043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7004
7043
|
active?: boolean | undefined;
|
|
7005
7044
|
} | undefined;
|
|
7006
7045
|
signup?: {
|
|
7007
|
-
status?: "
|
|
7046
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7008
7047
|
verification?: {
|
|
7009
7048
|
active?: boolean | undefined;
|
|
7010
7049
|
} | undefined;
|
|
@@ -7021,7 +7060,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7060
|
active?: boolean | undefined;
|
|
7022
7061
|
} | undefined;
|
|
7023
7062
|
signup?: {
|
|
7024
|
-
status?: "
|
|
7063
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7025
7064
|
} | undefined;
|
|
7026
7065
|
validation?: {
|
|
7027
7066
|
max_length?: number | undefined;
|
|
@@ -7038,7 +7077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7038
7077
|
active?: boolean | undefined;
|
|
7039
7078
|
} | undefined;
|
|
7040
7079
|
signup?: {
|
|
7041
|
-
status?: "
|
|
7080
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7042
7081
|
} | undefined;
|
|
7043
7082
|
} | undefined;
|
|
7044
7083
|
} | undefined;
|
|
@@ -7138,7 +7177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7138
7177
|
active?: boolean | undefined;
|
|
7139
7178
|
} | undefined;
|
|
7140
7179
|
signup?: {
|
|
7141
|
-
status?: "
|
|
7180
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7142
7181
|
verification?: {
|
|
7143
7182
|
active?: boolean | undefined;
|
|
7144
7183
|
} | undefined;
|
|
@@ -7155,7 +7194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7155
7194
|
active?: boolean | undefined;
|
|
7156
7195
|
} | undefined;
|
|
7157
7196
|
signup?: {
|
|
7158
|
-
status?: "
|
|
7197
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7159
7198
|
} | undefined;
|
|
7160
7199
|
validation?: {
|
|
7161
7200
|
max_length?: number | undefined;
|
|
@@ -7172,7 +7211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7172
7211
|
active?: boolean | undefined;
|
|
7173
7212
|
} | undefined;
|
|
7174
7213
|
signup?: {
|
|
7175
|
-
status?: "
|
|
7214
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7176
7215
|
} | undefined;
|
|
7177
7216
|
} | undefined;
|
|
7178
7217
|
} | undefined;
|
|
@@ -7211,6 +7250,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7211
7250
|
is_system?: boolean | undefined;
|
|
7212
7251
|
}[];
|
|
7213
7252
|
total?: number | undefined;
|
|
7253
|
+
next?: string | undefined;
|
|
7214
7254
|
};
|
|
7215
7255
|
outputFormat: "json";
|
|
7216
7256
|
status: 200;
|
|
@@ -7287,7 +7327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7287
7327
|
active?: boolean | undefined;
|
|
7288
7328
|
} | undefined;
|
|
7289
7329
|
signup?: {
|
|
7290
|
-
status?: "
|
|
7330
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7291
7331
|
verification?: {
|
|
7292
7332
|
active?: boolean | undefined;
|
|
7293
7333
|
} | undefined;
|
|
@@ -7304,7 +7344,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7304
7344
|
active?: boolean | undefined;
|
|
7305
7345
|
} | undefined;
|
|
7306
7346
|
signup?: {
|
|
7307
|
-
status?: "
|
|
7347
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7308
7348
|
} | undefined;
|
|
7309
7349
|
validation?: {
|
|
7310
7350
|
max_length?: number | undefined;
|
|
@@ -7321,7 +7361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7321
7361
|
active?: boolean | undefined;
|
|
7322
7362
|
} | undefined;
|
|
7323
7363
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7364
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7325
7365
|
} | undefined;
|
|
7326
7366
|
} | undefined;
|
|
7327
7367
|
} | undefined;
|
|
@@ -7466,7 +7506,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7466
7506
|
active?: boolean | undefined;
|
|
7467
7507
|
} | undefined;
|
|
7468
7508
|
signup?: {
|
|
7469
|
-
status?: "
|
|
7509
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7470
7510
|
verification?: {
|
|
7471
7511
|
active?: boolean | undefined;
|
|
7472
7512
|
} | undefined;
|
|
@@ -7483,7 +7523,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7483
7523
|
active?: boolean | undefined;
|
|
7484
7524
|
} | undefined;
|
|
7485
7525
|
signup?: {
|
|
7486
|
-
status?: "
|
|
7526
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7487
7527
|
} | undefined;
|
|
7488
7528
|
validation?: {
|
|
7489
7529
|
max_length?: number | undefined;
|
|
@@ -7500,7 +7540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7500
7540
|
active?: boolean | undefined;
|
|
7501
7541
|
} | undefined;
|
|
7502
7542
|
signup?: {
|
|
7503
|
-
status?: "
|
|
7543
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7504
7544
|
} | undefined;
|
|
7505
7545
|
} | undefined;
|
|
7506
7546
|
} | undefined;
|
|
@@ -7624,7 +7664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7624
7664
|
active?: boolean | undefined;
|
|
7625
7665
|
} | undefined;
|
|
7626
7666
|
signup?: {
|
|
7627
|
-
status?: "
|
|
7667
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7628
7668
|
verification?: {
|
|
7629
7669
|
active?: boolean | undefined;
|
|
7630
7670
|
} | undefined;
|
|
@@ -7641,7 +7681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7641
7681
|
active?: boolean | undefined;
|
|
7642
7682
|
} | undefined;
|
|
7643
7683
|
signup?: {
|
|
7644
|
-
status?: "
|
|
7684
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7645
7685
|
} | undefined;
|
|
7646
7686
|
validation?: {
|
|
7647
7687
|
max_length?: number | undefined;
|
|
@@ -7658,7 +7698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7658
7698
|
active?: boolean | undefined;
|
|
7659
7699
|
} | undefined;
|
|
7660
7700
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7701
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7662
7702
|
} | undefined;
|
|
7663
7703
|
} | undefined;
|
|
7664
7704
|
} | undefined;
|
|
@@ -8049,6 +8089,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8049
8089
|
} | undefined;
|
|
8050
8090
|
})[];
|
|
8051
8091
|
total?: number | undefined;
|
|
8092
|
+
next?: string | undefined;
|
|
8052
8093
|
};
|
|
8053
8094
|
outputFormat: "json";
|
|
8054
8095
|
status: 200;
|
|
@@ -9063,7 +9104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9104
|
};
|
|
9064
9105
|
};
|
|
9065
9106
|
output: {
|
|
9066
|
-
type: "
|
|
9107
|
+
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";
|
|
9067
9108
|
date: string;
|
|
9068
9109
|
isMobile: boolean;
|
|
9069
9110
|
log_id: string;
|
|
@@ -9102,7 +9143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9102
9143
|
limit: number;
|
|
9103
9144
|
length: number;
|
|
9104
9145
|
logs: {
|
|
9105
|
-
type: "
|
|
9146
|
+
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";
|
|
9106
9147
|
date: string;
|
|
9107
9148
|
isMobile: boolean;
|
|
9108
9149
|
log_id: string;
|
|
@@ -9138,6 +9179,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9138
9179
|
} | undefined;
|
|
9139
9180
|
}[];
|
|
9140
9181
|
total?: number | undefined;
|
|
9182
|
+
next?: string | undefined;
|
|
9141
9183
|
};
|
|
9142
9184
|
outputFormat: "json";
|
|
9143
9185
|
status: 200;
|
|
@@ -9156,7 +9198,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9156
9198
|
};
|
|
9157
9199
|
};
|
|
9158
9200
|
output: {
|
|
9159
|
-
type: "
|
|
9201
|
+
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";
|
|
9160
9202
|
date: string;
|
|
9161
9203
|
isMobile: boolean;
|
|
9162
9204
|
log_id: string;
|
|
@@ -9259,6 +9301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9259
9301
|
audience?: string | undefined;
|
|
9260
9302
|
}[];
|
|
9261
9303
|
total?: number | undefined;
|
|
9304
|
+
next?: string | undefined;
|
|
9262
9305
|
};
|
|
9263
9306
|
outputFormat: "json";
|
|
9264
9307
|
status: 200;
|
|
@@ -9311,7 +9354,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9311
9354
|
audience?: string | undefined;
|
|
9312
9355
|
client_id?: string | undefined;
|
|
9313
9356
|
allow_any_organization?: string | undefined;
|
|
9314
|
-
subject_type?: "
|
|
9357
|
+
subject_type?: "client" | "user" | undefined;
|
|
9315
9358
|
};
|
|
9316
9359
|
} & {
|
|
9317
9360
|
header: {
|
|
@@ -9326,7 +9369,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9326
9369
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9327
9370
|
allow_any_organization?: boolean | undefined;
|
|
9328
9371
|
is_system?: boolean | undefined;
|
|
9329
|
-
subject_type?: "
|
|
9372
|
+
subject_type?: "client" | "user" | undefined;
|
|
9330
9373
|
authorization_details_types?: string[] | undefined;
|
|
9331
9374
|
created_at?: string | undefined;
|
|
9332
9375
|
updated_at?: string | undefined;
|
|
@@ -9342,12 +9385,28 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9342
9385
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9343
9386
|
allow_any_organization?: boolean | undefined;
|
|
9344
9387
|
is_system?: boolean | undefined;
|
|
9345
|
-
subject_type?: "
|
|
9388
|
+
subject_type?: "client" | "user" | undefined;
|
|
9346
9389
|
authorization_details_types?: string[] | undefined;
|
|
9347
9390
|
created_at?: string | undefined;
|
|
9348
9391
|
updated_at?: string | undefined;
|
|
9349
9392
|
}[];
|
|
9350
9393
|
total?: number | undefined;
|
|
9394
|
+
next?: string | undefined;
|
|
9395
|
+
} | {
|
|
9396
|
+
client_grants: {
|
|
9397
|
+
id: string;
|
|
9398
|
+
client_id: string;
|
|
9399
|
+
audience: string;
|
|
9400
|
+
scope?: string[] | undefined;
|
|
9401
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9402
|
+
allow_any_organization?: boolean | undefined;
|
|
9403
|
+
is_system?: boolean | undefined;
|
|
9404
|
+
subject_type?: "client" | "user" | undefined;
|
|
9405
|
+
authorization_details_types?: string[] | undefined;
|
|
9406
|
+
created_at?: string | undefined;
|
|
9407
|
+
updated_at?: string | undefined;
|
|
9408
|
+
}[];
|
|
9409
|
+
next?: string | undefined;
|
|
9351
9410
|
};
|
|
9352
9411
|
outputFormat: "json";
|
|
9353
9412
|
status: 200;
|
|
@@ -9373,7 +9432,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9373
9432
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9374
9433
|
allow_any_organization?: boolean | undefined;
|
|
9375
9434
|
is_system?: boolean | undefined;
|
|
9376
|
-
subject_type?: "
|
|
9435
|
+
subject_type?: "client" | "user" | undefined;
|
|
9377
9436
|
authorization_details_types?: string[] | undefined;
|
|
9378
9437
|
created_at?: string | undefined;
|
|
9379
9438
|
updated_at?: string | undefined;
|
|
@@ -9418,7 +9477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9418
9477
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9419
9478
|
allow_any_organization?: boolean | undefined;
|
|
9420
9479
|
is_system?: boolean | undefined;
|
|
9421
|
-
subject_type?: "
|
|
9480
|
+
subject_type?: "client" | "user" | undefined;
|
|
9422
9481
|
authorization_details_types?: string[] | undefined;
|
|
9423
9482
|
};
|
|
9424
9483
|
};
|
|
@@ -9430,7 +9489,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9430
9489
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9431
9490
|
allow_any_organization?: boolean | undefined;
|
|
9432
9491
|
is_system?: boolean | undefined;
|
|
9433
|
-
subject_type?: "
|
|
9492
|
+
subject_type?: "client" | "user" | undefined;
|
|
9434
9493
|
authorization_details_types?: string[] | undefined;
|
|
9435
9494
|
created_at?: string | undefined;
|
|
9436
9495
|
updated_at?: string | undefined;
|
|
@@ -9454,7 +9513,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9454
9513
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9455
9514
|
allow_any_organization?: boolean | undefined;
|
|
9456
9515
|
is_system?: boolean | undefined;
|
|
9457
|
-
subject_type?: "
|
|
9516
|
+
subject_type?: "client" | "user" | undefined;
|
|
9458
9517
|
authorization_details_types?: string[] | undefined;
|
|
9459
9518
|
};
|
|
9460
9519
|
};
|
|
@@ -9466,7 +9525,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9466
9525
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9467
9526
|
allow_any_organization?: boolean | undefined;
|
|
9468
9527
|
is_system?: boolean | undefined;
|
|
9469
|
-
subject_type?: "
|
|
9528
|
+
subject_type?: "client" | "user" | undefined;
|
|
9470
9529
|
authorization_details_types?: string[] | undefined;
|
|
9471
9530
|
created_at?: string | undefined;
|
|
9472
9531
|
updated_at?: string | undefined;
|
|
@@ -9544,7 +9603,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9544
9603
|
addons?: {
|
|
9545
9604
|
[x: string]: any;
|
|
9546
9605
|
} | undefined;
|
|
9547
|
-
token_endpoint_auth_method?: "
|
|
9606
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9548
9607
|
client_metadata?: {
|
|
9549
9608
|
[x: string]: string;
|
|
9550
9609
|
} | undefined;
|
|
@@ -9640,7 +9699,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9640
9699
|
addons?: {
|
|
9641
9700
|
[x: string]: any;
|
|
9642
9701
|
} | undefined;
|
|
9643
|
-
token_endpoint_auth_method?: "
|
|
9702
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9644
9703
|
client_metadata?: {
|
|
9645
9704
|
[x: string]: string;
|
|
9646
9705
|
} | undefined;
|
|
@@ -9685,6 +9744,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9685
9744
|
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9686
9745
|
}[];
|
|
9687
9746
|
total?: number | undefined;
|
|
9747
|
+
next?: string | undefined;
|
|
9688
9748
|
};
|
|
9689
9749
|
outputFormat: "json";
|
|
9690
9750
|
status: 200;
|
|
@@ -9751,7 +9811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9751
9811
|
addons?: {
|
|
9752
9812
|
[x: string]: any;
|
|
9753
9813
|
} | undefined;
|
|
9754
|
-
token_endpoint_auth_method?: "
|
|
9814
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9755
9815
|
client_metadata?: {
|
|
9756
9816
|
[x: string]: string;
|
|
9757
9817
|
} | undefined;
|
|
@@ -9861,7 +9921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9861
9921
|
custom_login_page_preview?: string | undefined;
|
|
9862
9922
|
form_template?: string | undefined;
|
|
9863
9923
|
addons?: Record<string, any> | undefined;
|
|
9864
|
-
token_endpoint_auth_method?: "
|
|
9924
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9865
9925
|
client_metadata?: Record<string, string> | undefined;
|
|
9866
9926
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9867
9927
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9941,7 +10001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9941
10001
|
addons?: {
|
|
9942
10002
|
[x: string]: any;
|
|
9943
10003
|
} | undefined;
|
|
9944
|
-
token_endpoint_auth_method?: "
|
|
10004
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
9945
10005
|
client_metadata?: {
|
|
9946
10006
|
[x: string]: string;
|
|
9947
10007
|
} | undefined;
|
|
@@ -10030,7 +10090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10030
10090
|
custom_login_page_preview?: string | undefined;
|
|
10031
10091
|
form_template?: string | undefined;
|
|
10032
10092
|
addons?: Record<string, any> | undefined;
|
|
10033
|
-
token_endpoint_auth_method?: "
|
|
10093
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
10034
10094
|
client_metadata?: Record<string, string> | undefined;
|
|
10035
10095
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10036
10096
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10110,7 +10170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10110
10170
|
addons?: {
|
|
10111
10171
|
[x: string]: any;
|
|
10112
10172
|
} | undefined;
|
|
10113
|
-
token_endpoint_auth_method?: "
|
|
10173
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
|
|
10114
10174
|
client_metadata?: {
|
|
10115
10175
|
[x: string]: string;
|
|
10116
10176
|
} | undefined;
|
|
@@ -10232,7 +10292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10232
10292
|
active?: boolean | undefined;
|
|
10233
10293
|
} | undefined;
|
|
10234
10294
|
signup?: {
|
|
10235
|
-
status?: "
|
|
10295
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10236
10296
|
verification?: {
|
|
10237
10297
|
active?: boolean | undefined;
|
|
10238
10298
|
} | undefined;
|
|
@@ -10249,7 +10309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10249
10309
|
active?: boolean | undefined;
|
|
10250
10310
|
} | undefined;
|
|
10251
10311
|
signup?: {
|
|
10252
|
-
status?: "
|
|
10312
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10253
10313
|
} | undefined;
|
|
10254
10314
|
validation?: {
|
|
10255
10315
|
max_length?: number | undefined;
|
|
@@ -10266,7 +10326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10266
10326
|
active?: boolean | undefined;
|
|
10267
10327
|
} | undefined;
|
|
10268
10328
|
signup?: {
|
|
10269
|
-
status?: "
|
|
10329
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10270
10330
|
} | undefined;
|
|
10271
10331
|
} | undefined;
|
|
10272
10332
|
} | undefined;
|
|
@@ -10386,7 +10446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10386
10446
|
active?: boolean | undefined;
|
|
10387
10447
|
} | undefined;
|
|
10388
10448
|
signup?: {
|
|
10389
|
-
status?: "
|
|
10449
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10390
10450
|
verification?: {
|
|
10391
10451
|
active?: boolean | undefined;
|
|
10392
10452
|
} | undefined;
|
|
@@ -10403,7 +10463,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10403
10463
|
active?: boolean | undefined;
|
|
10404
10464
|
} | undefined;
|
|
10405
10465
|
signup?: {
|
|
10406
|
-
status?: "
|
|
10466
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10407
10467
|
} | undefined;
|
|
10408
10468
|
validation?: {
|
|
10409
10469
|
max_length?: number | undefined;
|
|
@@ -10420,7 +10480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10420
10480
|
active?: boolean | undefined;
|
|
10421
10481
|
} | undefined;
|
|
10422
10482
|
signup?: {
|
|
10423
|
-
status?: "
|
|
10483
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10424
10484
|
} | undefined;
|
|
10425
10485
|
} | undefined;
|
|
10426
10486
|
} | undefined;
|
|
@@ -10798,6 +10858,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10798
10858
|
}[] | undefined;
|
|
10799
10859
|
}[];
|
|
10800
10860
|
total?: number | undefined;
|
|
10861
|
+
next?: string | undefined;
|
|
10801
10862
|
};
|
|
10802
10863
|
outputFormat: "json";
|
|
10803
10864
|
status: 200;
|
|
@@ -11267,6 +11328,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11267
11328
|
updated_at?: string | undefined;
|
|
11268
11329
|
}[];
|
|
11269
11330
|
total?: number | undefined;
|
|
11331
|
+
next?: string | undefined;
|
|
11270
11332
|
};
|
|
11271
11333
|
outputFormat: "json";
|
|
11272
11334
|
status: 200;
|
|
@@ -11344,6 +11406,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11344
11406
|
idle_expires_at?: string | undefined;
|
|
11345
11407
|
}[];
|
|
11346
11408
|
total?: number | undefined;
|
|
11409
|
+
next?: string | undefined;
|
|
11347
11410
|
};
|
|
11348
11411
|
outputFormat: "json";
|
|
11349
11412
|
status: 200;
|
|
@@ -11374,7 +11437,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11374
11437
|
};
|
|
11375
11438
|
};
|
|
11376
11439
|
output: {
|
|
11377
|
-
type: "
|
|
11440
|
+
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";
|
|
11378
11441
|
date: string;
|
|
11379
11442
|
isMobile: boolean;
|
|
11380
11443
|
log_id: string;
|
|
@@ -11413,7 +11476,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11413
11476
|
limit: number;
|
|
11414
11477
|
length: number;
|
|
11415
11478
|
logs: {
|
|
11416
|
-
type: "
|
|
11479
|
+
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";
|
|
11417
11480
|
date: string;
|
|
11418
11481
|
isMobile: boolean;
|
|
11419
11482
|
log_id: string;
|
|
@@ -11449,6 +11512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11449
11512
|
} | undefined;
|
|
11450
11513
|
}[];
|
|
11451
11514
|
total?: number | undefined;
|
|
11515
|
+
next?: string | undefined;
|
|
11452
11516
|
};
|
|
11453
11517
|
outputFormat: "json";
|
|
11454
11518
|
status: 200;
|
|
@@ -11698,6 +11762,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11698
11762
|
} | undefined;
|
|
11699
11763
|
}[];
|
|
11700
11764
|
total?: number | undefined;
|
|
11765
|
+
next?: string | undefined;
|
|
11701
11766
|
};
|
|
11702
11767
|
outputFormat: "json";
|
|
11703
11768
|
status: 200;
|
|
@@ -11730,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11730
11795
|
};
|
|
11731
11796
|
} & {
|
|
11732
11797
|
json: {
|
|
11733
|
-
template: "
|
|
11798
|
+
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";
|
|
11734
11799
|
body: string;
|
|
11735
11800
|
from: string;
|
|
11736
11801
|
subject: string;
|
|
@@ -11751,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11751
11816
|
};
|
|
11752
11817
|
} & {
|
|
11753
11818
|
json: {
|
|
11754
|
-
template: "
|
|
11819
|
+
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";
|
|
11755
11820
|
body: string;
|
|
11756
11821
|
from: string;
|
|
11757
11822
|
subject: string;
|
|
@@ -11763,7 +11828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11763
11828
|
};
|
|
11764
11829
|
};
|
|
11765
11830
|
output: {
|
|
11766
|
-
template: "
|
|
11831
|
+
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";
|
|
11767
11832
|
body: string;
|
|
11768
11833
|
from: string;
|
|
11769
11834
|
subject: string;
|
|
@@ -11786,7 +11851,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11786
11851
|
};
|
|
11787
11852
|
};
|
|
11788
11853
|
output: {
|
|
11789
|
-
name: "
|
|
11854
|
+
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";
|
|
11790
11855
|
body: string;
|
|
11791
11856
|
subject: string;
|
|
11792
11857
|
}[];
|
|
@@ -11799,7 +11864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11799
11864
|
$get: {
|
|
11800
11865
|
input: {
|
|
11801
11866
|
param: {
|
|
11802
|
-
templateName: "
|
|
11867
|
+
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";
|
|
11803
11868
|
};
|
|
11804
11869
|
} & {
|
|
11805
11870
|
header: {
|
|
@@ -11812,7 +11877,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11812
11877
|
} | {
|
|
11813
11878
|
input: {
|
|
11814
11879
|
param: {
|
|
11815
|
-
templateName: "
|
|
11880
|
+
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";
|
|
11816
11881
|
};
|
|
11817
11882
|
} & {
|
|
11818
11883
|
header: {
|
|
@@ -11820,7 +11885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11820
11885
|
};
|
|
11821
11886
|
};
|
|
11822
11887
|
output: {
|
|
11823
|
-
template: "
|
|
11888
|
+
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";
|
|
11824
11889
|
body: string;
|
|
11825
11890
|
from: string;
|
|
11826
11891
|
subject: string;
|
|
@@ -11839,7 +11904,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11839
11904
|
$put: {
|
|
11840
11905
|
input: {
|
|
11841
11906
|
param: {
|
|
11842
|
-
templateName: "
|
|
11907
|
+
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";
|
|
11843
11908
|
};
|
|
11844
11909
|
} & {
|
|
11845
11910
|
header: {
|
|
@@ -11847,7 +11912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11847
11912
|
};
|
|
11848
11913
|
} & {
|
|
11849
11914
|
json: {
|
|
11850
|
-
template: "
|
|
11915
|
+
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";
|
|
11851
11916
|
body: string;
|
|
11852
11917
|
subject: string;
|
|
11853
11918
|
syntax?: "liquid" | undefined;
|
|
@@ -11859,7 +11924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11859
11924
|
};
|
|
11860
11925
|
};
|
|
11861
11926
|
output: {
|
|
11862
|
-
template: "
|
|
11927
|
+
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";
|
|
11863
11928
|
body: string;
|
|
11864
11929
|
from: string;
|
|
11865
11930
|
subject: string;
|
|
@@ -11878,7 +11943,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11878
11943
|
$patch: {
|
|
11879
11944
|
input: {
|
|
11880
11945
|
param: {
|
|
11881
|
-
templateName: "
|
|
11946
|
+
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";
|
|
11882
11947
|
};
|
|
11883
11948
|
} & {
|
|
11884
11949
|
header: {
|
|
@@ -11886,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11886
11951
|
};
|
|
11887
11952
|
} & {
|
|
11888
11953
|
json: {
|
|
11889
|
-
template?: "
|
|
11954
|
+
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;
|
|
11890
11955
|
body?: string | undefined;
|
|
11891
11956
|
from?: string | undefined;
|
|
11892
11957
|
subject?: string | undefined;
|
|
@@ -11903,7 +11968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11903
11968
|
} | {
|
|
11904
11969
|
input: {
|
|
11905
11970
|
param: {
|
|
11906
|
-
templateName: "
|
|
11971
|
+
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";
|
|
11907
11972
|
};
|
|
11908
11973
|
} & {
|
|
11909
11974
|
header: {
|
|
@@ -11911,7 +11976,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11911
11976
|
};
|
|
11912
11977
|
} & {
|
|
11913
11978
|
json: {
|
|
11914
|
-
template?: "
|
|
11979
|
+
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;
|
|
11915
11980
|
body?: string | undefined;
|
|
11916
11981
|
from?: string | undefined;
|
|
11917
11982
|
subject?: string | undefined;
|
|
@@ -11923,7 +11988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11923
11988
|
};
|
|
11924
11989
|
};
|
|
11925
11990
|
output: {
|
|
11926
|
-
template: "
|
|
11991
|
+
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";
|
|
11927
11992
|
body: string;
|
|
11928
11993
|
from: string;
|
|
11929
11994
|
subject: string;
|
|
@@ -11942,7 +12007,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11942
12007
|
$delete: {
|
|
11943
12008
|
input: {
|
|
11944
12009
|
param: {
|
|
11945
|
-
templateName: "
|
|
12010
|
+
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";
|
|
11946
12011
|
};
|
|
11947
12012
|
} & {
|
|
11948
12013
|
header: {
|
|
@@ -11955,7 +12020,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11955
12020
|
} | {
|
|
11956
12021
|
input: {
|
|
11957
12022
|
param: {
|
|
11958
|
-
templateName: "
|
|
12023
|
+
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";
|
|
11959
12024
|
};
|
|
11960
12025
|
} & {
|
|
11961
12026
|
header: {
|
|
@@ -11972,7 +12037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11972
12037
|
$post: {
|
|
11973
12038
|
input: {
|
|
11974
12039
|
param: {
|
|
11975
|
-
templateName: "
|
|
12040
|
+
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";
|
|
11976
12041
|
};
|
|
11977
12042
|
} & {
|
|
11978
12043
|
header: {
|
|
@@ -12255,7 +12320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12255
12320
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12256
12321
|
custom_domain_id: string;
|
|
12257
12322
|
primary: boolean;
|
|
12258
|
-
status: "
|
|
12323
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12259
12324
|
verification_method?: "txt" | undefined;
|
|
12260
12325
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12261
12326
|
domain_metadata?: {
|
|
@@ -12296,7 +12361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12296
12361
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12297
12362
|
custom_domain_id: string;
|
|
12298
12363
|
primary: boolean;
|
|
12299
|
-
status: "
|
|
12364
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12300
12365
|
verification_method?: "txt" | undefined;
|
|
12301
12366
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12302
12367
|
domain_metadata?: {
|
|
@@ -12360,7 +12425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12360
12425
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12361
12426
|
custom_domain_id: string;
|
|
12362
12427
|
primary: boolean;
|
|
12363
|
-
status: "
|
|
12428
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12364
12429
|
verification_method?: "txt" | undefined;
|
|
12365
12430
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12366
12431
|
domain_metadata?: {
|
|
@@ -12407,7 +12472,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12407
12472
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12408
12473
|
custom_domain_id: string;
|
|
12409
12474
|
primary: boolean;
|
|
12410
|
-
status: "
|
|
12475
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12411
12476
|
verification_method?: "txt" | undefined;
|
|
12412
12477
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12413
12478
|
domain_metadata?: {
|
|
@@ -12453,7 +12518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12453
12518
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12454
12519
|
custom_domain_id: string;
|
|
12455
12520
|
primary: boolean;
|
|
12456
|
-
status: "
|
|
12521
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12457
12522
|
verification_method?: "txt" | undefined;
|
|
12458
12523
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12459
12524
|
domain_metadata?: {
|
|
@@ -12494,7 +12559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12494
12559
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12495
12560
|
custom_domain_id: string;
|
|
12496
12561
|
primary: boolean;
|
|
12497
|
-
status: "
|
|
12562
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12498
12563
|
verification_method?: "txt" | undefined;
|
|
12499
12564
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12500
12565
|
domain_metadata?: {
|
|
@@ -12924,7 +12989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12924
12989
|
} & {
|
|
12925
12990
|
json: {
|
|
12926
12991
|
body?: string | undefined;
|
|
12927
|
-
screen?: "
|
|
12992
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
12928
12993
|
branding?: {
|
|
12929
12994
|
colors?: {
|
|
12930
12995
|
primary: string;
|
|
@@ -13215,7 +13280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13215
13280
|
logs: {
|
|
13216
13281
|
action_name: string;
|
|
13217
13282
|
lines: {
|
|
13218
|
-
level: "
|
|
13283
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13219
13284
|
message: string;
|
|
13220
13285
|
}[];
|
|
13221
13286
|
}[];
|
|
@@ -13298,6 +13363,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13298
13363
|
}[] | undefined;
|
|
13299
13364
|
}[];
|
|
13300
13365
|
total?: number | undefined;
|
|
13366
|
+
next?: string | undefined;
|
|
13301
13367
|
};
|
|
13302
13368
|
outputFormat: "json";
|
|
13303
13369
|
status: 200;
|
|
@@ -13706,6 +13772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13706
13772
|
}[] | undefined;
|
|
13707
13773
|
}[];
|
|
13708
13774
|
total?: number | undefined;
|
|
13775
|
+
next?: string | undefined;
|
|
13709
13776
|
};
|
|
13710
13777
|
outputFormat: "json";
|
|
13711
13778
|
status: 200;
|
|
@@ -13882,7 +13949,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13882
13949
|
args: import("hono/utils/types").JSONValue[];
|
|
13883
13950
|
}[];
|
|
13884
13951
|
logs: {
|
|
13885
|
-
level: "
|
|
13952
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13886
13953
|
message: string;
|
|
13887
13954
|
}[];
|
|
13888
13955
|
error?: string | undefined;
|