authhero 9.6.4 → 9.8.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 +138 -138
- package/dist/authhero.d.ts +499 -187
- package/dist/authhero.mjs +14867 -14543
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +17 -1
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/helpers/revoke-user-refresh-tokens.d.ts +21 -0
- package/dist/types/helpers/signing-keys.d.ts +11 -0
- package/dist/types/index.d.ts +489 -187
- package/dist/types/routes/auth-api/index.d.ts +21 -21
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/index.d.ts +463 -161
- package/dist/types/routes/management-api/keys.d.ts +86 -4
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +7 -7
- 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/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/encryption.d.ts +51 -0
- 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
|
@@ -2143,6 +2143,16 @@ interface CreateX509CertificateParams {
|
|
|
2143
2143
|
* backwards compatibility with existing tenants.
|
|
2144
2144
|
*/
|
|
2145
2145
|
keyType?: SigningKeyType;
|
|
2146
|
+
/**
|
|
2147
|
+
* How long the certificate stays valid, in days. Defaults to
|
|
2148
|
+
* `DEFAULT_CERT_VALIDITY_DAYS` (one year).
|
|
2149
|
+
*
|
|
2150
|
+
* Relying parties that fetch JWKS re-read the key on every rotation, so a
|
|
2151
|
+
* short life is cheap there. A SAML service provider, by contrast, pins the
|
|
2152
|
+
* certificate out-of-band and only learns about a new one when someone
|
|
2153
|
+
* emails it over — so SAML keys want years, not months.
|
|
2154
|
+
*/
|
|
2155
|
+
validityDays?: number;
|
|
2146
2156
|
}
|
|
2147
2157
|
declare function createX509Certificate(params: CreateX509CertificateParams): Promise<SigningKey>;
|
|
2148
2158
|
|
|
@@ -4265,8 +4275,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4265
4275
|
$get: {
|
|
4266
4276
|
input: {
|
|
4267
4277
|
query: {
|
|
4268
|
-
include_password_hashes?: "
|
|
4269
|
-
gzip?: "
|
|
4278
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4279
|
+
gzip?: "true" | "false" | undefined;
|
|
4270
4280
|
};
|
|
4271
4281
|
} & {
|
|
4272
4282
|
header: {
|
|
@@ -4279,8 +4289,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4279
4289
|
} | {
|
|
4280
4290
|
input: {
|
|
4281
4291
|
query: {
|
|
4282
|
-
include_password_hashes?: "
|
|
4283
|
-
gzip?: "
|
|
4292
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4293
|
+
gzip?: "true" | "false" | undefined;
|
|
4284
4294
|
};
|
|
4285
4295
|
} & {
|
|
4286
4296
|
header: {
|
|
@@ -4299,7 +4309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4299
4309
|
$post: {
|
|
4300
4310
|
input: {
|
|
4301
4311
|
query: {
|
|
4302
|
-
include_password_hashes?: "
|
|
4312
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4303
4313
|
};
|
|
4304
4314
|
} & {
|
|
4305
4315
|
header: {
|
|
@@ -4353,7 +4363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4353
4363
|
};
|
|
4354
4364
|
} & {
|
|
4355
4365
|
json: {
|
|
4356
|
-
type: "
|
|
4366
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4357
4367
|
phone_number?: string | undefined;
|
|
4358
4368
|
totp_secret?: string | undefined;
|
|
4359
4369
|
credential_id?: string | undefined;
|
|
@@ -5453,19 +5463,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5453
5463
|
} & {
|
|
5454
5464
|
json: {
|
|
5455
5465
|
client_id: string;
|
|
5456
|
-
invitee: {
|
|
5457
|
-
email?: string | undefined;
|
|
5458
|
-
};
|
|
5459
5466
|
inviter: {
|
|
5460
5467
|
name?: string | undefined;
|
|
5461
5468
|
};
|
|
5469
|
+
invitee: {
|
|
5470
|
+
email?: string | undefined;
|
|
5471
|
+
};
|
|
5472
|
+
id?: string | undefined;
|
|
5473
|
+
roles?: string[] | undefined;
|
|
5462
5474
|
app_metadata?: Record<string, any> | undefined;
|
|
5463
5475
|
user_metadata?: Record<string, any> | undefined;
|
|
5464
|
-
id?: string | undefined;
|
|
5465
5476
|
connection_id?: string | undefined;
|
|
5466
|
-
roles?: string[] | undefined;
|
|
5467
|
-
send_invitation_email?: boolean | undefined;
|
|
5468
5477
|
ttl_sec?: number | undefined;
|
|
5478
|
+
send_invitation_email?: boolean | undefined;
|
|
5469
5479
|
};
|
|
5470
5480
|
};
|
|
5471
5481
|
output: {
|
|
@@ -5648,8 +5658,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5648
5658
|
};
|
|
5649
5659
|
} & {
|
|
5650
5660
|
json: {
|
|
5651
|
-
assign_membership_on_login?: boolean | undefined;
|
|
5652
5661
|
show_as_button?: boolean | undefined;
|
|
5662
|
+
assign_membership_on_login?: boolean | undefined;
|
|
5653
5663
|
is_signup_enabled?: boolean | undefined;
|
|
5654
5664
|
};
|
|
5655
5665
|
};
|
|
@@ -6221,8 +6231,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6221
6231
|
} & {
|
|
6222
6232
|
query: {
|
|
6223
6233
|
page?: string | undefined;
|
|
6224
|
-
include_totals?: string | undefined;
|
|
6225
6234
|
from?: string | undefined;
|
|
6235
|
+
include_totals?: string | undefined;
|
|
6226
6236
|
per_page?: string | undefined;
|
|
6227
6237
|
take?: string | undefined;
|
|
6228
6238
|
};
|
|
@@ -6945,7 +6955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6945
6955
|
hint?: string | undefined;
|
|
6946
6956
|
messages?: {
|
|
6947
6957
|
text: string;
|
|
6948
|
-
type: "
|
|
6958
|
+
type: "success" | "error" | "info" | "warning";
|
|
6949
6959
|
id?: number | undefined;
|
|
6950
6960
|
}[] | undefined;
|
|
6951
6961
|
required?: boolean | undefined;
|
|
@@ -6963,7 +6973,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6963
6973
|
hint?: string | undefined;
|
|
6964
6974
|
messages?: {
|
|
6965
6975
|
text: string;
|
|
6966
|
-
type: "
|
|
6976
|
+
type: "success" | "error" | "info" | "warning";
|
|
6967
6977
|
id?: number | undefined;
|
|
6968
6978
|
}[] | undefined;
|
|
6969
6979
|
required?: boolean | undefined;
|
|
@@ -6987,7 +6997,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6987
6997
|
hint?: string | undefined;
|
|
6988
6998
|
messages?: {
|
|
6989
6999
|
text: string;
|
|
6990
|
-
type: "
|
|
7000
|
+
type: "success" | "error" | "info" | "warning";
|
|
6991
7001
|
id?: number | undefined;
|
|
6992
7002
|
}[] | undefined;
|
|
6993
7003
|
required?: boolean | undefined;
|
|
@@ -7011,7 +7021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7011
7021
|
hint?: string | undefined;
|
|
7012
7022
|
messages?: {
|
|
7013
7023
|
text: string;
|
|
7014
|
-
type: "
|
|
7024
|
+
type: "success" | "error" | "info" | "warning";
|
|
7015
7025
|
id?: number | undefined;
|
|
7016
7026
|
}[] | undefined;
|
|
7017
7027
|
required?: boolean | undefined;
|
|
@@ -7035,7 +7045,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7035
7045
|
hint?: string | undefined;
|
|
7036
7046
|
messages?: {
|
|
7037
7047
|
text: string;
|
|
7038
|
-
type: "
|
|
7048
|
+
type: "success" | "error" | "info" | "warning";
|
|
7039
7049
|
id?: number | undefined;
|
|
7040
7050
|
}[] | undefined;
|
|
7041
7051
|
required?: boolean | undefined;
|
|
@@ -7064,7 +7074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7064
7074
|
hint?: string | undefined;
|
|
7065
7075
|
messages?: {
|
|
7066
7076
|
text: string;
|
|
7067
|
-
type: "
|
|
7077
|
+
type: "success" | "error" | "info" | "warning";
|
|
7068
7078
|
id?: number | undefined;
|
|
7069
7079
|
}[] | undefined;
|
|
7070
7080
|
required?: boolean | undefined;
|
|
@@ -7079,7 +7089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7079
7089
|
hint?: string | undefined;
|
|
7080
7090
|
messages?: {
|
|
7081
7091
|
text: string;
|
|
7082
|
-
type: "
|
|
7092
|
+
type: "success" | "error" | "info" | "warning";
|
|
7083
7093
|
id?: number | undefined;
|
|
7084
7094
|
}[] | undefined;
|
|
7085
7095
|
required?: boolean | undefined;
|
|
@@ -7100,7 +7110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7100
7110
|
hint?: string | undefined;
|
|
7101
7111
|
messages?: {
|
|
7102
7112
|
text: string;
|
|
7103
|
-
type: "
|
|
7113
|
+
type: "success" | "error" | "info" | "warning";
|
|
7104
7114
|
id?: number | undefined;
|
|
7105
7115
|
}[] | undefined;
|
|
7106
7116
|
required?: boolean | undefined;
|
|
@@ -7125,7 +7135,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7125
7135
|
hint?: string | undefined;
|
|
7126
7136
|
messages?: {
|
|
7127
7137
|
text: string;
|
|
7128
|
-
type: "
|
|
7138
|
+
type: "success" | "error" | "info" | "warning";
|
|
7129
7139
|
id?: number | undefined;
|
|
7130
7140
|
}[] | undefined;
|
|
7131
7141
|
required?: boolean | undefined;
|
|
@@ -7146,7 +7156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7146
7156
|
hint?: string | undefined;
|
|
7147
7157
|
messages?: {
|
|
7148
7158
|
text: string;
|
|
7149
|
-
type: "
|
|
7159
|
+
type: "success" | "error" | "info" | "warning";
|
|
7150
7160
|
id?: number | undefined;
|
|
7151
7161
|
}[] | undefined;
|
|
7152
7162
|
required?: boolean | undefined;
|
|
@@ -7166,7 +7176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7166
7176
|
hint?: string | undefined;
|
|
7167
7177
|
messages?: {
|
|
7168
7178
|
text: string;
|
|
7169
|
-
type: "
|
|
7179
|
+
type: "success" | "error" | "info" | "warning";
|
|
7170
7180
|
id?: number | undefined;
|
|
7171
7181
|
}[] | undefined;
|
|
7172
7182
|
required?: boolean | undefined;
|
|
@@ -7185,7 +7195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7185
7195
|
hint?: string | undefined;
|
|
7186
7196
|
messages?: {
|
|
7187
7197
|
text: string;
|
|
7188
|
-
type: "
|
|
7198
|
+
type: "success" | "error" | "info" | "warning";
|
|
7189
7199
|
id?: number | undefined;
|
|
7190
7200
|
}[] | undefined;
|
|
7191
7201
|
required?: boolean | undefined;
|
|
@@ -7207,7 +7217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7207
7217
|
hint?: string | undefined;
|
|
7208
7218
|
messages?: {
|
|
7209
7219
|
text: string;
|
|
7210
|
-
type: "
|
|
7220
|
+
type: "success" | "error" | "info" | "warning";
|
|
7211
7221
|
id?: number | undefined;
|
|
7212
7222
|
}[] | undefined;
|
|
7213
7223
|
required?: boolean | undefined;
|
|
@@ -7229,7 +7239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7229
7239
|
hint?: string | undefined;
|
|
7230
7240
|
messages?: {
|
|
7231
7241
|
text: string;
|
|
7232
|
-
type: "
|
|
7242
|
+
type: "success" | "error" | "info" | "warning";
|
|
7233
7243
|
id?: number | undefined;
|
|
7234
7244
|
}[] | undefined;
|
|
7235
7245
|
required?: boolean | undefined;
|
|
@@ -7248,7 +7258,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7248
7258
|
hint?: string | undefined;
|
|
7249
7259
|
messages?: {
|
|
7250
7260
|
text: string;
|
|
7251
|
-
type: "
|
|
7261
|
+
type: "success" | "error" | "info" | "warning";
|
|
7252
7262
|
id?: number | undefined;
|
|
7253
7263
|
}[] | undefined;
|
|
7254
7264
|
required?: boolean | undefined;
|
|
@@ -7275,7 +7285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7275
7285
|
hint?: string | undefined;
|
|
7276
7286
|
messages?: {
|
|
7277
7287
|
text: string;
|
|
7278
|
-
type: "
|
|
7288
|
+
type: "success" | "error" | "info" | "warning";
|
|
7279
7289
|
id?: number | undefined;
|
|
7280
7290
|
}[] | undefined;
|
|
7281
7291
|
required?: boolean | undefined;
|
|
@@ -7296,7 +7306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7296
7306
|
hint?: string | undefined;
|
|
7297
7307
|
messages?: {
|
|
7298
7308
|
text: string;
|
|
7299
|
-
type: "
|
|
7309
|
+
type: "success" | "error" | "info" | "warning";
|
|
7300
7310
|
id?: number | undefined;
|
|
7301
7311
|
}[] | undefined;
|
|
7302
7312
|
required?: boolean | undefined;
|
|
@@ -7319,7 +7329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7319
7329
|
hint?: string | undefined;
|
|
7320
7330
|
messages?: {
|
|
7321
7331
|
text: string;
|
|
7322
|
-
type: "
|
|
7332
|
+
type: "success" | "error" | "info" | "warning";
|
|
7323
7333
|
id?: number | undefined;
|
|
7324
7334
|
}[] | undefined;
|
|
7325
7335
|
required?: boolean | undefined;
|
|
@@ -7552,7 +7562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7552
7562
|
hint?: string | undefined;
|
|
7553
7563
|
messages?: {
|
|
7554
7564
|
text: string;
|
|
7555
|
-
type: "
|
|
7565
|
+
type: "success" | "error" | "info" | "warning";
|
|
7556
7566
|
id?: number | undefined;
|
|
7557
7567
|
}[] | undefined;
|
|
7558
7568
|
required?: boolean | undefined;
|
|
@@ -7570,7 +7580,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7570
7580
|
hint?: string | undefined;
|
|
7571
7581
|
messages?: {
|
|
7572
7582
|
text: string;
|
|
7573
|
-
type: "
|
|
7583
|
+
type: "success" | "error" | "info" | "warning";
|
|
7574
7584
|
id?: number | undefined;
|
|
7575
7585
|
}[] | undefined;
|
|
7576
7586
|
required?: boolean | undefined;
|
|
@@ -7594,7 +7604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7594
7604
|
hint?: string | undefined;
|
|
7595
7605
|
messages?: {
|
|
7596
7606
|
text: string;
|
|
7597
|
-
type: "
|
|
7607
|
+
type: "success" | "error" | "info" | "warning";
|
|
7598
7608
|
id?: number | undefined;
|
|
7599
7609
|
}[] | undefined;
|
|
7600
7610
|
required?: boolean | undefined;
|
|
@@ -7618,7 +7628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7618
7628
|
hint?: string | undefined;
|
|
7619
7629
|
messages?: {
|
|
7620
7630
|
text: string;
|
|
7621
|
-
type: "
|
|
7631
|
+
type: "success" | "error" | "info" | "warning";
|
|
7622
7632
|
id?: number | undefined;
|
|
7623
7633
|
}[] | undefined;
|
|
7624
7634
|
required?: boolean | undefined;
|
|
@@ -7642,7 +7652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7642
7652
|
hint?: string | undefined;
|
|
7643
7653
|
messages?: {
|
|
7644
7654
|
text: string;
|
|
7645
|
-
type: "
|
|
7655
|
+
type: "success" | "error" | "info" | "warning";
|
|
7646
7656
|
id?: number | undefined;
|
|
7647
7657
|
}[] | undefined;
|
|
7648
7658
|
required?: boolean | undefined;
|
|
@@ -7671,7 +7681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7671
7681
|
hint?: string | undefined;
|
|
7672
7682
|
messages?: {
|
|
7673
7683
|
text: string;
|
|
7674
|
-
type: "
|
|
7684
|
+
type: "success" | "error" | "info" | "warning";
|
|
7675
7685
|
id?: number | undefined;
|
|
7676
7686
|
}[] | undefined;
|
|
7677
7687
|
required?: boolean | undefined;
|
|
@@ -7686,7 +7696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7686
7696
|
hint?: string | undefined;
|
|
7687
7697
|
messages?: {
|
|
7688
7698
|
text: string;
|
|
7689
|
-
type: "
|
|
7699
|
+
type: "success" | "error" | "info" | "warning";
|
|
7690
7700
|
id?: number | undefined;
|
|
7691
7701
|
}[] | undefined;
|
|
7692
7702
|
required?: boolean | undefined;
|
|
@@ -7707,7 +7717,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7707
7717
|
hint?: string | undefined;
|
|
7708
7718
|
messages?: {
|
|
7709
7719
|
text: string;
|
|
7710
|
-
type: "
|
|
7720
|
+
type: "success" | "error" | "info" | "warning";
|
|
7711
7721
|
id?: number | undefined;
|
|
7712
7722
|
}[] | undefined;
|
|
7713
7723
|
required?: boolean | undefined;
|
|
@@ -7732,7 +7742,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7732
7742
|
hint?: string | undefined;
|
|
7733
7743
|
messages?: {
|
|
7734
7744
|
text: string;
|
|
7735
|
-
type: "
|
|
7745
|
+
type: "success" | "error" | "info" | "warning";
|
|
7736
7746
|
id?: number | undefined;
|
|
7737
7747
|
}[] | undefined;
|
|
7738
7748
|
required?: boolean | undefined;
|
|
@@ -7753,7 +7763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7753
7763
|
hint?: string | undefined;
|
|
7754
7764
|
messages?: {
|
|
7755
7765
|
text: string;
|
|
7756
|
-
type: "
|
|
7766
|
+
type: "success" | "error" | "info" | "warning";
|
|
7757
7767
|
id?: number | undefined;
|
|
7758
7768
|
}[] | undefined;
|
|
7759
7769
|
required?: boolean | undefined;
|
|
@@ -7773,7 +7783,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7773
7783
|
hint?: string | undefined;
|
|
7774
7784
|
messages?: {
|
|
7775
7785
|
text: string;
|
|
7776
|
-
type: "
|
|
7786
|
+
type: "success" | "error" | "info" | "warning";
|
|
7777
7787
|
id?: number | undefined;
|
|
7778
7788
|
}[] | undefined;
|
|
7779
7789
|
required?: boolean | undefined;
|
|
@@ -7792,7 +7802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7792
7802
|
hint?: string | undefined;
|
|
7793
7803
|
messages?: {
|
|
7794
7804
|
text: string;
|
|
7795
|
-
type: "
|
|
7805
|
+
type: "success" | "error" | "info" | "warning";
|
|
7796
7806
|
id?: number | undefined;
|
|
7797
7807
|
}[] | undefined;
|
|
7798
7808
|
required?: boolean | undefined;
|
|
@@ -7814,7 +7824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7814
7824
|
hint?: string | undefined;
|
|
7815
7825
|
messages?: {
|
|
7816
7826
|
text: string;
|
|
7817
|
-
type: "
|
|
7827
|
+
type: "success" | "error" | "info" | "warning";
|
|
7818
7828
|
id?: number | undefined;
|
|
7819
7829
|
}[] | undefined;
|
|
7820
7830
|
required?: boolean | undefined;
|
|
@@ -7836,7 +7846,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7836
7846
|
hint?: string | undefined;
|
|
7837
7847
|
messages?: {
|
|
7838
7848
|
text: string;
|
|
7839
|
-
type: "
|
|
7849
|
+
type: "success" | "error" | "info" | "warning";
|
|
7840
7850
|
id?: number | undefined;
|
|
7841
7851
|
}[] | undefined;
|
|
7842
7852
|
required?: boolean | undefined;
|
|
@@ -7855,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7855
7865
|
hint?: string | undefined;
|
|
7856
7866
|
messages?: {
|
|
7857
7867
|
text: string;
|
|
7858
|
-
type: "
|
|
7868
|
+
type: "success" | "error" | "info" | "warning";
|
|
7859
7869
|
id?: number | undefined;
|
|
7860
7870
|
}[] | undefined;
|
|
7861
7871
|
required?: boolean | undefined;
|
|
@@ -7882,7 +7892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7882
7892
|
hint?: string | undefined;
|
|
7883
7893
|
messages?: {
|
|
7884
7894
|
text: string;
|
|
7885
|
-
type: "
|
|
7895
|
+
type: "success" | "error" | "info" | "warning";
|
|
7886
7896
|
id?: number | undefined;
|
|
7887
7897
|
}[] | undefined;
|
|
7888
7898
|
required?: boolean | undefined;
|
|
@@ -7903,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7903
7913
|
hint?: string | undefined;
|
|
7904
7914
|
messages?: {
|
|
7905
7915
|
text: string;
|
|
7906
|
-
type: "
|
|
7916
|
+
type: "success" | "error" | "info" | "warning";
|
|
7907
7917
|
id?: number | undefined;
|
|
7908
7918
|
}[] | undefined;
|
|
7909
7919
|
required?: boolean | undefined;
|
|
@@ -7926,7 +7936,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7926
7936
|
hint?: string | undefined;
|
|
7927
7937
|
messages?: {
|
|
7928
7938
|
text: string;
|
|
7929
|
-
type: "
|
|
7939
|
+
type: "success" | "error" | "info" | "warning";
|
|
7930
7940
|
id?: number | undefined;
|
|
7931
7941
|
}[] | undefined;
|
|
7932
7942
|
required?: boolean | undefined;
|
|
@@ -8175,7 +8185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8175
8185
|
hint?: string | undefined;
|
|
8176
8186
|
messages?: {
|
|
8177
8187
|
text: string;
|
|
8178
|
-
type: "
|
|
8188
|
+
type: "success" | "error" | "info" | "warning";
|
|
8179
8189
|
id?: number | undefined;
|
|
8180
8190
|
}[] | undefined;
|
|
8181
8191
|
required?: boolean | undefined;
|
|
@@ -8193,7 +8203,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8193
8203
|
hint?: string | undefined;
|
|
8194
8204
|
messages?: {
|
|
8195
8205
|
text: string;
|
|
8196
|
-
type: "
|
|
8206
|
+
type: "success" | "error" | "info" | "warning";
|
|
8197
8207
|
id?: number | undefined;
|
|
8198
8208
|
}[] | undefined;
|
|
8199
8209
|
required?: boolean | undefined;
|
|
@@ -8217,7 +8227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8217
8227
|
hint?: string | undefined;
|
|
8218
8228
|
messages?: {
|
|
8219
8229
|
text: string;
|
|
8220
|
-
type: "
|
|
8230
|
+
type: "success" | "error" | "info" | "warning";
|
|
8221
8231
|
id?: number | undefined;
|
|
8222
8232
|
}[] | undefined;
|
|
8223
8233
|
required?: boolean | undefined;
|
|
@@ -8241,7 +8251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8241
8251
|
hint?: string | undefined;
|
|
8242
8252
|
messages?: {
|
|
8243
8253
|
text: string;
|
|
8244
|
-
type: "
|
|
8254
|
+
type: "success" | "error" | "info" | "warning";
|
|
8245
8255
|
id?: number | undefined;
|
|
8246
8256
|
}[] | undefined;
|
|
8247
8257
|
required?: boolean | undefined;
|
|
@@ -8265,7 +8275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8265
8275
|
hint?: string | undefined;
|
|
8266
8276
|
messages?: {
|
|
8267
8277
|
text: string;
|
|
8268
|
-
type: "
|
|
8278
|
+
type: "success" | "error" | "info" | "warning";
|
|
8269
8279
|
id?: number | undefined;
|
|
8270
8280
|
}[] | undefined;
|
|
8271
8281
|
required?: boolean | undefined;
|
|
@@ -8294,7 +8304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8294
8304
|
hint?: string | undefined;
|
|
8295
8305
|
messages?: {
|
|
8296
8306
|
text: string;
|
|
8297
|
-
type: "
|
|
8307
|
+
type: "success" | "error" | "info" | "warning";
|
|
8298
8308
|
id?: number | undefined;
|
|
8299
8309
|
}[] | undefined;
|
|
8300
8310
|
required?: boolean | undefined;
|
|
@@ -8309,7 +8319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8309
8319
|
hint?: string | undefined;
|
|
8310
8320
|
messages?: {
|
|
8311
8321
|
text: string;
|
|
8312
|
-
type: "
|
|
8322
|
+
type: "success" | "error" | "info" | "warning";
|
|
8313
8323
|
id?: number | undefined;
|
|
8314
8324
|
}[] | undefined;
|
|
8315
8325
|
required?: boolean | undefined;
|
|
@@ -8330,7 +8340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8330
8340
|
hint?: string | undefined;
|
|
8331
8341
|
messages?: {
|
|
8332
8342
|
text: string;
|
|
8333
|
-
type: "
|
|
8343
|
+
type: "success" | "error" | "info" | "warning";
|
|
8334
8344
|
id?: number | undefined;
|
|
8335
8345
|
}[] | undefined;
|
|
8336
8346
|
required?: boolean | undefined;
|
|
@@ -8355,7 +8365,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8355
8365
|
hint?: string | undefined;
|
|
8356
8366
|
messages?: {
|
|
8357
8367
|
text: string;
|
|
8358
|
-
type: "
|
|
8368
|
+
type: "success" | "error" | "info" | "warning";
|
|
8359
8369
|
id?: number | undefined;
|
|
8360
8370
|
}[] | undefined;
|
|
8361
8371
|
required?: boolean | undefined;
|
|
@@ -8376,7 +8386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8376
8386
|
hint?: string | undefined;
|
|
8377
8387
|
messages?: {
|
|
8378
8388
|
text: string;
|
|
8379
|
-
type: "
|
|
8389
|
+
type: "success" | "error" | "info" | "warning";
|
|
8380
8390
|
id?: number | undefined;
|
|
8381
8391
|
}[] | undefined;
|
|
8382
8392
|
required?: boolean | undefined;
|
|
@@ -8396,7 +8406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8396
8406
|
hint?: string | undefined;
|
|
8397
8407
|
messages?: {
|
|
8398
8408
|
text: string;
|
|
8399
|
-
type: "
|
|
8409
|
+
type: "success" | "error" | "info" | "warning";
|
|
8400
8410
|
id?: number | undefined;
|
|
8401
8411
|
}[] | undefined;
|
|
8402
8412
|
required?: boolean | undefined;
|
|
@@ -8415,7 +8425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8415
8425
|
hint?: string | undefined;
|
|
8416
8426
|
messages?: {
|
|
8417
8427
|
text: string;
|
|
8418
|
-
type: "
|
|
8428
|
+
type: "success" | "error" | "info" | "warning";
|
|
8419
8429
|
id?: number | undefined;
|
|
8420
8430
|
}[] | undefined;
|
|
8421
8431
|
required?: boolean | undefined;
|
|
@@ -8437,7 +8447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8437
8447
|
hint?: string | undefined;
|
|
8438
8448
|
messages?: {
|
|
8439
8449
|
text: string;
|
|
8440
|
-
type: "
|
|
8450
|
+
type: "success" | "error" | "info" | "warning";
|
|
8441
8451
|
id?: number | undefined;
|
|
8442
8452
|
}[] | undefined;
|
|
8443
8453
|
required?: boolean | undefined;
|
|
@@ -8459,7 +8469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8459
8469
|
hint?: string | undefined;
|
|
8460
8470
|
messages?: {
|
|
8461
8471
|
text: string;
|
|
8462
|
-
type: "
|
|
8472
|
+
type: "success" | "error" | "info" | "warning";
|
|
8463
8473
|
id?: number | undefined;
|
|
8464
8474
|
}[] | undefined;
|
|
8465
8475
|
required?: boolean | undefined;
|
|
@@ -8478,7 +8488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8478
8488
|
hint?: string | undefined;
|
|
8479
8489
|
messages?: {
|
|
8480
8490
|
text: string;
|
|
8481
|
-
type: "
|
|
8491
|
+
type: "success" | "error" | "info" | "warning";
|
|
8482
8492
|
id?: number | undefined;
|
|
8483
8493
|
}[] | undefined;
|
|
8484
8494
|
required?: boolean | undefined;
|
|
@@ -8505,7 +8515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8505
8515
|
hint?: string | undefined;
|
|
8506
8516
|
messages?: {
|
|
8507
8517
|
text: string;
|
|
8508
|
-
type: "
|
|
8518
|
+
type: "success" | "error" | "info" | "warning";
|
|
8509
8519
|
id?: number | undefined;
|
|
8510
8520
|
}[] | undefined;
|
|
8511
8521
|
required?: boolean | undefined;
|
|
@@ -8526,7 +8536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8526
8536
|
hint?: string | undefined;
|
|
8527
8537
|
messages?: {
|
|
8528
8538
|
text: string;
|
|
8529
|
-
type: "
|
|
8539
|
+
type: "success" | "error" | "info" | "warning";
|
|
8530
8540
|
id?: number | undefined;
|
|
8531
8541
|
}[] | undefined;
|
|
8532
8542
|
required?: boolean | undefined;
|
|
@@ -8549,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8549
8559
|
hint?: string | undefined;
|
|
8550
8560
|
messages?: {
|
|
8551
8561
|
text: string;
|
|
8552
|
-
type: "
|
|
8562
|
+
type: "success" | "error" | "info" | "warning";
|
|
8553
8563
|
id?: number | undefined;
|
|
8554
8564
|
}[] | undefined;
|
|
8555
8565
|
required?: boolean | undefined;
|
|
@@ -8803,7 +8813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8803
8813
|
hint?: string | undefined;
|
|
8804
8814
|
messages?: {
|
|
8805
8815
|
text: string;
|
|
8806
|
-
type: "
|
|
8816
|
+
type: "success" | "error" | "info" | "warning";
|
|
8807
8817
|
id?: number | undefined;
|
|
8808
8818
|
}[] | undefined;
|
|
8809
8819
|
required?: boolean | undefined;
|
|
@@ -8821,7 +8831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8821
8831
|
hint?: string | undefined;
|
|
8822
8832
|
messages?: {
|
|
8823
8833
|
text: string;
|
|
8824
|
-
type: "
|
|
8834
|
+
type: "success" | "error" | "info" | "warning";
|
|
8825
8835
|
id?: number | undefined;
|
|
8826
8836
|
}[] | undefined;
|
|
8827
8837
|
required?: boolean | undefined;
|
|
@@ -8845,7 +8855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8845
8855
|
hint?: string | undefined;
|
|
8846
8856
|
messages?: {
|
|
8847
8857
|
text: string;
|
|
8848
|
-
type: "
|
|
8858
|
+
type: "success" | "error" | "info" | "warning";
|
|
8849
8859
|
id?: number | undefined;
|
|
8850
8860
|
}[] | undefined;
|
|
8851
8861
|
required?: boolean | undefined;
|
|
@@ -8869,7 +8879,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8869
8879
|
hint?: string | undefined;
|
|
8870
8880
|
messages?: {
|
|
8871
8881
|
text: string;
|
|
8872
|
-
type: "
|
|
8882
|
+
type: "success" | "error" | "info" | "warning";
|
|
8873
8883
|
id?: number | undefined;
|
|
8874
8884
|
}[] | undefined;
|
|
8875
8885
|
required?: boolean | undefined;
|
|
@@ -8893,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8893
8903
|
hint?: string | undefined;
|
|
8894
8904
|
messages?: {
|
|
8895
8905
|
text: string;
|
|
8896
|
-
type: "
|
|
8906
|
+
type: "success" | "error" | "info" | "warning";
|
|
8897
8907
|
id?: number | undefined;
|
|
8898
8908
|
}[] | undefined;
|
|
8899
8909
|
required?: boolean | undefined;
|
|
@@ -8918,7 +8928,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8918
8928
|
hint?: string | undefined;
|
|
8919
8929
|
messages?: {
|
|
8920
8930
|
text: string;
|
|
8921
|
-
type: "
|
|
8931
|
+
type: "success" | "error" | "info" | "warning";
|
|
8922
8932
|
id?: number | undefined;
|
|
8923
8933
|
}[] | undefined;
|
|
8924
8934
|
required?: boolean | undefined;
|
|
@@ -8933,7 +8943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8933
8943
|
hint?: string | undefined;
|
|
8934
8944
|
messages?: {
|
|
8935
8945
|
text: string;
|
|
8936
|
-
type: "
|
|
8946
|
+
type: "success" | "error" | "info" | "warning";
|
|
8937
8947
|
id?: number | undefined;
|
|
8938
8948
|
}[] | undefined;
|
|
8939
8949
|
required?: boolean | undefined;
|
|
@@ -8954,7 +8964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8954
8964
|
hint?: string | undefined;
|
|
8955
8965
|
messages?: {
|
|
8956
8966
|
text: string;
|
|
8957
|
-
type: "
|
|
8967
|
+
type: "success" | "error" | "info" | "warning";
|
|
8958
8968
|
id?: number | undefined;
|
|
8959
8969
|
}[] | undefined;
|
|
8960
8970
|
required?: boolean | undefined;
|
|
@@ -8979,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8979
8989
|
hint?: string | undefined;
|
|
8980
8990
|
messages?: {
|
|
8981
8991
|
text: string;
|
|
8982
|
-
type: "
|
|
8992
|
+
type: "success" | "error" | "info" | "warning";
|
|
8983
8993
|
id?: number | undefined;
|
|
8984
8994
|
}[] | undefined;
|
|
8985
8995
|
required?: boolean | undefined;
|
|
@@ -9000,7 +9010,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9000
9010
|
hint?: string | undefined;
|
|
9001
9011
|
messages?: {
|
|
9002
9012
|
text: string;
|
|
9003
|
-
type: "
|
|
9013
|
+
type: "success" | "error" | "info" | "warning";
|
|
9004
9014
|
id?: number | undefined;
|
|
9005
9015
|
}[] | undefined;
|
|
9006
9016
|
required?: boolean | undefined;
|
|
@@ -9020,7 +9030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9020
9030
|
hint?: string | undefined;
|
|
9021
9031
|
messages?: {
|
|
9022
9032
|
text: string;
|
|
9023
|
-
type: "
|
|
9033
|
+
type: "success" | "error" | "info" | "warning";
|
|
9024
9034
|
id?: number | undefined;
|
|
9025
9035
|
}[] | undefined;
|
|
9026
9036
|
required?: boolean | undefined;
|
|
@@ -9039,7 +9049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9039
9049
|
hint?: string | undefined;
|
|
9040
9050
|
messages?: {
|
|
9041
9051
|
text: string;
|
|
9042
|
-
type: "
|
|
9052
|
+
type: "success" | "error" | "info" | "warning";
|
|
9043
9053
|
id?: number | undefined;
|
|
9044
9054
|
}[] | undefined;
|
|
9045
9055
|
required?: boolean | undefined;
|
|
@@ -9061,7 +9071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9061
9071
|
hint?: string | undefined;
|
|
9062
9072
|
messages?: {
|
|
9063
9073
|
text: string;
|
|
9064
|
-
type: "
|
|
9074
|
+
type: "success" | "error" | "info" | "warning";
|
|
9065
9075
|
id?: number | undefined;
|
|
9066
9076
|
}[] | undefined;
|
|
9067
9077
|
required?: boolean | undefined;
|
|
@@ -9083,7 +9093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9083
9093
|
hint?: string | undefined;
|
|
9084
9094
|
messages?: {
|
|
9085
9095
|
text: string;
|
|
9086
|
-
type: "
|
|
9096
|
+
type: "success" | "error" | "info" | "warning";
|
|
9087
9097
|
id?: number | undefined;
|
|
9088
9098
|
}[] | undefined;
|
|
9089
9099
|
required?: boolean | undefined;
|
|
@@ -9102,7 +9112,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9102
9112
|
hint?: string | undefined;
|
|
9103
9113
|
messages?: {
|
|
9104
9114
|
text: string;
|
|
9105
|
-
type: "
|
|
9115
|
+
type: "success" | "error" | "info" | "warning";
|
|
9106
9116
|
id?: number | undefined;
|
|
9107
9117
|
}[] | undefined;
|
|
9108
9118
|
required?: boolean | undefined;
|
|
@@ -9129,7 +9139,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9129
9139
|
hint?: string | undefined;
|
|
9130
9140
|
messages?: {
|
|
9131
9141
|
text: string;
|
|
9132
|
-
type: "
|
|
9142
|
+
type: "success" | "error" | "info" | "warning";
|
|
9133
9143
|
id?: number | undefined;
|
|
9134
9144
|
}[] | undefined;
|
|
9135
9145
|
required?: boolean | undefined;
|
|
@@ -9150,7 +9160,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9150
9160
|
hint?: string | undefined;
|
|
9151
9161
|
messages?: {
|
|
9152
9162
|
text: string;
|
|
9153
|
-
type: "
|
|
9163
|
+
type: "success" | "error" | "info" | "warning";
|
|
9154
9164
|
id?: number | undefined;
|
|
9155
9165
|
}[] | undefined;
|
|
9156
9166
|
required?: boolean | undefined;
|
|
@@ -9173,7 +9183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9173
9183
|
hint?: string | undefined;
|
|
9174
9184
|
messages?: {
|
|
9175
9185
|
text: string;
|
|
9176
|
-
type: "
|
|
9186
|
+
type: "success" | "error" | "info" | "warning";
|
|
9177
9187
|
id?: number | undefined;
|
|
9178
9188
|
}[] | undefined;
|
|
9179
9189
|
required?: boolean | undefined;
|
|
@@ -9404,7 +9414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9404
9414
|
hint?: string | undefined;
|
|
9405
9415
|
messages?: {
|
|
9406
9416
|
text: string;
|
|
9407
|
-
type: "
|
|
9417
|
+
type: "success" | "error" | "info" | "warning";
|
|
9408
9418
|
id?: number | undefined;
|
|
9409
9419
|
}[] | undefined;
|
|
9410
9420
|
required?: boolean | undefined;
|
|
@@ -9422,7 +9432,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9422
9432
|
hint?: string | undefined;
|
|
9423
9433
|
messages?: {
|
|
9424
9434
|
text: string;
|
|
9425
|
-
type: "
|
|
9435
|
+
type: "success" | "error" | "info" | "warning";
|
|
9426
9436
|
id?: number | undefined;
|
|
9427
9437
|
}[] | undefined;
|
|
9428
9438
|
required?: boolean | undefined;
|
|
@@ -9446,7 +9456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9446
9456
|
hint?: string | undefined;
|
|
9447
9457
|
messages?: {
|
|
9448
9458
|
text: string;
|
|
9449
|
-
type: "
|
|
9459
|
+
type: "success" | "error" | "info" | "warning";
|
|
9450
9460
|
id?: number | undefined;
|
|
9451
9461
|
}[] | undefined;
|
|
9452
9462
|
required?: boolean | undefined;
|
|
@@ -9470,7 +9480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9470
9480
|
hint?: string | undefined;
|
|
9471
9481
|
messages?: {
|
|
9472
9482
|
text: string;
|
|
9473
|
-
type: "
|
|
9483
|
+
type: "success" | "error" | "info" | "warning";
|
|
9474
9484
|
id?: number | undefined;
|
|
9475
9485
|
}[] | undefined;
|
|
9476
9486
|
required?: boolean | undefined;
|
|
@@ -9494,7 +9504,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9494
9504
|
hint?: string | undefined;
|
|
9495
9505
|
messages?: {
|
|
9496
9506
|
text: string;
|
|
9497
|
-
type: "
|
|
9507
|
+
type: "success" | "error" | "info" | "warning";
|
|
9498
9508
|
id?: number | undefined;
|
|
9499
9509
|
}[] | undefined;
|
|
9500
9510
|
required?: boolean | undefined;
|
|
@@ -9523,7 +9533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9523
9533
|
hint?: string | undefined;
|
|
9524
9534
|
messages?: {
|
|
9525
9535
|
text: string;
|
|
9526
|
-
type: "
|
|
9536
|
+
type: "success" | "error" | "info" | "warning";
|
|
9527
9537
|
id?: number | undefined;
|
|
9528
9538
|
}[] | undefined;
|
|
9529
9539
|
required?: boolean | undefined;
|
|
@@ -9538,7 +9548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9538
9548
|
hint?: string | undefined;
|
|
9539
9549
|
messages?: {
|
|
9540
9550
|
text: string;
|
|
9541
|
-
type: "
|
|
9551
|
+
type: "success" | "error" | "info" | "warning";
|
|
9542
9552
|
id?: number | undefined;
|
|
9543
9553
|
}[] | undefined;
|
|
9544
9554
|
required?: boolean | undefined;
|
|
@@ -9559,7 +9569,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9559
9569
|
hint?: string | undefined;
|
|
9560
9570
|
messages?: {
|
|
9561
9571
|
text: string;
|
|
9562
|
-
type: "
|
|
9572
|
+
type: "success" | "error" | "info" | "warning";
|
|
9563
9573
|
id?: number | undefined;
|
|
9564
9574
|
}[] | undefined;
|
|
9565
9575
|
required?: boolean | undefined;
|
|
@@ -9584,7 +9594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9584
9594
|
hint?: string | undefined;
|
|
9585
9595
|
messages?: {
|
|
9586
9596
|
text: string;
|
|
9587
|
-
type: "
|
|
9597
|
+
type: "success" | "error" | "info" | "warning";
|
|
9588
9598
|
id?: number | undefined;
|
|
9589
9599
|
}[] | undefined;
|
|
9590
9600
|
required?: boolean | undefined;
|
|
@@ -9605,7 +9615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9605
9615
|
hint?: string | undefined;
|
|
9606
9616
|
messages?: {
|
|
9607
9617
|
text: string;
|
|
9608
|
-
type: "
|
|
9618
|
+
type: "success" | "error" | "info" | "warning";
|
|
9609
9619
|
id?: number | undefined;
|
|
9610
9620
|
}[] | undefined;
|
|
9611
9621
|
required?: boolean | undefined;
|
|
@@ -9625,7 +9635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9625
9635
|
hint?: string | undefined;
|
|
9626
9636
|
messages?: {
|
|
9627
9637
|
text: string;
|
|
9628
|
-
type: "
|
|
9638
|
+
type: "success" | "error" | "info" | "warning";
|
|
9629
9639
|
id?: number | undefined;
|
|
9630
9640
|
}[] | undefined;
|
|
9631
9641
|
required?: boolean | undefined;
|
|
@@ -9644,7 +9654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9644
9654
|
hint?: string | undefined;
|
|
9645
9655
|
messages?: {
|
|
9646
9656
|
text: string;
|
|
9647
|
-
type: "
|
|
9657
|
+
type: "success" | "error" | "info" | "warning";
|
|
9648
9658
|
id?: number | undefined;
|
|
9649
9659
|
}[] | undefined;
|
|
9650
9660
|
required?: boolean | undefined;
|
|
@@ -9666,7 +9676,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9666
9676
|
hint?: string | undefined;
|
|
9667
9677
|
messages?: {
|
|
9668
9678
|
text: string;
|
|
9669
|
-
type: "
|
|
9679
|
+
type: "success" | "error" | "info" | "warning";
|
|
9670
9680
|
id?: number | undefined;
|
|
9671
9681
|
}[] | undefined;
|
|
9672
9682
|
required?: boolean | undefined;
|
|
@@ -9688,7 +9698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9688
9698
|
hint?: string | undefined;
|
|
9689
9699
|
messages?: {
|
|
9690
9700
|
text: string;
|
|
9691
|
-
type: "
|
|
9701
|
+
type: "success" | "error" | "info" | "warning";
|
|
9692
9702
|
id?: number | undefined;
|
|
9693
9703
|
}[] | undefined;
|
|
9694
9704
|
required?: boolean | undefined;
|
|
@@ -9707,7 +9717,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9707
9717
|
hint?: string | undefined;
|
|
9708
9718
|
messages?: {
|
|
9709
9719
|
text: string;
|
|
9710
|
-
type: "
|
|
9720
|
+
type: "success" | "error" | "info" | "warning";
|
|
9711
9721
|
id?: number | undefined;
|
|
9712
9722
|
}[] | undefined;
|
|
9713
9723
|
required?: boolean | undefined;
|
|
@@ -9734,7 +9744,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9734
9744
|
hint?: string | undefined;
|
|
9735
9745
|
messages?: {
|
|
9736
9746
|
text: string;
|
|
9737
|
-
type: "
|
|
9747
|
+
type: "success" | "error" | "info" | "warning";
|
|
9738
9748
|
id?: number | undefined;
|
|
9739
9749
|
}[] | undefined;
|
|
9740
9750
|
required?: boolean | undefined;
|
|
@@ -9755,7 +9765,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9755
9765
|
hint?: string | undefined;
|
|
9756
9766
|
messages?: {
|
|
9757
9767
|
text: string;
|
|
9758
|
-
type: "
|
|
9768
|
+
type: "success" | "error" | "info" | "warning";
|
|
9759
9769
|
id?: number | undefined;
|
|
9760
9770
|
}[] | undefined;
|
|
9761
9771
|
required?: boolean | undefined;
|
|
@@ -9778,7 +9788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9778
9788
|
hint?: string | undefined;
|
|
9779
9789
|
messages?: {
|
|
9780
9790
|
text: string;
|
|
9781
|
-
type: "
|
|
9791
|
+
type: "success" | "error" | "info" | "warning";
|
|
9782
9792
|
id?: number | undefined;
|
|
9783
9793
|
}[] | undefined;
|
|
9784
9794
|
required?: boolean | undefined;
|
|
@@ -10011,7 +10021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10011
10021
|
hint?: string | undefined;
|
|
10012
10022
|
messages?: {
|
|
10013
10023
|
text: string;
|
|
10014
|
-
type: "
|
|
10024
|
+
type: "success" | "error" | "info" | "warning";
|
|
10015
10025
|
id?: number | undefined;
|
|
10016
10026
|
}[] | undefined;
|
|
10017
10027
|
required?: boolean | undefined;
|
|
@@ -10029,7 +10039,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10029
10039
|
hint?: string | undefined;
|
|
10030
10040
|
messages?: {
|
|
10031
10041
|
text: string;
|
|
10032
|
-
type: "
|
|
10042
|
+
type: "success" | "error" | "info" | "warning";
|
|
10033
10043
|
id?: number | undefined;
|
|
10034
10044
|
}[] | undefined;
|
|
10035
10045
|
required?: boolean | undefined;
|
|
@@ -10053,7 +10063,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10053
10063
|
hint?: string | undefined;
|
|
10054
10064
|
messages?: {
|
|
10055
10065
|
text: string;
|
|
10056
|
-
type: "
|
|
10066
|
+
type: "success" | "error" | "info" | "warning";
|
|
10057
10067
|
id?: number | undefined;
|
|
10058
10068
|
}[] | undefined;
|
|
10059
10069
|
required?: boolean | undefined;
|
|
@@ -10077,7 +10087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10077
10087
|
hint?: string | undefined;
|
|
10078
10088
|
messages?: {
|
|
10079
10089
|
text: string;
|
|
10080
|
-
type: "
|
|
10090
|
+
type: "success" | "error" | "info" | "warning";
|
|
10081
10091
|
id?: number | undefined;
|
|
10082
10092
|
}[] | undefined;
|
|
10083
10093
|
required?: boolean | undefined;
|
|
@@ -10101,7 +10111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10101
10111
|
hint?: string | undefined;
|
|
10102
10112
|
messages?: {
|
|
10103
10113
|
text: string;
|
|
10104
|
-
type: "
|
|
10114
|
+
type: "success" | "error" | "info" | "warning";
|
|
10105
10115
|
id?: number | undefined;
|
|
10106
10116
|
}[] | undefined;
|
|
10107
10117
|
required?: boolean | undefined;
|
|
@@ -10126,7 +10136,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10126
10136
|
hint?: string | undefined;
|
|
10127
10137
|
messages?: {
|
|
10128
10138
|
text: string;
|
|
10129
|
-
type: "
|
|
10139
|
+
type: "success" | "error" | "info" | "warning";
|
|
10130
10140
|
id?: number | undefined;
|
|
10131
10141
|
}[] | undefined;
|
|
10132
10142
|
required?: boolean | undefined;
|
|
@@ -10141,7 +10151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10141
10151
|
hint?: string | undefined;
|
|
10142
10152
|
messages?: {
|
|
10143
10153
|
text: string;
|
|
10144
|
-
type: "
|
|
10154
|
+
type: "success" | "error" | "info" | "warning";
|
|
10145
10155
|
id?: number | undefined;
|
|
10146
10156
|
}[] | undefined;
|
|
10147
10157
|
required?: boolean | undefined;
|
|
@@ -10162,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10162
10172
|
hint?: string | undefined;
|
|
10163
10173
|
messages?: {
|
|
10164
10174
|
text: string;
|
|
10165
|
-
type: "
|
|
10175
|
+
type: "success" | "error" | "info" | "warning";
|
|
10166
10176
|
id?: number | undefined;
|
|
10167
10177
|
}[] | undefined;
|
|
10168
10178
|
required?: boolean | undefined;
|
|
@@ -10187,7 +10197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10187
10197
|
hint?: string | undefined;
|
|
10188
10198
|
messages?: {
|
|
10189
10199
|
text: string;
|
|
10190
|
-
type: "
|
|
10200
|
+
type: "success" | "error" | "info" | "warning";
|
|
10191
10201
|
id?: number | undefined;
|
|
10192
10202
|
}[] | undefined;
|
|
10193
10203
|
required?: boolean | undefined;
|
|
@@ -10208,7 +10218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10208
10218
|
hint?: string | undefined;
|
|
10209
10219
|
messages?: {
|
|
10210
10220
|
text: string;
|
|
10211
|
-
type: "
|
|
10221
|
+
type: "success" | "error" | "info" | "warning";
|
|
10212
10222
|
id?: number | undefined;
|
|
10213
10223
|
}[] | undefined;
|
|
10214
10224
|
required?: boolean | undefined;
|
|
@@ -10228,7 +10238,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10228
10238
|
hint?: string | undefined;
|
|
10229
10239
|
messages?: {
|
|
10230
10240
|
text: string;
|
|
10231
|
-
type: "
|
|
10241
|
+
type: "success" | "error" | "info" | "warning";
|
|
10232
10242
|
id?: number | undefined;
|
|
10233
10243
|
}[] | undefined;
|
|
10234
10244
|
required?: boolean | undefined;
|
|
@@ -10247,7 +10257,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10247
10257
|
hint?: string | undefined;
|
|
10248
10258
|
messages?: {
|
|
10249
10259
|
text: string;
|
|
10250
|
-
type: "
|
|
10260
|
+
type: "success" | "error" | "info" | "warning";
|
|
10251
10261
|
id?: number | undefined;
|
|
10252
10262
|
}[] | undefined;
|
|
10253
10263
|
required?: boolean | undefined;
|
|
@@ -10269,7 +10279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10269
10279
|
hint?: string | undefined;
|
|
10270
10280
|
messages?: {
|
|
10271
10281
|
text: string;
|
|
10272
|
-
type: "
|
|
10282
|
+
type: "success" | "error" | "info" | "warning";
|
|
10273
10283
|
id?: number | undefined;
|
|
10274
10284
|
}[] | undefined;
|
|
10275
10285
|
required?: boolean | undefined;
|
|
@@ -10291,7 +10301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10291
10301
|
hint?: string | undefined;
|
|
10292
10302
|
messages?: {
|
|
10293
10303
|
text: string;
|
|
10294
|
-
type: "
|
|
10304
|
+
type: "success" | "error" | "info" | "warning";
|
|
10295
10305
|
id?: number | undefined;
|
|
10296
10306
|
}[] | undefined;
|
|
10297
10307
|
required?: boolean | undefined;
|
|
@@ -10310,7 +10320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10310
10320
|
hint?: string | undefined;
|
|
10311
10321
|
messages?: {
|
|
10312
10322
|
text: string;
|
|
10313
|
-
type: "
|
|
10323
|
+
type: "success" | "error" | "info" | "warning";
|
|
10314
10324
|
id?: number | undefined;
|
|
10315
10325
|
}[] | undefined;
|
|
10316
10326
|
required?: boolean | undefined;
|
|
@@ -10337,7 +10347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10337
10347
|
hint?: string | undefined;
|
|
10338
10348
|
messages?: {
|
|
10339
10349
|
text: string;
|
|
10340
|
-
type: "
|
|
10350
|
+
type: "success" | "error" | "info" | "warning";
|
|
10341
10351
|
id?: number | undefined;
|
|
10342
10352
|
}[] | undefined;
|
|
10343
10353
|
required?: boolean | undefined;
|
|
@@ -10358,7 +10368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10358
10368
|
hint?: string | undefined;
|
|
10359
10369
|
messages?: {
|
|
10360
10370
|
text: string;
|
|
10361
|
-
type: "
|
|
10371
|
+
type: "success" | "error" | "info" | "warning";
|
|
10362
10372
|
id?: number | undefined;
|
|
10363
10373
|
}[] | undefined;
|
|
10364
10374
|
required?: boolean | undefined;
|
|
@@ -10381,7 +10391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10381
10391
|
hint?: string | undefined;
|
|
10382
10392
|
messages?: {
|
|
10383
10393
|
text: string;
|
|
10384
|
-
type: "
|
|
10394
|
+
type: "success" | "error" | "info" | "warning";
|
|
10385
10395
|
id?: number | undefined;
|
|
10386
10396
|
}[] | undefined;
|
|
10387
10397
|
required?: boolean | undefined;
|
|
@@ -10612,7 +10622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10612
10622
|
hint?: string | undefined;
|
|
10613
10623
|
messages?: {
|
|
10614
10624
|
text: string;
|
|
10615
|
-
type: "
|
|
10625
|
+
type: "success" | "error" | "info" | "warning";
|
|
10616
10626
|
id?: number | undefined;
|
|
10617
10627
|
}[] | undefined;
|
|
10618
10628
|
required?: boolean | undefined;
|
|
@@ -10630,7 +10640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10630
10640
|
hint?: string | undefined;
|
|
10631
10641
|
messages?: {
|
|
10632
10642
|
text: string;
|
|
10633
|
-
type: "
|
|
10643
|
+
type: "success" | "error" | "info" | "warning";
|
|
10634
10644
|
id?: number | undefined;
|
|
10635
10645
|
}[] | undefined;
|
|
10636
10646
|
required?: boolean | undefined;
|
|
@@ -10654,7 +10664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10654
10664
|
hint?: string | undefined;
|
|
10655
10665
|
messages?: {
|
|
10656
10666
|
text: string;
|
|
10657
|
-
type: "
|
|
10667
|
+
type: "success" | "error" | "info" | "warning";
|
|
10658
10668
|
id?: number | undefined;
|
|
10659
10669
|
}[] | undefined;
|
|
10660
10670
|
required?: boolean | undefined;
|
|
@@ -10678,7 +10688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10678
10688
|
hint?: string | undefined;
|
|
10679
10689
|
messages?: {
|
|
10680
10690
|
text: string;
|
|
10681
|
-
type: "
|
|
10691
|
+
type: "success" | "error" | "info" | "warning";
|
|
10682
10692
|
id?: number | undefined;
|
|
10683
10693
|
}[] | undefined;
|
|
10684
10694
|
required?: boolean | undefined;
|
|
@@ -10702,7 +10712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10702
10712
|
hint?: string | undefined;
|
|
10703
10713
|
messages?: {
|
|
10704
10714
|
text: string;
|
|
10705
|
-
type: "
|
|
10715
|
+
type: "success" | "error" | "info" | "warning";
|
|
10706
10716
|
id?: number | undefined;
|
|
10707
10717
|
}[] | undefined;
|
|
10708
10718
|
required?: boolean | undefined;
|
|
@@ -10731,7 +10741,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10731
10741
|
hint?: string | undefined;
|
|
10732
10742
|
messages?: {
|
|
10733
10743
|
text: string;
|
|
10734
|
-
type: "
|
|
10744
|
+
type: "success" | "error" | "info" | "warning";
|
|
10735
10745
|
id?: number | undefined;
|
|
10736
10746
|
}[] | undefined;
|
|
10737
10747
|
required?: boolean | undefined;
|
|
@@ -10746,7 +10756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10746
10756
|
hint?: string | undefined;
|
|
10747
10757
|
messages?: {
|
|
10748
10758
|
text: string;
|
|
10749
|
-
type: "
|
|
10759
|
+
type: "success" | "error" | "info" | "warning";
|
|
10750
10760
|
id?: number | undefined;
|
|
10751
10761
|
}[] | undefined;
|
|
10752
10762
|
required?: boolean | undefined;
|
|
@@ -10767,7 +10777,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10767
10777
|
hint?: string | undefined;
|
|
10768
10778
|
messages?: {
|
|
10769
10779
|
text: string;
|
|
10770
|
-
type: "
|
|
10780
|
+
type: "success" | "error" | "info" | "warning";
|
|
10771
10781
|
id?: number | undefined;
|
|
10772
10782
|
}[] | undefined;
|
|
10773
10783
|
required?: boolean | undefined;
|
|
@@ -10792,7 +10802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10792
10802
|
hint?: string | undefined;
|
|
10793
10803
|
messages?: {
|
|
10794
10804
|
text: string;
|
|
10795
|
-
type: "
|
|
10805
|
+
type: "success" | "error" | "info" | "warning";
|
|
10796
10806
|
id?: number | undefined;
|
|
10797
10807
|
}[] | undefined;
|
|
10798
10808
|
required?: boolean | undefined;
|
|
@@ -10813,7 +10823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10813
10823
|
hint?: string | undefined;
|
|
10814
10824
|
messages?: {
|
|
10815
10825
|
text: string;
|
|
10816
|
-
type: "
|
|
10826
|
+
type: "success" | "error" | "info" | "warning";
|
|
10817
10827
|
id?: number | undefined;
|
|
10818
10828
|
}[] | undefined;
|
|
10819
10829
|
required?: boolean | undefined;
|
|
@@ -10833,7 +10843,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10833
10843
|
hint?: string | undefined;
|
|
10834
10844
|
messages?: {
|
|
10835
10845
|
text: string;
|
|
10836
|
-
type: "
|
|
10846
|
+
type: "success" | "error" | "info" | "warning";
|
|
10837
10847
|
id?: number | undefined;
|
|
10838
10848
|
}[] | undefined;
|
|
10839
10849
|
required?: boolean | undefined;
|
|
@@ -10852,7 +10862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10852
10862
|
hint?: string | undefined;
|
|
10853
10863
|
messages?: {
|
|
10854
10864
|
text: string;
|
|
10855
|
-
type: "
|
|
10865
|
+
type: "success" | "error" | "info" | "warning";
|
|
10856
10866
|
id?: number | undefined;
|
|
10857
10867
|
}[] | undefined;
|
|
10858
10868
|
required?: boolean | undefined;
|
|
@@ -10874,7 +10884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10874
10884
|
hint?: string | undefined;
|
|
10875
10885
|
messages?: {
|
|
10876
10886
|
text: string;
|
|
10877
|
-
type: "
|
|
10887
|
+
type: "success" | "error" | "info" | "warning";
|
|
10878
10888
|
id?: number | undefined;
|
|
10879
10889
|
}[] | undefined;
|
|
10880
10890
|
required?: boolean | undefined;
|
|
@@ -10896,7 +10906,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10896
10906
|
hint?: string | undefined;
|
|
10897
10907
|
messages?: {
|
|
10898
10908
|
text: string;
|
|
10899
|
-
type: "
|
|
10909
|
+
type: "success" | "error" | "info" | "warning";
|
|
10900
10910
|
id?: number | undefined;
|
|
10901
10911
|
}[] | undefined;
|
|
10902
10912
|
required?: boolean | undefined;
|
|
@@ -10915,7 +10925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10915
10925
|
hint?: string | undefined;
|
|
10916
10926
|
messages?: {
|
|
10917
10927
|
text: string;
|
|
10918
|
-
type: "
|
|
10928
|
+
type: "success" | "error" | "info" | "warning";
|
|
10919
10929
|
id?: number | undefined;
|
|
10920
10930
|
}[] | undefined;
|
|
10921
10931
|
required?: boolean | undefined;
|
|
@@ -10942,7 +10952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10942
10952
|
hint?: string | undefined;
|
|
10943
10953
|
messages?: {
|
|
10944
10954
|
text: string;
|
|
10945
|
-
type: "
|
|
10955
|
+
type: "success" | "error" | "info" | "warning";
|
|
10946
10956
|
id?: number | undefined;
|
|
10947
10957
|
}[] | undefined;
|
|
10948
10958
|
required?: boolean | undefined;
|
|
@@ -10963,7 +10973,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10963
10973
|
hint?: string | undefined;
|
|
10964
10974
|
messages?: {
|
|
10965
10975
|
text: string;
|
|
10966
|
-
type: "
|
|
10976
|
+
type: "success" | "error" | "info" | "warning";
|
|
10967
10977
|
id?: number | undefined;
|
|
10968
10978
|
}[] | undefined;
|
|
10969
10979
|
required?: boolean | undefined;
|
|
@@ -10986,7 +10996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10986
10996
|
hint?: string | undefined;
|
|
10987
10997
|
messages?: {
|
|
10988
10998
|
text: string;
|
|
10989
|
-
type: "
|
|
10999
|
+
type: "success" | "error" | "info" | "warning";
|
|
10990
11000
|
id?: number | undefined;
|
|
10991
11001
|
}[] | undefined;
|
|
10992
11002
|
required?: boolean | undefined;
|
|
@@ -11067,6 +11077,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11067
11077
|
scopes: string;
|
|
11068
11078
|
}[];
|
|
11069
11079
|
rotating: boolean;
|
|
11080
|
+
session_id?: string | undefined;
|
|
11081
|
+
organization?: string | undefined;
|
|
11082
|
+
auth_connection?: string | undefined;
|
|
11083
|
+
auth_strategy?: {
|
|
11084
|
+
strategy: string;
|
|
11085
|
+
strategy_type: string;
|
|
11086
|
+
} | undefined;
|
|
11070
11087
|
expires_at?: string | undefined;
|
|
11071
11088
|
idle_expires_at?: string | undefined;
|
|
11072
11089
|
last_exchanged_at?: string | undefined;
|
|
@@ -11098,6 +11115,73 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11098
11115
|
};
|
|
11099
11116
|
};
|
|
11100
11117
|
}, "/refresh_tokens"> & hono_types.MergeSchemaPath<{
|
|
11118
|
+
"/:id": {
|
|
11119
|
+
$get: {
|
|
11120
|
+
input: {
|
|
11121
|
+
param: {
|
|
11122
|
+
id: string;
|
|
11123
|
+
};
|
|
11124
|
+
} & {
|
|
11125
|
+
header: {
|
|
11126
|
+
"tenant-id"?: string | undefined;
|
|
11127
|
+
};
|
|
11128
|
+
};
|
|
11129
|
+
output: {
|
|
11130
|
+
id: string;
|
|
11131
|
+
login_id: string;
|
|
11132
|
+
user_id: string;
|
|
11133
|
+
client_id: string;
|
|
11134
|
+
device: {
|
|
11135
|
+
initial_user_agent: string;
|
|
11136
|
+
initial_ip: string;
|
|
11137
|
+
initial_asn: string;
|
|
11138
|
+
last_user_agent: string;
|
|
11139
|
+
last_ip: string;
|
|
11140
|
+
last_asn: string;
|
|
11141
|
+
};
|
|
11142
|
+
resource_servers: {
|
|
11143
|
+
audience: string;
|
|
11144
|
+
scopes: string;
|
|
11145
|
+
}[];
|
|
11146
|
+
rotating: boolean;
|
|
11147
|
+
session_id?: string | undefined;
|
|
11148
|
+
organization?: string | undefined;
|
|
11149
|
+
auth_connection?: string | undefined;
|
|
11150
|
+
auth_strategy?: {
|
|
11151
|
+
strategy: string;
|
|
11152
|
+
strategy_type: string;
|
|
11153
|
+
} | undefined;
|
|
11154
|
+
expires_at?: string | undefined;
|
|
11155
|
+
idle_expires_at?: string | undefined;
|
|
11156
|
+
last_exchanged_at?: string | undefined;
|
|
11157
|
+
token_lookup?: string | undefined;
|
|
11158
|
+
token_hash?: string | undefined;
|
|
11159
|
+
family_id?: string | undefined;
|
|
11160
|
+
rotated_to?: string | undefined;
|
|
11161
|
+
rotated_at?: string | undefined;
|
|
11162
|
+
};
|
|
11163
|
+
outputFormat: "json";
|
|
11164
|
+
status: 200;
|
|
11165
|
+
};
|
|
11166
|
+
};
|
|
11167
|
+
} & {
|
|
11168
|
+
"/:id": {
|
|
11169
|
+
$delete: {
|
|
11170
|
+
input: {
|
|
11171
|
+
param: {
|
|
11172
|
+
id: string;
|
|
11173
|
+
};
|
|
11174
|
+
} & {
|
|
11175
|
+
header: {
|
|
11176
|
+
"tenant-id"?: string | undefined;
|
|
11177
|
+
};
|
|
11178
|
+
};
|
|
11179
|
+
output: {};
|
|
11180
|
+
outputFormat: string;
|
|
11181
|
+
status: 200;
|
|
11182
|
+
};
|
|
11183
|
+
};
|
|
11184
|
+
}, "/refresh-tokens"> & hono_types.MergeSchemaPath<{
|
|
11101
11185
|
"/:id": {
|
|
11102
11186
|
$get: {
|
|
11103
11187
|
input: {
|
|
@@ -11218,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11218
11302
|
};
|
|
11219
11303
|
};
|
|
11220
11304
|
output: {
|
|
11221
|
-
prompt: "status" | "organizations" | "
|
|
11305
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11222
11306
|
language: string;
|
|
11223
11307
|
}[];
|
|
11224
11308
|
outputFormat: "json";
|
|
@@ -11256,7 +11340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11256
11340
|
$get: {
|
|
11257
11341
|
input: {
|
|
11258
11342
|
param: {
|
|
11259
|
-
prompt: "status" | "organizations" | "
|
|
11343
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11260
11344
|
language: string;
|
|
11261
11345
|
};
|
|
11262
11346
|
} & {
|
|
@@ -11278,7 +11362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11278
11362
|
$put: {
|
|
11279
11363
|
input: {
|
|
11280
11364
|
param: {
|
|
11281
|
-
prompt: "status" | "organizations" | "
|
|
11365
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11282
11366
|
language: string;
|
|
11283
11367
|
};
|
|
11284
11368
|
} & {
|
|
@@ -11302,7 +11386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11302
11386
|
$delete: {
|
|
11303
11387
|
input: {
|
|
11304
11388
|
param: {
|
|
11305
|
-
prompt: "status" | "organizations" | "
|
|
11389
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11306
11390
|
language: string;
|
|
11307
11391
|
};
|
|
11308
11392
|
} & {
|
|
@@ -12185,7 +12269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12185
12269
|
};
|
|
12186
12270
|
} | {
|
|
12187
12271
|
mode: "inline";
|
|
12188
|
-
status: "
|
|
12272
|
+
status: "success" | "error";
|
|
12189
12273
|
connection_id: string;
|
|
12190
12274
|
connection_name: string;
|
|
12191
12275
|
strategy: string;
|
|
@@ -13565,7 +13649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13565
13649
|
};
|
|
13566
13650
|
};
|
|
13567
13651
|
output: {
|
|
13568
|
-
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" | "
|
|
13652
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13569
13653
|
date: string;
|
|
13570
13654
|
isMobile: boolean;
|
|
13571
13655
|
log_id: string;
|
|
@@ -13604,7 +13688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13604
13688
|
limit: number;
|
|
13605
13689
|
length: number;
|
|
13606
13690
|
logs: {
|
|
13607
|
-
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" | "
|
|
13691
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13608
13692
|
date: string;
|
|
13609
13693
|
isMobile: boolean;
|
|
13610
13694
|
log_id: string;
|
|
@@ -13643,7 +13727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13643
13727
|
next?: string | undefined;
|
|
13644
13728
|
} | {
|
|
13645
13729
|
logs: {
|
|
13646
|
-
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" | "
|
|
13730
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13647
13731
|
date: string;
|
|
13648
13732
|
isMobile: boolean;
|
|
13649
13733
|
log_id: string;
|
|
@@ -13697,7 +13781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13697
13781
|
};
|
|
13698
13782
|
};
|
|
13699
13783
|
output: {
|
|
13700
|
-
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" | "
|
|
13784
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13701
13785
|
date: string;
|
|
13702
13786
|
isMobile: boolean;
|
|
13703
13787
|
log_id: string;
|
|
@@ -15267,6 +15351,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15267
15351
|
"/signing": {
|
|
15268
15352
|
$get: {
|
|
15269
15353
|
input: {
|
|
15354
|
+
query: {
|
|
15355
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
15356
|
+
};
|
|
15357
|
+
} & {
|
|
15270
15358
|
header: {
|
|
15271
15359
|
"tenant-id"?: string | undefined;
|
|
15272
15360
|
};
|
|
@@ -15278,7 +15366,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15278
15366
|
thumbprint: string;
|
|
15279
15367
|
type: "jwt_signing" | "saml_encryption";
|
|
15280
15368
|
tenant_id?: string | undefined;
|
|
15281
|
-
pkcs7?: string | undefined;
|
|
15282
15369
|
current?: boolean | undefined;
|
|
15283
15370
|
next?: boolean | undefined;
|
|
15284
15371
|
previous?: boolean | undefined;
|
|
@@ -15287,6 +15374,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15287
15374
|
revoked?: boolean | undefined;
|
|
15288
15375
|
revoked_at?: string | undefined;
|
|
15289
15376
|
connection?: string | undefined;
|
|
15377
|
+
expires_at?: string | undefined;
|
|
15378
|
+
expired?: boolean | undefined;
|
|
15379
|
+
inherited?: boolean | undefined;
|
|
15290
15380
|
}[];
|
|
15291
15381
|
outputFormat: "json";
|
|
15292
15382
|
status: 200;
|
|
@@ -15299,6 +15389,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15299
15389
|
param: {
|
|
15300
15390
|
kid: string;
|
|
15301
15391
|
};
|
|
15392
|
+
} & {
|
|
15393
|
+
query: {
|
|
15394
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
15395
|
+
};
|
|
15302
15396
|
} & {
|
|
15303
15397
|
header: {
|
|
15304
15398
|
"tenant-id"?: string | undefined;
|
|
@@ -15311,7 +15405,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15311
15405
|
thumbprint: string;
|
|
15312
15406
|
type: "jwt_signing" | "saml_encryption";
|
|
15313
15407
|
tenant_id?: string | undefined;
|
|
15314
|
-
pkcs7?: string | undefined;
|
|
15315
15408
|
current?: boolean | undefined;
|
|
15316
15409
|
next?: boolean | undefined;
|
|
15317
15410
|
previous?: boolean | undefined;
|
|
@@ -15320,6 +15413,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15320
15413
|
revoked?: boolean | undefined;
|
|
15321
15414
|
revoked_at?: string | undefined;
|
|
15322
15415
|
connection?: string | undefined;
|
|
15416
|
+
expires_at?: string | undefined;
|
|
15417
|
+
expired?: boolean | undefined;
|
|
15418
|
+
inherited?: boolean | undefined;
|
|
15323
15419
|
};
|
|
15324
15420
|
outputFormat: "json";
|
|
15325
15421
|
status: 200;
|
|
@@ -15329,15 +15425,80 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15329
15425
|
"/signing/rotate": {
|
|
15330
15426
|
$post: {
|
|
15331
15427
|
input: {
|
|
15428
|
+
query: {
|
|
15429
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
15430
|
+
validity_days?: unknown;
|
|
15431
|
+
activate_in_days?: unknown;
|
|
15432
|
+
grace_days?: unknown;
|
|
15433
|
+
};
|
|
15434
|
+
} & {
|
|
15332
15435
|
header: {
|
|
15333
15436
|
"tenant-id"?: string | undefined;
|
|
15334
15437
|
};
|
|
15335
15438
|
};
|
|
15336
|
-
output: {
|
|
15337
|
-
|
|
15439
|
+
output: {
|
|
15440
|
+
kid: string;
|
|
15441
|
+
cert: string;
|
|
15442
|
+
fingerprint: string;
|
|
15443
|
+
thumbprint: string;
|
|
15444
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15445
|
+
tenant_id?: string | undefined;
|
|
15446
|
+
current?: boolean | undefined;
|
|
15447
|
+
next?: boolean | undefined;
|
|
15448
|
+
previous?: boolean | undefined;
|
|
15449
|
+
current_since?: string | undefined;
|
|
15450
|
+
current_until?: string | undefined;
|
|
15451
|
+
revoked?: boolean | undefined;
|
|
15452
|
+
revoked_at?: string | undefined;
|
|
15453
|
+
connection?: string | undefined;
|
|
15454
|
+
expires_at?: string | undefined;
|
|
15455
|
+
expired?: boolean | undefined;
|
|
15456
|
+
inherited?: boolean | undefined;
|
|
15457
|
+
};
|
|
15458
|
+
outputFormat: "json";
|
|
15338
15459
|
status: 201;
|
|
15339
15460
|
};
|
|
15340
15461
|
};
|
|
15462
|
+
} & {
|
|
15463
|
+
"/signing/:kid/renew": {
|
|
15464
|
+
$post: {
|
|
15465
|
+
input: {
|
|
15466
|
+
param: {
|
|
15467
|
+
kid: string;
|
|
15468
|
+
};
|
|
15469
|
+
} & {
|
|
15470
|
+
query: {
|
|
15471
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
15472
|
+
validity_days?: unknown;
|
|
15473
|
+
};
|
|
15474
|
+
} & {
|
|
15475
|
+
header: {
|
|
15476
|
+
"tenant-id"?: string | undefined;
|
|
15477
|
+
};
|
|
15478
|
+
};
|
|
15479
|
+
output: {
|
|
15480
|
+
kid: string;
|
|
15481
|
+
cert: string;
|
|
15482
|
+
fingerprint: string;
|
|
15483
|
+
thumbprint: string;
|
|
15484
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15485
|
+
tenant_id?: string | undefined;
|
|
15486
|
+
current?: boolean | undefined;
|
|
15487
|
+
next?: boolean | undefined;
|
|
15488
|
+
previous?: boolean | undefined;
|
|
15489
|
+
current_since?: string | undefined;
|
|
15490
|
+
current_until?: string | undefined;
|
|
15491
|
+
revoked?: boolean | undefined;
|
|
15492
|
+
revoked_at?: string | undefined;
|
|
15493
|
+
connection?: string | undefined;
|
|
15494
|
+
expires_at?: string | undefined;
|
|
15495
|
+
expired?: boolean | undefined;
|
|
15496
|
+
inherited?: boolean | undefined;
|
|
15497
|
+
};
|
|
15498
|
+
outputFormat: "json";
|
|
15499
|
+
status: 200;
|
|
15500
|
+
};
|
|
15501
|
+
};
|
|
15341
15502
|
} & {
|
|
15342
15503
|
"/signing/:kid/revoke": {
|
|
15343
15504
|
$put: {
|
|
@@ -15345,6 +15506,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15345
15506
|
param: {
|
|
15346
15507
|
kid: string;
|
|
15347
15508
|
};
|
|
15509
|
+
} & {
|
|
15510
|
+
query: {
|
|
15511
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
15512
|
+
validity_days?: unknown;
|
|
15513
|
+
};
|
|
15348
15514
|
} & {
|
|
15349
15515
|
header: {
|
|
15350
15516
|
"tenant-id"?: string | undefined;
|
|
@@ -16144,6 +16310,152 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16144
16310
|
status: 200;
|
|
16145
16311
|
};
|
|
16146
16312
|
};
|
|
16313
|
+
} & {
|
|
16314
|
+
"/:user_id/refresh-tokens": {
|
|
16315
|
+
$get: {
|
|
16316
|
+
input: {
|
|
16317
|
+
param: {
|
|
16318
|
+
user_id: string;
|
|
16319
|
+
};
|
|
16320
|
+
} & {
|
|
16321
|
+
query: {
|
|
16322
|
+
page?: string | undefined;
|
|
16323
|
+
per_page?: string | undefined;
|
|
16324
|
+
include_totals?: string | undefined;
|
|
16325
|
+
from?: string | undefined;
|
|
16326
|
+
take?: string | undefined;
|
|
16327
|
+
sort?: string | undefined;
|
|
16328
|
+
q?: string | undefined;
|
|
16329
|
+
from_date?: unknown;
|
|
16330
|
+
to_date?: unknown;
|
|
16331
|
+
};
|
|
16332
|
+
} & {
|
|
16333
|
+
header: {
|
|
16334
|
+
"tenant-id"?: string | undefined;
|
|
16335
|
+
};
|
|
16336
|
+
};
|
|
16337
|
+
output: {
|
|
16338
|
+
created_at: string;
|
|
16339
|
+
id: string;
|
|
16340
|
+
client_id: string;
|
|
16341
|
+
user_id: string;
|
|
16342
|
+
rotating: boolean;
|
|
16343
|
+
device: {
|
|
16344
|
+
initial_user_agent: string;
|
|
16345
|
+
initial_ip: string;
|
|
16346
|
+
initial_asn: string;
|
|
16347
|
+
last_user_agent: string;
|
|
16348
|
+
last_ip: string;
|
|
16349
|
+
last_asn: string;
|
|
16350
|
+
};
|
|
16351
|
+
login_id: string;
|
|
16352
|
+
resource_servers: {
|
|
16353
|
+
audience: string;
|
|
16354
|
+
scopes: string;
|
|
16355
|
+
}[];
|
|
16356
|
+
revoked_at?: string | undefined;
|
|
16357
|
+
expires_at?: string | undefined;
|
|
16358
|
+
organization?: string | undefined;
|
|
16359
|
+
session_id?: string | undefined;
|
|
16360
|
+
auth_connection?: string | undefined;
|
|
16361
|
+
auth_strategy?: {
|
|
16362
|
+
strategy: string;
|
|
16363
|
+
strategy_type: string;
|
|
16364
|
+
} | undefined;
|
|
16365
|
+
idle_expires_at?: string | undefined;
|
|
16366
|
+
last_exchanged_at?: string | undefined;
|
|
16367
|
+
}[] | {
|
|
16368
|
+
start: number;
|
|
16369
|
+
limit: number;
|
|
16370
|
+
length: number;
|
|
16371
|
+
tokens: {
|
|
16372
|
+
created_at: string;
|
|
16373
|
+
id: string;
|
|
16374
|
+
client_id: string;
|
|
16375
|
+
user_id: string;
|
|
16376
|
+
rotating: boolean;
|
|
16377
|
+
device: {
|
|
16378
|
+
initial_user_agent: string;
|
|
16379
|
+
initial_ip: string;
|
|
16380
|
+
initial_asn: string;
|
|
16381
|
+
last_user_agent: string;
|
|
16382
|
+
last_ip: string;
|
|
16383
|
+
last_asn: string;
|
|
16384
|
+
};
|
|
16385
|
+
login_id: string;
|
|
16386
|
+
resource_servers: {
|
|
16387
|
+
audience: string;
|
|
16388
|
+
scopes: string;
|
|
16389
|
+
}[];
|
|
16390
|
+
revoked_at?: string | undefined;
|
|
16391
|
+
expires_at?: string | undefined;
|
|
16392
|
+
organization?: string | undefined;
|
|
16393
|
+
session_id?: string | undefined;
|
|
16394
|
+
auth_connection?: string | undefined;
|
|
16395
|
+
auth_strategy?: {
|
|
16396
|
+
strategy: string;
|
|
16397
|
+
strategy_type: string;
|
|
16398
|
+
} | undefined;
|
|
16399
|
+
idle_expires_at?: string | undefined;
|
|
16400
|
+
last_exchanged_at?: string | undefined;
|
|
16401
|
+
}[];
|
|
16402
|
+
total?: number | undefined;
|
|
16403
|
+
next?: string | undefined;
|
|
16404
|
+
} | {
|
|
16405
|
+
tokens: {
|
|
16406
|
+
created_at: string;
|
|
16407
|
+
id: string;
|
|
16408
|
+
client_id: string;
|
|
16409
|
+
user_id: string;
|
|
16410
|
+
rotating: boolean;
|
|
16411
|
+
device: {
|
|
16412
|
+
initial_user_agent: string;
|
|
16413
|
+
initial_ip: string;
|
|
16414
|
+
initial_asn: string;
|
|
16415
|
+
last_user_agent: string;
|
|
16416
|
+
last_ip: string;
|
|
16417
|
+
last_asn: string;
|
|
16418
|
+
};
|
|
16419
|
+
login_id: string;
|
|
16420
|
+
resource_servers: {
|
|
16421
|
+
audience: string;
|
|
16422
|
+
scopes: string;
|
|
16423
|
+
}[];
|
|
16424
|
+
revoked_at?: string | undefined;
|
|
16425
|
+
expires_at?: string | undefined;
|
|
16426
|
+
organization?: string | undefined;
|
|
16427
|
+
session_id?: string | undefined;
|
|
16428
|
+
auth_connection?: string | undefined;
|
|
16429
|
+
auth_strategy?: {
|
|
16430
|
+
strategy: string;
|
|
16431
|
+
strategy_type: string;
|
|
16432
|
+
} | undefined;
|
|
16433
|
+
idle_expires_at?: string | undefined;
|
|
16434
|
+
last_exchanged_at?: string | undefined;
|
|
16435
|
+
}[];
|
|
16436
|
+
next?: string | undefined;
|
|
16437
|
+
};
|
|
16438
|
+
outputFormat: "json";
|
|
16439
|
+
status: 200;
|
|
16440
|
+
};
|
|
16441
|
+
};
|
|
16442
|
+
} & {
|
|
16443
|
+
"/:user_id/refresh-tokens": {
|
|
16444
|
+
$delete: {
|
|
16445
|
+
input: {
|
|
16446
|
+
param: {
|
|
16447
|
+
user_id: string;
|
|
16448
|
+
};
|
|
16449
|
+
} & {
|
|
16450
|
+
header: {
|
|
16451
|
+
"tenant-id"?: string | undefined;
|
|
16452
|
+
};
|
|
16453
|
+
};
|
|
16454
|
+
output: {};
|
|
16455
|
+
outputFormat: string;
|
|
16456
|
+
status: 204;
|
|
16457
|
+
};
|
|
16458
|
+
};
|
|
16147
16459
|
} & {
|
|
16148
16460
|
"/:user_id/logs": {
|
|
16149
16461
|
$get: {
|
|
@@ -16169,7 +16481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16169
16481
|
};
|
|
16170
16482
|
};
|
|
16171
16483
|
output: {
|
|
16172
|
-
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" | "
|
|
16484
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16173
16485
|
date: string;
|
|
16174
16486
|
isMobile: boolean;
|
|
16175
16487
|
log_id: string;
|
|
@@ -16208,7 +16520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16208
16520
|
limit: number;
|
|
16209
16521
|
length: number;
|
|
16210
16522
|
logs: {
|
|
16211
|
-
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" | "
|
|
16523
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16212
16524
|
date: string;
|
|
16213
16525
|
isMobile: boolean;
|
|
16214
16526
|
log_id: string;
|
|
@@ -17052,7 +17364,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17052
17364
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17053
17365
|
custom_domain_id: string;
|
|
17054
17366
|
primary: boolean;
|
|
17055
|
-
status: "
|
|
17367
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17056
17368
|
verification_method?: "txt" | undefined;
|
|
17057
17369
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17058
17370
|
domain_metadata?: {
|
|
@@ -17093,7 +17405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17093
17405
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17094
17406
|
custom_domain_id: string;
|
|
17095
17407
|
primary: boolean;
|
|
17096
|
-
status: "
|
|
17408
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17097
17409
|
verification_method?: "txt" | undefined;
|
|
17098
17410
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17099
17411
|
domain_metadata?: {
|
|
@@ -17157,7 +17469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17157
17469
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17158
17470
|
custom_domain_id: string;
|
|
17159
17471
|
primary: boolean;
|
|
17160
|
-
status: "
|
|
17472
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17161
17473
|
verification_method?: "txt" | undefined;
|
|
17162
17474
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17163
17475
|
domain_metadata?: {
|
|
@@ -17204,7 +17516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17204
17516
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17205
17517
|
custom_domain_id: string;
|
|
17206
17518
|
primary: boolean;
|
|
17207
|
-
status: "
|
|
17519
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17208
17520
|
verification_method?: "txt" | undefined;
|
|
17209
17521
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17210
17522
|
domain_metadata?: {
|
|
@@ -17250,7 +17562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17250
17562
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17251
17563
|
custom_domain_id: string;
|
|
17252
17564
|
primary: boolean;
|
|
17253
|
-
status: "
|
|
17565
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17254
17566
|
verification_method?: "txt" | undefined;
|
|
17255
17567
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17256
17568
|
domain_metadata?: {
|
|
@@ -17291,7 +17603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17291
17603
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17292
17604
|
custom_domain_id: string;
|
|
17293
17605
|
primary: boolean;
|
|
17294
|
-
status: "
|
|
17606
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17295
17607
|
verification_method?: "txt" | undefined;
|
|
17296
17608
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17297
17609
|
domain_metadata?: {
|
|
@@ -19427,19 +19739,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19427
19739
|
email: string;
|
|
19428
19740
|
send: "code" | "link";
|
|
19429
19741
|
authParams: {
|
|
19430
|
-
username?: string | undefined;
|
|
19431
|
-
audience?: string | undefined;
|
|
19432
19742
|
scope?: string | undefined;
|
|
19743
|
+
username?: string | undefined;
|
|
19744
|
+
act_as?: string | undefined;
|
|
19433
19745
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19434
19746
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19435
|
-
state?: string | undefined;
|
|
19436
|
-
organization?: string | undefined;
|
|
19437
19747
|
redirect_uri?: string | undefined;
|
|
19438
|
-
|
|
19439
|
-
|
|
19748
|
+
audience?: string | undefined;
|
|
19749
|
+
organization?: string | undefined;
|
|
19750
|
+
state?: string | undefined;
|
|
19440
19751
|
nonce?: string | undefined;
|
|
19441
|
-
act_as?: string | undefined;
|
|
19442
19752
|
prompt?: string | undefined;
|
|
19753
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19754
|
+
code_challenge?: string | undefined;
|
|
19443
19755
|
ui_locales?: string | undefined;
|
|
19444
19756
|
max_age?: number | undefined;
|
|
19445
19757
|
acr_values?: string | undefined;
|
|
@@ -19463,19 +19775,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19463
19775
|
phone_number: string;
|
|
19464
19776
|
send: "code" | "link";
|
|
19465
19777
|
authParams: {
|
|
19466
|
-
username?: string | undefined;
|
|
19467
|
-
audience?: string | undefined;
|
|
19468
19778
|
scope?: string | undefined;
|
|
19779
|
+
username?: string | undefined;
|
|
19780
|
+
act_as?: string | undefined;
|
|
19469
19781
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19470
19782
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19471
|
-
state?: string | undefined;
|
|
19472
|
-
organization?: string | undefined;
|
|
19473
19783
|
redirect_uri?: string | undefined;
|
|
19474
|
-
|
|
19475
|
-
|
|
19784
|
+
audience?: string | undefined;
|
|
19785
|
+
organization?: string | undefined;
|
|
19786
|
+
state?: string | undefined;
|
|
19476
19787
|
nonce?: string | undefined;
|
|
19477
|
-
act_as?: string | undefined;
|
|
19478
19788
|
prompt?: string | undefined;
|
|
19789
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19790
|
+
code_challenge?: string | undefined;
|
|
19479
19791
|
ui_locales?: string | undefined;
|
|
19480
19792
|
max_age?: number | undefined;
|
|
19481
19793
|
acr_values?: string | undefined;
|
|
@@ -19607,14 +19919,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19607
19919
|
input: {
|
|
19608
19920
|
form: {
|
|
19609
19921
|
token: string;
|
|
19610
|
-
token_type_hint?: "
|
|
19922
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19611
19923
|
client_id?: string | undefined;
|
|
19612
19924
|
client_secret?: string | undefined;
|
|
19613
19925
|
};
|
|
19614
19926
|
} & {
|
|
19615
19927
|
json: {
|
|
19616
19928
|
token: string;
|
|
19617
|
-
token_type_hint?: "
|
|
19929
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19618
19930
|
client_id?: string | undefined;
|
|
19619
19931
|
client_secret?: string | undefined;
|
|
19620
19932
|
};
|
|
@@ -19626,14 +19938,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19626
19938
|
input: {
|
|
19627
19939
|
form: {
|
|
19628
19940
|
token: string;
|
|
19629
|
-
token_type_hint?: "
|
|
19941
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19630
19942
|
client_id?: string | undefined;
|
|
19631
19943
|
client_secret?: string | undefined;
|
|
19632
19944
|
};
|
|
19633
19945
|
} & {
|
|
19634
19946
|
json: {
|
|
19635
19947
|
token: string;
|
|
19636
|
-
token_type_hint?: "
|
|
19948
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19637
19949
|
client_id?: string | undefined;
|
|
19638
19950
|
client_secret?: string | undefined;
|
|
19639
19951
|
};
|
|
@@ -19648,14 +19960,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19648
19960
|
input: {
|
|
19649
19961
|
form: {
|
|
19650
19962
|
token: string;
|
|
19651
|
-
token_type_hint?: "
|
|
19963
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19652
19964
|
client_id?: string | undefined;
|
|
19653
19965
|
client_secret?: string | undefined;
|
|
19654
19966
|
};
|
|
19655
19967
|
} & {
|
|
19656
19968
|
json: {
|
|
19657
19969
|
token: string;
|
|
19658
|
-
token_type_hint?: "
|
|
19970
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19659
19971
|
client_id?: string | undefined;
|
|
19660
19972
|
client_secret?: string | undefined;
|
|
19661
19973
|
};
|
|
@@ -20191,7 +20503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20191
20503
|
output: {
|
|
20192
20504
|
keys: {
|
|
20193
20505
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
20194
|
-
kty: "
|
|
20506
|
+
kty: "RSA" | "EC" | "oct";
|
|
20195
20507
|
kid?: string | undefined;
|
|
20196
20508
|
use?: "sig" | "enc" | undefined;
|
|
20197
20509
|
n?: string | undefined;
|
|
@@ -21386,7 +21698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21386
21698
|
$get: {
|
|
21387
21699
|
input: {
|
|
21388
21700
|
param: {
|
|
21389
|
-
screen: "signup" | "impersonate" | "
|
|
21701
|
+
screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "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
21702
|
};
|
|
21391
21703
|
} & {
|
|
21392
21704
|
query: {
|
|
@@ -21402,7 +21714,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21402
21714
|
} | {
|
|
21403
21715
|
input: {
|
|
21404
21716
|
param: {
|
|
21405
|
-
screen: "signup" | "impersonate" | "
|
|
21717
|
+
screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "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
21718
|
};
|
|
21407
21719
|
} & {
|
|
21408
21720
|
query: {
|
|
@@ -21418,7 +21730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21418
21730
|
} | {
|
|
21419
21731
|
input: {
|
|
21420
21732
|
param: {
|
|
21421
|
-
screen: "signup" | "impersonate" | "
|
|
21733
|
+
screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "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
21734
|
};
|
|
21423
21735
|
} & {
|
|
21424
21736
|
query: {
|
|
@@ -21438,7 +21750,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21438
21750
|
$post: {
|
|
21439
21751
|
input: {
|
|
21440
21752
|
param: {
|
|
21441
|
-
screen: "signup" | "impersonate" | "
|
|
21753
|
+
screen: "signup" | "impersonate" | "login" | "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
21754
|
};
|
|
21443
21755
|
} & {
|
|
21444
21756
|
query: {
|
|
@@ -21456,7 +21768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21456
21768
|
} | {
|
|
21457
21769
|
input: {
|
|
21458
21770
|
param: {
|
|
21459
|
-
screen: "signup" | "impersonate" | "
|
|
21771
|
+
screen: "signup" | "impersonate" | "login" | "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
21772
|
};
|
|
21461
21773
|
} & {
|
|
21462
21774
|
query: {
|