authhero 5.14.1 → 5.15.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 +107 -107
- package/dist/authhero.d.ts +202 -197
- package/dist/authhero.mjs +9201 -9117
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/createEncryptedDataAdapter.d.ts +4 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/helpers/client.d.ts +1 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +197 -197
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +15 -15
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +13 -13
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/index.d.ts +176 -176
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +3 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -0
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
250
250
|
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
251
251
|
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
252
252
|
inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
|
|
253
|
+
restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
|
|
253
254
|
}, z.core.$strip>>;
|
|
254
255
|
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
255
256
|
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
@@ -1632,6 +1633,10 @@ declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter
|
|
|
1632
1633
|
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1633
1634
|
* migration_sources.credentials.client_secret.
|
|
1634
1635
|
*
|
|
1636
|
+
* clientConnections.listByClient is also wrapped so its returned Connection
|
|
1637
|
+
* objects are decrypted — getEnrichedClient uses this path to load connections
|
|
1638
|
+
* for the OAuth strategies.
|
|
1639
|
+
*
|
|
1635
1640
|
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1636
1641
|
*/
|
|
1637
1642
|
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
@@ -2460,7 +2465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2460
2465
|
};
|
|
2461
2466
|
} & {
|
|
2462
2467
|
json: {
|
|
2463
|
-
type: "email" | "
|
|
2468
|
+
type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2464
2469
|
phone_number?: string | undefined;
|
|
2465
2470
|
totp_secret?: string | undefined;
|
|
2466
2471
|
credential_id?: string | undefined;
|
|
@@ -3533,9 +3538,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3533
3538
|
invitee: {
|
|
3534
3539
|
email?: string | undefined;
|
|
3535
3540
|
};
|
|
3536
|
-
id?: string | undefined;
|
|
3537
3541
|
app_metadata?: Record<string, any> | undefined;
|
|
3538
3542
|
user_metadata?: Record<string, any> | undefined;
|
|
3543
|
+
id?: string | undefined;
|
|
3539
3544
|
connection_id?: string | undefined;
|
|
3540
3545
|
roles?: string[] | undefined;
|
|
3541
3546
|
ttl_sec?: number | undefined;
|
|
@@ -3721,8 +3726,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3721
3726
|
};
|
|
3722
3727
|
} & {
|
|
3723
3728
|
json: {
|
|
3724
|
-
show_as_button?: boolean | undefined;
|
|
3725
3729
|
assign_membership_on_login?: boolean | undefined;
|
|
3730
|
+
show_as_button?: boolean | undefined;
|
|
3726
3731
|
is_signup_enabled?: boolean | undefined;
|
|
3727
3732
|
};
|
|
3728
3733
|
};
|
|
@@ -4388,7 +4393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4388
4393
|
type: "REDIRECT";
|
|
4389
4394
|
action: "REDIRECT_USER";
|
|
4390
4395
|
params: {
|
|
4391
|
-
target: "custom" | "
|
|
4396
|
+
target: "custom" | "change-email" | "account";
|
|
4392
4397
|
custom_url?: string | undefined;
|
|
4393
4398
|
};
|
|
4394
4399
|
alias?: string | undefined;
|
|
@@ -4441,7 +4446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4441
4446
|
type: "REDIRECT";
|
|
4442
4447
|
action: "REDIRECT_USER";
|
|
4443
4448
|
params: {
|
|
4444
|
-
target: "custom" | "
|
|
4449
|
+
target: "custom" | "change-email" | "account";
|
|
4445
4450
|
custom_url?: string | undefined;
|
|
4446
4451
|
};
|
|
4447
4452
|
alias?: string | undefined;
|
|
@@ -4509,7 +4514,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4509
4514
|
type: "REDIRECT";
|
|
4510
4515
|
action: "REDIRECT_USER";
|
|
4511
4516
|
params: {
|
|
4512
|
-
target: "custom" | "
|
|
4517
|
+
target: "custom" | "change-email" | "account";
|
|
4513
4518
|
custom_url?: string | undefined;
|
|
4514
4519
|
};
|
|
4515
4520
|
alias?: string | undefined;
|
|
@@ -4590,7 +4595,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4590
4595
|
type: "REDIRECT";
|
|
4591
4596
|
action: "REDIRECT_USER";
|
|
4592
4597
|
params: {
|
|
4593
|
-
target: "custom" | "
|
|
4598
|
+
target: "custom" | "change-email" | "account";
|
|
4594
4599
|
custom_url?: string | undefined;
|
|
4595
4600
|
};
|
|
4596
4601
|
alias?: string | undefined;
|
|
@@ -4638,7 +4643,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4638
4643
|
type: "REDIRECT";
|
|
4639
4644
|
action: "REDIRECT_USER";
|
|
4640
4645
|
params: {
|
|
4641
|
-
target: "custom" | "
|
|
4646
|
+
target: "custom" | "change-email" | "account";
|
|
4642
4647
|
custom_url?: string | undefined;
|
|
4643
4648
|
};
|
|
4644
4649
|
alias?: string | undefined;
|
|
@@ -4698,7 +4703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4698
4703
|
type: "REDIRECT";
|
|
4699
4704
|
action: "REDIRECT_USER";
|
|
4700
4705
|
params: {
|
|
4701
|
-
target: "custom" | "
|
|
4706
|
+
target: "custom" | "change-email" | "account";
|
|
4702
4707
|
custom_url?: string | undefined;
|
|
4703
4708
|
};
|
|
4704
4709
|
alias?: string | undefined;
|
|
@@ -4746,7 +4751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4746
4751
|
type: "REDIRECT";
|
|
4747
4752
|
action: "REDIRECT_USER";
|
|
4748
4753
|
params: {
|
|
4749
|
-
target: "custom" | "
|
|
4754
|
+
target: "custom" | "change-email" | "account";
|
|
4750
4755
|
custom_url?: string | undefined;
|
|
4751
4756
|
};
|
|
4752
4757
|
alias?: string | undefined;
|
|
@@ -4964,7 +4969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4964
4969
|
hint?: string | undefined;
|
|
4965
4970
|
messages?: {
|
|
4966
4971
|
text: string;
|
|
4967
|
-
type: "
|
|
4972
|
+
type: "success" | "error" | "info" | "warning";
|
|
4968
4973
|
id?: number | undefined;
|
|
4969
4974
|
}[] | undefined;
|
|
4970
4975
|
required?: boolean | undefined;
|
|
@@ -4982,7 +4987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4982
4987
|
hint?: string | undefined;
|
|
4983
4988
|
messages?: {
|
|
4984
4989
|
text: string;
|
|
4985
|
-
type: "
|
|
4990
|
+
type: "success" | "error" | "info" | "warning";
|
|
4986
4991
|
id?: number | undefined;
|
|
4987
4992
|
}[] | undefined;
|
|
4988
4993
|
required?: boolean | undefined;
|
|
@@ -5006,7 +5011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5006
5011
|
hint?: string | undefined;
|
|
5007
5012
|
messages?: {
|
|
5008
5013
|
text: string;
|
|
5009
|
-
type: "
|
|
5014
|
+
type: "success" | "error" | "info" | "warning";
|
|
5010
5015
|
id?: number | undefined;
|
|
5011
5016
|
}[] | undefined;
|
|
5012
5017
|
required?: boolean | undefined;
|
|
@@ -5030,7 +5035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5030
5035
|
hint?: string | undefined;
|
|
5031
5036
|
messages?: {
|
|
5032
5037
|
text: string;
|
|
5033
|
-
type: "
|
|
5038
|
+
type: "success" | "error" | "info" | "warning";
|
|
5034
5039
|
id?: number | undefined;
|
|
5035
5040
|
}[] | undefined;
|
|
5036
5041
|
required?: boolean | undefined;
|
|
@@ -5059,7 +5064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5059
5064
|
hint?: string | undefined;
|
|
5060
5065
|
messages?: {
|
|
5061
5066
|
text: string;
|
|
5062
|
-
type: "
|
|
5067
|
+
type: "success" | "error" | "info" | "warning";
|
|
5063
5068
|
id?: number | undefined;
|
|
5064
5069
|
}[] | undefined;
|
|
5065
5070
|
required?: boolean | undefined;
|
|
@@ -5074,7 +5079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5074
5079
|
hint?: string | undefined;
|
|
5075
5080
|
messages?: {
|
|
5076
5081
|
text: string;
|
|
5077
|
-
type: "
|
|
5082
|
+
type: "success" | "error" | "info" | "warning";
|
|
5078
5083
|
id?: number | undefined;
|
|
5079
5084
|
}[] | undefined;
|
|
5080
5085
|
required?: boolean | undefined;
|
|
@@ -5095,7 +5100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5095
5100
|
hint?: string | undefined;
|
|
5096
5101
|
messages?: {
|
|
5097
5102
|
text: string;
|
|
5098
|
-
type: "
|
|
5103
|
+
type: "success" | "error" | "info" | "warning";
|
|
5099
5104
|
id?: number | undefined;
|
|
5100
5105
|
}[] | undefined;
|
|
5101
5106
|
required?: boolean | undefined;
|
|
@@ -5120,7 +5125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5120
5125
|
hint?: string | undefined;
|
|
5121
5126
|
messages?: {
|
|
5122
5127
|
text: string;
|
|
5123
|
-
type: "
|
|
5128
|
+
type: "success" | "error" | "info" | "warning";
|
|
5124
5129
|
id?: number | undefined;
|
|
5125
5130
|
}[] | undefined;
|
|
5126
5131
|
required?: boolean | undefined;
|
|
@@ -5139,7 +5144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5139
5144
|
hint?: string | undefined;
|
|
5140
5145
|
messages?: {
|
|
5141
5146
|
text: string;
|
|
5142
|
-
type: "
|
|
5147
|
+
type: "success" | "error" | "info" | "warning";
|
|
5143
5148
|
id?: number | undefined;
|
|
5144
5149
|
}[] | undefined;
|
|
5145
5150
|
required?: boolean | undefined;
|
|
@@ -5159,7 +5164,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5159
5164
|
hint?: string | undefined;
|
|
5160
5165
|
messages?: {
|
|
5161
5166
|
text: string;
|
|
5162
|
-
type: "
|
|
5167
|
+
type: "success" | "error" | "info" | "warning";
|
|
5163
5168
|
id?: number | undefined;
|
|
5164
5169
|
}[] | undefined;
|
|
5165
5170
|
required?: boolean | undefined;
|
|
@@ -5178,7 +5183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5178
5183
|
hint?: string | undefined;
|
|
5179
5184
|
messages?: {
|
|
5180
5185
|
text: string;
|
|
5181
|
-
type: "
|
|
5186
|
+
type: "success" | "error" | "info" | "warning";
|
|
5182
5187
|
id?: number | undefined;
|
|
5183
5188
|
}[] | undefined;
|
|
5184
5189
|
required?: boolean | undefined;
|
|
@@ -5200,7 +5205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5200
5205
|
hint?: string | undefined;
|
|
5201
5206
|
messages?: {
|
|
5202
5207
|
text: string;
|
|
5203
|
-
type: "
|
|
5208
|
+
type: "success" | "error" | "info" | "warning";
|
|
5204
5209
|
id?: number | undefined;
|
|
5205
5210
|
}[] | undefined;
|
|
5206
5211
|
required?: boolean | undefined;
|
|
@@ -5222,7 +5227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5222
5227
|
hint?: string | undefined;
|
|
5223
5228
|
messages?: {
|
|
5224
5229
|
text: string;
|
|
5225
|
-
type: "
|
|
5230
|
+
type: "success" | "error" | "info" | "warning";
|
|
5226
5231
|
id?: number | undefined;
|
|
5227
5232
|
}[] | undefined;
|
|
5228
5233
|
required?: boolean | undefined;
|
|
@@ -5241,7 +5246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5241
5246
|
hint?: string | undefined;
|
|
5242
5247
|
messages?: {
|
|
5243
5248
|
text: string;
|
|
5244
|
-
type: "
|
|
5249
|
+
type: "success" | "error" | "info" | "warning";
|
|
5245
5250
|
id?: number | undefined;
|
|
5246
5251
|
}[] | undefined;
|
|
5247
5252
|
required?: boolean | undefined;
|
|
@@ -5266,7 +5271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5266
5271
|
hint?: string | undefined;
|
|
5267
5272
|
messages?: {
|
|
5268
5273
|
text: string;
|
|
5269
|
-
type: "
|
|
5274
|
+
type: "success" | "error" | "info" | "warning";
|
|
5270
5275
|
id?: number | undefined;
|
|
5271
5276
|
}[] | undefined;
|
|
5272
5277
|
required?: boolean | undefined;
|
|
@@ -5287,7 +5292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5287
5292
|
hint?: string | undefined;
|
|
5288
5293
|
messages?: {
|
|
5289
5294
|
text: string;
|
|
5290
|
-
type: "
|
|
5295
|
+
type: "success" | "error" | "info" | "warning";
|
|
5291
5296
|
id?: number | undefined;
|
|
5292
5297
|
}[] | undefined;
|
|
5293
5298
|
required?: boolean | undefined;
|
|
@@ -5308,7 +5313,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5308
5313
|
hint?: string | undefined;
|
|
5309
5314
|
messages?: {
|
|
5310
5315
|
text: string;
|
|
5311
|
-
type: "
|
|
5316
|
+
type: "success" | "error" | "info" | "warning";
|
|
5312
5317
|
id?: number | undefined;
|
|
5313
5318
|
}[] | undefined;
|
|
5314
5319
|
required?: boolean | undefined;
|
|
@@ -5541,7 +5546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5541
5546
|
hint?: string | undefined;
|
|
5542
5547
|
messages?: {
|
|
5543
5548
|
text: string;
|
|
5544
|
-
type: "
|
|
5549
|
+
type: "success" | "error" | "info" | "warning";
|
|
5545
5550
|
id?: number | undefined;
|
|
5546
5551
|
}[] | undefined;
|
|
5547
5552
|
required?: boolean | undefined;
|
|
@@ -5559,7 +5564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5559
5564
|
hint?: string | undefined;
|
|
5560
5565
|
messages?: {
|
|
5561
5566
|
text: string;
|
|
5562
|
-
type: "
|
|
5567
|
+
type: "success" | "error" | "info" | "warning";
|
|
5563
5568
|
id?: number | undefined;
|
|
5564
5569
|
}[] | undefined;
|
|
5565
5570
|
required?: boolean | undefined;
|
|
@@ -5583,7 +5588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5583
5588
|
hint?: string | undefined;
|
|
5584
5589
|
messages?: {
|
|
5585
5590
|
text: string;
|
|
5586
|
-
type: "
|
|
5591
|
+
type: "success" | "error" | "info" | "warning";
|
|
5587
5592
|
id?: number | undefined;
|
|
5588
5593
|
}[] | undefined;
|
|
5589
5594
|
required?: boolean | undefined;
|
|
@@ -5607,7 +5612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5607
5612
|
hint?: string | undefined;
|
|
5608
5613
|
messages?: {
|
|
5609
5614
|
text: string;
|
|
5610
|
-
type: "
|
|
5615
|
+
type: "success" | "error" | "info" | "warning";
|
|
5611
5616
|
id?: number | undefined;
|
|
5612
5617
|
}[] | undefined;
|
|
5613
5618
|
required?: boolean | undefined;
|
|
@@ -5636,7 +5641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5636
5641
|
hint?: string | undefined;
|
|
5637
5642
|
messages?: {
|
|
5638
5643
|
text: string;
|
|
5639
|
-
type: "
|
|
5644
|
+
type: "success" | "error" | "info" | "warning";
|
|
5640
5645
|
id?: number | undefined;
|
|
5641
5646
|
}[] | undefined;
|
|
5642
5647
|
required?: boolean | undefined;
|
|
@@ -5651,7 +5656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5651
5656
|
hint?: string | undefined;
|
|
5652
5657
|
messages?: {
|
|
5653
5658
|
text: string;
|
|
5654
|
-
type: "
|
|
5659
|
+
type: "success" | "error" | "info" | "warning";
|
|
5655
5660
|
id?: number | undefined;
|
|
5656
5661
|
}[] | undefined;
|
|
5657
5662
|
required?: boolean | undefined;
|
|
@@ -5672,7 +5677,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5672
5677
|
hint?: string | undefined;
|
|
5673
5678
|
messages?: {
|
|
5674
5679
|
text: string;
|
|
5675
|
-
type: "
|
|
5680
|
+
type: "success" | "error" | "info" | "warning";
|
|
5676
5681
|
id?: number | undefined;
|
|
5677
5682
|
}[] | undefined;
|
|
5678
5683
|
required?: boolean | undefined;
|
|
@@ -5697,7 +5702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5697
5702
|
hint?: string | undefined;
|
|
5698
5703
|
messages?: {
|
|
5699
5704
|
text: string;
|
|
5700
|
-
type: "
|
|
5705
|
+
type: "success" | "error" | "info" | "warning";
|
|
5701
5706
|
id?: number | undefined;
|
|
5702
5707
|
}[] | undefined;
|
|
5703
5708
|
required?: boolean | undefined;
|
|
@@ -5716,7 +5721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5716
5721
|
hint?: string | undefined;
|
|
5717
5722
|
messages?: {
|
|
5718
5723
|
text: string;
|
|
5719
|
-
type: "
|
|
5724
|
+
type: "success" | "error" | "info" | "warning";
|
|
5720
5725
|
id?: number | undefined;
|
|
5721
5726
|
}[] | undefined;
|
|
5722
5727
|
required?: boolean | undefined;
|
|
@@ -5736,7 +5741,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5736
5741
|
hint?: string | undefined;
|
|
5737
5742
|
messages?: {
|
|
5738
5743
|
text: string;
|
|
5739
|
-
type: "
|
|
5744
|
+
type: "success" | "error" | "info" | "warning";
|
|
5740
5745
|
id?: number | undefined;
|
|
5741
5746
|
}[] | undefined;
|
|
5742
5747
|
required?: boolean | undefined;
|
|
@@ -5755,7 +5760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5755
5760
|
hint?: string | undefined;
|
|
5756
5761
|
messages?: {
|
|
5757
5762
|
text: string;
|
|
5758
|
-
type: "
|
|
5763
|
+
type: "success" | "error" | "info" | "warning";
|
|
5759
5764
|
id?: number | undefined;
|
|
5760
5765
|
}[] | undefined;
|
|
5761
5766
|
required?: boolean | undefined;
|
|
@@ -5777,7 +5782,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5777
5782
|
hint?: string | undefined;
|
|
5778
5783
|
messages?: {
|
|
5779
5784
|
text: string;
|
|
5780
|
-
type: "
|
|
5785
|
+
type: "success" | "error" | "info" | "warning";
|
|
5781
5786
|
id?: number | undefined;
|
|
5782
5787
|
}[] | undefined;
|
|
5783
5788
|
required?: boolean | undefined;
|
|
@@ -5799,7 +5804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5799
5804
|
hint?: string | undefined;
|
|
5800
5805
|
messages?: {
|
|
5801
5806
|
text: string;
|
|
5802
|
-
type: "
|
|
5807
|
+
type: "success" | "error" | "info" | "warning";
|
|
5803
5808
|
id?: number | undefined;
|
|
5804
5809
|
}[] | undefined;
|
|
5805
5810
|
required?: boolean | undefined;
|
|
@@ -5818,7 +5823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5818
5823
|
hint?: string | undefined;
|
|
5819
5824
|
messages?: {
|
|
5820
5825
|
text: string;
|
|
5821
|
-
type: "
|
|
5826
|
+
type: "success" | "error" | "info" | "warning";
|
|
5822
5827
|
id?: number | undefined;
|
|
5823
5828
|
}[] | undefined;
|
|
5824
5829
|
required?: boolean | undefined;
|
|
@@ -5843,7 +5848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5843
5848
|
hint?: string | undefined;
|
|
5844
5849
|
messages?: {
|
|
5845
5850
|
text: string;
|
|
5846
|
-
type: "
|
|
5851
|
+
type: "success" | "error" | "info" | "warning";
|
|
5847
5852
|
id?: number | undefined;
|
|
5848
5853
|
}[] | undefined;
|
|
5849
5854
|
required?: boolean | undefined;
|
|
@@ -5864,7 +5869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5864
5869
|
hint?: string | undefined;
|
|
5865
5870
|
messages?: {
|
|
5866
5871
|
text: string;
|
|
5867
|
-
type: "
|
|
5872
|
+
type: "success" | "error" | "info" | "warning";
|
|
5868
5873
|
id?: number | undefined;
|
|
5869
5874
|
}[] | undefined;
|
|
5870
5875
|
required?: boolean | undefined;
|
|
@@ -5885,7 +5890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5885
5890
|
hint?: string | undefined;
|
|
5886
5891
|
messages?: {
|
|
5887
5892
|
text: string;
|
|
5888
|
-
type: "
|
|
5893
|
+
type: "success" | "error" | "info" | "warning";
|
|
5889
5894
|
id?: number | undefined;
|
|
5890
5895
|
}[] | undefined;
|
|
5891
5896
|
required?: boolean | undefined;
|
|
@@ -6133,7 +6138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6133
6138
|
hint?: string | undefined;
|
|
6134
6139
|
messages?: {
|
|
6135
6140
|
text: string;
|
|
6136
|
-
type: "
|
|
6141
|
+
type: "success" | "error" | "info" | "warning";
|
|
6137
6142
|
id?: number | undefined;
|
|
6138
6143
|
}[] | undefined;
|
|
6139
6144
|
required?: boolean | undefined;
|
|
@@ -6151,7 +6156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6151
6156
|
hint?: string | undefined;
|
|
6152
6157
|
messages?: {
|
|
6153
6158
|
text: string;
|
|
6154
|
-
type: "
|
|
6159
|
+
type: "success" | "error" | "info" | "warning";
|
|
6155
6160
|
id?: number | undefined;
|
|
6156
6161
|
}[] | undefined;
|
|
6157
6162
|
required?: boolean | undefined;
|
|
@@ -6175,7 +6180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6175
6180
|
hint?: string | undefined;
|
|
6176
6181
|
messages?: {
|
|
6177
6182
|
text: string;
|
|
6178
|
-
type: "
|
|
6183
|
+
type: "success" | "error" | "info" | "warning";
|
|
6179
6184
|
id?: number | undefined;
|
|
6180
6185
|
}[] | undefined;
|
|
6181
6186
|
required?: boolean | undefined;
|
|
@@ -6199,7 +6204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6199
6204
|
hint?: string | undefined;
|
|
6200
6205
|
messages?: {
|
|
6201
6206
|
text: string;
|
|
6202
|
-
type: "
|
|
6207
|
+
type: "success" | "error" | "info" | "warning";
|
|
6203
6208
|
id?: number | undefined;
|
|
6204
6209
|
}[] | undefined;
|
|
6205
6210
|
required?: boolean | undefined;
|
|
@@ -6228,7 +6233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6228
6233
|
hint?: string | undefined;
|
|
6229
6234
|
messages?: {
|
|
6230
6235
|
text: string;
|
|
6231
|
-
type: "
|
|
6236
|
+
type: "success" | "error" | "info" | "warning";
|
|
6232
6237
|
id?: number | undefined;
|
|
6233
6238
|
}[] | undefined;
|
|
6234
6239
|
required?: boolean | undefined;
|
|
@@ -6243,7 +6248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6243
6248
|
hint?: string | undefined;
|
|
6244
6249
|
messages?: {
|
|
6245
6250
|
text: string;
|
|
6246
|
-
type: "
|
|
6251
|
+
type: "success" | "error" | "info" | "warning";
|
|
6247
6252
|
id?: number | undefined;
|
|
6248
6253
|
}[] | undefined;
|
|
6249
6254
|
required?: boolean | undefined;
|
|
@@ -6264,7 +6269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6264
6269
|
hint?: string | undefined;
|
|
6265
6270
|
messages?: {
|
|
6266
6271
|
text: string;
|
|
6267
|
-
type: "
|
|
6272
|
+
type: "success" | "error" | "info" | "warning";
|
|
6268
6273
|
id?: number | undefined;
|
|
6269
6274
|
}[] | undefined;
|
|
6270
6275
|
required?: boolean | undefined;
|
|
@@ -6289,7 +6294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6289
6294
|
hint?: string | undefined;
|
|
6290
6295
|
messages?: {
|
|
6291
6296
|
text: string;
|
|
6292
|
-
type: "
|
|
6297
|
+
type: "success" | "error" | "info" | "warning";
|
|
6293
6298
|
id?: number | undefined;
|
|
6294
6299
|
}[] | undefined;
|
|
6295
6300
|
required?: boolean | undefined;
|
|
@@ -6308,7 +6313,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6308
6313
|
hint?: string | undefined;
|
|
6309
6314
|
messages?: {
|
|
6310
6315
|
text: string;
|
|
6311
|
-
type: "
|
|
6316
|
+
type: "success" | "error" | "info" | "warning";
|
|
6312
6317
|
id?: number | undefined;
|
|
6313
6318
|
}[] | undefined;
|
|
6314
6319
|
required?: boolean | undefined;
|
|
@@ -6328,7 +6333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6328
6333
|
hint?: string | undefined;
|
|
6329
6334
|
messages?: {
|
|
6330
6335
|
text: string;
|
|
6331
|
-
type: "
|
|
6336
|
+
type: "success" | "error" | "info" | "warning";
|
|
6332
6337
|
id?: number | undefined;
|
|
6333
6338
|
}[] | undefined;
|
|
6334
6339
|
required?: boolean | undefined;
|
|
@@ -6347,7 +6352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6347
6352
|
hint?: string | undefined;
|
|
6348
6353
|
messages?: {
|
|
6349
6354
|
text: string;
|
|
6350
|
-
type: "
|
|
6355
|
+
type: "success" | "error" | "info" | "warning";
|
|
6351
6356
|
id?: number | undefined;
|
|
6352
6357
|
}[] | undefined;
|
|
6353
6358
|
required?: boolean | undefined;
|
|
@@ -6369,7 +6374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6369
6374
|
hint?: string | undefined;
|
|
6370
6375
|
messages?: {
|
|
6371
6376
|
text: string;
|
|
6372
|
-
type: "
|
|
6377
|
+
type: "success" | "error" | "info" | "warning";
|
|
6373
6378
|
id?: number | undefined;
|
|
6374
6379
|
}[] | undefined;
|
|
6375
6380
|
required?: boolean | undefined;
|
|
@@ -6391,7 +6396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6391
6396
|
hint?: string | undefined;
|
|
6392
6397
|
messages?: {
|
|
6393
6398
|
text: string;
|
|
6394
|
-
type: "
|
|
6399
|
+
type: "success" | "error" | "info" | "warning";
|
|
6395
6400
|
id?: number | undefined;
|
|
6396
6401
|
}[] | undefined;
|
|
6397
6402
|
required?: boolean | undefined;
|
|
@@ -6410,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6410
6415
|
hint?: string | undefined;
|
|
6411
6416
|
messages?: {
|
|
6412
6417
|
text: string;
|
|
6413
|
-
type: "
|
|
6418
|
+
type: "success" | "error" | "info" | "warning";
|
|
6414
6419
|
id?: number | undefined;
|
|
6415
6420
|
}[] | undefined;
|
|
6416
6421
|
required?: boolean | undefined;
|
|
@@ -6435,7 +6440,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6435
6440
|
hint?: string | undefined;
|
|
6436
6441
|
messages?: {
|
|
6437
6442
|
text: string;
|
|
6438
|
-
type: "
|
|
6443
|
+
type: "success" | "error" | "info" | "warning";
|
|
6439
6444
|
id?: number | undefined;
|
|
6440
6445
|
}[] | undefined;
|
|
6441
6446
|
required?: boolean | undefined;
|
|
@@ -6456,7 +6461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6456
6461
|
hint?: string | undefined;
|
|
6457
6462
|
messages?: {
|
|
6458
6463
|
text: string;
|
|
6459
|
-
type: "
|
|
6464
|
+
type: "success" | "error" | "info" | "warning";
|
|
6460
6465
|
id?: number | undefined;
|
|
6461
6466
|
}[] | undefined;
|
|
6462
6467
|
required?: boolean | undefined;
|
|
@@ -6477,7 +6482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6477
6482
|
hint?: string | undefined;
|
|
6478
6483
|
messages?: {
|
|
6479
6484
|
text: string;
|
|
6480
|
-
type: "
|
|
6485
|
+
type: "success" | "error" | "info" | "warning";
|
|
6481
6486
|
id?: number | undefined;
|
|
6482
6487
|
}[] | undefined;
|
|
6483
6488
|
required?: boolean | undefined;
|
|
@@ -6731,7 +6736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6731
6736
|
hint?: string | undefined;
|
|
6732
6737
|
messages?: {
|
|
6733
6738
|
text: string;
|
|
6734
|
-
type: "
|
|
6739
|
+
type: "success" | "error" | "info" | "warning";
|
|
6735
6740
|
id?: number | undefined;
|
|
6736
6741
|
}[] | undefined;
|
|
6737
6742
|
required?: boolean | undefined;
|
|
@@ -6749,7 +6754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6749
6754
|
hint?: string | undefined;
|
|
6750
6755
|
messages?: {
|
|
6751
6756
|
text: string;
|
|
6752
|
-
type: "
|
|
6757
|
+
type: "success" | "error" | "info" | "warning";
|
|
6753
6758
|
id?: number | undefined;
|
|
6754
6759
|
}[] | undefined;
|
|
6755
6760
|
required?: boolean | undefined;
|
|
@@ -6773,7 +6778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6773
6778
|
hint?: string | undefined;
|
|
6774
6779
|
messages?: {
|
|
6775
6780
|
text: string;
|
|
6776
|
-
type: "
|
|
6781
|
+
type: "success" | "error" | "info" | "warning";
|
|
6777
6782
|
id?: number | undefined;
|
|
6778
6783
|
}[] | undefined;
|
|
6779
6784
|
required?: boolean | undefined;
|
|
@@ -6797,7 +6802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6797
6802
|
hint?: string | undefined;
|
|
6798
6803
|
messages?: {
|
|
6799
6804
|
text: string;
|
|
6800
|
-
type: "
|
|
6805
|
+
type: "success" | "error" | "info" | "warning";
|
|
6801
6806
|
id?: number | undefined;
|
|
6802
6807
|
}[] | undefined;
|
|
6803
6808
|
required?: boolean | undefined;
|
|
@@ -6822,7 +6827,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6822
6827
|
hint?: string | undefined;
|
|
6823
6828
|
messages?: {
|
|
6824
6829
|
text: string;
|
|
6825
|
-
type: "
|
|
6830
|
+
type: "success" | "error" | "info" | "warning";
|
|
6826
6831
|
id?: number | undefined;
|
|
6827
6832
|
}[] | undefined;
|
|
6828
6833
|
required?: boolean | undefined;
|
|
@@ -6837,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6837
6842
|
hint?: string | undefined;
|
|
6838
6843
|
messages?: {
|
|
6839
6844
|
text: string;
|
|
6840
|
-
type: "
|
|
6845
|
+
type: "success" | "error" | "info" | "warning";
|
|
6841
6846
|
id?: number | undefined;
|
|
6842
6847
|
}[] | undefined;
|
|
6843
6848
|
required?: boolean | undefined;
|
|
@@ -6858,7 +6863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6858
6863
|
hint?: string | undefined;
|
|
6859
6864
|
messages?: {
|
|
6860
6865
|
text: string;
|
|
6861
|
-
type: "
|
|
6866
|
+
type: "success" | "error" | "info" | "warning";
|
|
6862
6867
|
id?: number | undefined;
|
|
6863
6868
|
}[] | undefined;
|
|
6864
6869
|
required?: boolean | undefined;
|
|
@@ -6883,7 +6888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6883
6888
|
hint?: string | undefined;
|
|
6884
6889
|
messages?: {
|
|
6885
6890
|
text: string;
|
|
6886
|
-
type: "
|
|
6891
|
+
type: "success" | "error" | "info" | "warning";
|
|
6887
6892
|
id?: number | undefined;
|
|
6888
6893
|
}[] | undefined;
|
|
6889
6894
|
required?: boolean | undefined;
|
|
@@ -6902,7 +6907,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6902
6907
|
hint?: string | undefined;
|
|
6903
6908
|
messages?: {
|
|
6904
6909
|
text: string;
|
|
6905
|
-
type: "
|
|
6910
|
+
type: "success" | "error" | "info" | "warning";
|
|
6906
6911
|
id?: number | undefined;
|
|
6907
6912
|
}[] | undefined;
|
|
6908
6913
|
required?: boolean | undefined;
|
|
@@ -6922,7 +6927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6922
6927
|
hint?: string | undefined;
|
|
6923
6928
|
messages?: {
|
|
6924
6929
|
text: string;
|
|
6925
|
-
type: "
|
|
6930
|
+
type: "success" | "error" | "info" | "warning";
|
|
6926
6931
|
id?: number | undefined;
|
|
6927
6932
|
}[] | undefined;
|
|
6928
6933
|
required?: boolean | undefined;
|
|
@@ -6941,7 +6946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6941
6946
|
hint?: string | undefined;
|
|
6942
6947
|
messages?: {
|
|
6943
6948
|
text: string;
|
|
6944
|
-
type: "
|
|
6949
|
+
type: "success" | "error" | "info" | "warning";
|
|
6945
6950
|
id?: number | undefined;
|
|
6946
6951
|
}[] | undefined;
|
|
6947
6952
|
required?: boolean | undefined;
|
|
@@ -6963,7 +6968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6963
6968
|
hint?: string | undefined;
|
|
6964
6969
|
messages?: {
|
|
6965
6970
|
text: string;
|
|
6966
|
-
type: "
|
|
6971
|
+
type: "success" | "error" | "info" | "warning";
|
|
6967
6972
|
id?: number | undefined;
|
|
6968
6973
|
}[] | undefined;
|
|
6969
6974
|
required?: boolean | undefined;
|
|
@@ -6985,7 +6990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6985
6990
|
hint?: string | undefined;
|
|
6986
6991
|
messages?: {
|
|
6987
6992
|
text: string;
|
|
6988
|
-
type: "
|
|
6993
|
+
type: "success" | "error" | "info" | "warning";
|
|
6989
6994
|
id?: number | undefined;
|
|
6990
6995
|
}[] | undefined;
|
|
6991
6996
|
required?: boolean | undefined;
|
|
@@ -7004,7 +7009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7004
7009
|
hint?: string | undefined;
|
|
7005
7010
|
messages?: {
|
|
7006
7011
|
text: string;
|
|
7007
|
-
type: "
|
|
7012
|
+
type: "success" | "error" | "info" | "warning";
|
|
7008
7013
|
id?: number | undefined;
|
|
7009
7014
|
}[] | undefined;
|
|
7010
7015
|
required?: boolean | undefined;
|
|
@@ -7029,7 +7034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7029
7034
|
hint?: string | undefined;
|
|
7030
7035
|
messages?: {
|
|
7031
7036
|
text: string;
|
|
7032
|
-
type: "
|
|
7037
|
+
type: "success" | "error" | "info" | "warning";
|
|
7033
7038
|
id?: number | undefined;
|
|
7034
7039
|
}[] | undefined;
|
|
7035
7040
|
required?: boolean | undefined;
|
|
@@ -7050,7 +7055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7050
7055
|
hint?: string | undefined;
|
|
7051
7056
|
messages?: {
|
|
7052
7057
|
text: string;
|
|
7053
|
-
type: "
|
|
7058
|
+
type: "success" | "error" | "info" | "warning";
|
|
7054
7059
|
id?: number | undefined;
|
|
7055
7060
|
}[] | undefined;
|
|
7056
7061
|
required?: boolean | undefined;
|
|
@@ -7071,7 +7076,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7071
7076
|
hint?: string | undefined;
|
|
7072
7077
|
messages?: {
|
|
7073
7078
|
text: string;
|
|
7074
|
-
type: "
|
|
7079
|
+
type: "success" | "error" | "info" | "warning";
|
|
7075
7080
|
id?: number | undefined;
|
|
7076
7081
|
}[] | undefined;
|
|
7077
7082
|
required?: boolean | undefined;
|
|
@@ -7302,7 +7307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7302
7307
|
hint?: string | undefined;
|
|
7303
7308
|
messages?: {
|
|
7304
7309
|
text: string;
|
|
7305
|
-
type: "
|
|
7310
|
+
type: "success" | "error" | "info" | "warning";
|
|
7306
7311
|
id?: number | undefined;
|
|
7307
7312
|
}[] | undefined;
|
|
7308
7313
|
required?: boolean | undefined;
|
|
@@ -7320,7 +7325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7320
7325
|
hint?: string | undefined;
|
|
7321
7326
|
messages?: {
|
|
7322
7327
|
text: string;
|
|
7323
|
-
type: "
|
|
7328
|
+
type: "success" | "error" | "info" | "warning";
|
|
7324
7329
|
id?: number | undefined;
|
|
7325
7330
|
}[] | undefined;
|
|
7326
7331
|
required?: boolean | undefined;
|
|
@@ -7344,7 +7349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7344
7349
|
hint?: string | undefined;
|
|
7345
7350
|
messages?: {
|
|
7346
7351
|
text: string;
|
|
7347
|
-
type: "
|
|
7352
|
+
type: "success" | "error" | "info" | "warning";
|
|
7348
7353
|
id?: number | undefined;
|
|
7349
7354
|
}[] | undefined;
|
|
7350
7355
|
required?: boolean | undefined;
|
|
@@ -7368,7 +7373,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7368
7373
|
hint?: string | undefined;
|
|
7369
7374
|
messages?: {
|
|
7370
7375
|
text: string;
|
|
7371
|
-
type: "
|
|
7376
|
+
type: "success" | "error" | "info" | "warning";
|
|
7372
7377
|
id?: number | undefined;
|
|
7373
7378
|
}[] | undefined;
|
|
7374
7379
|
required?: boolean | undefined;
|
|
@@ -7397,7 +7402,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7397
7402
|
hint?: string | undefined;
|
|
7398
7403
|
messages?: {
|
|
7399
7404
|
text: string;
|
|
7400
|
-
type: "
|
|
7405
|
+
type: "success" | "error" | "info" | "warning";
|
|
7401
7406
|
id?: number | undefined;
|
|
7402
7407
|
}[] | undefined;
|
|
7403
7408
|
required?: boolean | undefined;
|
|
@@ -7412,7 +7417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7412
7417
|
hint?: string | undefined;
|
|
7413
7418
|
messages?: {
|
|
7414
7419
|
text: string;
|
|
7415
|
-
type: "
|
|
7420
|
+
type: "success" | "error" | "info" | "warning";
|
|
7416
7421
|
id?: number | undefined;
|
|
7417
7422
|
}[] | undefined;
|
|
7418
7423
|
required?: boolean | undefined;
|
|
@@ -7433,7 +7438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7433
7438
|
hint?: string | undefined;
|
|
7434
7439
|
messages?: {
|
|
7435
7440
|
text: string;
|
|
7436
|
-
type: "
|
|
7441
|
+
type: "success" | "error" | "info" | "warning";
|
|
7437
7442
|
id?: number | undefined;
|
|
7438
7443
|
}[] | undefined;
|
|
7439
7444
|
required?: boolean | undefined;
|
|
@@ -7458,7 +7463,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7458
7463
|
hint?: string | undefined;
|
|
7459
7464
|
messages?: {
|
|
7460
7465
|
text: string;
|
|
7461
|
-
type: "
|
|
7466
|
+
type: "success" | "error" | "info" | "warning";
|
|
7462
7467
|
id?: number | undefined;
|
|
7463
7468
|
}[] | undefined;
|
|
7464
7469
|
required?: boolean | undefined;
|
|
@@ -7477,7 +7482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7477
7482
|
hint?: string | undefined;
|
|
7478
7483
|
messages?: {
|
|
7479
7484
|
text: string;
|
|
7480
|
-
type: "
|
|
7485
|
+
type: "success" | "error" | "info" | "warning";
|
|
7481
7486
|
id?: number | undefined;
|
|
7482
7487
|
}[] | undefined;
|
|
7483
7488
|
required?: boolean | undefined;
|
|
@@ -7497,7 +7502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7497
7502
|
hint?: string | undefined;
|
|
7498
7503
|
messages?: {
|
|
7499
7504
|
text: string;
|
|
7500
|
-
type: "
|
|
7505
|
+
type: "success" | "error" | "info" | "warning";
|
|
7501
7506
|
id?: number | undefined;
|
|
7502
7507
|
}[] | undefined;
|
|
7503
7508
|
required?: boolean | undefined;
|
|
@@ -7516,7 +7521,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7516
7521
|
hint?: string | undefined;
|
|
7517
7522
|
messages?: {
|
|
7518
7523
|
text: string;
|
|
7519
|
-
type: "
|
|
7524
|
+
type: "success" | "error" | "info" | "warning";
|
|
7520
7525
|
id?: number | undefined;
|
|
7521
7526
|
}[] | undefined;
|
|
7522
7527
|
required?: boolean | undefined;
|
|
@@ -7538,7 +7543,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7538
7543
|
hint?: string | undefined;
|
|
7539
7544
|
messages?: {
|
|
7540
7545
|
text: string;
|
|
7541
|
-
type: "
|
|
7546
|
+
type: "success" | "error" | "info" | "warning";
|
|
7542
7547
|
id?: number | undefined;
|
|
7543
7548
|
}[] | undefined;
|
|
7544
7549
|
required?: boolean | undefined;
|
|
@@ -7560,7 +7565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7560
7565
|
hint?: string | undefined;
|
|
7561
7566
|
messages?: {
|
|
7562
7567
|
text: string;
|
|
7563
|
-
type: "
|
|
7568
|
+
type: "success" | "error" | "info" | "warning";
|
|
7564
7569
|
id?: number | undefined;
|
|
7565
7570
|
}[] | undefined;
|
|
7566
7571
|
required?: boolean | undefined;
|
|
@@ -7579,7 +7584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7579
7584
|
hint?: string | undefined;
|
|
7580
7585
|
messages?: {
|
|
7581
7586
|
text: string;
|
|
7582
|
-
type: "
|
|
7587
|
+
type: "success" | "error" | "info" | "warning";
|
|
7583
7588
|
id?: number | undefined;
|
|
7584
7589
|
}[] | undefined;
|
|
7585
7590
|
required?: boolean | undefined;
|
|
@@ -7604,7 +7609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7604
7609
|
hint?: string | undefined;
|
|
7605
7610
|
messages?: {
|
|
7606
7611
|
text: string;
|
|
7607
|
-
type: "
|
|
7612
|
+
type: "success" | "error" | "info" | "warning";
|
|
7608
7613
|
id?: number | undefined;
|
|
7609
7614
|
}[] | undefined;
|
|
7610
7615
|
required?: boolean | undefined;
|
|
@@ -7625,7 +7630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7625
7630
|
hint?: string | undefined;
|
|
7626
7631
|
messages?: {
|
|
7627
7632
|
text: string;
|
|
7628
|
-
type: "
|
|
7633
|
+
type: "success" | "error" | "info" | "warning";
|
|
7629
7634
|
id?: number | undefined;
|
|
7630
7635
|
}[] | undefined;
|
|
7631
7636
|
required?: boolean | undefined;
|
|
@@ -7646,7 +7651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7646
7651
|
hint?: string | undefined;
|
|
7647
7652
|
messages?: {
|
|
7648
7653
|
text: string;
|
|
7649
|
-
type: "
|
|
7654
|
+
type: "success" | "error" | "info" | "warning";
|
|
7650
7655
|
id?: number | undefined;
|
|
7651
7656
|
}[] | undefined;
|
|
7652
7657
|
required?: boolean | undefined;
|
|
@@ -7879,7 +7884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7879
7884
|
hint?: string | undefined;
|
|
7880
7885
|
messages?: {
|
|
7881
7886
|
text: string;
|
|
7882
|
-
type: "
|
|
7887
|
+
type: "success" | "error" | "info" | "warning";
|
|
7883
7888
|
id?: number | undefined;
|
|
7884
7889
|
}[] | undefined;
|
|
7885
7890
|
required?: boolean | undefined;
|
|
@@ -7897,7 +7902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7897
7902
|
hint?: string | undefined;
|
|
7898
7903
|
messages?: {
|
|
7899
7904
|
text: string;
|
|
7900
|
-
type: "
|
|
7905
|
+
type: "success" | "error" | "info" | "warning";
|
|
7901
7906
|
id?: number | undefined;
|
|
7902
7907
|
}[] | undefined;
|
|
7903
7908
|
required?: boolean | undefined;
|
|
@@ -7921,7 +7926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7921
7926
|
hint?: string | undefined;
|
|
7922
7927
|
messages?: {
|
|
7923
7928
|
text: string;
|
|
7924
|
-
type: "
|
|
7929
|
+
type: "success" | "error" | "info" | "warning";
|
|
7925
7930
|
id?: number | undefined;
|
|
7926
7931
|
}[] | undefined;
|
|
7927
7932
|
required?: boolean | undefined;
|
|
@@ -7945,7 +7950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7945
7950
|
hint?: string | undefined;
|
|
7946
7951
|
messages?: {
|
|
7947
7952
|
text: string;
|
|
7948
|
-
type: "
|
|
7953
|
+
type: "success" | "error" | "info" | "warning";
|
|
7949
7954
|
id?: number | undefined;
|
|
7950
7955
|
}[] | undefined;
|
|
7951
7956
|
required?: boolean | undefined;
|
|
@@ -7970,7 +7975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7970
7975
|
hint?: string | undefined;
|
|
7971
7976
|
messages?: {
|
|
7972
7977
|
text: string;
|
|
7973
|
-
type: "
|
|
7978
|
+
type: "success" | "error" | "info" | "warning";
|
|
7974
7979
|
id?: number | undefined;
|
|
7975
7980
|
}[] | undefined;
|
|
7976
7981
|
required?: boolean | undefined;
|
|
@@ -7985,7 +7990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7985
7990
|
hint?: string | undefined;
|
|
7986
7991
|
messages?: {
|
|
7987
7992
|
text: string;
|
|
7988
|
-
type: "
|
|
7993
|
+
type: "success" | "error" | "info" | "warning";
|
|
7989
7994
|
id?: number | undefined;
|
|
7990
7995
|
}[] | undefined;
|
|
7991
7996
|
required?: boolean | undefined;
|
|
@@ -8006,7 +8011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8006
8011
|
hint?: string | undefined;
|
|
8007
8012
|
messages?: {
|
|
8008
8013
|
text: string;
|
|
8009
|
-
type: "
|
|
8014
|
+
type: "success" | "error" | "info" | "warning";
|
|
8010
8015
|
id?: number | undefined;
|
|
8011
8016
|
}[] | undefined;
|
|
8012
8017
|
required?: boolean | undefined;
|
|
@@ -8031,7 +8036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8031
8036
|
hint?: string | undefined;
|
|
8032
8037
|
messages?: {
|
|
8033
8038
|
text: string;
|
|
8034
|
-
type: "
|
|
8039
|
+
type: "success" | "error" | "info" | "warning";
|
|
8035
8040
|
id?: number | undefined;
|
|
8036
8041
|
}[] | undefined;
|
|
8037
8042
|
required?: boolean | undefined;
|
|
@@ -8050,7 +8055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8050
8055
|
hint?: string | undefined;
|
|
8051
8056
|
messages?: {
|
|
8052
8057
|
text: string;
|
|
8053
|
-
type: "
|
|
8058
|
+
type: "success" | "error" | "info" | "warning";
|
|
8054
8059
|
id?: number | undefined;
|
|
8055
8060
|
}[] | undefined;
|
|
8056
8061
|
required?: boolean | undefined;
|
|
@@ -8070,7 +8075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8070
8075
|
hint?: string | undefined;
|
|
8071
8076
|
messages?: {
|
|
8072
8077
|
text: string;
|
|
8073
|
-
type: "
|
|
8078
|
+
type: "success" | "error" | "info" | "warning";
|
|
8074
8079
|
id?: number | undefined;
|
|
8075
8080
|
}[] | undefined;
|
|
8076
8081
|
required?: boolean | undefined;
|
|
@@ -8089,7 +8094,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8089
8094
|
hint?: string | undefined;
|
|
8090
8095
|
messages?: {
|
|
8091
8096
|
text: string;
|
|
8092
|
-
type: "
|
|
8097
|
+
type: "success" | "error" | "info" | "warning";
|
|
8093
8098
|
id?: number | undefined;
|
|
8094
8099
|
}[] | undefined;
|
|
8095
8100
|
required?: boolean | undefined;
|
|
@@ -8111,7 +8116,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8111
8116
|
hint?: string | undefined;
|
|
8112
8117
|
messages?: {
|
|
8113
8118
|
text: string;
|
|
8114
|
-
type: "
|
|
8119
|
+
type: "success" | "error" | "info" | "warning";
|
|
8115
8120
|
id?: number | undefined;
|
|
8116
8121
|
}[] | undefined;
|
|
8117
8122
|
required?: boolean | undefined;
|
|
@@ -8133,7 +8138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8133
8138
|
hint?: string | undefined;
|
|
8134
8139
|
messages?: {
|
|
8135
8140
|
text: string;
|
|
8136
|
-
type: "
|
|
8141
|
+
type: "success" | "error" | "info" | "warning";
|
|
8137
8142
|
id?: number | undefined;
|
|
8138
8143
|
}[] | undefined;
|
|
8139
8144
|
required?: boolean | undefined;
|
|
@@ -8152,7 +8157,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8152
8157
|
hint?: string | undefined;
|
|
8153
8158
|
messages?: {
|
|
8154
8159
|
text: string;
|
|
8155
|
-
type: "
|
|
8160
|
+
type: "success" | "error" | "info" | "warning";
|
|
8156
8161
|
id?: number | undefined;
|
|
8157
8162
|
}[] | undefined;
|
|
8158
8163
|
required?: boolean | undefined;
|
|
@@ -8177,7 +8182,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8177
8182
|
hint?: string | undefined;
|
|
8178
8183
|
messages?: {
|
|
8179
8184
|
text: string;
|
|
8180
|
-
type: "
|
|
8185
|
+
type: "success" | "error" | "info" | "warning";
|
|
8181
8186
|
id?: number | undefined;
|
|
8182
8187
|
}[] | undefined;
|
|
8183
8188
|
required?: boolean | undefined;
|
|
@@ -8198,7 +8203,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8198
8203
|
hint?: string | undefined;
|
|
8199
8204
|
messages?: {
|
|
8200
8205
|
text: string;
|
|
8201
|
-
type: "
|
|
8206
|
+
type: "success" | "error" | "info" | "warning";
|
|
8202
8207
|
id?: number | undefined;
|
|
8203
8208
|
}[] | undefined;
|
|
8204
8209
|
required?: boolean | undefined;
|
|
@@ -8219,7 +8224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8219
8224
|
hint?: string | undefined;
|
|
8220
8225
|
messages?: {
|
|
8221
8226
|
text: string;
|
|
8222
|
-
type: "
|
|
8227
|
+
type: "success" | "error" | "info" | "warning";
|
|
8223
8228
|
id?: number | undefined;
|
|
8224
8229
|
}[] | undefined;
|
|
8225
8230
|
required?: boolean | undefined;
|
|
@@ -8450,7 +8455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8450
8455
|
hint?: string | undefined;
|
|
8451
8456
|
messages?: {
|
|
8452
8457
|
text: string;
|
|
8453
|
-
type: "
|
|
8458
|
+
type: "success" | "error" | "info" | "warning";
|
|
8454
8459
|
id?: number | undefined;
|
|
8455
8460
|
}[] | undefined;
|
|
8456
8461
|
required?: boolean | undefined;
|
|
@@ -8468,7 +8473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8468
8473
|
hint?: string | undefined;
|
|
8469
8474
|
messages?: {
|
|
8470
8475
|
text: string;
|
|
8471
|
-
type: "
|
|
8476
|
+
type: "success" | "error" | "info" | "warning";
|
|
8472
8477
|
id?: number | undefined;
|
|
8473
8478
|
}[] | undefined;
|
|
8474
8479
|
required?: boolean | undefined;
|
|
@@ -8492,7 +8497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8492
8497
|
hint?: string | undefined;
|
|
8493
8498
|
messages?: {
|
|
8494
8499
|
text: string;
|
|
8495
|
-
type: "
|
|
8500
|
+
type: "success" | "error" | "info" | "warning";
|
|
8496
8501
|
id?: number | undefined;
|
|
8497
8502
|
}[] | undefined;
|
|
8498
8503
|
required?: boolean | undefined;
|
|
@@ -8516,7 +8521,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8516
8521
|
hint?: string | undefined;
|
|
8517
8522
|
messages?: {
|
|
8518
8523
|
text: string;
|
|
8519
|
-
type: "
|
|
8524
|
+
type: "success" | "error" | "info" | "warning";
|
|
8520
8525
|
id?: number | undefined;
|
|
8521
8526
|
}[] | undefined;
|
|
8522
8527
|
required?: boolean | undefined;
|
|
@@ -8545,7 +8550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8545
8550
|
hint?: string | undefined;
|
|
8546
8551
|
messages?: {
|
|
8547
8552
|
text: string;
|
|
8548
|
-
type: "
|
|
8553
|
+
type: "success" | "error" | "info" | "warning";
|
|
8549
8554
|
id?: number | undefined;
|
|
8550
8555
|
}[] | undefined;
|
|
8551
8556
|
required?: boolean | undefined;
|
|
@@ -8560,7 +8565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8560
8565
|
hint?: string | undefined;
|
|
8561
8566
|
messages?: {
|
|
8562
8567
|
text: string;
|
|
8563
|
-
type: "
|
|
8568
|
+
type: "success" | "error" | "info" | "warning";
|
|
8564
8569
|
id?: number | undefined;
|
|
8565
8570
|
}[] | undefined;
|
|
8566
8571
|
required?: boolean | undefined;
|
|
@@ -8581,7 +8586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8581
8586
|
hint?: string | undefined;
|
|
8582
8587
|
messages?: {
|
|
8583
8588
|
text: string;
|
|
8584
|
-
type: "
|
|
8589
|
+
type: "success" | "error" | "info" | "warning";
|
|
8585
8590
|
id?: number | undefined;
|
|
8586
8591
|
}[] | undefined;
|
|
8587
8592
|
required?: boolean | undefined;
|
|
@@ -8606,7 +8611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8606
8611
|
hint?: string | undefined;
|
|
8607
8612
|
messages?: {
|
|
8608
8613
|
text: string;
|
|
8609
|
-
type: "
|
|
8614
|
+
type: "success" | "error" | "info" | "warning";
|
|
8610
8615
|
id?: number | undefined;
|
|
8611
8616
|
}[] | undefined;
|
|
8612
8617
|
required?: boolean | undefined;
|
|
@@ -8625,7 +8630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8625
8630
|
hint?: string | undefined;
|
|
8626
8631
|
messages?: {
|
|
8627
8632
|
text: string;
|
|
8628
|
-
type: "
|
|
8633
|
+
type: "success" | "error" | "info" | "warning";
|
|
8629
8634
|
id?: number | undefined;
|
|
8630
8635
|
}[] | undefined;
|
|
8631
8636
|
required?: boolean | undefined;
|
|
@@ -8645,7 +8650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8645
8650
|
hint?: string | undefined;
|
|
8646
8651
|
messages?: {
|
|
8647
8652
|
text: string;
|
|
8648
|
-
type: "
|
|
8653
|
+
type: "success" | "error" | "info" | "warning";
|
|
8649
8654
|
id?: number | undefined;
|
|
8650
8655
|
}[] | undefined;
|
|
8651
8656
|
required?: boolean | undefined;
|
|
@@ -8664,7 +8669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8664
8669
|
hint?: string | undefined;
|
|
8665
8670
|
messages?: {
|
|
8666
8671
|
text: string;
|
|
8667
|
-
type: "
|
|
8672
|
+
type: "success" | "error" | "info" | "warning";
|
|
8668
8673
|
id?: number | undefined;
|
|
8669
8674
|
}[] | undefined;
|
|
8670
8675
|
required?: boolean | undefined;
|
|
@@ -8686,7 +8691,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8686
8691
|
hint?: string | undefined;
|
|
8687
8692
|
messages?: {
|
|
8688
8693
|
text: string;
|
|
8689
|
-
type: "
|
|
8694
|
+
type: "success" | "error" | "info" | "warning";
|
|
8690
8695
|
id?: number | undefined;
|
|
8691
8696
|
}[] | undefined;
|
|
8692
8697
|
required?: boolean | undefined;
|
|
@@ -8708,7 +8713,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8708
8713
|
hint?: string | undefined;
|
|
8709
8714
|
messages?: {
|
|
8710
8715
|
text: string;
|
|
8711
|
-
type: "
|
|
8716
|
+
type: "success" | "error" | "info" | "warning";
|
|
8712
8717
|
id?: number | undefined;
|
|
8713
8718
|
}[] | undefined;
|
|
8714
8719
|
required?: boolean | undefined;
|
|
@@ -8727,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8727
8732
|
hint?: string | undefined;
|
|
8728
8733
|
messages?: {
|
|
8729
8734
|
text: string;
|
|
8730
|
-
type: "
|
|
8735
|
+
type: "success" | "error" | "info" | "warning";
|
|
8731
8736
|
id?: number | undefined;
|
|
8732
8737
|
}[] | undefined;
|
|
8733
8738
|
required?: boolean | undefined;
|
|
@@ -8752,7 +8757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8752
8757
|
hint?: string | undefined;
|
|
8753
8758
|
messages?: {
|
|
8754
8759
|
text: string;
|
|
8755
|
-
type: "
|
|
8760
|
+
type: "success" | "error" | "info" | "warning";
|
|
8756
8761
|
id?: number | undefined;
|
|
8757
8762
|
}[] | undefined;
|
|
8758
8763
|
required?: boolean | undefined;
|
|
@@ -8773,7 +8778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8773
8778
|
hint?: string | undefined;
|
|
8774
8779
|
messages?: {
|
|
8775
8780
|
text: string;
|
|
8776
|
-
type: "
|
|
8781
|
+
type: "success" | "error" | "info" | "warning";
|
|
8777
8782
|
id?: number | undefined;
|
|
8778
8783
|
}[] | undefined;
|
|
8779
8784
|
required?: boolean | undefined;
|
|
@@ -8794,7 +8799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8794
8799
|
hint?: string | undefined;
|
|
8795
8800
|
messages?: {
|
|
8796
8801
|
text: string;
|
|
8797
|
-
type: "
|
|
8802
|
+
type: "success" | "error" | "info" | "warning";
|
|
8798
8803
|
id?: number | undefined;
|
|
8799
8804
|
}[] | undefined;
|
|
8800
8805
|
required?: boolean | undefined;
|
|
@@ -9024,7 +9029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9024
9029
|
};
|
|
9025
9030
|
};
|
|
9026
9031
|
output: {
|
|
9027
|
-
prompt: "
|
|
9032
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9028
9033
|
language: string;
|
|
9029
9034
|
}[];
|
|
9030
9035
|
outputFormat: "json";
|
|
@@ -9062,7 +9067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9062
9067
|
$get: {
|
|
9063
9068
|
input: {
|
|
9064
9069
|
param: {
|
|
9065
|
-
prompt: "
|
|
9070
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9066
9071
|
language: string;
|
|
9067
9072
|
};
|
|
9068
9073
|
} & {
|
|
@@ -9084,7 +9089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9084
9089
|
$put: {
|
|
9085
9090
|
input: {
|
|
9086
9091
|
param: {
|
|
9087
|
-
prompt: "
|
|
9092
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9088
9093
|
language: string;
|
|
9089
9094
|
};
|
|
9090
9095
|
} & {
|
|
@@ -9108,7 +9113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9108
9113
|
$delete: {
|
|
9109
9114
|
input: {
|
|
9110
9115
|
param: {
|
|
9111
|
-
prompt: "
|
|
9116
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9112
9117
|
language: string;
|
|
9113
9118
|
};
|
|
9114
9119
|
} & {
|
|
@@ -9970,7 +9975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9970
9975
|
};
|
|
9971
9976
|
} | {
|
|
9972
9977
|
mode: "inline";
|
|
9973
|
-
status: "
|
|
9978
|
+
status: "success" | "error";
|
|
9974
9979
|
connection_id: string;
|
|
9975
9980
|
connection_name: string;
|
|
9976
9981
|
strategy: string;
|
|
@@ -10549,7 +10554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10549
10554
|
log_type: string;
|
|
10550
10555
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10551
10556
|
actor: {
|
|
10552
|
-
type: "
|
|
10557
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10553
10558
|
id?: string | undefined;
|
|
10554
10559
|
email?: string | undefined;
|
|
10555
10560
|
org_id?: string | undefined;
|
|
@@ -10857,7 +10862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10857
10862
|
created_at: string;
|
|
10858
10863
|
updated_at: string;
|
|
10859
10864
|
name: string;
|
|
10860
|
-
provider: "auth0" | "
|
|
10865
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10861
10866
|
connection: string;
|
|
10862
10867
|
enabled: boolean;
|
|
10863
10868
|
credentials: {
|
|
@@ -10889,7 +10894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10889
10894
|
created_at: string;
|
|
10890
10895
|
updated_at: string;
|
|
10891
10896
|
name: string;
|
|
10892
|
-
provider: "auth0" | "
|
|
10897
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10893
10898
|
connection: string;
|
|
10894
10899
|
enabled: boolean;
|
|
10895
10900
|
credentials: {
|
|
@@ -10915,7 +10920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10915
10920
|
} & {
|
|
10916
10921
|
json: {
|
|
10917
10922
|
name: string;
|
|
10918
|
-
provider: "auth0" | "
|
|
10923
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10919
10924
|
connection: string;
|
|
10920
10925
|
credentials: {
|
|
10921
10926
|
domain: string;
|
|
@@ -10932,7 +10937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10932
10937
|
created_at: string;
|
|
10933
10938
|
updated_at: string;
|
|
10934
10939
|
name: string;
|
|
10935
|
-
provider: "auth0" | "
|
|
10940
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10936
10941
|
connection: string;
|
|
10937
10942
|
enabled: boolean;
|
|
10938
10943
|
credentials: {
|
|
@@ -10963,7 +10968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10963
10968
|
json: {
|
|
10964
10969
|
id?: string | undefined;
|
|
10965
10970
|
name?: string | undefined;
|
|
10966
|
-
provider?: "auth0" | "
|
|
10971
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
10967
10972
|
connection?: string | undefined;
|
|
10968
10973
|
enabled?: boolean | undefined;
|
|
10969
10974
|
credentials?: {
|
|
@@ -10979,7 +10984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10979
10984
|
created_at: string;
|
|
10980
10985
|
updated_at: string;
|
|
10981
10986
|
name: string;
|
|
10982
|
-
provider: "auth0" | "
|
|
10987
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10983
10988
|
connection: string;
|
|
10984
10989
|
enabled: boolean;
|
|
10985
10990
|
credentials: {
|
|
@@ -11197,7 +11202,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11197
11202
|
};
|
|
11198
11203
|
};
|
|
11199
11204
|
output: {
|
|
11200
|
-
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" | "
|
|
11205
|
+
type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11201
11206
|
date: string;
|
|
11202
11207
|
isMobile: boolean;
|
|
11203
11208
|
log_id: string;
|
|
@@ -11236,7 +11241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11236
11241
|
limit: number;
|
|
11237
11242
|
length: number;
|
|
11238
11243
|
logs: {
|
|
11239
|
-
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" | "
|
|
11244
|
+
type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11240
11245
|
date: string;
|
|
11241
11246
|
isMobile: boolean;
|
|
11242
11247
|
log_id: string;
|
|
@@ -11290,7 +11295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11290
11295
|
};
|
|
11291
11296
|
};
|
|
11292
11297
|
output: {
|
|
11293
|
-
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" | "
|
|
11298
|
+
type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11294
11299
|
date: string;
|
|
11295
11300
|
isMobile: boolean;
|
|
11296
11301
|
log_id: string;
|
|
@@ -13434,7 +13439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13434
13439
|
};
|
|
13435
13440
|
};
|
|
13436
13441
|
output: {
|
|
13437
|
-
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" | "
|
|
13442
|
+
type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13438
13443
|
date: string;
|
|
13439
13444
|
isMobile: boolean;
|
|
13440
13445
|
log_id: string;
|
|
@@ -13473,7 +13478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13473
13478
|
limit: number;
|
|
13474
13479
|
length: number;
|
|
13475
13480
|
logs: {
|
|
13476
|
-
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" | "
|
|
13481
|
+
type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13477
13482
|
date: string;
|
|
13478
13483
|
isMobile: boolean;
|
|
13479
13484
|
log_id: string;
|
|
@@ -13788,7 +13793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13788
13793
|
};
|
|
13789
13794
|
} & {
|
|
13790
13795
|
json: {
|
|
13791
|
-
template: "
|
|
13796
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13792
13797
|
body: string;
|
|
13793
13798
|
from: string;
|
|
13794
13799
|
subject: string;
|
|
@@ -13809,7 +13814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13809
13814
|
};
|
|
13810
13815
|
} & {
|
|
13811
13816
|
json: {
|
|
13812
|
-
template: "
|
|
13817
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13813
13818
|
body: string;
|
|
13814
13819
|
from: string;
|
|
13815
13820
|
subject: string;
|
|
@@ -13821,7 +13826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13821
13826
|
};
|
|
13822
13827
|
};
|
|
13823
13828
|
output: {
|
|
13824
|
-
template: "
|
|
13829
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13825
13830
|
body: string;
|
|
13826
13831
|
from: string;
|
|
13827
13832
|
subject: string;
|
|
@@ -13840,7 +13845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13840
13845
|
$get: {
|
|
13841
13846
|
input: {
|
|
13842
13847
|
param: {
|
|
13843
|
-
templateName: "
|
|
13848
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13844
13849
|
};
|
|
13845
13850
|
} & {
|
|
13846
13851
|
header: {
|
|
@@ -13853,7 +13858,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13853
13858
|
} | {
|
|
13854
13859
|
input: {
|
|
13855
13860
|
param: {
|
|
13856
|
-
templateName: "
|
|
13861
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13857
13862
|
};
|
|
13858
13863
|
} & {
|
|
13859
13864
|
header: {
|
|
@@ -13861,7 +13866,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13861
13866
|
};
|
|
13862
13867
|
};
|
|
13863
13868
|
output: {
|
|
13864
|
-
template: "
|
|
13869
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13865
13870
|
body: string;
|
|
13866
13871
|
from: string;
|
|
13867
13872
|
subject: string;
|
|
@@ -13880,7 +13885,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13880
13885
|
$put: {
|
|
13881
13886
|
input: {
|
|
13882
13887
|
param: {
|
|
13883
|
-
templateName: "
|
|
13888
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13884
13889
|
};
|
|
13885
13890
|
} & {
|
|
13886
13891
|
header: {
|
|
@@ -13888,7 +13893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13888
13893
|
};
|
|
13889
13894
|
} & {
|
|
13890
13895
|
json: {
|
|
13891
|
-
template: "
|
|
13896
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13892
13897
|
body: string;
|
|
13893
13898
|
from: string;
|
|
13894
13899
|
subject: string;
|
|
@@ -13900,7 +13905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13900
13905
|
};
|
|
13901
13906
|
};
|
|
13902
13907
|
output: {
|
|
13903
|
-
template: "
|
|
13908
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13904
13909
|
body: string;
|
|
13905
13910
|
from: string;
|
|
13906
13911
|
subject: string;
|
|
@@ -13919,7 +13924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13919
13924
|
$patch: {
|
|
13920
13925
|
input: {
|
|
13921
13926
|
param: {
|
|
13922
|
-
templateName: "
|
|
13927
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13923
13928
|
};
|
|
13924
13929
|
} & {
|
|
13925
13930
|
header: {
|
|
@@ -13927,7 +13932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13927
13932
|
};
|
|
13928
13933
|
} & {
|
|
13929
13934
|
json: {
|
|
13930
|
-
template?: "
|
|
13935
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
13931
13936
|
body?: string | undefined;
|
|
13932
13937
|
from?: string | undefined;
|
|
13933
13938
|
subject?: string | undefined;
|
|
@@ -13944,7 +13949,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13944
13949
|
} | {
|
|
13945
13950
|
input: {
|
|
13946
13951
|
param: {
|
|
13947
|
-
templateName: "
|
|
13952
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13948
13953
|
};
|
|
13949
13954
|
} & {
|
|
13950
13955
|
header: {
|
|
@@ -13952,7 +13957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13952
13957
|
};
|
|
13953
13958
|
} & {
|
|
13954
13959
|
json: {
|
|
13955
|
-
template?: "
|
|
13960
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
13956
13961
|
body?: string | undefined;
|
|
13957
13962
|
from?: string | undefined;
|
|
13958
13963
|
subject?: string | undefined;
|
|
@@ -13964,7 +13969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13964
13969
|
};
|
|
13965
13970
|
};
|
|
13966
13971
|
output: {
|
|
13967
|
-
template: "
|
|
13972
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13968
13973
|
body: string;
|
|
13969
13974
|
from: string;
|
|
13970
13975
|
subject: string;
|
|
@@ -14239,9 +14244,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14239
14244
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14240
14245
|
custom_domain_id: string;
|
|
14241
14246
|
primary: boolean;
|
|
14242
|
-
status: "
|
|
14247
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14243
14248
|
verification_method?: "txt" | undefined;
|
|
14244
|
-
custom_client_ip_header?: "null" | "
|
|
14249
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14245
14250
|
domain_metadata?: {
|
|
14246
14251
|
[x: string]: string;
|
|
14247
14252
|
} | undefined;
|
|
@@ -14280,9 +14285,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14280
14285
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14281
14286
|
custom_domain_id: string;
|
|
14282
14287
|
primary: boolean;
|
|
14283
|
-
status: "
|
|
14288
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14284
14289
|
verification_method?: "txt" | undefined;
|
|
14285
|
-
custom_client_ip_header?: "null" | "
|
|
14290
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14286
14291
|
domain_metadata?: {
|
|
14287
14292
|
[x: string]: string;
|
|
14288
14293
|
} | undefined;
|
|
@@ -14337,11 +14342,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14337
14342
|
domain?: string | undefined;
|
|
14338
14343
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
14339
14344
|
verification_method?: "txt" | undefined;
|
|
14340
|
-
custom_client_ip_header?: "null" | "
|
|
14345
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14341
14346
|
domain_metadata?: Record<string, string> | undefined;
|
|
14342
14347
|
custom_domain_id?: string | undefined;
|
|
14343
14348
|
primary?: boolean | undefined;
|
|
14344
|
-
status?: "
|
|
14349
|
+
status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
|
|
14345
14350
|
origin_domain_name?: string | undefined;
|
|
14346
14351
|
verification?: {
|
|
14347
14352
|
methods: ({
|
|
@@ -14362,9 +14367,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14362
14367
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14363
14368
|
custom_domain_id: string;
|
|
14364
14369
|
primary: boolean;
|
|
14365
|
-
status: "
|
|
14370
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14366
14371
|
verification_method?: "txt" | undefined;
|
|
14367
|
-
custom_client_ip_header?: "null" | "
|
|
14372
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14368
14373
|
domain_metadata?: {
|
|
14369
14374
|
[x: string]: string;
|
|
14370
14375
|
} | undefined;
|
|
@@ -14400,7 +14405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14400
14405
|
custom_domain_id?: string | undefined;
|
|
14401
14406
|
verification_method?: "txt" | undefined;
|
|
14402
14407
|
tls_policy?: "recommended" | undefined;
|
|
14403
|
-
custom_client_ip_header?: "null" | "
|
|
14408
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14404
14409
|
domain_metadata?: Record<string, string> | undefined;
|
|
14405
14410
|
};
|
|
14406
14411
|
};
|
|
@@ -14409,9 +14414,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14409
14414
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14410
14415
|
custom_domain_id: string;
|
|
14411
14416
|
primary: boolean;
|
|
14412
|
-
status: "
|
|
14417
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14413
14418
|
verification_method?: "txt" | undefined;
|
|
14414
|
-
custom_client_ip_header?: "null" | "
|
|
14419
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14415
14420
|
domain_metadata?: {
|
|
14416
14421
|
[x: string]: string;
|
|
14417
14422
|
} | undefined;
|
|
@@ -14450,9 +14455,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14450
14455
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14451
14456
|
custom_domain_id: string;
|
|
14452
14457
|
primary: boolean;
|
|
14453
|
-
status: "
|
|
14458
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14454
14459
|
verification_method?: "txt" | undefined;
|
|
14455
|
-
custom_client_ip_header?: "null" | "
|
|
14460
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14456
14461
|
domain_metadata?: {
|
|
14457
14462
|
[x: string]: string;
|
|
14458
14463
|
} | undefined;
|
|
@@ -15010,7 +15015,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15010
15015
|
output: {
|
|
15011
15016
|
id: string;
|
|
15012
15017
|
trigger_id: string;
|
|
15013
|
-
status: "
|
|
15018
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
15014
15019
|
results: {
|
|
15015
15020
|
action_name: string;
|
|
15016
15021
|
error: {
|
|
@@ -15057,7 +15062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15057
15062
|
logs: {
|
|
15058
15063
|
action_name: string;
|
|
15059
15064
|
lines: {
|
|
15060
|
-
level: "
|
|
15065
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15061
15066
|
message: string;
|
|
15062
15067
|
}[];
|
|
15063
15068
|
}[];
|
|
@@ -15724,7 +15729,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15724
15729
|
args: hono_utils_types.JSONValue[];
|
|
15725
15730
|
}[];
|
|
15726
15731
|
logs: {
|
|
15727
|
-
level: "
|
|
15732
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15728
15733
|
message: string;
|
|
15729
15734
|
}[];
|
|
15730
15735
|
error?: string | undefined;
|
|
@@ -16168,7 +16173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16168
16173
|
client_id: string;
|
|
16169
16174
|
redirect_url?: string | undefined;
|
|
16170
16175
|
login_hint?: string | undefined;
|
|
16171
|
-
screen_hint?: "
|
|
16176
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16172
16177
|
};
|
|
16173
16178
|
};
|
|
16174
16179
|
output: {};
|
|
@@ -16180,7 +16185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16180
16185
|
client_id: string;
|
|
16181
16186
|
redirect_url?: string | undefined;
|
|
16182
16187
|
login_hint?: string | undefined;
|
|
16183
|
-
screen_hint?: "
|
|
16188
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16184
16189
|
};
|
|
16185
16190
|
};
|
|
16186
16191
|
output: {
|
|
@@ -16457,19 +16462,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16457
16462
|
email: string;
|
|
16458
16463
|
send: "code" | "link";
|
|
16459
16464
|
authParams: {
|
|
16460
|
-
|
|
16461
|
-
username?: string | undefined;
|
|
16465
|
+
act_as?: string | undefined;
|
|
16462
16466
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16463
16467
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16464
|
-
scope?: string | undefined;
|
|
16465
|
-
audience?: string | undefined;
|
|
16466
|
-
act_as?: string | undefined;
|
|
16467
16468
|
redirect_uri?: string | undefined;
|
|
16469
|
+
audience?: string | undefined;
|
|
16468
16470
|
organization?: string | undefined;
|
|
16471
|
+
state?: string | undefined;
|
|
16469
16472
|
nonce?: string | undefined;
|
|
16473
|
+
scope?: string | undefined;
|
|
16470
16474
|
prompt?: string | undefined;
|
|
16471
16475
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16472
16476
|
code_challenge?: string | undefined;
|
|
16477
|
+
username?: string | undefined;
|
|
16473
16478
|
ui_locales?: string | undefined;
|
|
16474
16479
|
max_age?: number | undefined;
|
|
16475
16480
|
acr_values?: string | undefined;
|
|
@@ -16493,19 +16498,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16493
16498
|
phone_number: string;
|
|
16494
16499
|
send: "code" | "link";
|
|
16495
16500
|
authParams: {
|
|
16496
|
-
|
|
16497
|
-
username?: string | undefined;
|
|
16501
|
+
act_as?: string | undefined;
|
|
16498
16502
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16499
16503
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16500
|
-
scope?: string | undefined;
|
|
16501
|
-
audience?: string | undefined;
|
|
16502
|
-
act_as?: string | undefined;
|
|
16503
16504
|
redirect_uri?: string | undefined;
|
|
16505
|
+
audience?: string | undefined;
|
|
16504
16506
|
organization?: string | undefined;
|
|
16507
|
+
state?: string | undefined;
|
|
16505
16508
|
nonce?: string | undefined;
|
|
16509
|
+
scope?: string | undefined;
|
|
16506
16510
|
prompt?: string | undefined;
|
|
16507
16511
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16508
16512
|
code_challenge?: string | undefined;
|
|
16513
|
+
username?: string | undefined;
|
|
16509
16514
|
ui_locales?: string | undefined;
|
|
16510
16515
|
max_age?: number | undefined;
|
|
16511
16516
|
acr_values?: string | undefined;
|
|
@@ -17112,7 +17117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17112
17117
|
keys: {
|
|
17113
17118
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17114
17119
|
kid: string;
|
|
17115
|
-
kty: "
|
|
17120
|
+
kty: "RSA" | "EC" | "oct";
|
|
17116
17121
|
use?: "sig" | "enc" | undefined;
|
|
17117
17122
|
n?: string | undefined;
|
|
17118
17123
|
e?: string | undefined;
|
|
@@ -17300,7 +17305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17300
17305
|
};
|
|
17301
17306
|
output: {};
|
|
17302
17307
|
outputFormat: string;
|
|
17303
|
-
status:
|
|
17308
|
+
status: 200;
|
|
17304
17309
|
} | {
|
|
17305
17310
|
input: {
|
|
17306
17311
|
query: {
|
|
@@ -17314,7 +17319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17314
17319
|
};
|
|
17315
17320
|
output: {};
|
|
17316
17321
|
outputFormat: string;
|
|
17317
|
-
status:
|
|
17322
|
+
status: 302;
|
|
17318
17323
|
} | {
|
|
17319
17324
|
input: {
|
|
17320
17325
|
query: {
|
|
@@ -18302,7 +18307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18302
18307
|
$get: {
|
|
18303
18308
|
input: {
|
|
18304
18309
|
param: {
|
|
18305
|
-
screen: "signup" | "reset-password" | "
|
|
18310
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18306
18311
|
};
|
|
18307
18312
|
} & {
|
|
18308
18313
|
query: {
|
|
@@ -18318,7 +18323,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18318
18323
|
} | {
|
|
18319
18324
|
input: {
|
|
18320
18325
|
param: {
|
|
18321
|
-
screen: "signup" | "reset-password" | "
|
|
18326
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18322
18327
|
};
|
|
18323
18328
|
} & {
|
|
18324
18329
|
query: {
|
|
@@ -18334,7 +18339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18334
18339
|
} | {
|
|
18335
18340
|
input: {
|
|
18336
18341
|
param: {
|
|
18337
|
-
screen: "signup" | "reset-password" | "
|
|
18342
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18338
18343
|
};
|
|
18339
18344
|
} & {
|
|
18340
18345
|
query: {
|
|
@@ -18354,7 +18359,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18354
18359
|
$post: {
|
|
18355
18360
|
input: {
|
|
18356
18361
|
param: {
|
|
18357
|
-
screen: "signup" | "reset-password" | "
|
|
18362
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18358
18363
|
};
|
|
18359
18364
|
} & {
|
|
18360
18365
|
query: {
|
|
@@ -18372,7 +18377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18372
18377
|
} | {
|
|
18373
18378
|
input: {
|
|
18374
18379
|
param: {
|
|
18375
|
-
screen: "signup" | "reset-password" | "
|
|
18380
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18376
18381
|
};
|
|
18377
18382
|
} & {
|
|
18378
18383
|
query: {
|
|
@@ -18390,7 +18395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18390
18395
|
} | {
|
|
18391
18396
|
input: {
|
|
18392
18397
|
param: {
|
|
18393
|
-
screen: "signup" | "reset-password" | "
|
|
18398
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18394
18399
|
};
|
|
18395
18400
|
} & {
|
|
18396
18401
|
query: {
|