authhero 9.6.3 → 9.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +144 -144
- package/dist/authhero.d.ts +460 -240
- package/dist/authhero.mjs +14192 -14009
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +17 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/revoke-user-refresh-tokens.d.ts +21 -0
- package/dist/types/helpers/users.d.ts +58 -20
- package/dist/types/hooks/helpers/post-login-account-linking.d.ts +3 -2
- package/dist/types/index.d.ts +460 -240
- package/dist/types/routes/auth-api/index.d.ts +29 -29
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +424 -204
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/refresh_tokens.d.ts +7 -0
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +148 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/user-id.d.ts +19 -1
- package/package.json +6 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -4265,8 +4265,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4265
4265
|
$get: {
|
|
4266
4266
|
input: {
|
|
4267
4267
|
query: {
|
|
4268
|
-
include_password_hashes?: "
|
|
4269
|
-
gzip?: "
|
|
4268
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4269
|
+
gzip?: "false" | "true" | undefined;
|
|
4270
4270
|
};
|
|
4271
4271
|
} & {
|
|
4272
4272
|
header: {
|
|
@@ -4279,8 +4279,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4279
4279
|
} | {
|
|
4280
4280
|
input: {
|
|
4281
4281
|
query: {
|
|
4282
|
-
include_password_hashes?: "
|
|
4283
|
-
gzip?: "
|
|
4282
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4283
|
+
gzip?: "false" | "true" | undefined;
|
|
4284
4284
|
};
|
|
4285
4285
|
} & {
|
|
4286
4286
|
header: {
|
|
@@ -4299,7 +4299,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4299
4299
|
$post: {
|
|
4300
4300
|
input: {
|
|
4301
4301
|
query: {
|
|
4302
|
-
include_password_hashes?: "
|
|
4302
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4303
4303
|
};
|
|
4304
4304
|
} & {
|
|
4305
4305
|
header: {
|
|
@@ -4493,7 +4493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4493
4493
|
};
|
|
4494
4494
|
};
|
|
4495
4495
|
output: {
|
|
4496
|
-
name: "
|
|
4496
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4497
4497
|
enabled: boolean;
|
|
4498
4498
|
trial_expired?: boolean | undefined;
|
|
4499
4499
|
}[];
|
|
@@ -4648,7 +4648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4648
4648
|
$get: {
|
|
4649
4649
|
input: {
|
|
4650
4650
|
param: {
|
|
4651
|
-
factor_name: "
|
|
4651
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4652
4652
|
};
|
|
4653
4653
|
} & {
|
|
4654
4654
|
header: {
|
|
@@ -4656,7 +4656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4656
4656
|
};
|
|
4657
4657
|
};
|
|
4658
4658
|
output: {
|
|
4659
|
-
name: "
|
|
4659
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4660
4660
|
enabled: boolean;
|
|
4661
4661
|
trial_expired?: boolean | undefined;
|
|
4662
4662
|
};
|
|
@@ -4669,7 +4669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4669
4669
|
$put: {
|
|
4670
4670
|
input: {
|
|
4671
4671
|
param: {
|
|
4672
|
-
factor_name: "
|
|
4672
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4673
4673
|
};
|
|
4674
4674
|
} & {
|
|
4675
4675
|
header: {
|
|
@@ -4681,7 +4681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4681
4681
|
};
|
|
4682
4682
|
};
|
|
4683
4683
|
output: {
|
|
4684
|
-
name: "
|
|
4684
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4685
4685
|
enabled: boolean;
|
|
4686
4686
|
trial_expired?: boolean | undefined;
|
|
4687
4687
|
};
|
|
@@ -5648,8 +5648,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5648
5648
|
};
|
|
5649
5649
|
} & {
|
|
5650
5650
|
json: {
|
|
5651
|
-
show_as_button?: boolean | undefined;
|
|
5652
5651
|
assign_membership_on_login?: boolean | undefined;
|
|
5652
|
+
show_as_button?: boolean | undefined;
|
|
5653
5653
|
is_signup_enabled?: boolean | undefined;
|
|
5654
5654
|
};
|
|
5655
5655
|
};
|
|
@@ -6220,9 +6220,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6220
6220
|
};
|
|
6221
6221
|
} & {
|
|
6222
6222
|
query: {
|
|
6223
|
-
from?: string | undefined;
|
|
6224
6223
|
page?: string | undefined;
|
|
6225
6224
|
include_totals?: string | undefined;
|
|
6225
|
+
from?: string | undefined;
|
|
6226
6226
|
per_page?: string | undefined;
|
|
6227
6227
|
take?: string | undefined;
|
|
6228
6228
|
};
|
|
@@ -6945,7 +6945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6945
6945
|
hint?: string | undefined;
|
|
6946
6946
|
messages?: {
|
|
6947
6947
|
text: string;
|
|
6948
|
-
type: "
|
|
6948
|
+
type: "error" | "success" | "info" | "warning";
|
|
6949
6949
|
id?: number | undefined;
|
|
6950
6950
|
}[] | undefined;
|
|
6951
6951
|
required?: boolean | undefined;
|
|
@@ -6963,7 +6963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6963
6963
|
hint?: string | undefined;
|
|
6964
6964
|
messages?: {
|
|
6965
6965
|
text: string;
|
|
6966
|
-
type: "
|
|
6966
|
+
type: "error" | "success" | "info" | "warning";
|
|
6967
6967
|
id?: number | undefined;
|
|
6968
6968
|
}[] | undefined;
|
|
6969
6969
|
required?: boolean | undefined;
|
|
@@ -6987,7 +6987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6987
6987
|
hint?: string | undefined;
|
|
6988
6988
|
messages?: {
|
|
6989
6989
|
text: string;
|
|
6990
|
-
type: "
|
|
6990
|
+
type: "error" | "success" | "info" | "warning";
|
|
6991
6991
|
id?: number | undefined;
|
|
6992
6992
|
}[] | undefined;
|
|
6993
6993
|
required?: boolean | undefined;
|
|
@@ -7011,7 +7011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7011
7011
|
hint?: string | undefined;
|
|
7012
7012
|
messages?: {
|
|
7013
7013
|
text: string;
|
|
7014
|
-
type: "
|
|
7014
|
+
type: "error" | "success" | "info" | "warning";
|
|
7015
7015
|
id?: number | undefined;
|
|
7016
7016
|
}[] | undefined;
|
|
7017
7017
|
required?: boolean | undefined;
|
|
@@ -7035,7 +7035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7035
7035
|
hint?: string | undefined;
|
|
7036
7036
|
messages?: {
|
|
7037
7037
|
text: string;
|
|
7038
|
-
type: "
|
|
7038
|
+
type: "error" | "success" | "info" | "warning";
|
|
7039
7039
|
id?: number | undefined;
|
|
7040
7040
|
}[] | undefined;
|
|
7041
7041
|
required?: boolean | undefined;
|
|
@@ -7064,7 +7064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7064
7064
|
hint?: string | undefined;
|
|
7065
7065
|
messages?: {
|
|
7066
7066
|
text: string;
|
|
7067
|
-
type: "
|
|
7067
|
+
type: "error" | "success" | "info" | "warning";
|
|
7068
7068
|
id?: number | undefined;
|
|
7069
7069
|
}[] | undefined;
|
|
7070
7070
|
required?: boolean | undefined;
|
|
@@ -7079,7 +7079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7079
7079
|
hint?: string | undefined;
|
|
7080
7080
|
messages?: {
|
|
7081
7081
|
text: string;
|
|
7082
|
-
type: "
|
|
7082
|
+
type: "error" | "success" | "info" | "warning";
|
|
7083
7083
|
id?: number | undefined;
|
|
7084
7084
|
}[] | undefined;
|
|
7085
7085
|
required?: boolean | undefined;
|
|
@@ -7100,7 +7100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7100
7100
|
hint?: string | undefined;
|
|
7101
7101
|
messages?: {
|
|
7102
7102
|
text: string;
|
|
7103
|
-
type: "
|
|
7103
|
+
type: "error" | "success" | "info" | "warning";
|
|
7104
7104
|
id?: number | undefined;
|
|
7105
7105
|
}[] | undefined;
|
|
7106
7106
|
required?: boolean | undefined;
|
|
@@ -7125,7 +7125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7125
7125
|
hint?: string | undefined;
|
|
7126
7126
|
messages?: {
|
|
7127
7127
|
text: string;
|
|
7128
|
-
type: "
|
|
7128
|
+
type: "error" | "success" | "info" | "warning";
|
|
7129
7129
|
id?: number | undefined;
|
|
7130
7130
|
}[] | undefined;
|
|
7131
7131
|
required?: boolean | undefined;
|
|
@@ -7146,7 +7146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7146
7146
|
hint?: string | undefined;
|
|
7147
7147
|
messages?: {
|
|
7148
7148
|
text: string;
|
|
7149
|
-
type: "
|
|
7149
|
+
type: "error" | "success" | "info" | "warning";
|
|
7150
7150
|
id?: number | undefined;
|
|
7151
7151
|
}[] | undefined;
|
|
7152
7152
|
required?: boolean | undefined;
|
|
@@ -7166,7 +7166,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7166
7166
|
hint?: string | undefined;
|
|
7167
7167
|
messages?: {
|
|
7168
7168
|
text: string;
|
|
7169
|
-
type: "
|
|
7169
|
+
type: "error" | "success" | "info" | "warning";
|
|
7170
7170
|
id?: number | undefined;
|
|
7171
7171
|
}[] | undefined;
|
|
7172
7172
|
required?: boolean | undefined;
|
|
@@ -7185,7 +7185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7185
7185
|
hint?: string | undefined;
|
|
7186
7186
|
messages?: {
|
|
7187
7187
|
text: string;
|
|
7188
|
-
type: "
|
|
7188
|
+
type: "error" | "success" | "info" | "warning";
|
|
7189
7189
|
id?: number | undefined;
|
|
7190
7190
|
}[] | undefined;
|
|
7191
7191
|
required?: boolean | undefined;
|
|
@@ -7207,7 +7207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7207
7207
|
hint?: string | undefined;
|
|
7208
7208
|
messages?: {
|
|
7209
7209
|
text: string;
|
|
7210
|
-
type: "
|
|
7210
|
+
type: "error" | "success" | "info" | "warning";
|
|
7211
7211
|
id?: number | undefined;
|
|
7212
7212
|
}[] | undefined;
|
|
7213
7213
|
required?: boolean | undefined;
|
|
@@ -7229,7 +7229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7229
7229
|
hint?: string | undefined;
|
|
7230
7230
|
messages?: {
|
|
7231
7231
|
text: string;
|
|
7232
|
-
type: "
|
|
7232
|
+
type: "error" | "success" | "info" | "warning";
|
|
7233
7233
|
id?: number | undefined;
|
|
7234
7234
|
}[] | undefined;
|
|
7235
7235
|
required?: boolean | undefined;
|
|
@@ -7248,7 +7248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7248
7248
|
hint?: string | undefined;
|
|
7249
7249
|
messages?: {
|
|
7250
7250
|
text: string;
|
|
7251
|
-
type: "
|
|
7251
|
+
type: "error" | "success" | "info" | "warning";
|
|
7252
7252
|
id?: number | undefined;
|
|
7253
7253
|
}[] | undefined;
|
|
7254
7254
|
required?: boolean | undefined;
|
|
@@ -7275,7 +7275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7275
7275
|
hint?: string | undefined;
|
|
7276
7276
|
messages?: {
|
|
7277
7277
|
text: string;
|
|
7278
|
-
type: "
|
|
7278
|
+
type: "error" | "success" | "info" | "warning";
|
|
7279
7279
|
id?: number | undefined;
|
|
7280
7280
|
}[] | undefined;
|
|
7281
7281
|
required?: boolean | undefined;
|
|
@@ -7296,7 +7296,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7296
7296
|
hint?: string | undefined;
|
|
7297
7297
|
messages?: {
|
|
7298
7298
|
text: string;
|
|
7299
|
-
type: "
|
|
7299
|
+
type: "error" | "success" | "info" | "warning";
|
|
7300
7300
|
id?: number | undefined;
|
|
7301
7301
|
}[] | undefined;
|
|
7302
7302
|
required?: boolean | undefined;
|
|
@@ -7319,7 +7319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7319
7319
|
hint?: string | undefined;
|
|
7320
7320
|
messages?: {
|
|
7321
7321
|
text: string;
|
|
7322
|
-
type: "
|
|
7322
|
+
type: "error" | "success" | "info" | "warning";
|
|
7323
7323
|
id?: number | undefined;
|
|
7324
7324
|
}[] | undefined;
|
|
7325
7325
|
required?: boolean | undefined;
|
|
@@ -7552,7 +7552,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7552
7552
|
hint?: string | undefined;
|
|
7553
7553
|
messages?: {
|
|
7554
7554
|
text: string;
|
|
7555
|
-
type: "
|
|
7555
|
+
type: "error" | "success" | "info" | "warning";
|
|
7556
7556
|
id?: number | undefined;
|
|
7557
7557
|
}[] | undefined;
|
|
7558
7558
|
required?: boolean | undefined;
|
|
@@ -7570,7 +7570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7570
7570
|
hint?: string | undefined;
|
|
7571
7571
|
messages?: {
|
|
7572
7572
|
text: string;
|
|
7573
|
-
type: "
|
|
7573
|
+
type: "error" | "success" | "info" | "warning";
|
|
7574
7574
|
id?: number | undefined;
|
|
7575
7575
|
}[] | undefined;
|
|
7576
7576
|
required?: boolean | undefined;
|
|
@@ -7594,7 +7594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7594
7594
|
hint?: string | undefined;
|
|
7595
7595
|
messages?: {
|
|
7596
7596
|
text: string;
|
|
7597
|
-
type: "
|
|
7597
|
+
type: "error" | "success" | "info" | "warning";
|
|
7598
7598
|
id?: number | undefined;
|
|
7599
7599
|
}[] | undefined;
|
|
7600
7600
|
required?: boolean | undefined;
|
|
@@ -7618,7 +7618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7618
7618
|
hint?: string | undefined;
|
|
7619
7619
|
messages?: {
|
|
7620
7620
|
text: string;
|
|
7621
|
-
type: "
|
|
7621
|
+
type: "error" | "success" | "info" | "warning";
|
|
7622
7622
|
id?: number | undefined;
|
|
7623
7623
|
}[] | undefined;
|
|
7624
7624
|
required?: boolean | undefined;
|
|
@@ -7642,7 +7642,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7642
7642
|
hint?: string | undefined;
|
|
7643
7643
|
messages?: {
|
|
7644
7644
|
text: string;
|
|
7645
|
-
type: "
|
|
7645
|
+
type: "error" | "success" | "info" | "warning";
|
|
7646
7646
|
id?: number | undefined;
|
|
7647
7647
|
}[] | undefined;
|
|
7648
7648
|
required?: boolean | undefined;
|
|
@@ -7671,7 +7671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7671
7671
|
hint?: string | undefined;
|
|
7672
7672
|
messages?: {
|
|
7673
7673
|
text: string;
|
|
7674
|
-
type: "
|
|
7674
|
+
type: "error" | "success" | "info" | "warning";
|
|
7675
7675
|
id?: number | undefined;
|
|
7676
7676
|
}[] | undefined;
|
|
7677
7677
|
required?: boolean | undefined;
|
|
@@ -7686,7 +7686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7686
7686
|
hint?: string | undefined;
|
|
7687
7687
|
messages?: {
|
|
7688
7688
|
text: string;
|
|
7689
|
-
type: "
|
|
7689
|
+
type: "error" | "success" | "info" | "warning";
|
|
7690
7690
|
id?: number | undefined;
|
|
7691
7691
|
}[] | undefined;
|
|
7692
7692
|
required?: boolean | undefined;
|
|
@@ -7707,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7707
7707
|
hint?: string | undefined;
|
|
7708
7708
|
messages?: {
|
|
7709
7709
|
text: string;
|
|
7710
|
-
type: "
|
|
7710
|
+
type: "error" | "success" | "info" | "warning";
|
|
7711
7711
|
id?: number | undefined;
|
|
7712
7712
|
}[] | undefined;
|
|
7713
7713
|
required?: boolean | undefined;
|
|
@@ -7732,7 +7732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7732
7732
|
hint?: string | undefined;
|
|
7733
7733
|
messages?: {
|
|
7734
7734
|
text: string;
|
|
7735
|
-
type: "
|
|
7735
|
+
type: "error" | "success" | "info" | "warning";
|
|
7736
7736
|
id?: number | undefined;
|
|
7737
7737
|
}[] | undefined;
|
|
7738
7738
|
required?: boolean | undefined;
|
|
@@ -7753,7 +7753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7753
7753
|
hint?: string | undefined;
|
|
7754
7754
|
messages?: {
|
|
7755
7755
|
text: string;
|
|
7756
|
-
type: "
|
|
7756
|
+
type: "error" | "success" | "info" | "warning";
|
|
7757
7757
|
id?: number | undefined;
|
|
7758
7758
|
}[] | undefined;
|
|
7759
7759
|
required?: boolean | undefined;
|
|
@@ -7773,7 +7773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7773
7773
|
hint?: string | undefined;
|
|
7774
7774
|
messages?: {
|
|
7775
7775
|
text: string;
|
|
7776
|
-
type: "
|
|
7776
|
+
type: "error" | "success" | "info" | "warning";
|
|
7777
7777
|
id?: number | undefined;
|
|
7778
7778
|
}[] | undefined;
|
|
7779
7779
|
required?: boolean | undefined;
|
|
@@ -7792,7 +7792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7792
7792
|
hint?: string | undefined;
|
|
7793
7793
|
messages?: {
|
|
7794
7794
|
text: string;
|
|
7795
|
-
type: "
|
|
7795
|
+
type: "error" | "success" | "info" | "warning";
|
|
7796
7796
|
id?: number | undefined;
|
|
7797
7797
|
}[] | undefined;
|
|
7798
7798
|
required?: boolean | undefined;
|
|
@@ -7814,7 +7814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7814
7814
|
hint?: string | undefined;
|
|
7815
7815
|
messages?: {
|
|
7816
7816
|
text: string;
|
|
7817
|
-
type: "
|
|
7817
|
+
type: "error" | "success" | "info" | "warning";
|
|
7818
7818
|
id?: number | undefined;
|
|
7819
7819
|
}[] | undefined;
|
|
7820
7820
|
required?: boolean | undefined;
|
|
@@ -7836,7 +7836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7836
7836
|
hint?: string | undefined;
|
|
7837
7837
|
messages?: {
|
|
7838
7838
|
text: string;
|
|
7839
|
-
type: "
|
|
7839
|
+
type: "error" | "success" | "info" | "warning";
|
|
7840
7840
|
id?: number | undefined;
|
|
7841
7841
|
}[] | undefined;
|
|
7842
7842
|
required?: boolean | undefined;
|
|
@@ -7855,7 +7855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7855
7855
|
hint?: string | undefined;
|
|
7856
7856
|
messages?: {
|
|
7857
7857
|
text: string;
|
|
7858
|
-
type: "
|
|
7858
|
+
type: "error" | "success" | "info" | "warning";
|
|
7859
7859
|
id?: number | undefined;
|
|
7860
7860
|
}[] | undefined;
|
|
7861
7861
|
required?: boolean | undefined;
|
|
@@ -7882,7 +7882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7882
7882
|
hint?: string | undefined;
|
|
7883
7883
|
messages?: {
|
|
7884
7884
|
text: string;
|
|
7885
|
-
type: "
|
|
7885
|
+
type: "error" | "success" | "info" | "warning";
|
|
7886
7886
|
id?: number | undefined;
|
|
7887
7887
|
}[] | undefined;
|
|
7888
7888
|
required?: boolean | undefined;
|
|
@@ -7903,7 +7903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7903
7903
|
hint?: string | undefined;
|
|
7904
7904
|
messages?: {
|
|
7905
7905
|
text: string;
|
|
7906
|
-
type: "
|
|
7906
|
+
type: "error" | "success" | "info" | "warning";
|
|
7907
7907
|
id?: number | undefined;
|
|
7908
7908
|
}[] | undefined;
|
|
7909
7909
|
required?: boolean | undefined;
|
|
@@ -7926,7 +7926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7926
7926
|
hint?: string | undefined;
|
|
7927
7927
|
messages?: {
|
|
7928
7928
|
text: string;
|
|
7929
|
-
type: "
|
|
7929
|
+
type: "error" | "success" | "info" | "warning";
|
|
7930
7930
|
id?: number | undefined;
|
|
7931
7931
|
}[] | undefined;
|
|
7932
7932
|
required?: boolean | undefined;
|
|
@@ -8175,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8175
8175
|
hint?: string | undefined;
|
|
8176
8176
|
messages?: {
|
|
8177
8177
|
text: string;
|
|
8178
|
-
type: "
|
|
8178
|
+
type: "error" | "success" | "info" | "warning";
|
|
8179
8179
|
id?: number | undefined;
|
|
8180
8180
|
}[] | undefined;
|
|
8181
8181
|
required?: boolean | undefined;
|
|
@@ -8193,7 +8193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8193
8193
|
hint?: string | undefined;
|
|
8194
8194
|
messages?: {
|
|
8195
8195
|
text: string;
|
|
8196
|
-
type: "
|
|
8196
|
+
type: "error" | "success" | "info" | "warning";
|
|
8197
8197
|
id?: number | undefined;
|
|
8198
8198
|
}[] | undefined;
|
|
8199
8199
|
required?: boolean | undefined;
|
|
@@ -8217,7 +8217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8217
8217
|
hint?: string | undefined;
|
|
8218
8218
|
messages?: {
|
|
8219
8219
|
text: string;
|
|
8220
|
-
type: "
|
|
8220
|
+
type: "error" | "success" | "info" | "warning";
|
|
8221
8221
|
id?: number | undefined;
|
|
8222
8222
|
}[] | undefined;
|
|
8223
8223
|
required?: boolean | undefined;
|
|
@@ -8241,7 +8241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8241
8241
|
hint?: string | undefined;
|
|
8242
8242
|
messages?: {
|
|
8243
8243
|
text: string;
|
|
8244
|
-
type: "
|
|
8244
|
+
type: "error" | "success" | "info" | "warning";
|
|
8245
8245
|
id?: number | undefined;
|
|
8246
8246
|
}[] | undefined;
|
|
8247
8247
|
required?: boolean | undefined;
|
|
@@ -8265,7 +8265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8265
8265
|
hint?: string | undefined;
|
|
8266
8266
|
messages?: {
|
|
8267
8267
|
text: string;
|
|
8268
|
-
type: "
|
|
8268
|
+
type: "error" | "success" | "info" | "warning";
|
|
8269
8269
|
id?: number | undefined;
|
|
8270
8270
|
}[] | undefined;
|
|
8271
8271
|
required?: boolean | undefined;
|
|
@@ -8294,7 +8294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8294
8294
|
hint?: string | undefined;
|
|
8295
8295
|
messages?: {
|
|
8296
8296
|
text: string;
|
|
8297
|
-
type: "
|
|
8297
|
+
type: "error" | "success" | "info" | "warning";
|
|
8298
8298
|
id?: number | undefined;
|
|
8299
8299
|
}[] | undefined;
|
|
8300
8300
|
required?: boolean | undefined;
|
|
@@ -8309,7 +8309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8309
8309
|
hint?: string | undefined;
|
|
8310
8310
|
messages?: {
|
|
8311
8311
|
text: string;
|
|
8312
|
-
type: "
|
|
8312
|
+
type: "error" | "success" | "info" | "warning";
|
|
8313
8313
|
id?: number | undefined;
|
|
8314
8314
|
}[] | undefined;
|
|
8315
8315
|
required?: boolean | undefined;
|
|
@@ -8330,7 +8330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8330
8330
|
hint?: string | undefined;
|
|
8331
8331
|
messages?: {
|
|
8332
8332
|
text: string;
|
|
8333
|
-
type: "
|
|
8333
|
+
type: "error" | "success" | "info" | "warning";
|
|
8334
8334
|
id?: number | undefined;
|
|
8335
8335
|
}[] | undefined;
|
|
8336
8336
|
required?: boolean | undefined;
|
|
@@ -8355,7 +8355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8355
8355
|
hint?: string | undefined;
|
|
8356
8356
|
messages?: {
|
|
8357
8357
|
text: string;
|
|
8358
|
-
type: "
|
|
8358
|
+
type: "error" | "success" | "info" | "warning";
|
|
8359
8359
|
id?: number | undefined;
|
|
8360
8360
|
}[] | undefined;
|
|
8361
8361
|
required?: boolean | undefined;
|
|
@@ -8376,7 +8376,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8376
8376
|
hint?: string | undefined;
|
|
8377
8377
|
messages?: {
|
|
8378
8378
|
text: string;
|
|
8379
|
-
type: "
|
|
8379
|
+
type: "error" | "success" | "info" | "warning";
|
|
8380
8380
|
id?: number | undefined;
|
|
8381
8381
|
}[] | undefined;
|
|
8382
8382
|
required?: boolean | undefined;
|
|
@@ -8396,7 +8396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8396
8396
|
hint?: string | undefined;
|
|
8397
8397
|
messages?: {
|
|
8398
8398
|
text: string;
|
|
8399
|
-
type: "
|
|
8399
|
+
type: "error" | "success" | "info" | "warning";
|
|
8400
8400
|
id?: number | undefined;
|
|
8401
8401
|
}[] | undefined;
|
|
8402
8402
|
required?: boolean | undefined;
|
|
@@ -8415,7 +8415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8415
8415
|
hint?: string | undefined;
|
|
8416
8416
|
messages?: {
|
|
8417
8417
|
text: string;
|
|
8418
|
-
type: "
|
|
8418
|
+
type: "error" | "success" | "info" | "warning";
|
|
8419
8419
|
id?: number | undefined;
|
|
8420
8420
|
}[] | undefined;
|
|
8421
8421
|
required?: boolean | undefined;
|
|
@@ -8437,7 +8437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8437
8437
|
hint?: string | undefined;
|
|
8438
8438
|
messages?: {
|
|
8439
8439
|
text: string;
|
|
8440
|
-
type: "
|
|
8440
|
+
type: "error" | "success" | "info" | "warning";
|
|
8441
8441
|
id?: number | undefined;
|
|
8442
8442
|
}[] | undefined;
|
|
8443
8443
|
required?: boolean | undefined;
|
|
@@ -8459,7 +8459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8459
8459
|
hint?: string | undefined;
|
|
8460
8460
|
messages?: {
|
|
8461
8461
|
text: string;
|
|
8462
|
-
type: "
|
|
8462
|
+
type: "error" | "success" | "info" | "warning";
|
|
8463
8463
|
id?: number | undefined;
|
|
8464
8464
|
}[] | undefined;
|
|
8465
8465
|
required?: boolean | undefined;
|
|
@@ -8478,7 +8478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8478
8478
|
hint?: string | undefined;
|
|
8479
8479
|
messages?: {
|
|
8480
8480
|
text: string;
|
|
8481
|
-
type: "
|
|
8481
|
+
type: "error" | "success" | "info" | "warning";
|
|
8482
8482
|
id?: number | undefined;
|
|
8483
8483
|
}[] | undefined;
|
|
8484
8484
|
required?: boolean | undefined;
|
|
@@ -8505,7 +8505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8505
8505
|
hint?: string | undefined;
|
|
8506
8506
|
messages?: {
|
|
8507
8507
|
text: string;
|
|
8508
|
-
type: "
|
|
8508
|
+
type: "error" | "success" | "info" | "warning";
|
|
8509
8509
|
id?: number | undefined;
|
|
8510
8510
|
}[] | undefined;
|
|
8511
8511
|
required?: boolean | undefined;
|
|
@@ -8526,7 +8526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8526
8526
|
hint?: string | undefined;
|
|
8527
8527
|
messages?: {
|
|
8528
8528
|
text: string;
|
|
8529
|
-
type: "
|
|
8529
|
+
type: "error" | "success" | "info" | "warning";
|
|
8530
8530
|
id?: number | undefined;
|
|
8531
8531
|
}[] | undefined;
|
|
8532
8532
|
required?: boolean | undefined;
|
|
@@ -8549,7 +8549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8549
8549
|
hint?: string | undefined;
|
|
8550
8550
|
messages?: {
|
|
8551
8551
|
text: string;
|
|
8552
|
-
type: "
|
|
8552
|
+
type: "error" | "success" | "info" | "warning";
|
|
8553
8553
|
id?: number | undefined;
|
|
8554
8554
|
}[] | undefined;
|
|
8555
8555
|
required?: boolean | undefined;
|
|
@@ -8803,7 +8803,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8803
8803
|
hint?: string | undefined;
|
|
8804
8804
|
messages?: {
|
|
8805
8805
|
text: string;
|
|
8806
|
-
type: "
|
|
8806
|
+
type: "error" | "success" | "info" | "warning";
|
|
8807
8807
|
id?: number | undefined;
|
|
8808
8808
|
}[] | undefined;
|
|
8809
8809
|
required?: boolean | undefined;
|
|
@@ -8821,7 +8821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8821
8821
|
hint?: string | undefined;
|
|
8822
8822
|
messages?: {
|
|
8823
8823
|
text: string;
|
|
8824
|
-
type: "
|
|
8824
|
+
type: "error" | "success" | "info" | "warning";
|
|
8825
8825
|
id?: number | undefined;
|
|
8826
8826
|
}[] | undefined;
|
|
8827
8827
|
required?: boolean | undefined;
|
|
@@ -8845,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8845
8845
|
hint?: string | undefined;
|
|
8846
8846
|
messages?: {
|
|
8847
8847
|
text: string;
|
|
8848
|
-
type: "
|
|
8848
|
+
type: "error" | "success" | "info" | "warning";
|
|
8849
8849
|
id?: number | undefined;
|
|
8850
8850
|
}[] | undefined;
|
|
8851
8851
|
required?: boolean | undefined;
|
|
@@ -8869,7 +8869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8869
8869
|
hint?: string | undefined;
|
|
8870
8870
|
messages?: {
|
|
8871
8871
|
text: string;
|
|
8872
|
-
type: "
|
|
8872
|
+
type: "error" | "success" | "info" | "warning";
|
|
8873
8873
|
id?: number | undefined;
|
|
8874
8874
|
}[] | undefined;
|
|
8875
8875
|
required?: boolean | undefined;
|
|
@@ -8893,7 +8893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8893
8893
|
hint?: string | undefined;
|
|
8894
8894
|
messages?: {
|
|
8895
8895
|
text: string;
|
|
8896
|
-
type: "
|
|
8896
|
+
type: "error" | "success" | "info" | "warning";
|
|
8897
8897
|
id?: number | undefined;
|
|
8898
8898
|
}[] | undefined;
|
|
8899
8899
|
required?: boolean | undefined;
|
|
@@ -8918,7 +8918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8918
8918
|
hint?: string | undefined;
|
|
8919
8919
|
messages?: {
|
|
8920
8920
|
text: string;
|
|
8921
|
-
type: "
|
|
8921
|
+
type: "error" | "success" | "info" | "warning";
|
|
8922
8922
|
id?: number | undefined;
|
|
8923
8923
|
}[] | undefined;
|
|
8924
8924
|
required?: boolean | undefined;
|
|
@@ -8933,7 +8933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8933
8933
|
hint?: string | undefined;
|
|
8934
8934
|
messages?: {
|
|
8935
8935
|
text: string;
|
|
8936
|
-
type: "
|
|
8936
|
+
type: "error" | "success" | "info" | "warning";
|
|
8937
8937
|
id?: number | undefined;
|
|
8938
8938
|
}[] | undefined;
|
|
8939
8939
|
required?: boolean | undefined;
|
|
@@ -8954,7 +8954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8954
8954
|
hint?: string | undefined;
|
|
8955
8955
|
messages?: {
|
|
8956
8956
|
text: string;
|
|
8957
|
-
type: "
|
|
8957
|
+
type: "error" | "success" | "info" | "warning";
|
|
8958
8958
|
id?: number | undefined;
|
|
8959
8959
|
}[] | undefined;
|
|
8960
8960
|
required?: boolean | undefined;
|
|
@@ -8979,7 +8979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8979
8979
|
hint?: string | undefined;
|
|
8980
8980
|
messages?: {
|
|
8981
8981
|
text: string;
|
|
8982
|
-
type: "
|
|
8982
|
+
type: "error" | "success" | "info" | "warning";
|
|
8983
8983
|
id?: number | undefined;
|
|
8984
8984
|
}[] | undefined;
|
|
8985
8985
|
required?: boolean | undefined;
|
|
@@ -9000,7 +9000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9000
9000
|
hint?: string | undefined;
|
|
9001
9001
|
messages?: {
|
|
9002
9002
|
text: string;
|
|
9003
|
-
type: "
|
|
9003
|
+
type: "error" | "success" | "info" | "warning";
|
|
9004
9004
|
id?: number | undefined;
|
|
9005
9005
|
}[] | undefined;
|
|
9006
9006
|
required?: boolean | undefined;
|
|
@@ -9020,7 +9020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9020
9020
|
hint?: string | undefined;
|
|
9021
9021
|
messages?: {
|
|
9022
9022
|
text: string;
|
|
9023
|
-
type: "
|
|
9023
|
+
type: "error" | "success" | "info" | "warning";
|
|
9024
9024
|
id?: number | undefined;
|
|
9025
9025
|
}[] | undefined;
|
|
9026
9026
|
required?: boolean | undefined;
|
|
@@ -9039,7 +9039,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9039
9039
|
hint?: string | undefined;
|
|
9040
9040
|
messages?: {
|
|
9041
9041
|
text: string;
|
|
9042
|
-
type: "
|
|
9042
|
+
type: "error" | "success" | "info" | "warning";
|
|
9043
9043
|
id?: number | undefined;
|
|
9044
9044
|
}[] | undefined;
|
|
9045
9045
|
required?: boolean | undefined;
|
|
@@ -9061,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9061
9061
|
hint?: string | undefined;
|
|
9062
9062
|
messages?: {
|
|
9063
9063
|
text: string;
|
|
9064
|
-
type: "
|
|
9064
|
+
type: "error" | "success" | "info" | "warning";
|
|
9065
9065
|
id?: number | undefined;
|
|
9066
9066
|
}[] | undefined;
|
|
9067
9067
|
required?: boolean | undefined;
|
|
@@ -9083,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9083
9083
|
hint?: string | undefined;
|
|
9084
9084
|
messages?: {
|
|
9085
9085
|
text: string;
|
|
9086
|
-
type: "
|
|
9086
|
+
type: "error" | "success" | "info" | "warning";
|
|
9087
9087
|
id?: number | undefined;
|
|
9088
9088
|
}[] | undefined;
|
|
9089
9089
|
required?: boolean | undefined;
|
|
@@ -9102,7 +9102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9102
9102
|
hint?: string | undefined;
|
|
9103
9103
|
messages?: {
|
|
9104
9104
|
text: string;
|
|
9105
|
-
type: "
|
|
9105
|
+
type: "error" | "success" | "info" | "warning";
|
|
9106
9106
|
id?: number | undefined;
|
|
9107
9107
|
}[] | undefined;
|
|
9108
9108
|
required?: boolean | undefined;
|
|
@@ -9129,7 +9129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9129
9129
|
hint?: string | undefined;
|
|
9130
9130
|
messages?: {
|
|
9131
9131
|
text: string;
|
|
9132
|
-
type: "
|
|
9132
|
+
type: "error" | "success" | "info" | "warning";
|
|
9133
9133
|
id?: number | undefined;
|
|
9134
9134
|
}[] | undefined;
|
|
9135
9135
|
required?: boolean | undefined;
|
|
@@ -9150,7 +9150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9150
9150
|
hint?: string | undefined;
|
|
9151
9151
|
messages?: {
|
|
9152
9152
|
text: string;
|
|
9153
|
-
type: "
|
|
9153
|
+
type: "error" | "success" | "info" | "warning";
|
|
9154
9154
|
id?: number | undefined;
|
|
9155
9155
|
}[] | undefined;
|
|
9156
9156
|
required?: boolean | undefined;
|
|
@@ -9173,7 +9173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9173
9173
|
hint?: string | undefined;
|
|
9174
9174
|
messages?: {
|
|
9175
9175
|
text: string;
|
|
9176
|
-
type: "
|
|
9176
|
+
type: "error" | "success" | "info" | "warning";
|
|
9177
9177
|
id?: number | undefined;
|
|
9178
9178
|
}[] | undefined;
|
|
9179
9179
|
required?: boolean | undefined;
|
|
@@ -9404,7 +9404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9404
9404
|
hint?: string | undefined;
|
|
9405
9405
|
messages?: {
|
|
9406
9406
|
text: string;
|
|
9407
|
-
type: "
|
|
9407
|
+
type: "error" | "success" | "info" | "warning";
|
|
9408
9408
|
id?: number | undefined;
|
|
9409
9409
|
}[] | undefined;
|
|
9410
9410
|
required?: boolean | undefined;
|
|
@@ -9422,7 +9422,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9422
9422
|
hint?: string | undefined;
|
|
9423
9423
|
messages?: {
|
|
9424
9424
|
text: string;
|
|
9425
|
-
type: "
|
|
9425
|
+
type: "error" | "success" | "info" | "warning";
|
|
9426
9426
|
id?: number | undefined;
|
|
9427
9427
|
}[] | undefined;
|
|
9428
9428
|
required?: boolean | undefined;
|
|
@@ -9446,7 +9446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9446
9446
|
hint?: string | undefined;
|
|
9447
9447
|
messages?: {
|
|
9448
9448
|
text: string;
|
|
9449
|
-
type: "
|
|
9449
|
+
type: "error" | "success" | "info" | "warning";
|
|
9450
9450
|
id?: number | undefined;
|
|
9451
9451
|
}[] | undefined;
|
|
9452
9452
|
required?: boolean | undefined;
|
|
@@ -9470,7 +9470,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9470
9470
|
hint?: string | undefined;
|
|
9471
9471
|
messages?: {
|
|
9472
9472
|
text: string;
|
|
9473
|
-
type: "
|
|
9473
|
+
type: "error" | "success" | "info" | "warning";
|
|
9474
9474
|
id?: number | undefined;
|
|
9475
9475
|
}[] | undefined;
|
|
9476
9476
|
required?: boolean | undefined;
|
|
@@ -9494,7 +9494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9494
9494
|
hint?: string | undefined;
|
|
9495
9495
|
messages?: {
|
|
9496
9496
|
text: string;
|
|
9497
|
-
type: "
|
|
9497
|
+
type: "error" | "success" | "info" | "warning";
|
|
9498
9498
|
id?: number | undefined;
|
|
9499
9499
|
}[] | undefined;
|
|
9500
9500
|
required?: boolean | undefined;
|
|
@@ -9523,7 +9523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9523
9523
|
hint?: string | undefined;
|
|
9524
9524
|
messages?: {
|
|
9525
9525
|
text: string;
|
|
9526
|
-
type: "
|
|
9526
|
+
type: "error" | "success" | "info" | "warning";
|
|
9527
9527
|
id?: number | undefined;
|
|
9528
9528
|
}[] | undefined;
|
|
9529
9529
|
required?: boolean | undefined;
|
|
@@ -9538,7 +9538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9538
9538
|
hint?: string | undefined;
|
|
9539
9539
|
messages?: {
|
|
9540
9540
|
text: string;
|
|
9541
|
-
type: "
|
|
9541
|
+
type: "error" | "success" | "info" | "warning";
|
|
9542
9542
|
id?: number | undefined;
|
|
9543
9543
|
}[] | undefined;
|
|
9544
9544
|
required?: boolean | undefined;
|
|
@@ -9559,7 +9559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9559
9559
|
hint?: string | undefined;
|
|
9560
9560
|
messages?: {
|
|
9561
9561
|
text: string;
|
|
9562
|
-
type: "
|
|
9562
|
+
type: "error" | "success" | "info" | "warning";
|
|
9563
9563
|
id?: number | undefined;
|
|
9564
9564
|
}[] | undefined;
|
|
9565
9565
|
required?: boolean | undefined;
|
|
@@ -9584,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9584
9584
|
hint?: string | undefined;
|
|
9585
9585
|
messages?: {
|
|
9586
9586
|
text: string;
|
|
9587
|
-
type: "
|
|
9587
|
+
type: "error" | "success" | "info" | "warning";
|
|
9588
9588
|
id?: number | undefined;
|
|
9589
9589
|
}[] | undefined;
|
|
9590
9590
|
required?: boolean | undefined;
|
|
@@ -9605,7 +9605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9605
9605
|
hint?: string | undefined;
|
|
9606
9606
|
messages?: {
|
|
9607
9607
|
text: string;
|
|
9608
|
-
type: "
|
|
9608
|
+
type: "error" | "success" | "info" | "warning";
|
|
9609
9609
|
id?: number | undefined;
|
|
9610
9610
|
}[] | undefined;
|
|
9611
9611
|
required?: boolean | undefined;
|
|
@@ -9625,7 +9625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9625
9625
|
hint?: string | undefined;
|
|
9626
9626
|
messages?: {
|
|
9627
9627
|
text: string;
|
|
9628
|
-
type: "
|
|
9628
|
+
type: "error" | "success" | "info" | "warning";
|
|
9629
9629
|
id?: number | undefined;
|
|
9630
9630
|
}[] | undefined;
|
|
9631
9631
|
required?: boolean | undefined;
|
|
@@ -9644,7 +9644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9644
9644
|
hint?: string | undefined;
|
|
9645
9645
|
messages?: {
|
|
9646
9646
|
text: string;
|
|
9647
|
-
type: "
|
|
9647
|
+
type: "error" | "success" | "info" | "warning";
|
|
9648
9648
|
id?: number | undefined;
|
|
9649
9649
|
}[] | undefined;
|
|
9650
9650
|
required?: boolean | undefined;
|
|
@@ -9666,7 +9666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9666
9666
|
hint?: string | undefined;
|
|
9667
9667
|
messages?: {
|
|
9668
9668
|
text: string;
|
|
9669
|
-
type: "
|
|
9669
|
+
type: "error" | "success" | "info" | "warning";
|
|
9670
9670
|
id?: number | undefined;
|
|
9671
9671
|
}[] | undefined;
|
|
9672
9672
|
required?: boolean | undefined;
|
|
@@ -9688,7 +9688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9688
9688
|
hint?: string | undefined;
|
|
9689
9689
|
messages?: {
|
|
9690
9690
|
text: string;
|
|
9691
|
-
type: "
|
|
9691
|
+
type: "error" | "success" | "info" | "warning";
|
|
9692
9692
|
id?: number | undefined;
|
|
9693
9693
|
}[] | undefined;
|
|
9694
9694
|
required?: boolean | undefined;
|
|
@@ -9707,7 +9707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9707
9707
|
hint?: string | undefined;
|
|
9708
9708
|
messages?: {
|
|
9709
9709
|
text: string;
|
|
9710
|
-
type: "
|
|
9710
|
+
type: "error" | "success" | "info" | "warning";
|
|
9711
9711
|
id?: number | undefined;
|
|
9712
9712
|
}[] | undefined;
|
|
9713
9713
|
required?: boolean | undefined;
|
|
@@ -9734,7 +9734,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9734
9734
|
hint?: string | undefined;
|
|
9735
9735
|
messages?: {
|
|
9736
9736
|
text: string;
|
|
9737
|
-
type: "
|
|
9737
|
+
type: "error" | "success" | "info" | "warning";
|
|
9738
9738
|
id?: number | undefined;
|
|
9739
9739
|
}[] | undefined;
|
|
9740
9740
|
required?: boolean | undefined;
|
|
@@ -9755,7 +9755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9755
9755
|
hint?: string | undefined;
|
|
9756
9756
|
messages?: {
|
|
9757
9757
|
text: string;
|
|
9758
|
-
type: "
|
|
9758
|
+
type: "error" | "success" | "info" | "warning";
|
|
9759
9759
|
id?: number | undefined;
|
|
9760
9760
|
}[] | undefined;
|
|
9761
9761
|
required?: boolean | undefined;
|
|
@@ -9778,7 +9778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9778
9778
|
hint?: string | undefined;
|
|
9779
9779
|
messages?: {
|
|
9780
9780
|
text: string;
|
|
9781
|
-
type: "
|
|
9781
|
+
type: "error" | "success" | "info" | "warning";
|
|
9782
9782
|
id?: number | undefined;
|
|
9783
9783
|
}[] | undefined;
|
|
9784
9784
|
required?: boolean | undefined;
|
|
@@ -10011,7 +10011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10011
10011
|
hint?: string | undefined;
|
|
10012
10012
|
messages?: {
|
|
10013
10013
|
text: string;
|
|
10014
|
-
type: "
|
|
10014
|
+
type: "error" | "success" | "info" | "warning";
|
|
10015
10015
|
id?: number | undefined;
|
|
10016
10016
|
}[] | undefined;
|
|
10017
10017
|
required?: boolean | undefined;
|
|
@@ -10029,7 +10029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10029
10029
|
hint?: string | undefined;
|
|
10030
10030
|
messages?: {
|
|
10031
10031
|
text: string;
|
|
10032
|
-
type: "
|
|
10032
|
+
type: "error" | "success" | "info" | "warning";
|
|
10033
10033
|
id?: number | undefined;
|
|
10034
10034
|
}[] | undefined;
|
|
10035
10035
|
required?: boolean | undefined;
|
|
@@ -10053,7 +10053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10053
10053
|
hint?: string | undefined;
|
|
10054
10054
|
messages?: {
|
|
10055
10055
|
text: string;
|
|
10056
|
-
type: "
|
|
10056
|
+
type: "error" | "success" | "info" | "warning";
|
|
10057
10057
|
id?: number | undefined;
|
|
10058
10058
|
}[] | undefined;
|
|
10059
10059
|
required?: boolean | undefined;
|
|
@@ -10077,7 +10077,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10077
10077
|
hint?: string | undefined;
|
|
10078
10078
|
messages?: {
|
|
10079
10079
|
text: string;
|
|
10080
|
-
type: "
|
|
10080
|
+
type: "error" | "success" | "info" | "warning";
|
|
10081
10081
|
id?: number | undefined;
|
|
10082
10082
|
}[] | undefined;
|
|
10083
10083
|
required?: boolean | undefined;
|
|
@@ -10101,7 +10101,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10101
10101
|
hint?: string | undefined;
|
|
10102
10102
|
messages?: {
|
|
10103
10103
|
text: string;
|
|
10104
|
-
type: "
|
|
10104
|
+
type: "error" | "success" | "info" | "warning";
|
|
10105
10105
|
id?: number | undefined;
|
|
10106
10106
|
}[] | undefined;
|
|
10107
10107
|
required?: boolean | undefined;
|
|
@@ -10126,7 +10126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10126
10126
|
hint?: string | undefined;
|
|
10127
10127
|
messages?: {
|
|
10128
10128
|
text: string;
|
|
10129
|
-
type: "
|
|
10129
|
+
type: "error" | "success" | "info" | "warning";
|
|
10130
10130
|
id?: number | undefined;
|
|
10131
10131
|
}[] | undefined;
|
|
10132
10132
|
required?: boolean | undefined;
|
|
@@ -10141,7 +10141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10141
10141
|
hint?: string | undefined;
|
|
10142
10142
|
messages?: {
|
|
10143
10143
|
text: string;
|
|
10144
|
-
type: "
|
|
10144
|
+
type: "error" | "success" | "info" | "warning";
|
|
10145
10145
|
id?: number | undefined;
|
|
10146
10146
|
}[] | undefined;
|
|
10147
10147
|
required?: boolean | undefined;
|
|
@@ -10162,7 +10162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10162
10162
|
hint?: string | undefined;
|
|
10163
10163
|
messages?: {
|
|
10164
10164
|
text: string;
|
|
10165
|
-
type: "
|
|
10165
|
+
type: "error" | "success" | "info" | "warning";
|
|
10166
10166
|
id?: number | undefined;
|
|
10167
10167
|
}[] | undefined;
|
|
10168
10168
|
required?: boolean | undefined;
|
|
@@ -10187,7 +10187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10187
10187
|
hint?: string | undefined;
|
|
10188
10188
|
messages?: {
|
|
10189
10189
|
text: string;
|
|
10190
|
-
type: "
|
|
10190
|
+
type: "error" | "success" | "info" | "warning";
|
|
10191
10191
|
id?: number | undefined;
|
|
10192
10192
|
}[] | undefined;
|
|
10193
10193
|
required?: boolean | undefined;
|
|
@@ -10208,7 +10208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10208
10208
|
hint?: string | undefined;
|
|
10209
10209
|
messages?: {
|
|
10210
10210
|
text: string;
|
|
10211
|
-
type: "
|
|
10211
|
+
type: "error" | "success" | "info" | "warning";
|
|
10212
10212
|
id?: number | undefined;
|
|
10213
10213
|
}[] | undefined;
|
|
10214
10214
|
required?: boolean | undefined;
|
|
@@ -10228,7 +10228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10228
10228
|
hint?: string | undefined;
|
|
10229
10229
|
messages?: {
|
|
10230
10230
|
text: string;
|
|
10231
|
-
type: "
|
|
10231
|
+
type: "error" | "success" | "info" | "warning";
|
|
10232
10232
|
id?: number | undefined;
|
|
10233
10233
|
}[] | undefined;
|
|
10234
10234
|
required?: boolean | undefined;
|
|
@@ -10247,7 +10247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10247
10247
|
hint?: string | undefined;
|
|
10248
10248
|
messages?: {
|
|
10249
10249
|
text: string;
|
|
10250
|
-
type: "
|
|
10250
|
+
type: "error" | "success" | "info" | "warning";
|
|
10251
10251
|
id?: number | undefined;
|
|
10252
10252
|
}[] | undefined;
|
|
10253
10253
|
required?: boolean | undefined;
|
|
@@ -10269,7 +10269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10269
10269
|
hint?: string | undefined;
|
|
10270
10270
|
messages?: {
|
|
10271
10271
|
text: string;
|
|
10272
|
-
type: "
|
|
10272
|
+
type: "error" | "success" | "info" | "warning";
|
|
10273
10273
|
id?: number | undefined;
|
|
10274
10274
|
}[] | undefined;
|
|
10275
10275
|
required?: boolean | undefined;
|
|
@@ -10291,7 +10291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10291
10291
|
hint?: string | undefined;
|
|
10292
10292
|
messages?: {
|
|
10293
10293
|
text: string;
|
|
10294
|
-
type: "
|
|
10294
|
+
type: "error" | "success" | "info" | "warning";
|
|
10295
10295
|
id?: number | undefined;
|
|
10296
10296
|
}[] | undefined;
|
|
10297
10297
|
required?: boolean | undefined;
|
|
@@ -10310,7 +10310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10310
10310
|
hint?: string | undefined;
|
|
10311
10311
|
messages?: {
|
|
10312
10312
|
text: string;
|
|
10313
|
-
type: "
|
|
10313
|
+
type: "error" | "success" | "info" | "warning";
|
|
10314
10314
|
id?: number | undefined;
|
|
10315
10315
|
}[] | undefined;
|
|
10316
10316
|
required?: boolean | undefined;
|
|
@@ -10337,7 +10337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10337
10337
|
hint?: string | undefined;
|
|
10338
10338
|
messages?: {
|
|
10339
10339
|
text: string;
|
|
10340
|
-
type: "
|
|
10340
|
+
type: "error" | "success" | "info" | "warning";
|
|
10341
10341
|
id?: number | undefined;
|
|
10342
10342
|
}[] | undefined;
|
|
10343
10343
|
required?: boolean | undefined;
|
|
@@ -10358,7 +10358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10358
10358
|
hint?: string | undefined;
|
|
10359
10359
|
messages?: {
|
|
10360
10360
|
text: string;
|
|
10361
|
-
type: "
|
|
10361
|
+
type: "error" | "success" | "info" | "warning";
|
|
10362
10362
|
id?: number | undefined;
|
|
10363
10363
|
}[] | undefined;
|
|
10364
10364
|
required?: boolean | undefined;
|
|
@@ -10381,7 +10381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10381
10381
|
hint?: string | undefined;
|
|
10382
10382
|
messages?: {
|
|
10383
10383
|
text: string;
|
|
10384
|
-
type: "
|
|
10384
|
+
type: "error" | "success" | "info" | "warning";
|
|
10385
10385
|
id?: number | undefined;
|
|
10386
10386
|
}[] | undefined;
|
|
10387
10387
|
required?: boolean | undefined;
|
|
@@ -10612,7 +10612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10612
10612
|
hint?: string | undefined;
|
|
10613
10613
|
messages?: {
|
|
10614
10614
|
text: string;
|
|
10615
|
-
type: "
|
|
10615
|
+
type: "error" | "success" | "info" | "warning";
|
|
10616
10616
|
id?: number | undefined;
|
|
10617
10617
|
}[] | undefined;
|
|
10618
10618
|
required?: boolean | undefined;
|
|
@@ -10630,7 +10630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10630
10630
|
hint?: string | undefined;
|
|
10631
10631
|
messages?: {
|
|
10632
10632
|
text: string;
|
|
10633
|
-
type: "
|
|
10633
|
+
type: "error" | "success" | "info" | "warning";
|
|
10634
10634
|
id?: number | undefined;
|
|
10635
10635
|
}[] | undefined;
|
|
10636
10636
|
required?: boolean | undefined;
|
|
@@ -10654,7 +10654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10654
10654
|
hint?: string | undefined;
|
|
10655
10655
|
messages?: {
|
|
10656
10656
|
text: string;
|
|
10657
|
-
type: "
|
|
10657
|
+
type: "error" | "success" | "info" | "warning";
|
|
10658
10658
|
id?: number | undefined;
|
|
10659
10659
|
}[] | undefined;
|
|
10660
10660
|
required?: boolean | undefined;
|
|
@@ -10678,7 +10678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10678
10678
|
hint?: string | undefined;
|
|
10679
10679
|
messages?: {
|
|
10680
10680
|
text: string;
|
|
10681
|
-
type: "
|
|
10681
|
+
type: "error" | "success" | "info" | "warning";
|
|
10682
10682
|
id?: number | undefined;
|
|
10683
10683
|
}[] | undefined;
|
|
10684
10684
|
required?: boolean | undefined;
|
|
@@ -10702,7 +10702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10702
10702
|
hint?: string | undefined;
|
|
10703
10703
|
messages?: {
|
|
10704
10704
|
text: string;
|
|
10705
|
-
type: "
|
|
10705
|
+
type: "error" | "success" | "info" | "warning";
|
|
10706
10706
|
id?: number | undefined;
|
|
10707
10707
|
}[] | undefined;
|
|
10708
10708
|
required?: boolean | undefined;
|
|
@@ -10731,7 +10731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10731
10731
|
hint?: string | undefined;
|
|
10732
10732
|
messages?: {
|
|
10733
10733
|
text: string;
|
|
10734
|
-
type: "
|
|
10734
|
+
type: "error" | "success" | "info" | "warning";
|
|
10735
10735
|
id?: number | undefined;
|
|
10736
10736
|
}[] | undefined;
|
|
10737
10737
|
required?: boolean | undefined;
|
|
@@ -10746,7 +10746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10746
10746
|
hint?: string | undefined;
|
|
10747
10747
|
messages?: {
|
|
10748
10748
|
text: string;
|
|
10749
|
-
type: "
|
|
10749
|
+
type: "error" | "success" | "info" | "warning";
|
|
10750
10750
|
id?: number | undefined;
|
|
10751
10751
|
}[] | undefined;
|
|
10752
10752
|
required?: boolean | undefined;
|
|
@@ -10767,7 +10767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10767
10767
|
hint?: string | undefined;
|
|
10768
10768
|
messages?: {
|
|
10769
10769
|
text: string;
|
|
10770
|
-
type: "
|
|
10770
|
+
type: "error" | "success" | "info" | "warning";
|
|
10771
10771
|
id?: number | undefined;
|
|
10772
10772
|
}[] | undefined;
|
|
10773
10773
|
required?: boolean | undefined;
|
|
@@ -10792,7 +10792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10792
10792
|
hint?: string | undefined;
|
|
10793
10793
|
messages?: {
|
|
10794
10794
|
text: string;
|
|
10795
|
-
type: "
|
|
10795
|
+
type: "error" | "success" | "info" | "warning";
|
|
10796
10796
|
id?: number | undefined;
|
|
10797
10797
|
}[] | undefined;
|
|
10798
10798
|
required?: boolean | undefined;
|
|
@@ -10813,7 +10813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10813
10813
|
hint?: string | undefined;
|
|
10814
10814
|
messages?: {
|
|
10815
10815
|
text: string;
|
|
10816
|
-
type: "
|
|
10816
|
+
type: "error" | "success" | "info" | "warning";
|
|
10817
10817
|
id?: number | undefined;
|
|
10818
10818
|
}[] | undefined;
|
|
10819
10819
|
required?: boolean | undefined;
|
|
@@ -10833,7 +10833,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10833
10833
|
hint?: string | undefined;
|
|
10834
10834
|
messages?: {
|
|
10835
10835
|
text: string;
|
|
10836
|
-
type: "
|
|
10836
|
+
type: "error" | "success" | "info" | "warning";
|
|
10837
10837
|
id?: number | undefined;
|
|
10838
10838
|
}[] | undefined;
|
|
10839
10839
|
required?: boolean | undefined;
|
|
@@ -10852,7 +10852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10852
10852
|
hint?: string | undefined;
|
|
10853
10853
|
messages?: {
|
|
10854
10854
|
text: string;
|
|
10855
|
-
type: "
|
|
10855
|
+
type: "error" | "success" | "info" | "warning";
|
|
10856
10856
|
id?: number | undefined;
|
|
10857
10857
|
}[] | undefined;
|
|
10858
10858
|
required?: boolean | undefined;
|
|
@@ -10874,7 +10874,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10874
10874
|
hint?: string | undefined;
|
|
10875
10875
|
messages?: {
|
|
10876
10876
|
text: string;
|
|
10877
|
-
type: "
|
|
10877
|
+
type: "error" | "success" | "info" | "warning";
|
|
10878
10878
|
id?: number | undefined;
|
|
10879
10879
|
}[] | undefined;
|
|
10880
10880
|
required?: boolean | undefined;
|
|
@@ -10896,7 +10896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10896
10896
|
hint?: string | undefined;
|
|
10897
10897
|
messages?: {
|
|
10898
10898
|
text: string;
|
|
10899
|
-
type: "
|
|
10899
|
+
type: "error" | "success" | "info" | "warning";
|
|
10900
10900
|
id?: number | undefined;
|
|
10901
10901
|
}[] | undefined;
|
|
10902
10902
|
required?: boolean | undefined;
|
|
@@ -10915,7 +10915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10915
10915
|
hint?: string | undefined;
|
|
10916
10916
|
messages?: {
|
|
10917
10917
|
text: string;
|
|
10918
|
-
type: "
|
|
10918
|
+
type: "error" | "success" | "info" | "warning";
|
|
10919
10919
|
id?: number | undefined;
|
|
10920
10920
|
}[] | undefined;
|
|
10921
10921
|
required?: boolean | undefined;
|
|
@@ -10942,7 +10942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10942
10942
|
hint?: string | undefined;
|
|
10943
10943
|
messages?: {
|
|
10944
10944
|
text: string;
|
|
10945
|
-
type: "
|
|
10945
|
+
type: "error" | "success" | "info" | "warning";
|
|
10946
10946
|
id?: number | undefined;
|
|
10947
10947
|
}[] | undefined;
|
|
10948
10948
|
required?: boolean | undefined;
|
|
@@ -10963,7 +10963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10963
10963
|
hint?: string | undefined;
|
|
10964
10964
|
messages?: {
|
|
10965
10965
|
text: string;
|
|
10966
|
-
type: "
|
|
10966
|
+
type: "error" | "success" | "info" | "warning";
|
|
10967
10967
|
id?: number | undefined;
|
|
10968
10968
|
}[] | undefined;
|
|
10969
10969
|
required?: boolean | undefined;
|
|
@@ -10986,7 +10986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10986
10986
|
hint?: string | undefined;
|
|
10987
10987
|
messages?: {
|
|
10988
10988
|
text: string;
|
|
10989
|
-
type: "
|
|
10989
|
+
type: "error" | "success" | "info" | "warning";
|
|
10990
10990
|
id?: number | undefined;
|
|
10991
10991
|
}[] | undefined;
|
|
10992
10992
|
required?: boolean | undefined;
|
|
@@ -11067,6 +11067,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11067
11067
|
scopes: string;
|
|
11068
11068
|
}[];
|
|
11069
11069
|
rotating: boolean;
|
|
11070
|
+
session_id?: string | undefined;
|
|
11071
|
+
organization?: string | undefined;
|
|
11072
|
+
auth_connection?: string | undefined;
|
|
11073
|
+
auth_strategy?: {
|
|
11074
|
+
strategy: string;
|
|
11075
|
+
strategy_type: string;
|
|
11076
|
+
} | undefined;
|
|
11070
11077
|
expires_at?: string | undefined;
|
|
11071
11078
|
idle_expires_at?: string | undefined;
|
|
11072
11079
|
last_exchanged_at?: string | undefined;
|
|
@@ -11098,6 +11105,73 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11098
11105
|
};
|
|
11099
11106
|
};
|
|
11100
11107
|
}, "/refresh_tokens"> & hono_types.MergeSchemaPath<{
|
|
11108
|
+
"/:id": {
|
|
11109
|
+
$get: {
|
|
11110
|
+
input: {
|
|
11111
|
+
param: {
|
|
11112
|
+
id: string;
|
|
11113
|
+
};
|
|
11114
|
+
} & {
|
|
11115
|
+
header: {
|
|
11116
|
+
"tenant-id"?: string | undefined;
|
|
11117
|
+
};
|
|
11118
|
+
};
|
|
11119
|
+
output: {
|
|
11120
|
+
id: string;
|
|
11121
|
+
login_id: string;
|
|
11122
|
+
user_id: string;
|
|
11123
|
+
client_id: string;
|
|
11124
|
+
device: {
|
|
11125
|
+
initial_user_agent: string;
|
|
11126
|
+
initial_ip: string;
|
|
11127
|
+
initial_asn: string;
|
|
11128
|
+
last_user_agent: string;
|
|
11129
|
+
last_ip: string;
|
|
11130
|
+
last_asn: string;
|
|
11131
|
+
};
|
|
11132
|
+
resource_servers: {
|
|
11133
|
+
audience: string;
|
|
11134
|
+
scopes: string;
|
|
11135
|
+
}[];
|
|
11136
|
+
rotating: boolean;
|
|
11137
|
+
session_id?: string | undefined;
|
|
11138
|
+
organization?: string | undefined;
|
|
11139
|
+
auth_connection?: string | undefined;
|
|
11140
|
+
auth_strategy?: {
|
|
11141
|
+
strategy: string;
|
|
11142
|
+
strategy_type: string;
|
|
11143
|
+
} | undefined;
|
|
11144
|
+
expires_at?: string | undefined;
|
|
11145
|
+
idle_expires_at?: string | undefined;
|
|
11146
|
+
last_exchanged_at?: string | undefined;
|
|
11147
|
+
token_lookup?: string | undefined;
|
|
11148
|
+
token_hash?: string | undefined;
|
|
11149
|
+
family_id?: string | undefined;
|
|
11150
|
+
rotated_to?: string | undefined;
|
|
11151
|
+
rotated_at?: string | undefined;
|
|
11152
|
+
};
|
|
11153
|
+
outputFormat: "json";
|
|
11154
|
+
status: 200;
|
|
11155
|
+
};
|
|
11156
|
+
};
|
|
11157
|
+
} & {
|
|
11158
|
+
"/:id": {
|
|
11159
|
+
$delete: {
|
|
11160
|
+
input: {
|
|
11161
|
+
param: {
|
|
11162
|
+
id: string;
|
|
11163
|
+
};
|
|
11164
|
+
} & {
|
|
11165
|
+
header: {
|
|
11166
|
+
"tenant-id"?: string | undefined;
|
|
11167
|
+
};
|
|
11168
|
+
};
|
|
11169
|
+
output: {};
|
|
11170
|
+
outputFormat: string;
|
|
11171
|
+
status: 200;
|
|
11172
|
+
};
|
|
11173
|
+
};
|
|
11174
|
+
}, "/refresh-tokens"> & hono_types.MergeSchemaPath<{
|
|
11101
11175
|
"/:id": {
|
|
11102
11176
|
$get: {
|
|
11103
11177
|
input: {
|
|
@@ -11218,7 +11292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11218
11292
|
};
|
|
11219
11293
|
};
|
|
11220
11294
|
output: {
|
|
11221
|
-
prompt: "
|
|
11295
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
11222
11296
|
language: string;
|
|
11223
11297
|
}[];
|
|
11224
11298
|
outputFormat: "json";
|
|
@@ -11256,7 +11330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11256
11330
|
$get: {
|
|
11257
11331
|
input: {
|
|
11258
11332
|
param: {
|
|
11259
|
-
prompt: "
|
|
11333
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
11260
11334
|
language: string;
|
|
11261
11335
|
};
|
|
11262
11336
|
} & {
|
|
@@ -11278,7 +11352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11278
11352
|
$put: {
|
|
11279
11353
|
input: {
|
|
11280
11354
|
param: {
|
|
11281
|
-
prompt: "
|
|
11355
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
11282
11356
|
language: string;
|
|
11283
11357
|
};
|
|
11284
11358
|
} & {
|
|
@@ -11302,7 +11376,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11302
11376
|
$delete: {
|
|
11303
11377
|
input: {
|
|
11304
11378
|
param: {
|
|
11305
|
-
prompt: "
|
|
11379
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
11306
11380
|
language: string;
|
|
11307
11381
|
};
|
|
11308
11382
|
} & {
|
|
@@ -11398,7 +11472,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11398
11472
|
active?: boolean | undefined;
|
|
11399
11473
|
} | undefined;
|
|
11400
11474
|
signup?: {
|
|
11401
|
-
status?: "
|
|
11475
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11402
11476
|
verification?: {
|
|
11403
11477
|
active?: boolean | undefined;
|
|
11404
11478
|
} | undefined;
|
|
@@ -11415,7 +11489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11415
11489
|
active?: boolean | undefined;
|
|
11416
11490
|
} | undefined;
|
|
11417
11491
|
signup?: {
|
|
11418
|
-
status?: "
|
|
11492
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11419
11493
|
} | undefined;
|
|
11420
11494
|
validation?: {
|
|
11421
11495
|
max_length?: number | undefined;
|
|
@@ -11432,7 +11506,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11432
11506
|
active?: boolean | undefined;
|
|
11433
11507
|
} | undefined;
|
|
11434
11508
|
signup?: {
|
|
11435
|
-
status?: "
|
|
11509
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11436
11510
|
} | undefined;
|
|
11437
11511
|
} | undefined;
|
|
11438
11512
|
} | undefined;
|
|
@@ -11536,7 +11610,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11536
11610
|
active?: boolean | undefined;
|
|
11537
11611
|
} | undefined;
|
|
11538
11612
|
signup?: {
|
|
11539
|
-
status?: "
|
|
11613
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11540
11614
|
verification?: {
|
|
11541
11615
|
active?: boolean | undefined;
|
|
11542
11616
|
} | undefined;
|
|
@@ -11553,7 +11627,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11553
11627
|
active?: boolean | undefined;
|
|
11554
11628
|
} | undefined;
|
|
11555
11629
|
signup?: {
|
|
11556
|
-
status?: "
|
|
11630
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11557
11631
|
} | undefined;
|
|
11558
11632
|
validation?: {
|
|
11559
11633
|
max_length?: number | undefined;
|
|
@@ -11570,7 +11644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11570
11644
|
active?: boolean | undefined;
|
|
11571
11645
|
} | undefined;
|
|
11572
11646
|
signup?: {
|
|
11573
|
-
status?: "
|
|
11647
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11574
11648
|
} | undefined;
|
|
11575
11649
|
} | undefined;
|
|
11576
11650
|
} | undefined;
|
|
@@ -11690,7 +11764,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11690
11764
|
active?: boolean | undefined;
|
|
11691
11765
|
} | undefined;
|
|
11692
11766
|
signup?: {
|
|
11693
|
-
status?: "
|
|
11767
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11694
11768
|
verification?: {
|
|
11695
11769
|
active?: boolean | undefined;
|
|
11696
11770
|
} | undefined;
|
|
@@ -11707,7 +11781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11707
11781
|
active?: boolean | undefined;
|
|
11708
11782
|
} | undefined;
|
|
11709
11783
|
signup?: {
|
|
11710
|
-
status?: "
|
|
11784
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11711
11785
|
} | undefined;
|
|
11712
11786
|
validation?: {
|
|
11713
11787
|
max_length?: number | undefined;
|
|
@@ -11724,7 +11798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11724
11798
|
active?: boolean | undefined;
|
|
11725
11799
|
} | undefined;
|
|
11726
11800
|
signup?: {
|
|
11727
|
-
status?: "
|
|
11801
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11728
11802
|
} | undefined;
|
|
11729
11803
|
} | undefined;
|
|
11730
11804
|
} | undefined;
|
|
@@ -11873,7 +11947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11873
11947
|
active?: boolean | undefined;
|
|
11874
11948
|
} | undefined;
|
|
11875
11949
|
signup?: {
|
|
11876
|
-
status?: "
|
|
11950
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11877
11951
|
verification?: {
|
|
11878
11952
|
active?: boolean | undefined;
|
|
11879
11953
|
} | undefined;
|
|
@@ -11890,7 +11964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11890
11964
|
active?: boolean | undefined;
|
|
11891
11965
|
} | undefined;
|
|
11892
11966
|
signup?: {
|
|
11893
|
-
status?: "
|
|
11967
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11894
11968
|
} | undefined;
|
|
11895
11969
|
validation?: {
|
|
11896
11970
|
max_length?: number | undefined;
|
|
@@ -11907,7 +11981,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11907
11981
|
active?: boolean | undefined;
|
|
11908
11982
|
} | undefined;
|
|
11909
11983
|
signup?: {
|
|
11910
|
-
status?: "
|
|
11984
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
11911
11985
|
} | undefined;
|
|
11912
11986
|
} | undefined;
|
|
11913
11987
|
} | undefined;
|
|
@@ -12035,7 +12109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12035
12109
|
active?: boolean | undefined;
|
|
12036
12110
|
} | undefined;
|
|
12037
12111
|
signup?: {
|
|
12038
|
-
status?: "
|
|
12112
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
12039
12113
|
verification?: {
|
|
12040
12114
|
active?: boolean | undefined;
|
|
12041
12115
|
} | undefined;
|
|
@@ -12052,7 +12126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12052
12126
|
active?: boolean | undefined;
|
|
12053
12127
|
} | undefined;
|
|
12054
12128
|
signup?: {
|
|
12055
|
-
status?: "
|
|
12129
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
12056
12130
|
} | undefined;
|
|
12057
12131
|
validation?: {
|
|
12058
12132
|
max_length?: number | undefined;
|
|
@@ -12069,7 +12143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12069
12143
|
active?: boolean | undefined;
|
|
12070
12144
|
} | undefined;
|
|
12071
12145
|
signup?: {
|
|
12072
|
-
status?: "
|
|
12146
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
12073
12147
|
} | undefined;
|
|
12074
12148
|
} | undefined;
|
|
12075
12149
|
} | undefined;
|
|
@@ -12185,7 +12259,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12185
12259
|
};
|
|
12186
12260
|
} | {
|
|
12187
12261
|
mode: "inline";
|
|
12188
|
-
status: "
|
|
12262
|
+
status: "error" | "success";
|
|
12189
12263
|
connection_id: string;
|
|
12190
12264
|
connection_name: string;
|
|
12191
12265
|
strategy: string;
|
|
@@ -12914,7 +12988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12914
12988
|
log_type: string;
|
|
12915
12989
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12916
12990
|
actor: {
|
|
12917
|
-
type: "
|
|
12991
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
12918
12992
|
id?: string | undefined;
|
|
12919
12993
|
email?: string | undefined;
|
|
12920
12994
|
org_id?: string | undefined;
|
|
@@ -13225,7 +13299,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13225
13299
|
created_at: string;
|
|
13226
13300
|
updated_at: string;
|
|
13227
13301
|
name: string;
|
|
13228
|
-
provider: "auth0" | "
|
|
13302
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13229
13303
|
connection: string;
|
|
13230
13304
|
enabled: boolean;
|
|
13231
13305
|
credentials: {
|
|
@@ -13257,7 +13331,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13257
13331
|
created_at: string;
|
|
13258
13332
|
updated_at: string;
|
|
13259
13333
|
name: string;
|
|
13260
|
-
provider: "auth0" | "
|
|
13334
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13261
13335
|
connection: string;
|
|
13262
13336
|
enabled: boolean;
|
|
13263
13337
|
credentials: {
|
|
@@ -13283,7 +13357,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13283
13357
|
} & {
|
|
13284
13358
|
json: {
|
|
13285
13359
|
name: string;
|
|
13286
|
-
provider: "auth0" | "
|
|
13360
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13287
13361
|
connection: string;
|
|
13288
13362
|
credentials: {
|
|
13289
13363
|
domain: string;
|
|
@@ -13300,7 +13374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13300
13374
|
created_at: string;
|
|
13301
13375
|
updated_at: string;
|
|
13302
13376
|
name: string;
|
|
13303
|
-
provider: "auth0" | "
|
|
13377
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13304
13378
|
connection: string;
|
|
13305
13379
|
enabled: boolean;
|
|
13306
13380
|
credentials: {
|
|
@@ -13331,7 +13405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13331
13405
|
json: {
|
|
13332
13406
|
id?: string | undefined;
|
|
13333
13407
|
name?: string | undefined;
|
|
13334
|
-
provider?: "auth0" | "
|
|
13408
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
13335
13409
|
connection?: string | undefined;
|
|
13336
13410
|
enabled?: boolean | undefined;
|
|
13337
13411
|
credentials?: {
|
|
@@ -13347,7 +13421,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13347
13421
|
created_at: string;
|
|
13348
13422
|
updated_at: string;
|
|
13349
13423
|
name: string;
|
|
13350
|
-
provider: "auth0" | "
|
|
13424
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13351
13425
|
connection: string;
|
|
13352
13426
|
enabled: boolean;
|
|
13353
13427
|
credentials: {
|
|
@@ -13565,7 +13639,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13565
13639
|
};
|
|
13566
13640
|
};
|
|
13567
13641
|
output: {
|
|
13568
|
-
type: "
|
|
13642
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13569
13643
|
date: string;
|
|
13570
13644
|
isMobile: boolean;
|
|
13571
13645
|
log_id: string;
|
|
@@ -13604,7 +13678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13604
13678
|
limit: number;
|
|
13605
13679
|
length: number;
|
|
13606
13680
|
logs: {
|
|
13607
|
-
type: "
|
|
13681
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13608
13682
|
date: string;
|
|
13609
13683
|
isMobile: boolean;
|
|
13610
13684
|
log_id: string;
|
|
@@ -13643,7 +13717,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13643
13717
|
next?: string | undefined;
|
|
13644
13718
|
} | {
|
|
13645
13719
|
logs: {
|
|
13646
|
-
type: "
|
|
13720
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13647
13721
|
date: string;
|
|
13648
13722
|
isMobile: boolean;
|
|
13649
13723
|
log_id: string;
|
|
@@ -13697,7 +13771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13697
13771
|
};
|
|
13698
13772
|
};
|
|
13699
13773
|
output: {
|
|
13700
|
-
type: "
|
|
13774
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13701
13775
|
date: string;
|
|
13702
13776
|
isMobile: boolean;
|
|
13703
13777
|
log_id: string;
|
|
@@ -14942,7 +15016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14942
15016
|
active?: boolean | undefined;
|
|
14943
15017
|
} | undefined;
|
|
14944
15018
|
signup?: {
|
|
14945
|
-
status?: "
|
|
15019
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
14946
15020
|
verification?: {
|
|
14947
15021
|
active?: boolean | undefined;
|
|
14948
15022
|
} | undefined;
|
|
@@ -14959,7 +15033,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14959
15033
|
active?: boolean | undefined;
|
|
14960
15034
|
} | undefined;
|
|
14961
15035
|
signup?: {
|
|
14962
|
-
status?: "
|
|
15036
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
14963
15037
|
} | undefined;
|
|
14964
15038
|
validation?: {
|
|
14965
15039
|
max_length?: number | undefined;
|
|
@@ -14976,7 +15050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14976
15050
|
active?: boolean | undefined;
|
|
14977
15051
|
} | undefined;
|
|
14978
15052
|
signup?: {
|
|
14979
|
-
status?: "
|
|
15053
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
14980
15054
|
} | undefined;
|
|
14981
15055
|
} | undefined;
|
|
14982
15056
|
} | undefined;
|
|
@@ -15100,7 +15174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15100
15174
|
active?: boolean | undefined;
|
|
15101
15175
|
} | undefined;
|
|
15102
15176
|
signup?: {
|
|
15103
|
-
status?: "
|
|
15177
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
15104
15178
|
verification?: {
|
|
15105
15179
|
active?: boolean | undefined;
|
|
15106
15180
|
} | undefined;
|
|
@@ -15117,7 +15191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15117
15191
|
active?: boolean | undefined;
|
|
15118
15192
|
} | undefined;
|
|
15119
15193
|
signup?: {
|
|
15120
|
-
status?: "
|
|
15194
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
15121
15195
|
} | undefined;
|
|
15122
15196
|
validation?: {
|
|
15123
15197
|
max_length?: number | undefined;
|
|
@@ -15134,7 +15208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15134
15208
|
active?: boolean | undefined;
|
|
15135
15209
|
} | undefined;
|
|
15136
15210
|
signup?: {
|
|
15137
|
-
status?: "
|
|
15211
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
15138
15212
|
} | undefined;
|
|
15139
15213
|
} | undefined;
|
|
15140
15214
|
} | undefined;
|
|
@@ -16144,6 +16218,152 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16144
16218
|
status: 200;
|
|
16145
16219
|
};
|
|
16146
16220
|
};
|
|
16221
|
+
} & {
|
|
16222
|
+
"/:user_id/refresh-tokens": {
|
|
16223
|
+
$get: {
|
|
16224
|
+
input: {
|
|
16225
|
+
param: {
|
|
16226
|
+
user_id: string;
|
|
16227
|
+
};
|
|
16228
|
+
} & {
|
|
16229
|
+
query: {
|
|
16230
|
+
page?: string | undefined;
|
|
16231
|
+
per_page?: string | undefined;
|
|
16232
|
+
include_totals?: string | undefined;
|
|
16233
|
+
from?: string | undefined;
|
|
16234
|
+
take?: string | undefined;
|
|
16235
|
+
sort?: string | undefined;
|
|
16236
|
+
q?: string | undefined;
|
|
16237
|
+
from_date?: unknown;
|
|
16238
|
+
to_date?: unknown;
|
|
16239
|
+
};
|
|
16240
|
+
} & {
|
|
16241
|
+
header: {
|
|
16242
|
+
"tenant-id"?: string | undefined;
|
|
16243
|
+
};
|
|
16244
|
+
};
|
|
16245
|
+
output: {
|
|
16246
|
+
id: string;
|
|
16247
|
+
created_at: string;
|
|
16248
|
+
user_id: string;
|
|
16249
|
+
client_id: string;
|
|
16250
|
+
rotating: boolean;
|
|
16251
|
+
device: {
|
|
16252
|
+
initial_user_agent: string;
|
|
16253
|
+
initial_ip: string;
|
|
16254
|
+
initial_asn: string;
|
|
16255
|
+
last_user_agent: string;
|
|
16256
|
+
last_ip: string;
|
|
16257
|
+
last_asn: string;
|
|
16258
|
+
};
|
|
16259
|
+
login_id: string;
|
|
16260
|
+
resource_servers: {
|
|
16261
|
+
audience: string;
|
|
16262
|
+
scopes: string;
|
|
16263
|
+
}[];
|
|
16264
|
+
revoked_at?: string | undefined;
|
|
16265
|
+
expires_at?: string | undefined;
|
|
16266
|
+
idle_expires_at?: string | undefined;
|
|
16267
|
+
session_id?: string | undefined;
|
|
16268
|
+
organization?: string | undefined;
|
|
16269
|
+
auth_connection?: string | undefined;
|
|
16270
|
+
auth_strategy?: {
|
|
16271
|
+
strategy: string;
|
|
16272
|
+
strategy_type: string;
|
|
16273
|
+
} | undefined;
|
|
16274
|
+
last_exchanged_at?: string | undefined;
|
|
16275
|
+
}[] | {
|
|
16276
|
+
tokens: {
|
|
16277
|
+
id: string;
|
|
16278
|
+
created_at: string;
|
|
16279
|
+
user_id: string;
|
|
16280
|
+
client_id: string;
|
|
16281
|
+
rotating: boolean;
|
|
16282
|
+
device: {
|
|
16283
|
+
initial_user_agent: string;
|
|
16284
|
+
initial_ip: string;
|
|
16285
|
+
initial_asn: string;
|
|
16286
|
+
last_user_agent: string;
|
|
16287
|
+
last_ip: string;
|
|
16288
|
+
last_asn: string;
|
|
16289
|
+
};
|
|
16290
|
+
login_id: string;
|
|
16291
|
+
resource_servers: {
|
|
16292
|
+
audience: string;
|
|
16293
|
+
scopes: string;
|
|
16294
|
+
}[];
|
|
16295
|
+
revoked_at?: string | undefined;
|
|
16296
|
+
expires_at?: string | undefined;
|
|
16297
|
+
idle_expires_at?: string | undefined;
|
|
16298
|
+
session_id?: string | undefined;
|
|
16299
|
+
organization?: string | undefined;
|
|
16300
|
+
auth_connection?: string | undefined;
|
|
16301
|
+
auth_strategy?: {
|
|
16302
|
+
strategy: string;
|
|
16303
|
+
strategy_type: string;
|
|
16304
|
+
} | undefined;
|
|
16305
|
+
last_exchanged_at?: string | undefined;
|
|
16306
|
+
}[];
|
|
16307
|
+
next?: string | undefined;
|
|
16308
|
+
} | {
|
|
16309
|
+
start: number;
|
|
16310
|
+
limit: number;
|
|
16311
|
+
length: number;
|
|
16312
|
+
tokens: {
|
|
16313
|
+
id: string;
|
|
16314
|
+
created_at: string;
|
|
16315
|
+
user_id: string;
|
|
16316
|
+
client_id: string;
|
|
16317
|
+
rotating: boolean;
|
|
16318
|
+
device: {
|
|
16319
|
+
initial_user_agent: string;
|
|
16320
|
+
initial_ip: string;
|
|
16321
|
+
initial_asn: string;
|
|
16322
|
+
last_user_agent: string;
|
|
16323
|
+
last_ip: string;
|
|
16324
|
+
last_asn: string;
|
|
16325
|
+
};
|
|
16326
|
+
login_id: string;
|
|
16327
|
+
resource_servers: {
|
|
16328
|
+
audience: string;
|
|
16329
|
+
scopes: string;
|
|
16330
|
+
}[];
|
|
16331
|
+
revoked_at?: string | undefined;
|
|
16332
|
+
expires_at?: string | undefined;
|
|
16333
|
+
idle_expires_at?: string | undefined;
|
|
16334
|
+
session_id?: string | undefined;
|
|
16335
|
+
organization?: string | undefined;
|
|
16336
|
+
auth_connection?: string | undefined;
|
|
16337
|
+
auth_strategy?: {
|
|
16338
|
+
strategy: string;
|
|
16339
|
+
strategy_type: string;
|
|
16340
|
+
} | undefined;
|
|
16341
|
+
last_exchanged_at?: string | undefined;
|
|
16342
|
+
}[];
|
|
16343
|
+
total?: number | undefined;
|
|
16344
|
+
next?: string | undefined;
|
|
16345
|
+
};
|
|
16346
|
+
outputFormat: "json";
|
|
16347
|
+
status: 200;
|
|
16348
|
+
};
|
|
16349
|
+
};
|
|
16350
|
+
} & {
|
|
16351
|
+
"/:user_id/refresh-tokens": {
|
|
16352
|
+
$delete: {
|
|
16353
|
+
input: {
|
|
16354
|
+
param: {
|
|
16355
|
+
user_id: string;
|
|
16356
|
+
};
|
|
16357
|
+
} & {
|
|
16358
|
+
header: {
|
|
16359
|
+
"tenant-id"?: string | undefined;
|
|
16360
|
+
};
|
|
16361
|
+
};
|
|
16362
|
+
output: {};
|
|
16363
|
+
outputFormat: string;
|
|
16364
|
+
status: 204;
|
|
16365
|
+
};
|
|
16366
|
+
};
|
|
16147
16367
|
} & {
|
|
16148
16368
|
"/:user_id/logs": {
|
|
16149
16369
|
$get: {
|
|
@@ -16169,7 +16389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16169
16389
|
};
|
|
16170
16390
|
};
|
|
16171
16391
|
output: {
|
|
16172
|
-
type: "
|
|
16392
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
16173
16393
|
date: string;
|
|
16174
16394
|
isMobile: boolean;
|
|
16175
16395
|
log_id: string;
|
|
@@ -16208,7 +16428,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16208
16428
|
limit: number;
|
|
16209
16429
|
length: number;
|
|
16210
16430
|
logs: {
|
|
16211
|
-
type: "
|
|
16431
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
16212
16432
|
date: string;
|
|
16213
16433
|
isMobile: boolean;
|
|
16214
16434
|
log_id: string;
|
|
@@ -16527,7 +16747,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16527
16747
|
};
|
|
16528
16748
|
} & {
|
|
16529
16749
|
json: {
|
|
16530
|
-
template: "
|
|
16750
|
+
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";
|
|
16531
16751
|
body: string;
|
|
16532
16752
|
from: string;
|
|
16533
16753
|
subject: string;
|
|
@@ -16548,7 +16768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16548
16768
|
};
|
|
16549
16769
|
} & {
|
|
16550
16770
|
json: {
|
|
16551
|
-
template: "
|
|
16771
|
+
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";
|
|
16552
16772
|
body: string;
|
|
16553
16773
|
from: string;
|
|
16554
16774
|
subject: string;
|
|
@@ -16560,7 +16780,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16560
16780
|
};
|
|
16561
16781
|
};
|
|
16562
16782
|
output: {
|
|
16563
|
-
template: "
|
|
16783
|
+
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";
|
|
16564
16784
|
body: string;
|
|
16565
16785
|
from: string;
|
|
16566
16786
|
subject: string;
|
|
@@ -16583,7 +16803,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16583
16803
|
};
|
|
16584
16804
|
};
|
|
16585
16805
|
output: {
|
|
16586
|
-
name: "
|
|
16806
|
+
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";
|
|
16587
16807
|
body: string;
|
|
16588
16808
|
subject: string;
|
|
16589
16809
|
}[];
|
|
@@ -16596,7 +16816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16596
16816
|
$get: {
|
|
16597
16817
|
input: {
|
|
16598
16818
|
param: {
|
|
16599
|
-
templateName: "
|
|
16819
|
+
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";
|
|
16600
16820
|
};
|
|
16601
16821
|
} & {
|
|
16602
16822
|
header: {
|
|
@@ -16609,7 +16829,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16609
16829
|
} | {
|
|
16610
16830
|
input: {
|
|
16611
16831
|
param: {
|
|
16612
|
-
templateName: "
|
|
16832
|
+
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";
|
|
16613
16833
|
};
|
|
16614
16834
|
} & {
|
|
16615
16835
|
header: {
|
|
@@ -16617,7 +16837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16617
16837
|
};
|
|
16618
16838
|
};
|
|
16619
16839
|
output: {
|
|
16620
|
-
template: "
|
|
16840
|
+
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";
|
|
16621
16841
|
body: string;
|
|
16622
16842
|
from: string;
|
|
16623
16843
|
subject: string;
|
|
@@ -16636,7 +16856,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16636
16856
|
$put: {
|
|
16637
16857
|
input: {
|
|
16638
16858
|
param: {
|
|
16639
|
-
templateName: "
|
|
16859
|
+
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";
|
|
16640
16860
|
};
|
|
16641
16861
|
} & {
|
|
16642
16862
|
header: {
|
|
@@ -16644,7 +16864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16644
16864
|
};
|
|
16645
16865
|
} & {
|
|
16646
16866
|
json: {
|
|
16647
|
-
template: "
|
|
16867
|
+
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";
|
|
16648
16868
|
body: string;
|
|
16649
16869
|
subject: string;
|
|
16650
16870
|
syntax?: "liquid" | undefined;
|
|
@@ -16656,7 +16876,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16656
16876
|
};
|
|
16657
16877
|
};
|
|
16658
16878
|
output: {
|
|
16659
|
-
template: "
|
|
16879
|
+
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";
|
|
16660
16880
|
body: string;
|
|
16661
16881
|
from: string;
|
|
16662
16882
|
subject: string;
|
|
@@ -16675,7 +16895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16675
16895
|
$patch: {
|
|
16676
16896
|
input: {
|
|
16677
16897
|
param: {
|
|
16678
|
-
templateName: "
|
|
16898
|
+
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";
|
|
16679
16899
|
};
|
|
16680
16900
|
} & {
|
|
16681
16901
|
header: {
|
|
@@ -16683,7 +16903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16683
16903
|
};
|
|
16684
16904
|
} & {
|
|
16685
16905
|
json: {
|
|
16686
|
-
template?: "
|
|
16906
|
+
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;
|
|
16687
16907
|
body?: string | undefined;
|
|
16688
16908
|
from?: string | undefined;
|
|
16689
16909
|
subject?: string | undefined;
|
|
@@ -16700,7 +16920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16700
16920
|
} | {
|
|
16701
16921
|
input: {
|
|
16702
16922
|
param: {
|
|
16703
|
-
templateName: "
|
|
16923
|
+
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";
|
|
16704
16924
|
};
|
|
16705
16925
|
} & {
|
|
16706
16926
|
header: {
|
|
@@ -16708,7 +16928,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16708
16928
|
};
|
|
16709
16929
|
} & {
|
|
16710
16930
|
json: {
|
|
16711
|
-
template?: "
|
|
16931
|
+
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;
|
|
16712
16932
|
body?: string | undefined;
|
|
16713
16933
|
from?: string | undefined;
|
|
16714
16934
|
subject?: string | undefined;
|
|
@@ -16720,7 +16940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16720
16940
|
};
|
|
16721
16941
|
};
|
|
16722
16942
|
output: {
|
|
16723
|
-
template: "
|
|
16943
|
+
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";
|
|
16724
16944
|
body: string;
|
|
16725
16945
|
from: string;
|
|
16726
16946
|
subject: string;
|
|
@@ -16739,7 +16959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16739
16959
|
$delete: {
|
|
16740
16960
|
input: {
|
|
16741
16961
|
param: {
|
|
16742
|
-
templateName: "
|
|
16962
|
+
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";
|
|
16743
16963
|
};
|
|
16744
16964
|
} & {
|
|
16745
16965
|
header: {
|
|
@@ -16752,7 +16972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16752
16972
|
} | {
|
|
16753
16973
|
input: {
|
|
16754
16974
|
param: {
|
|
16755
|
-
templateName: "
|
|
16975
|
+
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";
|
|
16756
16976
|
};
|
|
16757
16977
|
} & {
|
|
16758
16978
|
header: {
|
|
@@ -16769,7 +16989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16769
16989
|
$post: {
|
|
16770
16990
|
input: {
|
|
16771
16991
|
param: {
|
|
16772
|
-
templateName: "
|
|
16992
|
+
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";
|
|
16773
16993
|
};
|
|
16774
16994
|
} & {
|
|
16775
16995
|
header: {
|
|
@@ -17052,7 +17272,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17052
17272
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17053
17273
|
custom_domain_id: string;
|
|
17054
17274
|
primary: boolean;
|
|
17055
|
-
status: "
|
|
17275
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17056
17276
|
verification_method?: "txt" | undefined;
|
|
17057
17277
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17058
17278
|
domain_metadata?: {
|
|
@@ -17093,7 +17313,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17093
17313
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17094
17314
|
custom_domain_id: string;
|
|
17095
17315
|
primary: boolean;
|
|
17096
|
-
status: "
|
|
17316
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17097
17317
|
verification_method?: "txt" | undefined;
|
|
17098
17318
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17099
17319
|
domain_metadata?: {
|
|
@@ -17157,7 +17377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17157
17377
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17158
17378
|
custom_domain_id: string;
|
|
17159
17379
|
primary: boolean;
|
|
17160
|
-
status: "
|
|
17380
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17161
17381
|
verification_method?: "txt" | undefined;
|
|
17162
17382
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17163
17383
|
domain_metadata?: {
|
|
@@ -17204,7 +17424,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17204
17424
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17205
17425
|
custom_domain_id: string;
|
|
17206
17426
|
primary: boolean;
|
|
17207
|
-
status: "
|
|
17427
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17208
17428
|
verification_method?: "txt" | undefined;
|
|
17209
17429
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17210
17430
|
domain_metadata?: {
|
|
@@ -17250,7 +17470,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17250
17470
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17251
17471
|
custom_domain_id: string;
|
|
17252
17472
|
primary: boolean;
|
|
17253
|
-
status: "
|
|
17473
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17254
17474
|
verification_method?: "txt" | undefined;
|
|
17255
17475
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17256
17476
|
domain_metadata?: {
|
|
@@ -17291,7 +17511,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17291
17511
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17292
17512
|
custom_domain_id: string;
|
|
17293
17513
|
primary: boolean;
|
|
17294
|
-
status: "
|
|
17514
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17295
17515
|
verification_method?: "txt" | undefined;
|
|
17296
17516
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17297
17517
|
domain_metadata?: {
|
|
@@ -17721,7 +17941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17721
17941
|
} & {
|
|
17722
17942
|
json: {
|
|
17723
17943
|
body?: string | undefined;
|
|
17724
|
-
screen?: "
|
|
17944
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
17725
17945
|
branding?: {
|
|
17726
17946
|
colors?: {
|
|
17727
17947
|
primary: string;
|
|
@@ -18012,7 +18232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18012
18232
|
logs: {
|
|
18013
18233
|
action_name: string;
|
|
18014
18234
|
lines: {
|
|
18015
|
-
level: "
|
|
18235
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
18016
18236
|
message: string;
|
|
18017
18237
|
}[];
|
|
18018
18238
|
}[];
|
|
@@ -18681,7 +18901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18681
18901
|
args: hono_utils_types.JSONValue[];
|
|
18682
18902
|
}[];
|
|
18683
18903
|
logs: {
|
|
18684
|
-
level: "
|
|
18904
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
18685
18905
|
message: string;
|
|
18686
18906
|
}[];
|
|
18687
18907
|
error?: string | undefined;
|
|
@@ -19427,19 +19647,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19427
19647
|
email: string;
|
|
19428
19648
|
send: "code" | "link";
|
|
19429
19649
|
authParams: {
|
|
19650
|
+
username?: string | undefined;
|
|
19651
|
+
organization?: string | undefined;
|
|
19430
19652
|
audience?: string | undefined;
|
|
19653
|
+
scope?: string | undefined;
|
|
19431
19654
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19432
19655
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19433
|
-
scope?: string | undefined;
|
|
19434
|
-
username?: string | undefined;
|
|
19435
|
-
organization?: string | undefined;
|
|
19436
|
-
redirect_uri?: string | undefined;
|
|
19437
19656
|
state?: string | undefined;
|
|
19657
|
+
code_challenge?: string | undefined;
|
|
19658
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19659
|
+
redirect_uri?: string | undefined;
|
|
19438
19660
|
nonce?: string | undefined;
|
|
19439
19661
|
act_as?: string | undefined;
|
|
19440
19662
|
prompt?: string | undefined;
|
|
19441
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19442
|
-
code_challenge?: string | undefined;
|
|
19443
19663
|
ui_locales?: string | undefined;
|
|
19444
19664
|
max_age?: number | undefined;
|
|
19445
19665
|
acr_values?: string | undefined;
|
|
@@ -19463,19 +19683,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19463
19683
|
phone_number: string;
|
|
19464
19684
|
send: "code" | "link";
|
|
19465
19685
|
authParams: {
|
|
19686
|
+
username?: string | undefined;
|
|
19687
|
+
organization?: string | undefined;
|
|
19466
19688
|
audience?: string | undefined;
|
|
19689
|
+
scope?: string | undefined;
|
|
19467
19690
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19468
19691
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19469
|
-
scope?: string | undefined;
|
|
19470
|
-
username?: string | undefined;
|
|
19471
|
-
organization?: string | undefined;
|
|
19472
|
-
redirect_uri?: string | undefined;
|
|
19473
19692
|
state?: string | undefined;
|
|
19693
|
+
code_challenge?: string | undefined;
|
|
19694
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19695
|
+
redirect_uri?: string | undefined;
|
|
19474
19696
|
nonce?: string | undefined;
|
|
19475
19697
|
act_as?: string | undefined;
|
|
19476
19698
|
prompt?: string | undefined;
|
|
19477
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19478
|
-
code_challenge?: string | undefined;
|
|
19479
19699
|
ui_locales?: string | undefined;
|
|
19480
19700
|
max_age?: number | undefined;
|
|
19481
19701
|
acr_values?: string | undefined;
|
|
@@ -19607,14 +19827,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19607
19827
|
input: {
|
|
19608
19828
|
form: {
|
|
19609
19829
|
token: string;
|
|
19610
|
-
token_type_hint?: "
|
|
19830
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19611
19831
|
client_id?: string | undefined;
|
|
19612
19832
|
client_secret?: string | undefined;
|
|
19613
19833
|
};
|
|
19614
19834
|
} & {
|
|
19615
19835
|
json: {
|
|
19616
19836
|
token: string;
|
|
19617
|
-
token_type_hint?: "
|
|
19837
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19618
19838
|
client_id?: string | undefined;
|
|
19619
19839
|
client_secret?: string | undefined;
|
|
19620
19840
|
};
|
|
@@ -19626,14 +19846,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19626
19846
|
input: {
|
|
19627
19847
|
form: {
|
|
19628
19848
|
token: string;
|
|
19629
|
-
token_type_hint?: "
|
|
19849
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19630
19850
|
client_id?: string | undefined;
|
|
19631
19851
|
client_secret?: string | undefined;
|
|
19632
19852
|
};
|
|
19633
19853
|
} & {
|
|
19634
19854
|
json: {
|
|
19635
19855
|
token: string;
|
|
19636
|
-
token_type_hint?: "
|
|
19856
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19637
19857
|
client_id?: string | undefined;
|
|
19638
19858
|
client_secret?: string | undefined;
|
|
19639
19859
|
};
|
|
@@ -19648,14 +19868,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19648
19868
|
input: {
|
|
19649
19869
|
form: {
|
|
19650
19870
|
token: string;
|
|
19651
|
-
token_type_hint?: "
|
|
19871
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19652
19872
|
client_id?: string | undefined;
|
|
19653
19873
|
client_secret?: string | undefined;
|
|
19654
19874
|
};
|
|
19655
19875
|
} & {
|
|
19656
19876
|
json: {
|
|
19657
19877
|
token: string;
|
|
19658
|
-
token_type_hint?: "
|
|
19878
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19659
19879
|
client_id?: string | undefined;
|
|
19660
19880
|
client_secret?: string | undefined;
|
|
19661
19881
|
};
|
|
@@ -19705,7 +19925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19705
19925
|
client_id: string;
|
|
19706
19926
|
username: string;
|
|
19707
19927
|
otp: string;
|
|
19708
|
-
realm: "
|
|
19928
|
+
realm: "email" | "sms";
|
|
19709
19929
|
} | {
|
|
19710
19930
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19711
19931
|
subject_token: string;
|
|
@@ -19752,7 +19972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19752
19972
|
client_id: string;
|
|
19753
19973
|
username: string;
|
|
19754
19974
|
otp: string;
|
|
19755
|
-
realm: "
|
|
19975
|
+
realm: "email" | "sms";
|
|
19756
19976
|
} | {
|
|
19757
19977
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19758
19978
|
subject_token: string;
|
|
@@ -19804,7 +20024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19804
20024
|
client_id: string;
|
|
19805
20025
|
username: string;
|
|
19806
20026
|
otp: string;
|
|
19807
|
-
realm: "
|
|
20027
|
+
realm: "email" | "sms";
|
|
19808
20028
|
} | {
|
|
19809
20029
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19810
20030
|
subject_token: string;
|
|
@@ -19851,7 +20071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19851
20071
|
client_id: string;
|
|
19852
20072
|
username: string;
|
|
19853
20073
|
otp: string;
|
|
19854
|
-
realm: "
|
|
20074
|
+
realm: "email" | "sms";
|
|
19855
20075
|
} | {
|
|
19856
20076
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19857
20077
|
subject_token: string;
|
|
@@ -19911,7 +20131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19911
20131
|
client_id: string;
|
|
19912
20132
|
username: string;
|
|
19913
20133
|
otp: string;
|
|
19914
|
-
realm: "
|
|
20134
|
+
realm: "email" | "sms";
|
|
19915
20135
|
} | {
|
|
19916
20136
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19917
20137
|
subject_token: string;
|
|
@@ -19958,7 +20178,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19958
20178
|
client_id: string;
|
|
19959
20179
|
username: string;
|
|
19960
20180
|
otp: string;
|
|
19961
|
-
realm: "
|
|
20181
|
+
realm: "email" | "sms";
|
|
19962
20182
|
} | {
|
|
19963
20183
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19964
20184
|
subject_token: string;
|
|
@@ -20013,7 +20233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20013
20233
|
client_id: string;
|
|
20014
20234
|
username: string;
|
|
20015
20235
|
otp: string;
|
|
20016
|
-
realm: "
|
|
20236
|
+
realm: "email" | "sms";
|
|
20017
20237
|
} | {
|
|
20018
20238
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20019
20239
|
subject_token: string;
|
|
@@ -20060,7 +20280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20060
20280
|
client_id: string;
|
|
20061
20281
|
username: string;
|
|
20062
20282
|
otp: string;
|
|
20063
|
-
realm: "
|
|
20283
|
+
realm: "email" | "sms";
|
|
20064
20284
|
} | {
|
|
20065
20285
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20066
20286
|
subject_token: string;
|
|
@@ -20115,7 +20335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20115
20335
|
client_id: string;
|
|
20116
20336
|
username: string;
|
|
20117
20337
|
otp: string;
|
|
20118
|
-
realm: "
|
|
20338
|
+
realm: "email" | "sms";
|
|
20119
20339
|
} | {
|
|
20120
20340
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20121
20341
|
subject_token: string;
|
|
@@ -20162,7 +20382,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20162
20382
|
client_id: string;
|
|
20163
20383
|
username: string;
|
|
20164
20384
|
otp: string;
|
|
20165
|
-
realm: "
|
|
20385
|
+
realm: "email" | "sms";
|
|
20166
20386
|
} | {
|
|
20167
20387
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20168
20388
|
subject_token: string;
|
|
@@ -20191,7 +20411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20191
20411
|
output: {
|
|
20192
20412
|
keys: {
|
|
20193
20413
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
20194
|
-
kty: "
|
|
20414
|
+
kty: "EC" | "RSA" | "oct";
|
|
20195
20415
|
kid?: string | undefined;
|
|
20196
20416
|
use?: "sig" | "enc" | undefined;
|
|
20197
20417
|
n?: string | undefined;
|
|
@@ -21007,7 +21227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21007
21227
|
} & {
|
|
21008
21228
|
form: {
|
|
21009
21229
|
username: string;
|
|
21010
|
-
login_selection?: "
|
|
21230
|
+
login_selection?: "password" | "code" | undefined;
|
|
21011
21231
|
};
|
|
21012
21232
|
};
|
|
21013
21233
|
output: {};
|
|
@@ -21021,7 +21241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21021
21241
|
} & {
|
|
21022
21242
|
form: {
|
|
21023
21243
|
username: string;
|
|
21024
|
-
login_selection?: "
|
|
21244
|
+
login_selection?: "password" | "code" | undefined;
|
|
21025
21245
|
};
|
|
21026
21246
|
};
|
|
21027
21247
|
output: {};
|
|
@@ -21386,7 +21606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21386
21606
|
$get: {
|
|
21387
21607
|
input: {
|
|
21388
21608
|
param: {
|
|
21389
|
-
screen: "signup" | "
|
|
21609
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "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";
|
|
21390
21610
|
};
|
|
21391
21611
|
} & {
|
|
21392
21612
|
query: {
|
|
@@ -21402,7 +21622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21402
21622
|
} | {
|
|
21403
21623
|
input: {
|
|
21404
21624
|
param: {
|
|
21405
|
-
screen: "signup" | "
|
|
21625
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "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";
|
|
21406
21626
|
};
|
|
21407
21627
|
} & {
|
|
21408
21628
|
query: {
|
|
@@ -21418,7 +21638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21418
21638
|
} | {
|
|
21419
21639
|
input: {
|
|
21420
21640
|
param: {
|
|
21421
|
-
screen: "signup" | "
|
|
21641
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "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";
|
|
21422
21642
|
};
|
|
21423
21643
|
} & {
|
|
21424
21644
|
query: {
|
|
@@ -21438,7 +21658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21438
21658
|
$post: {
|
|
21439
21659
|
input: {
|
|
21440
21660
|
param: {
|
|
21441
|
-
screen: "signup" | "
|
|
21661
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "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";
|
|
21442
21662
|
};
|
|
21443
21663
|
} & {
|
|
21444
21664
|
query: {
|
|
@@ -21456,7 +21676,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21456
21676
|
} | {
|
|
21457
21677
|
input: {
|
|
21458
21678
|
param: {
|
|
21459
|
-
screen: "signup" | "
|
|
21679
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "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";
|
|
21460
21680
|
};
|
|
21461
21681
|
} & {
|
|
21462
21682
|
query: {
|