authhero 9.0.0 → 9.1.1
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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/{p-f6babd26.entry.js → p-c179b5da.entry.js} +1 -1
- package/dist/assets/u/widget/{p-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
- package/dist/authhero.cjs +211 -208
- package/dist/authhero.d.ts +232 -197
- package/dist/authhero.mjs +26152 -24944
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +6 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/generated/locale-types.d.ts +2 -0
- package/dist/types/helpers/client.d.ts +2 -2
- package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
- package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
- package/dist/types/helpers/scim/discovery.d.ts +49 -0
- package/dist/types/helpers/scim/filter.d.ts +58 -0
- package/dist/types/helpers/scim/mint-token.d.ts +11 -0
- package/dist/types/helpers/scim/patch.d.ts +23 -0
- package/dist/types/helpers/scim/responses.d.ts +36 -0
- package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
- package/dist/types/helpers/service-token.d.ts +16 -5
- package/dist/types/helpers/users.d.ts +73 -1
- package/dist/types/hooks/post-user-login.d.ts +6 -0
- package/dist/types/hooks/user-registration.d.ts +1 -0
- package/dist/types/index.d.ts +224 -195
- package/dist/types/middlewares/scim-auth.d.ts +19 -0
- package/dist/types/routes/auth-api/index.d.ts +8 -8
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +14 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +207 -182
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +6 -4
- package/dist/types/routes/management-api/scim.d.ts +187 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +10 -2
- package/dist/types/routes/scim/index.d.ts +6 -0
- package/dist/types/routes/universal-login/common.d.ts +1 -0
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthError.d.ts +1 -1
- package/dist/types/utils/cookies.d.ts +11 -0
- package/package.json +6 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -568,8 +568,8 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
568
568
|
}>>;
|
|
569
569
|
}, z.core.$strip>>>;
|
|
570
570
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
571
|
-
response_type: z.ZodOptional<z.
|
|
572
|
-
response_mode: z.ZodOptional<z.
|
|
571
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof _authhero_adapter_interfaces.AuthorizationResponseType>>;
|
|
572
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof _authhero_adapter_interfaces.AuthorizationResponseMode>>;
|
|
573
573
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
574
574
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
575
575
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3423,6 +3423,12 @@ interface CreateServiceTokenCoreParams {
|
|
|
3423
3423
|
tenantId: string;
|
|
3424
3424
|
scope: string;
|
|
3425
3425
|
issuer: string;
|
|
3426
|
+
/**
|
|
3427
|
+
* Explicit audience override. When unset the tenant's `audience` is
|
|
3428
|
+
* required — callers that want a fallback chain (e.g. `default_audience`)
|
|
3429
|
+
* resolve it themselves and pass the result here.
|
|
3430
|
+
*/
|
|
3431
|
+
audience?: string;
|
|
3426
3432
|
expiresInSeconds?: number;
|
|
3427
3433
|
customClaims?: Record<string, unknown>;
|
|
3428
3434
|
/**
|
|
@@ -4218,8 +4224,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4218
4224
|
$get: {
|
|
4219
4225
|
input: {
|
|
4220
4226
|
query: {
|
|
4221
|
-
include_password_hashes?: "
|
|
4222
|
-
gzip?: "
|
|
4227
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4228
|
+
gzip?: "false" | "true" | undefined;
|
|
4223
4229
|
};
|
|
4224
4230
|
} & {
|
|
4225
4231
|
header: {
|
|
@@ -4232,8 +4238,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4232
4238
|
} | {
|
|
4233
4239
|
input: {
|
|
4234
4240
|
query: {
|
|
4235
|
-
include_password_hashes?: "
|
|
4236
|
-
gzip?: "
|
|
4241
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4242
|
+
gzip?: "false" | "true" | undefined;
|
|
4237
4243
|
};
|
|
4238
4244
|
} & {
|
|
4239
4245
|
header: {
|
|
@@ -4252,7 +4258,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4252
4258
|
$post: {
|
|
4253
4259
|
input: {
|
|
4254
4260
|
query: {
|
|
4255
|
-
include_password_hashes?: "
|
|
4261
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4256
4262
|
};
|
|
4257
4263
|
} & {
|
|
4258
4264
|
header: {
|
|
@@ -4306,7 +4312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4306
4312
|
};
|
|
4307
4313
|
} & {
|
|
4308
4314
|
json: {
|
|
4309
|
-
type: "email" | "
|
|
4315
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4310
4316
|
phone_number?: string | undefined;
|
|
4311
4317
|
totp_secret?: string | undefined;
|
|
4312
4318
|
credential_id?: string | undefined;
|
|
@@ -4446,7 +4452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4446
4452
|
};
|
|
4447
4453
|
};
|
|
4448
4454
|
output: {
|
|
4449
|
-
name: "email" | "
|
|
4455
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4450
4456
|
enabled: boolean;
|
|
4451
4457
|
trial_expired?: boolean | undefined;
|
|
4452
4458
|
}[];
|
|
@@ -4601,7 +4607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4601
4607
|
$get: {
|
|
4602
4608
|
input: {
|
|
4603
4609
|
param: {
|
|
4604
|
-
factor_name: "email" | "
|
|
4610
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4605
4611
|
};
|
|
4606
4612
|
} & {
|
|
4607
4613
|
header: {
|
|
@@ -4609,7 +4615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4609
4615
|
};
|
|
4610
4616
|
};
|
|
4611
4617
|
output: {
|
|
4612
|
-
name: "email" | "
|
|
4618
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4613
4619
|
enabled: boolean;
|
|
4614
4620
|
trial_expired?: boolean | undefined;
|
|
4615
4621
|
};
|
|
@@ -4622,7 +4628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4622
4628
|
$put: {
|
|
4623
4629
|
input: {
|
|
4624
4630
|
param: {
|
|
4625
|
-
factor_name: "email" | "
|
|
4631
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4626
4632
|
};
|
|
4627
4633
|
} & {
|
|
4628
4634
|
header: {
|
|
@@ -4634,7 +4640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4634
4640
|
};
|
|
4635
4641
|
};
|
|
4636
4642
|
output: {
|
|
4637
|
-
name: "email" | "
|
|
4643
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4638
4644
|
enabled: boolean;
|
|
4639
4645
|
trial_expired?: boolean | undefined;
|
|
4640
4646
|
};
|
|
@@ -5406,19 +5412,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5406
5412
|
} & {
|
|
5407
5413
|
json: {
|
|
5408
5414
|
client_id: string;
|
|
5409
|
-
invitee: {
|
|
5410
|
-
email?: string | undefined;
|
|
5411
|
-
};
|
|
5412
5415
|
inviter: {
|
|
5413
5416
|
name?: string | undefined;
|
|
5414
5417
|
};
|
|
5415
|
-
|
|
5418
|
+
invitee: {
|
|
5419
|
+
email?: string | undefined;
|
|
5420
|
+
};
|
|
5416
5421
|
app_metadata?: Record<string, any> | undefined;
|
|
5417
5422
|
user_metadata?: Record<string, any> | undefined;
|
|
5423
|
+
id?: string | undefined;
|
|
5418
5424
|
connection_id?: string | undefined;
|
|
5419
5425
|
roles?: string[] | undefined;
|
|
5420
|
-
send_invitation_email?: boolean | undefined;
|
|
5421
5426
|
ttl_sec?: number | undefined;
|
|
5427
|
+
send_invitation_email?: boolean | undefined;
|
|
5422
5428
|
};
|
|
5423
5429
|
};
|
|
5424
5430
|
output: {
|
|
@@ -6898,7 +6904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6898
6904
|
hint?: string | undefined;
|
|
6899
6905
|
messages?: {
|
|
6900
6906
|
text: string;
|
|
6901
|
-
type: "
|
|
6907
|
+
type: "success" | "error" | "info" | "warning";
|
|
6902
6908
|
id?: number | undefined;
|
|
6903
6909
|
}[] | undefined;
|
|
6904
6910
|
required?: boolean | undefined;
|
|
@@ -6916,7 +6922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6916
6922
|
hint?: string | undefined;
|
|
6917
6923
|
messages?: {
|
|
6918
6924
|
text: string;
|
|
6919
|
-
type: "
|
|
6925
|
+
type: "success" | "error" | "info" | "warning";
|
|
6920
6926
|
id?: number | undefined;
|
|
6921
6927
|
}[] | undefined;
|
|
6922
6928
|
required?: boolean | undefined;
|
|
@@ -6940,7 +6946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6940
6946
|
hint?: string | undefined;
|
|
6941
6947
|
messages?: {
|
|
6942
6948
|
text: string;
|
|
6943
|
-
type: "
|
|
6949
|
+
type: "success" | "error" | "info" | "warning";
|
|
6944
6950
|
id?: number | undefined;
|
|
6945
6951
|
}[] | undefined;
|
|
6946
6952
|
required?: boolean | undefined;
|
|
@@ -6964,7 +6970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6964
6970
|
hint?: string | undefined;
|
|
6965
6971
|
messages?: {
|
|
6966
6972
|
text: string;
|
|
6967
|
-
type: "
|
|
6973
|
+
type: "success" | "error" | "info" | "warning";
|
|
6968
6974
|
id?: number | undefined;
|
|
6969
6975
|
}[] | undefined;
|
|
6970
6976
|
required?: boolean | undefined;
|
|
@@ -6988,7 +6994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6988
6994
|
hint?: string | undefined;
|
|
6989
6995
|
messages?: {
|
|
6990
6996
|
text: string;
|
|
6991
|
-
type: "
|
|
6997
|
+
type: "success" | "error" | "info" | "warning";
|
|
6992
6998
|
id?: number | undefined;
|
|
6993
6999
|
}[] | undefined;
|
|
6994
7000
|
required?: boolean | undefined;
|
|
@@ -7017,7 +7023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7017
7023
|
hint?: string | undefined;
|
|
7018
7024
|
messages?: {
|
|
7019
7025
|
text: string;
|
|
7020
|
-
type: "
|
|
7026
|
+
type: "success" | "error" | "info" | "warning";
|
|
7021
7027
|
id?: number | undefined;
|
|
7022
7028
|
}[] | undefined;
|
|
7023
7029
|
required?: boolean | undefined;
|
|
@@ -7032,7 +7038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7032
7038
|
hint?: string | undefined;
|
|
7033
7039
|
messages?: {
|
|
7034
7040
|
text: string;
|
|
7035
|
-
type: "
|
|
7041
|
+
type: "success" | "error" | "info" | "warning";
|
|
7036
7042
|
id?: number | undefined;
|
|
7037
7043
|
}[] | undefined;
|
|
7038
7044
|
required?: boolean | undefined;
|
|
@@ -7053,7 +7059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7053
7059
|
hint?: string | undefined;
|
|
7054
7060
|
messages?: {
|
|
7055
7061
|
text: string;
|
|
7056
|
-
type: "
|
|
7062
|
+
type: "success" | "error" | "info" | "warning";
|
|
7057
7063
|
id?: number | undefined;
|
|
7058
7064
|
}[] | undefined;
|
|
7059
7065
|
required?: boolean | undefined;
|
|
@@ -7078,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7078
7084
|
hint?: string | undefined;
|
|
7079
7085
|
messages?: {
|
|
7080
7086
|
text: string;
|
|
7081
|
-
type: "
|
|
7087
|
+
type: "success" | "error" | "info" | "warning";
|
|
7082
7088
|
id?: number | undefined;
|
|
7083
7089
|
}[] | undefined;
|
|
7084
7090
|
required?: boolean | undefined;
|
|
@@ -7097,7 +7103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7097
7103
|
hint?: string | undefined;
|
|
7098
7104
|
messages?: {
|
|
7099
7105
|
text: string;
|
|
7100
|
-
type: "
|
|
7106
|
+
type: "success" | "error" | "info" | "warning";
|
|
7101
7107
|
id?: number | undefined;
|
|
7102
7108
|
}[] | undefined;
|
|
7103
7109
|
required?: boolean | undefined;
|
|
@@ -7117,7 +7123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7117
7123
|
hint?: string | undefined;
|
|
7118
7124
|
messages?: {
|
|
7119
7125
|
text: string;
|
|
7120
|
-
type: "
|
|
7126
|
+
type: "success" | "error" | "info" | "warning";
|
|
7121
7127
|
id?: number | undefined;
|
|
7122
7128
|
}[] | undefined;
|
|
7123
7129
|
required?: boolean | undefined;
|
|
@@ -7136,7 +7142,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7136
7142
|
hint?: string | undefined;
|
|
7137
7143
|
messages?: {
|
|
7138
7144
|
text: string;
|
|
7139
|
-
type: "
|
|
7145
|
+
type: "success" | "error" | "info" | "warning";
|
|
7140
7146
|
id?: number | undefined;
|
|
7141
7147
|
}[] | undefined;
|
|
7142
7148
|
required?: boolean | undefined;
|
|
@@ -7158,7 +7164,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7158
7164
|
hint?: string | undefined;
|
|
7159
7165
|
messages?: {
|
|
7160
7166
|
text: string;
|
|
7161
|
-
type: "
|
|
7167
|
+
type: "success" | "error" | "info" | "warning";
|
|
7162
7168
|
id?: number | undefined;
|
|
7163
7169
|
}[] | undefined;
|
|
7164
7170
|
required?: boolean | undefined;
|
|
@@ -7180,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7180
7186
|
hint?: string | undefined;
|
|
7181
7187
|
messages?: {
|
|
7182
7188
|
text: string;
|
|
7183
|
-
type: "
|
|
7189
|
+
type: "success" | "error" | "info" | "warning";
|
|
7184
7190
|
id?: number | undefined;
|
|
7185
7191
|
}[] | undefined;
|
|
7186
7192
|
required?: boolean | undefined;
|
|
@@ -7199,7 +7205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7199
7205
|
hint?: string | undefined;
|
|
7200
7206
|
messages?: {
|
|
7201
7207
|
text: string;
|
|
7202
|
-
type: "
|
|
7208
|
+
type: "success" | "error" | "info" | "warning";
|
|
7203
7209
|
id?: number | undefined;
|
|
7204
7210
|
}[] | undefined;
|
|
7205
7211
|
required?: boolean | undefined;
|
|
@@ -7212,6 +7218,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7212
7218
|
display_name?: string | undefined;
|
|
7213
7219
|
icon_url?: string | undefined;
|
|
7214
7220
|
href?: string | undefined;
|
|
7221
|
+
last_used?: boolean | undefined;
|
|
7222
|
+
last_used_label?: string | undefined;
|
|
7215
7223
|
}[] | undefined;
|
|
7216
7224
|
} | undefined;
|
|
7217
7225
|
} | {
|
|
@@ -7224,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7224
7232
|
hint?: string | undefined;
|
|
7225
7233
|
messages?: {
|
|
7226
7234
|
text: string;
|
|
7227
|
-
type: "
|
|
7235
|
+
type: "success" | "error" | "info" | "warning";
|
|
7228
7236
|
id?: number | undefined;
|
|
7229
7237
|
}[] | undefined;
|
|
7230
7238
|
required?: boolean | undefined;
|
|
@@ -7245,7 +7253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7245
7253
|
hint?: string | undefined;
|
|
7246
7254
|
messages?: {
|
|
7247
7255
|
text: string;
|
|
7248
|
-
type: "
|
|
7256
|
+
type: "success" | "error" | "info" | "warning";
|
|
7249
7257
|
id?: number | undefined;
|
|
7250
7258
|
}[] | undefined;
|
|
7251
7259
|
required?: boolean | undefined;
|
|
@@ -7266,7 +7274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7266
7274
|
hint?: string | undefined;
|
|
7267
7275
|
messages?: {
|
|
7268
7276
|
text: string;
|
|
7269
|
-
type: "
|
|
7277
|
+
type: "success" | "error" | "info" | "warning";
|
|
7270
7278
|
id?: number | undefined;
|
|
7271
7279
|
}[] | undefined;
|
|
7272
7280
|
required?: boolean | undefined;
|
|
@@ -7499,7 +7507,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7499
7507
|
hint?: string | undefined;
|
|
7500
7508
|
messages?: {
|
|
7501
7509
|
text: string;
|
|
7502
|
-
type: "
|
|
7510
|
+
type: "success" | "error" | "info" | "warning";
|
|
7503
7511
|
id?: number | undefined;
|
|
7504
7512
|
}[] | undefined;
|
|
7505
7513
|
required?: boolean | undefined;
|
|
@@ -7517,7 +7525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7517
7525
|
hint?: string | undefined;
|
|
7518
7526
|
messages?: {
|
|
7519
7527
|
text: string;
|
|
7520
|
-
type: "
|
|
7528
|
+
type: "success" | "error" | "info" | "warning";
|
|
7521
7529
|
id?: number | undefined;
|
|
7522
7530
|
}[] | undefined;
|
|
7523
7531
|
required?: boolean | undefined;
|
|
@@ -7541,7 +7549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7541
7549
|
hint?: string | undefined;
|
|
7542
7550
|
messages?: {
|
|
7543
7551
|
text: string;
|
|
7544
|
-
type: "
|
|
7552
|
+
type: "success" | "error" | "info" | "warning";
|
|
7545
7553
|
id?: number | undefined;
|
|
7546
7554
|
}[] | undefined;
|
|
7547
7555
|
required?: boolean | undefined;
|
|
@@ -7565,7 +7573,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7565
7573
|
hint?: string | undefined;
|
|
7566
7574
|
messages?: {
|
|
7567
7575
|
text: string;
|
|
7568
|
-
type: "
|
|
7576
|
+
type: "success" | "error" | "info" | "warning";
|
|
7569
7577
|
id?: number | undefined;
|
|
7570
7578
|
}[] | undefined;
|
|
7571
7579
|
required?: boolean | undefined;
|
|
@@ -7589,7 +7597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7589
7597
|
hint?: string | undefined;
|
|
7590
7598
|
messages?: {
|
|
7591
7599
|
text: string;
|
|
7592
|
-
type: "
|
|
7600
|
+
type: "success" | "error" | "info" | "warning";
|
|
7593
7601
|
id?: number | undefined;
|
|
7594
7602
|
}[] | undefined;
|
|
7595
7603
|
required?: boolean | undefined;
|
|
@@ -7618,7 +7626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7618
7626
|
hint?: string | undefined;
|
|
7619
7627
|
messages?: {
|
|
7620
7628
|
text: string;
|
|
7621
|
-
type: "
|
|
7629
|
+
type: "success" | "error" | "info" | "warning";
|
|
7622
7630
|
id?: number | undefined;
|
|
7623
7631
|
}[] | undefined;
|
|
7624
7632
|
required?: boolean | undefined;
|
|
@@ -7633,7 +7641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7633
7641
|
hint?: string | undefined;
|
|
7634
7642
|
messages?: {
|
|
7635
7643
|
text: string;
|
|
7636
|
-
type: "
|
|
7644
|
+
type: "success" | "error" | "info" | "warning";
|
|
7637
7645
|
id?: number | undefined;
|
|
7638
7646
|
}[] | undefined;
|
|
7639
7647
|
required?: boolean | undefined;
|
|
@@ -7654,7 +7662,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7654
7662
|
hint?: string | undefined;
|
|
7655
7663
|
messages?: {
|
|
7656
7664
|
text: string;
|
|
7657
|
-
type: "
|
|
7665
|
+
type: "success" | "error" | "info" | "warning";
|
|
7658
7666
|
id?: number | undefined;
|
|
7659
7667
|
}[] | undefined;
|
|
7660
7668
|
required?: boolean | undefined;
|
|
@@ -7679,7 +7687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7679
7687
|
hint?: string | undefined;
|
|
7680
7688
|
messages?: {
|
|
7681
7689
|
text: string;
|
|
7682
|
-
type: "
|
|
7690
|
+
type: "success" | "error" | "info" | "warning";
|
|
7683
7691
|
id?: number | undefined;
|
|
7684
7692
|
}[] | undefined;
|
|
7685
7693
|
required?: boolean | undefined;
|
|
@@ -7698,7 +7706,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7698
7706
|
hint?: string | undefined;
|
|
7699
7707
|
messages?: {
|
|
7700
7708
|
text: string;
|
|
7701
|
-
type: "
|
|
7709
|
+
type: "success" | "error" | "info" | "warning";
|
|
7702
7710
|
id?: number | undefined;
|
|
7703
7711
|
}[] | undefined;
|
|
7704
7712
|
required?: boolean | undefined;
|
|
@@ -7718,7 +7726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7718
7726
|
hint?: string | undefined;
|
|
7719
7727
|
messages?: {
|
|
7720
7728
|
text: string;
|
|
7721
|
-
type: "
|
|
7729
|
+
type: "success" | "error" | "info" | "warning";
|
|
7722
7730
|
id?: number | undefined;
|
|
7723
7731
|
}[] | undefined;
|
|
7724
7732
|
required?: boolean | undefined;
|
|
@@ -7737,7 +7745,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7737
7745
|
hint?: string | undefined;
|
|
7738
7746
|
messages?: {
|
|
7739
7747
|
text: string;
|
|
7740
|
-
type: "
|
|
7748
|
+
type: "success" | "error" | "info" | "warning";
|
|
7741
7749
|
id?: number | undefined;
|
|
7742
7750
|
}[] | undefined;
|
|
7743
7751
|
required?: boolean | undefined;
|
|
@@ -7759,7 +7767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7759
7767
|
hint?: string | undefined;
|
|
7760
7768
|
messages?: {
|
|
7761
7769
|
text: string;
|
|
7762
|
-
type: "
|
|
7770
|
+
type: "success" | "error" | "info" | "warning";
|
|
7763
7771
|
id?: number | undefined;
|
|
7764
7772
|
}[] | undefined;
|
|
7765
7773
|
required?: boolean | undefined;
|
|
@@ -7781,7 +7789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7781
7789
|
hint?: string | undefined;
|
|
7782
7790
|
messages?: {
|
|
7783
7791
|
text: string;
|
|
7784
|
-
type: "
|
|
7792
|
+
type: "success" | "error" | "info" | "warning";
|
|
7785
7793
|
id?: number | undefined;
|
|
7786
7794
|
}[] | undefined;
|
|
7787
7795
|
required?: boolean | undefined;
|
|
@@ -7800,7 +7808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7800
7808
|
hint?: string | undefined;
|
|
7801
7809
|
messages?: {
|
|
7802
7810
|
text: string;
|
|
7803
|
-
type: "
|
|
7811
|
+
type: "success" | "error" | "info" | "warning";
|
|
7804
7812
|
id?: number | undefined;
|
|
7805
7813
|
}[] | undefined;
|
|
7806
7814
|
required?: boolean | undefined;
|
|
@@ -7813,6 +7821,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7813
7821
|
display_name?: string | undefined;
|
|
7814
7822
|
icon_url?: string | undefined;
|
|
7815
7823
|
href?: string | undefined;
|
|
7824
|
+
last_used?: boolean | undefined;
|
|
7825
|
+
last_used_label?: string | undefined;
|
|
7816
7826
|
}[] | undefined;
|
|
7817
7827
|
} | undefined;
|
|
7818
7828
|
} | {
|
|
@@ -7825,7 +7835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7825
7835
|
hint?: string | undefined;
|
|
7826
7836
|
messages?: {
|
|
7827
7837
|
text: string;
|
|
7828
|
-
type: "
|
|
7838
|
+
type: "success" | "error" | "info" | "warning";
|
|
7829
7839
|
id?: number | undefined;
|
|
7830
7840
|
}[] | undefined;
|
|
7831
7841
|
required?: boolean | undefined;
|
|
@@ -7846,7 +7856,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7846
7856
|
hint?: string | undefined;
|
|
7847
7857
|
messages?: {
|
|
7848
7858
|
text: string;
|
|
7849
|
-
type: "
|
|
7859
|
+
type: "success" | "error" | "info" | "warning";
|
|
7850
7860
|
id?: number | undefined;
|
|
7851
7861
|
}[] | undefined;
|
|
7852
7862
|
required?: boolean | undefined;
|
|
@@ -7867,7 +7877,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7867
7877
|
hint?: string | undefined;
|
|
7868
7878
|
messages?: {
|
|
7869
7879
|
text: string;
|
|
7870
|
-
type: "
|
|
7880
|
+
type: "success" | "error" | "info" | "warning";
|
|
7871
7881
|
id?: number | undefined;
|
|
7872
7882
|
}[] | undefined;
|
|
7873
7883
|
required?: boolean | undefined;
|
|
@@ -8116,7 +8126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8116
8126
|
hint?: string | undefined;
|
|
8117
8127
|
messages?: {
|
|
8118
8128
|
text: string;
|
|
8119
|
-
type: "
|
|
8129
|
+
type: "success" | "error" | "info" | "warning";
|
|
8120
8130
|
id?: number | undefined;
|
|
8121
8131
|
}[] | undefined;
|
|
8122
8132
|
required?: boolean | undefined;
|
|
@@ -8134,7 +8144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8134
8144
|
hint?: string | undefined;
|
|
8135
8145
|
messages?: {
|
|
8136
8146
|
text: string;
|
|
8137
|
-
type: "
|
|
8147
|
+
type: "success" | "error" | "info" | "warning";
|
|
8138
8148
|
id?: number | undefined;
|
|
8139
8149
|
}[] | undefined;
|
|
8140
8150
|
required?: boolean | undefined;
|
|
@@ -8158,7 +8168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8158
8168
|
hint?: string | undefined;
|
|
8159
8169
|
messages?: {
|
|
8160
8170
|
text: string;
|
|
8161
|
-
type: "
|
|
8171
|
+
type: "success" | "error" | "info" | "warning";
|
|
8162
8172
|
id?: number | undefined;
|
|
8163
8173
|
}[] | undefined;
|
|
8164
8174
|
required?: boolean | undefined;
|
|
@@ -8182,7 +8192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8182
8192
|
hint?: string | undefined;
|
|
8183
8193
|
messages?: {
|
|
8184
8194
|
text: string;
|
|
8185
|
-
type: "
|
|
8195
|
+
type: "success" | "error" | "info" | "warning";
|
|
8186
8196
|
id?: number | undefined;
|
|
8187
8197
|
}[] | undefined;
|
|
8188
8198
|
required?: boolean | undefined;
|
|
@@ -8206,7 +8216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8206
8216
|
hint?: string | undefined;
|
|
8207
8217
|
messages?: {
|
|
8208
8218
|
text: string;
|
|
8209
|
-
type: "
|
|
8219
|
+
type: "success" | "error" | "info" | "warning";
|
|
8210
8220
|
id?: number | undefined;
|
|
8211
8221
|
}[] | undefined;
|
|
8212
8222
|
required?: boolean | undefined;
|
|
@@ -8235,7 +8245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8235
8245
|
hint?: string | undefined;
|
|
8236
8246
|
messages?: {
|
|
8237
8247
|
text: string;
|
|
8238
|
-
type: "
|
|
8248
|
+
type: "success" | "error" | "info" | "warning";
|
|
8239
8249
|
id?: number | undefined;
|
|
8240
8250
|
}[] | undefined;
|
|
8241
8251
|
required?: boolean | undefined;
|
|
@@ -8250,7 +8260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8250
8260
|
hint?: string | undefined;
|
|
8251
8261
|
messages?: {
|
|
8252
8262
|
text: string;
|
|
8253
|
-
type: "
|
|
8263
|
+
type: "success" | "error" | "info" | "warning";
|
|
8254
8264
|
id?: number | undefined;
|
|
8255
8265
|
}[] | undefined;
|
|
8256
8266
|
required?: boolean | undefined;
|
|
@@ -8271,7 +8281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8271
8281
|
hint?: string | undefined;
|
|
8272
8282
|
messages?: {
|
|
8273
8283
|
text: string;
|
|
8274
|
-
type: "
|
|
8284
|
+
type: "success" | "error" | "info" | "warning";
|
|
8275
8285
|
id?: number | undefined;
|
|
8276
8286
|
}[] | undefined;
|
|
8277
8287
|
required?: boolean | undefined;
|
|
@@ -8296,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8296
8306
|
hint?: string | undefined;
|
|
8297
8307
|
messages?: {
|
|
8298
8308
|
text: string;
|
|
8299
|
-
type: "
|
|
8309
|
+
type: "success" | "error" | "info" | "warning";
|
|
8300
8310
|
id?: number | undefined;
|
|
8301
8311
|
}[] | undefined;
|
|
8302
8312
|
required?: boolean | undefined;
|
|
@@ -8315,7 +8325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8315
8325
|
hint?: string | undefined;
|
|
8316
8326
|
messages?: {
|
|
8317
8327
|
text: string;
|
|
8318
|
-
type: "
|
|
8328
|
+
type: "success" | "error" | "info" | "warning";
|
|
8319
8329
|
id?: number | undefined;
|
|
8320
8330
|
}[] | undefined;
|
|
8321
8331
|
required?: boolean | undefined;
|
|
@@ -8335,7 +8345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8335
8345
|
hint?: string | undefined;
|
|
8336
8346
|
messages?: {
|
|
8337
8347
|
text: string;
|
|
8338
|
-
type: "
|
|
8348
|
+
type: "success" | "error" | "info" | "warning";
|
|
8339
8349
|
id?: number | undefined;
|
|
8340
8350
|
}[] | undefined;
|
|
8341
8351
|
required?: boolean | undefined;
|
|
@@ -8354,7 +8364,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8354
8364
|
hint?: string | undefined;
|
|
8355
8365
|
messages?: {
|
|
8356
8366
|
text: string;
|
|
8357
|
-
type: "
|
|
8367
|
+
type: "success" | "error" | "info" | "warning";
|
|
8358
8368
|
id?: number | undefined;
|
|
8359
8369
|
}[] | undefined;
|
|
8360
8370
|
required?: boolean | undefined;
|
|
@@ -8376,7 +8386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8376
8386
|
hint?: string | undefined;
|
|
8377
8387
|
messages?: {
|
|
8378
8388
|
text: string;
|
|
8379
|
-
type: "
|
|
8389
|
+
type: "success" | "error" | "info" | "warning";
|
|
8380
8390
|
id?: number | undefined;
|
|
8381
8391
|
}[] | undefined;
|
|
8382
8392
|
required?: boolean | undefined;
|
|
@@ -8398,7 +8408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8398
8408
|
hint?: string | undefined;
|
|
8399
8409
|
messages?: {
|
|
8400
8410
|
text: string;
|
|
8401
|
-
type: "
|
|
8411
|
+
type: "success" | "error" | "info" | "warning";
|
|
8402
8412
|
id?: number | undefined;
|
|
8403
8413
|
}[] | undefined;
|
|
8404
8414
|
required?: boolean | undefined;
|
|
@@ -8417,7 +8427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8417
8427
|
hint?: string | undefined;
|
|
8418
8428
|
messages?: {
|
|
8419
8429
|
text: string;
|
|
8420
|
-
type: "
|
|
8430
|
+
type: "success" | "error" | "info" | "warning";
|
|
8421
8431
|
id?: number | undefined;
|
|
8422
8432
|
}[] | undefined;
|
|
8423
8433
|
required?: boolean | undefined;
|
|
@@ -8430,6 +8440,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8430
8440
|
display_name?: string | undefined;
|
|
8431
8441
|
icon_url?: string | undefined;
|
|
8432
8442
|
href?: string | undefined;
|
|
8443
|
+
last_used?: boolean | undefined;
|
|
8444
|
+
last_used_label?: string | undefined;
|
|
8433
8445
|
}[] | undefined;
|
|
8434
8446
|
} | undefined;
|
|
8435
8447
|
} | {
|
|
@@ -8442,7 +8454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8442
8454
|
hint?: string | undefined;
|
|
8443
8455
|
messages?: {
|
|
8444
8456
|
text: string;
|
|
8445
|
-
type: "
|
|
8457
|
+
type: "success" | "error" | "info" | "warning";
|
|
8446
8458
|
id?: number | undefined;
|
|
8447
8459
|
}[] | undefined;
|
|
8448
8460
|
required?: boolean | undefined;
|
|
@@ -8463,7 +8475,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8463
8475
|
hint?: string | undefined;
|
|
8464
8476
|
messages?: {
|
|
8465
8477
|
text: string;
|
|
8466
|
-
type: "
|
|
8478
|
+
type: "success" | "error" | "info" | "warning";
|
|
8467
8479
|
id?: number | undefined;
|
|
8468
8480
|
}[] | undefined;
|
|
8469
8481
|
required?: boolean | undefined;
|
|
@@ -8484,7 +8496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8484
8496
|
hint?: string | undefined;
|
|
8485
8497
|
messages?: {
|
|
8486
8498
|
text: string;
|
|
8487
|
-
type: "
|
|
8499
|
+
type: "success" | "error" | "info" | "warning";
|
|
8488
8500
|
id?: number | undefined;
|
|
8489
8501
|
}[] | undefined;
|
|
8490
8502
|
required?: boolean | undefined;
|
|
@@ -8738,7 +8750,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8738
8750
|
hint?: string | undefined;
|
|
8739
8751
|
messages?: {
|
|
8740
8752
|
text: string;
|
|
8741
|
-
type: "
|
|
8753
|
+
type: "success" | "error" | "info" | "warning";
|
|
8742
8754
|
id?: number | undefined;
|
|
8743
8755
|
}[] | undefined;
|
|
8744
8756
|
required?: boolean | undefined;
|
|
@@ -8756,7 +8768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8756
8768
|
hint?: string | undefined;
|
|
8757
8769
|
messages?: {
|
|
8758
8770
|
text: string;
|
|
8759
|
-
type: "
|
|
8771
|
+
type: "success" | "error" | "info" | "warning";
|
|
8760
8772
|
id?: number | undefined;
|
|
8761
8773
|
}[] | undefined;
|
|
8762
8774
|
required?: boolean | undefined;
|
|
@@ -8780,7 +8792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8780
8792
|
hint?: string | undefined;
|
|
8781
8793
|
messages?: {
|
|
8782
8794
|
text: string;
|
|
8783
|
-
type: "
|
|
8795
|
+
type: "success" | "error" | "info" | "warning";
|
|
8784
8796
|
id?: number | undefined;
|
|
8785
8797
|
}[] | undefined;
|
|
8786
8798
|
required?: boolean | undefined;
|
|
@@ -8804,7 +8816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8804
8816
|
hint?: string | undefined;
|
|
8805
8817
|
messages?: {
|
|
8806
8818
|
text: string;
|
|
8807
|
-
type: "
|
|
8819
|
+
type: "success" | "error" | "info" | "warning";
|
|
8808
8820
|
id?: number | undefined;
|
|
8809
8821
|
}[] | undefined;
|
|
8810
8822
|
required?: boolean | undefined;
|
|
@@ -8828,7 +8840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8828
8840
|
hint?: string | undefined;
|
|
8829
8841
|
messages?: {
|
|
8830
8842
|
text: string;
|
|
8831
|
-
type: "
|
|
8843
|
+
type: "success" | "error" | "info" | "warning";
|
|
8832
8844
|
id?: number | undefined;
|
|
8833
8845
|
}[] | undefined;
|
|
8834
8846
|
required?: boolean | undefined;
|
|
@@ -8853,7 +8865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8853
8865
|
hint?: string | undefined;
|
|
8854
8866
|
messages?: {
|
|
8855
8867
|
text: string;
|
|
8856
|
-
type: "
|
|
8868
|
+
type: "success" | "error" | "info" | "warning";
|
|
8857
8869
|
id?: number | undefined;
|
|
8858
8870
|
}[] | undefined;
|
|
8859
8871
|
required?: boolean | undefined;
|
|
@@ -8868,7 +8880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8868
8880
|
hint?: string | undefined;
|
|
8869
8881
|
messages?: {
|
|
8870
8882
|
text: string;
|
|
8871
|
-
type: "
|
|
8883
|
+
type: "success" | "error" | "info" | "warning";
|
|
8872
8884
|
id?: number | undefined;
|
|
8873
8885
|
}[] | undefined;
|
|
8874
8886
|
required?: boolean | undefined;
|
|
@@ -8889,7 +8901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8889
8901
|
hint?: string | undefined;
|
|
8890
8902
|
messages?: {
|
|
8891
8903
|
text: string;
|
|
8892
|
-
type: "
|
|
8904
|
+
type: "success" | "error" | "info" | "warning";
|
|
8893
8905
|
id?: number | undefined;
|
|
8894
8906
|
}[] | undefined;
|
|
8895
8907
|
required?: boolean | undefined;
|
|
@@ -8914,7 +8926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8914
8926
|
hint?: string | undefined;
|
|
8915
8927
|
messages?: {
|
|
8916
8928
|
text: string;
|
|
8917
|
-
type: "
|
|
8929
|
+
type: "success" | "error" | "info" | "warning";
|
|
8918
8930
|
id?: number | undefined;
|
|
8919
8931
|
}[] | undefined;
|
|
8920
8932
|
required?: boolean | undefined;
|
|
@@ -8933,7 +8945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8933
8945
|
hint?: string | undefined;
|
|
8934
8946
|
messages?: {
|
|
8935
8947
|
text: string;
|
|
8936
|
-
type: "
|
|
8948
|
+
type: "success" | "error" | "info" | "warning";
|
|
8937
8949
|
id?: number | undefined;
|
|
8938
8950
|
}[] | undefined;
|
|
8939
8951
|
required?: boolean | undefined;
|
|
@@ -8953,7 +8965,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8953
8965
|
hint?: string | undefined;
|
|
8954
8966
|
messages?: {
|
|
8955
8967
|
text: string;
|
|
8956
|
-
type: "
|
|
8968
|
+
type: "success" | "error" | "info" | "warning";
|
|
8957
8969
|
id?: number | undefined;
|
|
8958
8970
|
}[] | undefined;
|
|
8959
8971
|
required?: boolean | undefined;
|
|
@@ -8972,7 +8984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8972
8984
|
hint?: string | undefined;
|
|
8973
8985
|
messages?: {
|
|
8974
8986
|
text: string;
|
|
8975
|
-
type: "
|
|
8987
|
+
type: "success" | "error" | "info" | "warning";
|
|
8976
8988
|
id?: number | undefined;
|
|
8977
8989
|
}[] | undefined;
|
|
8978
8990
|
required?: boolean | undefined;
|
|
@@ -8994,7 +9006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8994
9006
|
hint?: string | undefined;
|
|
8995
9007
|
messages?: {
|
|
8996
9008
|
text: string;
|
|
8997
|
-
type: "
|
|
9009
|
+
type: "success" | "error" | "info" | "warning";
|
|
8998
9010
|
id?: number | undefined;
|
|
8999
9011
|
}[] | undefined;
|
|
9000
9012
|
required?: boolean | undefined;
|
|
@@ -9016,7 +9028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9016
9028
|
hint?: string | undefined;
|
|
9017
9029
|
messages?: {
|
|
9018
9030
|
text: string;
|
|
9019
|
-
type: "
|
|
9031
|
+
type: "success" | "error" | "info" | "warning";
|
|
9020
9032
|
id?: number | undefined;
|
|
9021
9033
|
}[] | undefined;
|
|
9022
9034
|
required?: boolean | undefined;
|
|
@@ -9035,7 +9047,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9035
9047
|
hint?: string | undefined;
|
|
9036
9048
|
messages?: {
|
|
9037
9049
|
text: string;
|
|
9038
|
-
type: "
|
|
9050
|
+
type: "success" | "error" | "info" | "warning";
|
|
9039
9051
|
id?: number | undefined;
|
|
9040
9052
|
}[] | undefined;
|
|
9041
9053
|
required?: boolean | undefined;
|
|
@@ -9048,6 +9060,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9048
9060
|
display_name?: string | undefined;
|
|
9049
9061
|
icon_url?: string | undefined;
|
|
9050
9062
|
href?: string | undefined;
|
|
9063
|
+
last_used?: boolean | undefined;
|
|
9064
|
+
last_used_label?: string | undefined;
|
|
9051
9065
|
}[] | undefined;
|
|
9052
9066
|
} | undefined;
|
|
9053
9067
|
} | {
|
|
@@ -9060,7 +9074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9060
9074
|
hint?: string | undefined;
|
|
9061
9075
|
messages?: {
|
|
9062
9076
|
text: string;
|
|
9063
|
-
type: "
|
|
9077
|
+
type: "success" | "error" | "info" | "warning";
|
|
9064
9078
|
id?: number | undefined;
|
|
9065
9079
|
}[] | undefined;
|
|
9066
9080
|
required?: boolean | undefined;
|
|
@@ -9081,7 +9095,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9081
9095
|
hint?: string | undefined;
|
|
9082
9096
|
messages?: {
|
|
9083
9097
|
text: string;
|
|
9084
|
-
type: "
|
|
9098
|
+
type: "success" | "error" | "info" | "warning";
|
|
9085
9099
|
id?: number | undefined;
|
|
9086
9100
|
}[] | undefined;
|
|
9087
9101
|
required?: boolean | undefined;
|
|
@@ -9102,7 +9116,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9102
9116
|
hint?: string | undefined;
|
|
9103
9117
|
messages?: {
|
|
9104
9118
|
text: string;
|
|
9105
|
-
type: "
|
|
9119
|
+
type: "success" | "error" | "info" | "warning";
|
|
9106
9120
|
id?: number | undefined;
|
|
9107
9121
|
}[] | undefined;
|
|
9108
9122
|
required?: boolean | undefined;
|
|
@@ -9333,7 +9347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9333
9347
|
hint?: string | undefined;
|
|
9334
9348
|
messages?: {
|
|
9335
9349
|
text: string;
|
|
9336
|
-
type: "
|
|
9350
|
+
type: "success" | "error" | "info" | "warning";
|
|
9337
9351
|
id?: number | undefined;
|
|
9338
9352
|
}[] | undefined;
|
|
9339
9353
|
required?: boolean | undefined;
|
|
@@ -9351,7 +9365,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9351
9365
|
hint?: string | undefined;
|
|
9352
9366
|
messages?: {
|
|
9353
9367
|
text: string;
|
|
9354
|
-
type: "
|
|
9368
|
+
type: "success" | "error" | "info" | "warning";
|
|
9355
9369
|
id?: number | undefined;
|
|
9356
9370
|
}[] | undefined;
|
|
9357
9371
|
required?: boolean | undefined;
|
|
@@ -9375,7 +9389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9375
9389
|
hint?: string | undefined;
|
|
9376
9390
|
messages?: {
|
|
9377
9391
|
text: string;
|
|
9378
|
-
type: "
|
|
9392
|
+
type: "success" | "error" | "info" | "warning";
|
|
9379
9393
|
id?: number | undefined;
|
|
9380
9394
|
}[] | undefined;
|
|
9381
9395
|
required?: boolean | undefined;
|
|
@@ -9399,7 +9413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9399
9413
|
hint?: string | undefined;
|
|
9400
9414
|
messages?: {
|
|
9401
9415
|
text: string;
|
|
9402
|
-
type: "
|
|
9416
|
+
type: "success" | "error" | "info" | "warning";
|
|
9403
9417
|
id?: number | undefined;
|
|
9404
9418
|
}[] | undefined;
|
|
9405
9419
|
required?: boolean | undefined;
|
|
@@ -9423,7 +9437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9423
9437
|
hint?: string | undefined;
|
|
9424
9438
|
messages?: {
|
|
9425
9439
|
text: string;
|
|
9426
|
-
type: "
|
|
9440
|
+
type: "success" | "error" | "info" | "warning";
|
|
9427
9441
|
id?: number | undefined;
|
|
9428
9442
|
}[] | undefined;
|
|
9429
9443
|
required?: boolean | undefined;
|
|
@@ -9452,7 +9466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9452
9466
|
hint?: string | undefined;
|
|
9453
9467
|
messages?: {
|
|
9454
9468
|
text: string;
|
|
9455
|
-
type: "
|
|
9469
|
+
type: "success" | "error" | "info" | "warning";
|
|
9456
9470
|
id?: number | undefined;
|
|
9457
9471
|
}[] | undefined;
|
|
9458
9472
|
required?: boolean | undefined;
|
|
@@ -9467,7 +9481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9467
9481
|
hint?: string | undefined;
|
|
9468
9482
|
messages?: {
|
|
9469
9483
|
text: string;
|
|
9470
|
-
type: "
|
|
9484
|
+
type: "success" | "error" | "info" | "warning";
|
|
9471
9485
|
id?: number | undefined;
|
|
9472
9486
|
}[] | undefined;
|
|
9473
9487
|
required?: boolean | undefined;
|
|
@@ -9488,7 +9502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9488
9502
|
hint?: string | undefined;
|
|
9489
9503
|
messages?: {
|
|
9490
9504
|
text: string;
|
|
9491
|
-
type: "
|
|
9505
|
+
type: "success" | "error" | "info" | "warning";
|
|
9492
9506
|
id?: number | undefined;
|
|
9493
9507
|
}[] | undefined;
|
|
9494
9508
|
required?: boolean | undefined;
|
|
@@ -9513,7 +9527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9513
9527
|
hint?: string | undefined;
|
|
9514
9528
|
messages?: {
|
|
9515
9529
|
text: string;
|
|
9516
|
-
type: "
|
|
9530
|
+
type: "success" | "error" | "info" | "warning";
|
|
9517
9531
|
id?: number | undefined;
|
|
9518
9532
|
}[] | undefined;
|
|
9519
9533
|
required?: boolean | undefined;
|
|
@@ -9532,7 +9546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9532
9546
|
hint?: string | undefined;
|
|
9533
9547
|
messages?: {
|
|
9534
9548
|
text: string;
|
|
9535
|
-
type: "
|
|
9549
|
+
type: "success" | "error" | "info" | "warning";
|
|
9536
9550
|
id?: number | undefined;
|
|
9537
9551
|
}[] | undefined;
|
|
9538
9552
|
required?: boolean | undefined;
|
|
@@ -9552,7 +9566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9552
9566
|
hint?: string | undefined;
|
|
9553
9567
|
messages?: {
|
|
9554
9568
|
text: string;
|
|
9555
|
-
type: "
|
|
9569
|
+
type: "success" | "error" | "info" | "warning";
|
|
9556
9570
|
id?: number | undefined;
|
|
9557
9571
|
}[] | undefined;
|
|
9558
9572
|
required?: boolean | undefined;
|
|
@@ -9571,7 +9585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9571
9585
|
hint?: string | undefined;
|
|
9572
9586
|
messages?: {
|
|
9573
9587
|
text: string;
|
|
9574
|
-
type: "
|
|
9588
|
+
type: "success" | "error" | "info" | "warning";
|
|
9575
9589
|
id?: number | undefined;
|
|
9576
9590
|
}[] | undefined;
|
|
9577
9591
|
required?: boolean | undefined;
|
|
@@ -9593,7 +9607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9593
9607
|
hint?: string | undefined;
|
|
9594
9608
|
messages?: {
|
|
9595
9609
|
text: string;
|
|
9596
|
-
type: "
|
|
9610
|
+
type: "success" | "error" | "info" | "warning";
|
|
9597
9611
|
id?: number | undefined;
|
|
9598
9612
|
}[] | undefined;
|
|
9599
9613
|
required?: boolean | undefined;
|
|
@@ -9615,7 +9629,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9615
9629
|
hint?: string | undefined;
|
|
9616
9630
|
messages?: {
|
|
9617
9631
|
text: string;
|
|
9618
|
-
type: "
|
|
9632
|
+
type: "success" | "error" | "info" | "warning";
|
|
9619
9633
|
id?: number | undefined;
|
|
9620
9634
|
}[] | undefined;
|
|
9621
9635
|
required?: boolean | undefined;
|
|
@@ -9634,7 +9648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9634
9648
|
hint?: string | undefined;
|
|
9635
9649
|
messages?: {
|
|
9636
9650
|
text: string;
|
|
9637
|
-
type: "
|
|
9651
|
+
type: "success" | "error" | "info" | "warning";
|
|
9638
9652
|
id?: number | undefined;
|
|
9639
9653
|
}[] | undefined;
|
|
9640
9654
|
required?: boolean | undefined;
|
|
@@ -9647,6 +9661,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9647
9661
|
display_name?: string | undefined;
|
|
9648
9662
|
icon_url?: string | undefined;
|
|
9649
9663
|
href?: string | undefined;
|
|
9664
|
+
last_used?: boolean | undefined;
|
|
9665
|
+
last_used_label?: string | undefined;
|
|
9650
9666
|
}[] | undefined;
|
|
9651
9667
|
} | undefined;
|
|
9652
9668
|
} | {
|
|
@@ -9659,7 +9675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9659
9675
|
hint?: string | undefined;
|
|
9660
9676
|
messages?: {
|
|
9661
9677
|
text: string;
|
|
9662
|
-
type: "
|
|
9678
|
+
type: "success" | "error" | "info" | "warning";
|
|
9663
9679
|
id?: number | undefined;
|
|
9664
9680
|
}[] | undefined;
|
|
9665
9681
|
required?: boolean | undefined;
|
|
@@ -9680,7 +9696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9680
9696
|
hint?: string | undefined;
|
|
9681
9697
|
messages?: {
|
|
9682
9698
|
text: string;
|
|
9683
|
-
type: "
|
|
9699
|
+
type: "success" | "error" | "info" | "warning";
|
|
9684
9700
|
id?: number | undefined;
|
|
9685
9701
|
}[] | undefined;
|
|
9686
9702
|
required?: boolean | undefined;
|
|
@@ -9701,7 +9717,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9701
9717
|
hint?: string | undefined;
|
|
9702
9718
|
messages?: {
|
|
9703
9719
|
text: string;
|
|
9704
|
-
type: "
|
|
9720
|
+
type: "success" | "error" | "info" | "warning";
|
|
9705
9721
|
id?: number | undefined;
|
|
9706
9722
|
}[] | undefined;
|
|
9707
9723
|
required?: boolean | undefined;
|
|
@@ -9934,7 +9950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9934
9950
|
hint?: string | undefined;
|
|
9935
9951
|
messages?: {
|
|
9936
9952
|
text: string;
|
|
9937
|
-
type: "
|
|
9953
|
+
type: "success" | "error" | "info" | "warning";
|
|
9938
9954
|
id?: number | undefined;
|
|
9939
9955
|
}[] | undefined;
|
|
9940
9956
|
required?: boolean | undefined;
|
|
@@ -9952,7 +9968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9952
9968
|
hint?: string | undefined;
|
|
9953
9969
|
messages?: {
|
|
9954
9970
|
text: string;
|
|
9955
|
-
type: "
|
|
9971
|
+
type: "success" | "error" | "info" | "warning";
|
|
9956
9972
|
id?: number | undefined;
|
|
9957
9973
|
}[] | undefined;
|
|
9958
9974
|
required?: boolean | undefined;
|
|
@@ -9976,7 +9992,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9976
9992
|
hint?: string | undefined;
|
|
9977
9993
|
messages?: {
|
|
9978
9994
|
text: string;
|
|
9979
|
-
type: "
|
|
9995
|
+
type: "success" | "error" | "info" | "warning";
|
|
9980
9996
|
id?: number | undefined;
|
|
9981
9997
|
}[] | undefined;
|
|
9982
9998
|
required?: boolean | undefined;
|
|
@@ -10000,7 +10016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10000
10016
|
hint?: string | undefined;
|
|
10001
10017
|
messages?: {
|
|
10002
10018
|
text: string;
|
|
10003
|
-
type: "
|
|
10019
|
+
type: "success" | "error" | "info" | "warning";
|
|
10004
10020
|
id?: number | undefined;
|
|
10005
10021
|
}[] | undefined;
|
|
10006
10022
|
required?: boolean | undefined;
|
|
@@ -10024,7 +10040,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10024
10040
|
hint?: string | undefined;
|
|
10025
10041
|
messages?: {
|
|
10026
10042
|
text: string;
|
|
10027
|
-
type: "
|
|
10043
|
+
type: "success" | "error" | "info" | "warning";
|
|
10028
10044
|
id?: number | undefined;
|
|
10029
10045
|
}[] | undefined;
|
|
10030
10046
|
required?: boolean | undefined;
|
|
@@ -10049,7 +10065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10049
10065
|
hint?: string | undefined;
|
|
10050
10066
|
messages?: {
|
|
10051
10067
|
text: string;
|
|
10052
|
-
type: "
|
|
10068
|
+
type: "success" | "error" | "info" | "warning";
|
|
10053
10069
|
id?: number | undefined;
|
|
10054
10070
|
}[] | undefined;
|
|
10055
10071
|
required?: boolean | undefined;
|
|
@@ -10064,7 +10080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10064
10080
|
hint?: string | undefined;
|
|
10065
10081
|
messages?: {
|
|
10066
10082
|
text: string;
|
|
10067
|
-
type: "
|
|
10083
|
+
type: "success" | "error" | "info" | "warning";
|
|
10068
10084
|
id?: number | undefined;
|
|
10069
10085
|
}[] | undefined;
|
|
10070
10086
|
required?: boolean | undefined;
|
|
@@ -10085,7 +10101,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10085
10101
|
hint?: string | undefined;
|
|
10086
10102
|
messages?: {
|
|
10087
10103
|
text: string;
|
|
10088
|
-
type: "
|
|
10104
|
+
type: "success" | "error" | "info" | "warning";
|
|
10089
10105
|
id?: number | undefined;
|
|
10090
10106
|
}[] | undefined;
|
|
10091
10107
|
required?: boolean | undefined;
|
|
@@ -10110,7 +10126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10110
10126
|
hint?: string | undefined;
|
|
10111
10127
|
messages?: {
|
|
10112
10128
|
text: string;
|
|
10113
|
-
type: "
|
|
10129
|
+
type: "success" | "error" | "info" | "warning";
|
|
10114
10130
|
id?: number | undefined;
|
|
10115
10131
|
}[] | undefined;
|
|
10116
10132
|
required?: boolean | undefined;
|
|
@@ -10129,7 +10145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10129
10145
|
hint?: string | undefined;
|
|
10130
10146
|
messages?: {
|
|
10131
10147
|
text: string;
|
|
10132
|
-
type: "
|
|
10148
|
+
type: "success" | "error" | "info" | "warning";
|
|
10133
10149
|
id?: number | undefined;
|
|
10134
10150
|
}[] | undefined;
|
|
10135
10151
|
required?: boolean | undefined;
|
|
@@ -10149,7 +10165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10149
10165
|
hint?: string | undefined;
|
|
10150
10166
|
messages?: {
|
|
10151
10167
|
text: string;
|
|
10152
|
-
type: "
|
|
10168
|
+
type: "success" | "error" | "info" | "warning";
|
|
10153
10169
|
id?: number | undefined;
|
|
10154
10170
|
}[] | undefined;
|
|
10155
10171
|
required?: boolean | undefined;
|
|
@@ -10168,7 +10184,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10168
10184
|
hint?: string | undefined;
|
|
10169
10185
|
messages?: {
|
|
10170
10186
|
text: string;
|
|
10171
|
-
type: "
|
|
10187
|
+
type: "success" | "error" | "info" | "warning";
|
|
10172
10188
|
id?: number | undefined;
|
|
10173
10189
|
}[] | undefined;
|
|
10174
10190
|
required?: boolean | undefined;
|
|
@@ -10190,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10190
10206
|
hint?: string | undefined;
|
|
10191
10207
|
messages?: {
|
|
10192
10208
|
text: string;
|
|
10193
|
-
type: "
|
|
10209
|
+
type: "success" | "error" | "info" | "warning";
|
|
10194
10210
|
id?: number | undefined;
|
|
10195
10211
|
}[] | undefined;
|
|
10196
10212
|
required?: boolean | undefined;
|
|
@@ -10212,7 +10228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10212
10228
|
hint?: string | undefined;
|
|
10213
10229
|
messages?: {
|
|
10214
10230
|
text: string;
|
|
10215
|
-
type: "
|
|
10231
|
+
type: "success" | "error" | "info" | "warning";
|
|
10216
10232
|
id?: number | undefined;
|
|
10217
10233
|
}[] | undefined;
|
|
10218
10234
|
required?: boolean | undefined;
|
|
@@ -10231,7 +10247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10231
10247
|
hint?: string | undefined;
|
|
10232
10248
|
messages?: {
|
|
10233
10249
|
text: string;
|
|
10234
|
-
type: "
|
|
10250
|
+
type: "success" | "error" | "info" | "warning";
|
|
10235
10251
|
id?: number | undefined;
|
|
10236
10252
|
}[] | undefined;
|
|
10237
10253
|
required?: boolean | undefined;
|
|
@@ -10244,6 +10260,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10244
10260
|
display_name?: string | undefined;
|
|
10245
10261
|
icon_url?: string | undefined;
|
|
10246
10262
|
href?: string | undefined;
|
|
10263
|
+
last_used?: boolean | undefined;
|
|
10264
|
+
last_used_label?: string | undefined;
|
|
10247
10265
|
}[] | undefined;
|
|
10248
10266
|
} | undefined;
|
|
10249
10267
|
} | {
|
|
@@ -10256,7 +10274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10256
10274
|
hint?: string | undefined;
|
|
10257
10275
|
messages?: {
|
|
10258
10276
|
text: string;
|
|
10259
|
-
type: "
|
|
10277
|
+
type: "success" | "error" | "info" | "warning";
|
|
10260
10278
|
id?: number | undefined;
|
|
10261
10279
|
}[] | undefined;
|
|
10262
10280
|
required?: boolean | undefined;
|
|
@@ -10277,7 +10295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10277
10295
|
hint?: string | undefined;
|
|
10278
10296
|
messages?: {
|
|
10279
10297
|
text: string;
|
|
10280
|
-
type: "
|
|
10298
|
+
type: "success" | "error" | "info" | "warning";
|
|
10281
10299
|
id?: number | undefined;
|
|
10282
10300
|
}[] | undefined;
|
|
10283
10301
|
required?: boolean | undefined;
|
|
@@ -10298,7 +10316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10298
10316
|
hint?: string | undefined;
|
|
10299
10317
|
messages?: {
|
|
10300
10318
|
text: string;
|
|
10301
|
-
type: "
|
|
10319
|
+
type: "success" | "error" | "info" | "warning";
|
|
10302
10320
|
id?: number | undefined;
|
|
10303
10321
|
}[] | undefined;
|
|
10304
10322
|
required?: boolean | undefined;
|
|
@@ -10529,7 +10547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10529
10547
|
hint?: string | undefined;
|
|
10530
10548
|
messages?: {
|
|
10531
10549
|
text: string;
|
|
10532
|
-
type: "
|
|
10550
|
+
type: "success" | "error" | "info" | "warning";
|
|
10533
10551
|
id?: number | undefined;
|
|
10534
10552
|
}[] | undefined;
|
|
10535
10553
|
required?: boolean | undefined;
|
|
@@ -10547,7 +10565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10547
10565
|
hint?: string | undefined;
|
|
10548
10566
|
messages?: {
|
|
10549
10567
|
text: string;
|
|
10550
|
-
type: "
|
|
10568
|
+
type: "success" | "error" | "info" | "warning";
|
|
10551
10569
|
id?: number | undefined;
|
|
10552
10570
|
}[] | undefined;
|
|
10553
10571
|
required?: boolean | undefined;
|
|
@@ -10571,7 +10589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10571
10589
|
hint?: string | undefined;
|
|
10572
10590
|
messages?: {
|
|
10573
10591
|
text: string;
|
|
10574
|
-
type: "
|
|
10592
|
+
type: "success" | "error" | "info" | "warning";
|
|
10575
10593
|
id?: number | undefined;
|
|
10576
10594
|
}[] | undefined;
|
|
10577
10595
|
required?: boolean | undefined;
|
|
@@ -10595,7 +10613,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10595
10613
|
hint?: string | undefined;
|
|
10596
10614
|
messages?: {
|
|
10597
10615
|
text: string;
|
|
10598
|
-
type: "
|
|
10616
|
+
type: "success" | "error" | "info" | "warning";
|
|
10599
10617
|
id?: number | undefined;
|
|
10600
10618
|
}[] | undefined;
|
|
10601
10619
|
required?: boolean | undefined;
|
|
@@ -10619,7 +10637,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10619
10637
|
hint?: string | undefined;
|
|
10620
10638
|
messages?: {
|
|
10621
10639
|
text: string;
|
|
10622
|
-
type: "
|
|
10640
|
+
type: "success" | "error" | "info" | "warning";
|
|
10623
10641
|
id?: number | undefined;
|
|
10624
10642
|
}[] | undefined;
|
|
10625
10643
|
required?: boolean | undefined;
|
|
@@ -10648,7 +10666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10648
10666
|
hint?: string | undefined;
|
|
10649
10667
|
messages?: {
|
|
10650
10668
|
text: string;
|
|
10651
|
-
type: "
|
|
10669
|
+
type: "success" | "error" | "info" | "warning";
|
|
10652
10670
|
id?: number | undefined;
|
|
10653
10671
|
}[] | undefined;
|
|
10654
10672
|
required?: boolean | undefined;
|
|
@@ -10663,7 +10681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10663
10681
|
hint?: string | undefined;
|
|
10664
10682
|
messages?: {
|
|
10665
10683
|
text: string;
|
|
10666
|
-
type: "
|
|
10684
|
+
type: "success" | "error" | "info" | "warning";
|
|
10667
10685
|
id?: number | undefined;
|
|
10668
10686
|
}[] | undefined;
|
|
10669
10687
|
required?: boolean | undefined;
|
|
@@ -10684,7 +10702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10684
10702
|
hint?: string | undefined;
|
|
10685
10703
|
messages?: {
|
|
10686
10704
|
text: string;
|
|
10687
|
-
type: "
|
|
10705
|
+
type: "success" | "error" | "info" | "warning";
|
|
10688
10706
|
id?: number | undefined;
|
|
10689
10707
|
}[] | undefined;
|
|
10690
10708
|
required?: boolean | undefined;
|
|
@@ -10709,7 +10727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10709
10727
|
hint?: string | undefined;
|
|
10710
10728
|
messages?: {
|
|
10711
10729
|
text: string;
|
|
10712
|
-
type: "
|
|
10730
|
+
type: "success" | "error" | "info" | "warning";
|
|
10713
10731
|
id?: number | undefined;
|
|
10714
10732
|
}[] | undefined;
|
|
10715
10733
|
required?: boolean | undefined;
|
|
@@ -10728,7 +10746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10728
10746
|
hint?: string | undefined;
|
|
10729
10747
|
messages?: {
|
|
10730
10748
|
text: string;
|
|
10731
|
-
type: "
|
|
10749
|
+
type: "success" | "error" | "info" | "warning";
|
|
10732
10750
|
id?: number | undefined;
|
|
10733
10751
|
}[] | undefined;
|
|
10734
10752
|
required?: boolean | undefined;
|
|
@@ -10748,7 +10766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10748
10766
|
hint?: string | undefined;
|
|
10749
10767
|
messages?: {
|
|
10750
10768
|
text: string;
|
|
10751
|
-
type: "
|
|
10769
|
+
type: "success" | "error" | "info" | "warning";
|
|
10752
10770
|
id?: number | undefined;
|
|
10753
10771
|
}[] | undefined;
|
|
10754
10772
|
required?: boolean | undefined;
|
|
@@ -10767,7 +10785,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10767
10785
|
hint?: string | undefined;
|
|
10768
10786
|
messages?: {
|
|
10769
10787
|
text: string;
|
|
10770
|
-
type: "
|
|
10788
|
+
type: "success" | "error" | "info" | "warning";
|
|
10771
10789
|
id?: number | undefined;
|
|
10772
10790
|
}[] | undefined;
|
|
10773
10791
|
required?: boolean | undefined;
|
|
@@ -10789,7 +10807,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10789
10807
|
hint?: string | undefined;
|
|
10790
10808
|
messages?: {
|
|
10791
10809
|
text: string;
|
|
10792
|
-
type: "
|
|
10810
|
+
type: "success" | "error" | "info" | "warning";
|
|
10793
10811
|
id?: number | undefined;
|
|
10794
10812
|
}[] | undefined;
|
|
10795
10813
|
required?: boolean | undefined;
|
|
@@ -10811,7 +10829,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10811
10829
|
hint?: string | undefined;
|
|
10812
10830
|
messages?: {
|
|
10813
10831
|
text: string;
|
|
10814
|
-
type: "
|
|
10832
|
+
type: "success" | "error" | "info" | "warning";
|
|
10815
10833
|
id?: number | undefined;
|
|
10816
10834
|
}[] | undefined;
|
|
10817
10835
|
required?: boolean | undefined;
|
|
@@ -10830,7 +10848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10830
10848
|
hint?: string | undefined;
|
|
10831
10849
|
messages?: {
|
|
10832
10850
|
text: string;
|
|
10833
|
-
type: "
|
|
10851
|
+
type: "success" | "error" | "info" | "warning";
|
|
10834
10852
|
id?: number | undefined;
|
|
10835
10853
|
}[] | undefined;
|
|
10836
10854
|
required?: boolean | undefined;
|
|
@@ -10843,6 +10861,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10843
10861
|
display_name?: string | undefined;
|
|
10844
10862
|
icon_url?: string | undefined;
|
|
10845
10863
|
href?: string | undefined;
|
|
10864
|
+
last_used?: boolean | undefined;
|
|
10865
|
+
last_used_label?: string | undefined;
|
|
10846
10866
|
}[] | undefined;
|
|
10847
10867
|
} | undefined;
|
|
10848
10868
|
} | {
|
|
@@ -10855,7 +10875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10855
10875
|
hint?: string | undefined;
|
|
10856
10876
|
messages?: {
|
|
10857
10877
|
text: string;
|
|
10858
|
-
type: "
|
|
10878
|
+
type: "success" | "error" | "info" | "warning";
|
|
10859
10879
|
id?: number | undefined;
|
|
10860
10880
|
}[] | undefined;
|
|
10861
10881
|
required?: boolean | undefined;
|
|
@@ -10876,7 +10896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10876
10896
|
hint?: string | undefined;
|
|
10877
10897
|
messages?: {
|
|
10878
10898
|
text: string;
|
|
10879
|
-
type: "
|
|
10899
|
+
type: "success" | "error" | "info" | "warning";
|
|
10880
10900
|
id?: number | undefined;
|
|
10881
10901
|
}[] | undefined;
|
|
10882
10902
|
required?: boolean | undefined;
|
|
@@ -10897,7 +10917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10897
10917
|
hint?: string | undefined;
|
|
10898
10918
|
messages?: {
|
|
10899
10919
|
text: string;
|
|
10900
|
-
type: "
|
|
10920
|
+
type: "success" | "error" | "info" | "warning";
|
|
10901
10921
|
id?: number | undefined;
|
|
10902
10922
|
}[] | undefined;
|
|
10903
10923
|
required?: boolean | undefined;
|
|
@@ -11092,6 +11112,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11092
11112
|
universal_login_experience: "new" | "classic";
|
|
11093
11113
|
identifier_first: boolean;
|
|
11094
11114
|
password_first: boolean;
|
|
11115
|
+
show_last_used_connection: boolean;
|
|
11095
11116
|
webauthn_platform_first_factor: boolean;
|
|
11096
11117
|
};
|
|
11097
11118
|
outputFormat: "json";
|
|
@@ -11110,6 +11131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11110
11131
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
11111
11132
|
identifier_first?: boolean | undefined;
|
|
11112
11133
|
password_first?: boolean | undefined;
|
|
11134
|
+
show_last_used_connection?: boolean | undefined;
|
|
11113
11135
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
11114
11136
|
};
|
|
11115
11137
|
};
|
|
@@ -11127,7 +11149,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11127
11149
|
};
|
|
11128
11150
|
};
|
|
11129
11151
|
output: {
|
|
11130
|
-
prompt: "
|
|
11152
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
|
|
11131
11153
|
language: string;
|
|
11132
11154
|
}[];
|
|
11133
11155
|
outputFormat: "json";
|
|
@@ -11165,7 +11187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11165
11187
|
$get: {
|
|
11166
11188
|
input: {
|
|
11167
11189
|
param: {
|
|
11168
|
-
prompt: "
|
|
11190
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
|
|
11169
11191
|
language: string;
|
|
11170
11192
|
};
|
|
11171
11193
|
} & {
|
|
@@ -11187,7 +11209,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11187
11209
|
$put: {
|
|
11188
11210
|
input: {
|
|
11189
11211
|
param: {
|
|
11190
|
-
prompt: "
|
|
11212
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
|
|
11191
11213
|
language: string;
|
|
11192
11214
|
};
|
|
11193
11215
|
} & {
|
|
@@ -11211,7 +11233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11211
11233
|
$delete: {
|
|
11212
11234
|
input: {
|
|
11213
11235
|
param: {
|
|
11214
|
-
prompt: "
|
|
11236
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
|
|
11215
11237
|
language: string;
|
|
11216
11238
|
};
|
|
11217
11239
|
} & {
|
|
@@ -12074,7 +12096,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12074
12096
|
};
|
|
12075
12097
|
} | {
|
|
12076
12098
|
mode: "inline";
|
|
12077
|
-
status: "
|
|
12099
|
+
status: "success" | "error";
|
|
12078
12100
|
connection_id: string;
|
|
12079
12101
|
connection_name: string;
|
|
12080
12102
|
strategy: string;
|
|
@@ -12714,7 +12736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12714
12736
|
log_type: string;
|
|
12715
12737
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12716
12738
|
actor: {
|
|
12717
|
-
type: "client_credentials" | "user" | "
|
|
12739
|
+
type: "client_credentials" | "user" | "api_key" | "system" | "admin";
|
|
12718
12740
|
id?: string | undefined;
|
|
12719
12741
|
email?: string | undefined;
|
|
12720
12742
|
org_id?: string | undefined;
|
|
@@ -13025,7 +13047,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13025
13047
|
created_at: string;
|
|
13026
13048
|
updated_at: string;
|
|
13027
13049
|
name: string;
|
|
13028
|
-
provider: "auth0" | "
|
|
13050
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13029
13051
|
connection: string;
|
|
13030
13052
|
enabled: boolean;
|
|
13031
13053
|
credentials: {
|
|
@@ -13057,7 +13079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13057
13079
|
created_at: string;
|
|
13058
13080
|
updated_at: string;
|
|
13059
13081
|
name: string;
|
|
13060
|
-
provider: "auth0" | "
|
|
13082
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13061
13083
|
connection: string;
|
|
13062
13084
|
enabled: boolean;
|
|
13063
13085
|
credentials: {
|
|
@@ -13083,7 +13105,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13083
13105
|
} & {
|
|
13084
13106
|
json: {
|
|
13085
13107
|
name: string;
|
|
13086
|
-
provider: "auth0" | "
|
|
13108
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13087
13109
|
connection: string;
|
|
13088
13110
|
credentials: {
|
|
13089
13111
|
domain: string;
|
|
@@ -13100,7 +13122,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13100
13122
|
created_at: string;
|
|
13101
13123
|
updated_at: string;
|
|
13102
13124
|
name: string;
|
|
13103
|
-
provider: "auth0" | "
|
|
13125
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13104
13126
|
connection: string;
|
|
13105
13127
|
enabled: boolean;
|
|
13106
13128
|
credentials: {
|
|
@@ -13131,7 +13153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13131
13153
|
json: {
|
|
13132
13154
|
id?: string | undefined;
|
|
13133
13155
|
name?: string | undefined;
|
|
13134
|
-
provider?: "auth0" | "
|
|
13156
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
13135
13157
|
connection?: string | undefined;
|
|
13136
13158
|
enabled?: boolean | undefined;
|
|
13137
13159
|
credentials?: {
|
|
@@ -13147,7 +13169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13147
13169
|
created_at: string;
|
|
13148
13170
|
updated_at: string;
|
|
13149
13171
|
name: string;
|
|
13150
|
-
provider: "auth0" | "
|
|
13172
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13151
13173
|
connection: string;
|
|
13152
13174
|
enabled: boolean;
|
|
13153
13175
|
credentials: {
|
|
@@ -13365,7 +13387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13365
13387
|
};
|
|
13366
13388
|
};
|
|
13367
13389
|
output: {
|
|
13368
|
-
type: "
|
|
13390
|
+
type: "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" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
13369
13391
|
date: string;
|
|
13370
13392
|
isMobile: boolean;
|
|
13371
13393
|
log_id: string;
|
|
@@ -13404,7 +13426,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13404
13426
|
limit: number;
|
|
13405
13427
|
length: number;
|
|
13406
13428
|
logs: {
|
|
13407
|
-
type: "
|
|
13429
|
+
type: "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" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
13408
13430
|
date: string;
|
|
13409
13431
|
isMobile: boolean;
|
|
13410
13432
|
log_id: string;
|
|
@@ -13443,7 +13465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13443
13465
|
next?: string | undefined;
|
|
13444
13466
|
} | {
|
|
13445
13467
|
logs: {
|
|
13446
|
-
type: "
|
|
13468
|
+
type: "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" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
13447
13469
|
date: string;
|
|
13448
13470
|
isMobile: boolean;
|
|
13449
13471
|
log_id: string;
|
|
@@ -13497,7 +13519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13497
13519
|
};
|
|
13498
13520
|
};
|
|
13499
13521
|
output: {
|
|
13500
|
-
type: "
|
|
13522
|
+
type: "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" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
13501
13523
|
date: string;
|
|
13502
13524
|
isMobile: boolean;
|
|
13503
13525
|
log_id: string;
|
|
@@ -15022,6 +15044,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15022
15044
|
verify_email?: boolean | undefined;
|
|
15023
15045
|
last_ip?: string | undefined;
|
|
15024
15046
|
last_login?: string | undefined;
|
|
15047
|
+
blocked?: boolean | undefined;
|
|
15025
15048
|
registration_completed_at?: string | undefined;
|
|
15026
15049
|
email?: string | undefined;
|
|
15027
15050
|
identities?: {
|
|
@@ -15207,6 +15230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15207
15230
|
verify_email?: boolean | undefined;
|
|
15208
15231
|
last_ip?: string | undefined;
|
|
15209
15232
|
last_login?: string | undefined;
|
|
15233
|
+
blocked?: boolean | undefined;
|
|
15210
15234
|
identities?: {
|
|
15211
15235
|
connection: string;
|
|
15212
15236
|
user_id: string;
|
|
@@ -15277,6 +15301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15277
15301
|
verify_email?: boolean | undefined;
|
|
15278
15302
|
last_ip?: string | undefined;
|
|
15279
15303
|
last_login?: string | undefined;
|
|
15304
|
+
blocked?: boolean | undefined;
|
|
15280
15305
|
identities?: {
|
|
15281
15306
|
connection: string;
|
|
15282
15307
|
user_id: string;
|
|
@@ -15347,6 +15372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15347
15372
|
verify_email?: boolean | undefined;
|
|
15348
15373
|
last_ip?: string | undefined;
|
|
15349
15374
|
last_login?: string | undefined;
|
|
15375
|
+
blocked?: boolean | undefined;
|
|
15350
15376
|
identities?: {
|
|
15351
15377
|
connection: string;
|
|
15352
15378
|
user_id: string;
|
|
@@ -15432,6 +15458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15432
15458
|
verify_email?: boolean | undefined;
|
|
15433
15459
|
last_ip?: string | undefined;
|
|
15434
15460
|
last_login?: string | undefined;
|
|
15461
|
+
blocked?: boolean | undefined;
|
|
15435
15462
|
identities?: {
|
|
15436
15463
|
connection: string;
|
|
15437
15464
|
user_id: string;
|
|
@@ -15525,6 +15552,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15525
15552
|
user_id?: string | undefined;
|
|
15526
15553
|
provider?: string | undefined;
|
|
15527
15554
|
is_social?: boolean | undefined;
|
|
15555
|
+
blocked?: boolean | undefined;
|
|
15528
15556
|
registration_completed_at?: string | undefined;
|
|
15529
15557
|
password?: string | undefined;
|
|
15530
15558
|
};
|
|
@@ -15570,6 +15598,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15570
15598
|
verify_email?: boolean | undefined;
|
|
15571
15599
|
last_ip?: string | undefined;
|
|
15572
15600
|
last_login?: string | undefined;
|
|
15601
|
+
blocked?: boolean | undefined;
|
|
15573
15602
|
identities?: {
|
|
15574
15603
|
connection: string;
|
|
15575
15604
|
user_id: string;
|
|
@@ -15646,6 +15675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15646
15675
|
provider?: string | undefined;
|
|
15647
15676
|
connection?: string | undefined;
|
|
15648
15677
|
is_social?: boolean | undefined;
|
|
15678
|
+
blocked?: boolean | undefined;
|
|
15649
15679
|
registration_completed_at?: string | undefined;
|
|
15650
15680
|
verify_email?: boolean | undefined;
|
|
15651
15681
|
password?: string | undefined;
|
|
@@ -15763,6 +15793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15763
15793
|
verify_email?: boolean | undefined;
|
|
15764
15794
|
last_ip?: string | undefined;
|
|
15765
15795
|
last_login?: string | undefined;
|
|
15796
|
+
blocked?: boolean | undefined;
|
|
15766
15797
|
identities?: {
|
|
15767
15798
|
connection: string;
|
|
15768
15799
|
user_id: string;
|
|
@@ -15952,7 +15983,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15952
15983
|
};
|
|
15953
15984
|
};
|
|
15954
15985
|
output: {
|
|
15955
|
-
type: "
|
|
15986
|
+
type: "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" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
15956
15987
|
date: string;
|
|
15957
15988
|
isMobile: boolean;
|
|
15958
15989
|
log_id: string;
|
|
@@ -15991,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15991
16022
|
limit: number;
|
|
15992
16023
|
length: number;
|
|
15993
16024
|
logs: {
|
|
15994
|
-
type: "
|
|
16025
|
+
type: "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" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
|
|
15995
16026
|
date: string;
|
|
15996
16027
|
isMobile: boolean;
|
|
15997
16028
|
log_id: string;
|
|
@@ -16310,7 +16341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16310
16341
|
};
|
|
16311
16342
|
} & {
|
|
16312
16343
|
json: {
|
|
16313
|
-
template: "
|
|
16344
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16314
16345
|
body: string;
|
|
16315
16346
|
from: string;
|
|
16316
16347
|
subject: string;
|
|
@@ -16331,7 +16362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16331
16362
|
};
|
|
16332
16363
|
} & {
|
|
16333
16364
|
json: {
|
|
16334
|
-
template: "
|
|
16365
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16335
16366
|
body: string;
|
|
16336
16367
|
from: string;
|
|
16337
16368
|
subject: string;
|
|
@@ -16343,7 +16374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16343
16374
|
};
|
|
16344
16375
|
};
|
|
16345
16376
|
output: {
|
|
16346
|
-
template: "
|
|
16377
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16347
16378
|
body: string;
|
|
16348
16379
|
from: string;
|
|
16349
16380
|
subject: string;
|
|
@@ -16366,7 +16397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16366
16397
|
};
|
|
16367
16398
|
};
|
|
16368
16399
|
output: {
|
|
16369
|
-
name: "
|
|
16400
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16370
16401
|
body: string;
|
|
16371
16402
|
subject: string;
|
|
16372
16403
|
}[];
|
|
@@ -16379,7 +16410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16379
16410
|
$get: {
|
|
16380
16411
|
input: {
|
|
16381
16412
|
param: {
|
|
16382
|
-
templateName: "
|
|
16413
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16383
16414
|
};
|
|
16384
16415
|
} & {
|
|
16385
16416
|
header: {
|
|
@@ -16392,7 +16423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16392
16423
|
} | {
|
|
16393
16424
|
input: {
|
|
16394
16425
|
param: {
|
|
16395
|
-
templateName: "
|
|
16426
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16396
16427
|
};
|
|
16397
16428
|
} & {
|
|
16398
16429
|
header: {
|
|
@@ -16400,7 +16431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16400
16431
|
};
|
|
16401
16432
|
};
|
|
16402
16433
|
output: {
|
|
16403
|
-
template: "
|
|
16434
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16404
16435
|
body: string;
|
|
16405
16436
|
from: string;
|
|
16406
16437
|
subject: string;
|
|
@@ -16419,7 +16450,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16419
16450
|
$put: {
|
|
16420
16451
|
input: {
|
|
16421
16452
|
param: {
|
|
16422
|
-
templateName: "
|
|
16453
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16423
16454
|
};
|
|
16424
16455
|
} & {
|
|
16425
16456
|
header: {
|
|
@@ -16427,7 +16458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16427
16458
|
};
|
|
16428
16459
|
} & {
|
|
16429
16460
|
json: {
|
|
16430
|
-
template: "
|
|
16461
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16431
16462
|
body: string;
|
|
16432
16463
|
subject: string;
|
|
16433
16464
|
syntax?: "liquid" | undefined;
|
|
@@ -16439,7 +16470,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16439
16470
|
};
|
|
16440
16471
|
};
|
|
16441
16472
|
output: {
|
|
16442
|
-
template: "
|
|
16473
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16443
16474
|
body: string;
|
|
16444
16475
|
from: string;
|
|
16445
16476
|
subject: string;
|
|
@@ -16458,7 +16489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16458
16489
|
$patch: {
|
|
16459
16490
|
input: {
|
|
16460
16491
|
param: {
|
|
16461
|
-
templateName: "
|
|
16492
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16462
16493
|
};
|
|
16463
16494
|
} & {
|
|
16464
16495
|
header: {
|
|
@@ -16466,7 +16497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16466
16497
|
};
|
|
16467
16498
|
} & {
|
|
16468
16499
|
json: {
|
|
16469
|
-
template?: "
|
|
16500
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16470
16501
|
body?: string | undefined;
|
|
16471
16502
|
from?: string | undefined;
|
|
16472
16503
|
subject?: string | undefined;
|
|
@@ -16483,7 +16514,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16483
16514
|
} | {
|
|
16484
16515
|
input: {
|
|
16485
16516
|
param: {
|
|
16486
|
-
templateName: "
|
|
16517
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16487
16518
|
};
|
|
16488
16519
|
} & {
|
|
16489
16520
|
header: {
|
|
@@ -16491,7 +16522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16491
16522
|
};
|
|
16492
16523
|
} & {
|
|
16493
16524
|
json: {
|
|
16494
|
-
template?: "
|
|
16525
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16495
16526
|
body?: string | undefined;
|
|
16496
16527
|
from?: string | undefined;
|
|
16497
16528
|
subject?: string | undefined;
|
|
@@ -16503,7 +16534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16503
16534
|
};
|
|
16504
16535
|
};
|
|
16505
16536
|
output: {
|
|
16506
|
-
template: "
|
|
16537
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16507
16538
|
body: string;
|
|
16508
16539
|
from: string;
|
|
16509
16540
|
subject: string;
|
|
@@ -16522,7 +16553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16522
16553
|
$delete: {
|
|
16523
16554
|
input: {
|
|
16524
16555
|
param: {
|
|
16525
|
-
templateName: "
|
|
16556
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16526
16557
|
};
|
|
16527
16558
|
} & {
|
|
16528
16559
|
header: {
|
|
@@ -16535,7 +16566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16535
16566
|
} | {
|
|
16536
16567
|
input: {
|
|
16537
16568
|
param: {
|
|
16538
|
-
templateName: "
|
|
16569
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16539
16570
|
};
|
|
16540
16571
|
} & {
|
|
16541
16572
|
header: {
|
|
@@ -16552,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16552
16583
|
$post: {
|
|
16553
16584
|
input: {
|
|
16554
16585
|
param: {
|
|
16555
|
-
templateName: "
|
|
16586
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16556
16587
|
};
|
|
16557
16588
|
} & {
|
|
16558
16589
|
header: {
|
|
@@ -17504,7 +17535,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17504
17535
|
} & {
|
|
17505
17536
|
json: {
|
|
17506
17537
|
body?: string | undefined;
|
|
17507
|
-
screen?: "
|
|
17538
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
17508
17539
|
branding?: {
|
|
17509
17540
|
colors?: {
|
|
17510
17541
|
primary: string;
|
|
@@ -17673,7 +17704,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17673
17704
|
json: {
|
|
17674
17705
|
bindings: {
|
|
17675
17706
|
ref: {
|
|
17676
|
-
type?: "
|
|
17707
|
+
type?: "action_name" | "action_id" | undefined;
|
|
17677
17708
|
value?: string | undefined;
|
|
17678
17709
|
id?: string | undefined;
|
|
17679
17710
|
name?: string | undefined;
|
|
@@ -17795,7 +17826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17795
17826
|
logs: {
|
|
17796
17827
|
action_name: string;
|
|
17797
17828
|
lines: {
|
|
17798
|
-
level: "
|
|
17829
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
17799
17830
|
message: string;
|
|
17800
17831
|
}[];
|
|
17801
17832
|
}[];
|
|
@@ -18464,7 +18495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18464
18495
|
args: hono_utils_types.JSONValue[];
|
|
18465
18496
|
}[];
|
|
18466
18497
|
logs: {
|
|
18467
|
-
level: "
|
|
18498
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
18468
18499
|
message: string;
|
|
18469
18500
|
}[];
|
|
18470
18501
|
error?: string | undefined;
|
|
@@ -19210,16 +19241,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19210
19241
|
email: string;
|
|
19211
19242
|
send: "code" | "link";
|
|
19212
19243
|
authParams: {
|
|
19213
|
-
audience?: string | undefined;
|
|
19214
|
-
scope?: string | undefined;
|
|
19215
|
-
redirect_uri?: string | undefined;
|
|
19216
|
-
organization?: string | undefined;
|
|
19217
19244
|
username?: string | undefined;
|
|
19218
19245
|
state?: string | undefined;
|
|
19219
19246
|
act_as?: string | undefined;
|
|
19220
19247
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19221
19248
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19249
|
+
redirect_uri?: string | undefined;
|
|
19250
|
+
audience?: string | undefined;
|
|
19251
|
+
organization?: string | undefined;
|
|
19222
19252
|
nonce?: string | undefined;
|
|
19253
|
+
scope?: string | undefined;
|
|
19223
19254
|
prompt?: string | undefined;
|
|
19224
19255
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19225
19256
|
code_challenge?: string | undefined;
|
|
@@ -19246,16 +19277,16 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19246
19277
|
phone_number: string;
|
|
19247
19278
|
send: "code" | "link";
|
|
19248
19279
|
authParams: {
|
|
19249
|
-
audience?: string | undefined;
|
|
19250
|
-
scope?: string | undefined;
|
|
19251
|
-
redirect_uri?: string | undefined;
|
|
19252
|
-
organization?: string | undefined;
|
|
19253
19280
|
username?: string | undefined;
|
|
19254
19281
|
state?: string | undefined;
|
|
19255
19282
|
act_as?: string | undefined;
|
|
19256
19283
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19257
19284
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19285
|
+
redirect_uri?: string | undefined;
|
|
19286
|
+
audience?: string | undefined;
|
|
19287
|
+
organization?: string | undefined;
|
|
19258
19288
|
nonce?: string | undefined;
|
|
19289
|
+
scope?: string | undefined;
|
|
19259
19290
|
prompt?: string | undefined;
|
|
19260
19291
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19261
19292
|
code_challenge?: string | undefined;
|
|
@@ -21169,7 +21200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21169
21200
|
$get: {
|
|
21170
21201
|
input: {
|
|
21171
21202
|
param: {
|
|
21172
|
-
screen: "
|
|
21203
|
+
screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21173
21204
|
};
|
|
21174
21205
|
} & {
|
|
21175
21206
|
query: {
|
|
@@ -21185,7 +21216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21185
21216
|
} | {
|
|
21186
21217
|
input: {
|
|
21187
21218
|
param: {
|
|
21188
|
-
screen: "
|
|
21219
|
+
screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21189
21220
|
};
|
|
21190
21221
|
} & {
|
|
21191
21222
|
query: {
|
|
@@ -21201,7 +21232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21201
21232
|
} | {
|
|
21202
21233
|
input: {
|
|
21203
21234
|
param: {
|
|
21204
|
-
screen: "
|
|
21235
|
+
screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21205
21236
|
};
|
|
21206
21237
|
} & {
|
|
21207
21238
|
query: {
|
|
@@ -21221,7 +21252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21221
21252
|
$post: {
|
|
21222
21253
|
input: {
|
|
21223
21254
|
param: {
|
|
21224
|
-
screen: "
|
|
21255
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21225
21256
|
};
|
|
21226
21257
|
} & {
|
|
21227
21258
|
query: {
|
|
@@ -21239,7 +21270,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21239
21270
|
} | {
|
|
21240
21271
|
input: {
|
|
21241
21272
|
param: {
|
|
21242
|
-
screen: "
|
|
21273
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21243
21274
|
};
|
|
21244
21275
|
} & {
|
|
21245
21276
|
query: {
|
|
@@ -21334,6 +21365,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21334
21365
|
};
|
|
21335
21366
|
};
|
|
21336
21367
|
}, "/forms"> & hono_types.MergeSchemaPath<{}, "/screen">, "/">;
|
|
21368
|
+
scimApp: OpenAPIHono<{
|
|
21369
|
+
Bindings: Bindings;
|
|
21370
|
+
Variables: Variables;
|
|
21371
|
+
}, {}, "/"> | undefined;
|
|
21337
21372
|
createX509Certificate: typeof createX509Certificate;
|
|
21338
21373
|
};
|
|
21339
21374
|
|