authhero 5.11.0 → 5.13.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 +125 -125
- package/dist/authhero.d.ts +272 -221
- package/dist/authhero.mjs +10547 -10122
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/createEncryptedDataAdapter.d.ts +14 -0
- package/dist/types/adapters/index.d.ts +2 -0
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/custom-domain.d.ts +8 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/users.d.ts +28 -0
- package/dist/types/index.d.ts +220 -220
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/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/clients.d.ts +13 -13
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +193 -193
- 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/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +221 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +22 -0
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
- package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
- package/dist/types/types/AuthHeroConfig.d.ts +14 -0
- package/dist/types/types/Bindings.d.ts +1 -0
- package/dist/types/types/IdToken.d.ts +3 -3
- package/dist/types/utils/field-encryption.d.ts +21 -0
- package/package.json +6 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { CountryCode } from 'libphonenumber-js';
|
|
|
9
9
|
import { SamlSigner } from '@authhero/saml/core';
|
|
10
10
|
export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
|
|
11
11
|
import { Context, Handler, Next, MiddlewareHandler } from 'hono';
|
|
12
|
+
import * as _authhero_proxy from '@authhero/proxy';
|
|
12
13
|
import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
|
|
13
14
|
import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
|
|
14
15
|
|
|
@@ -1037,6 +1038,20 @@ interface AuthHeroConfig {
|
|
|
1037
1038
|
* ```
|
|
1038
1039
|
*/
|
|
1039
1040
|
managementApiExtensions?: ManagementApiExtension[];
|
|
1041
|
+
/**
|
|
1042
|
+
* Optional privileged control-plane endpoint for the `@authhero/proxy`
|
|
1043
|
+
* data plane. When set, mounts `GET /api/v2/proxy/control-plane/hosts/:host`
|
|
1044
|
+
* which returns the cross-tenant `ResolvedHost` for the given hostname.
|
|
1045
|
+
*
|
|
1046
|
+
* This endpoint is read by remote proxy deployments via
|
|
1047
|
+
* `createHttpProxyAdapter`. It is **cross-tenant** — gate it with a
|
|
1048
|
+
* dedicated credential (shared secret, mTLS, or a JWT scoped to
|
|
1049
|
+
* `proxy:resolve_host`), never with a tenant token.
|
|
1050
|
+
*/
|
|
1051
|
+
proxyControlPlane?: {
|
|
1052
|
+
resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
|
|
1053
|
+
authenticate: (request: Request) => Promise<boolean> | boolean;
|
|
1054
|
+
};
|
|
1040
1055
|
/**
|
|
1041
1056
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1042
1057
|
* This is only configurable in code, not stored in the database.
|
|
@@ -1225,6 +1240,7 @@ type Bindings = {
|
|
|
1225
1240
|
ISSUER: string;
|
|
1226
1241
|
UNIVERSAL_LOGIN_URL?: string;
|
|
1227
1242
|
OAUTH_API_URL?: string;
|
|
1243
|
+
ENCRYPTION_KEY?: string;
|
|
1228
1244
|
data: DataAdapters;
|
|
1229
1245
|
hooks?: Hooks;
|
|
1230
1246
|
/**
|
|
@@ -1605,6 +1621,41 @@ interface InMemoryCacheConfig {
|
|
|
1605
1621
|
*/
|
|
1606
1622
|
declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter;
|
|
1607
1623
|
|
|
1624
|
+
/**
|
|
1625
|
+
* Wraps a DataAdapters instance so that sensitive credential fields are
|
|
1626
|
+
* transparently encrypted on write and decrypted on read. Only the adapters
|
|
1627
|
+
* that hold secrets are wrapped; everything else passes through unchanged.
|
|
1628
|
+
*
|
|
1629
|
+
* Encrypted columns: clients.client_secret, connections.options
|
|
1630
|
+
* (client_secret/app_secret/twilio_token/configuration.client_secret),
|
|
1631
|
+
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1632
|
+
* migration_sources.credentials.client_secret.
|
|
1633
|
+
*
|
|
1634
|
+
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1635
|
+
*/
|
|
1636
|
+
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
1637
|
+
|
|
1638
|
+
declare const PREFIX = "enc:v1:";
|
|
1639
|
+
type EncryptedField = `${typeof PREFIX}${string}`;
|
|
1640
|
+
declare function isEncrypted(value: string): value is EncryptedField;
|
|
1641
|
+
/**
|
|
1642
|
+
* Imports a base64-encoded 32-byte key as an AES-256-GCM CryptoKey. Throws if
|
|
1643
|
+
* the decoded key is not exactly 32 bytes so a misconfigured secret fails loudly
|
|
1644
|
+
* at boot rather than silently weakening encryption.
|
|
1645
|
+
*/
|
|
1646
|
+
declare function loadEncryptionKey(b64: string): Promise<CryptoKey>;
|
|
1647
|
+
/**
|
|
1648
|
+
* Encrypts a string with AES-256-GCM using a fresh random IV. The output is
|
|
1649
|
+
* `enc:v1:<base64url(iv ‖ ciphertext ‖ tag)>`.
|
|
1650
|
+
*/
|
|
1651
|
+
declare function encryptField(plaintext: string, key: CryptoKey): Promise<EncryptedField>;
|
|
1652
|
+
/**
|
|
1653
|
+
* Decrypts a value produced by `encryptField`. Values without the `enc:v1:`
|
|
1654
|
+
* prefix are assumed to be legacy plaintext and returned unchanged. Throws if a
|
|
1655
|
+
* prefixed value cannot be decrypted (wrong key or corrupted ciphertext).
|
|
1656
|
+
*/
|
|
1657
|
+
declare function decryptField(value: string, key: CryptoKey): Promise<string>;
|
|
1658
|
+
|
|
1608
1659
|
declare const mailgunCredentialsSchema: z.ZodObject<{
|
|
1609
1660
|
api_key: z.ZodString;
|
|
1610
1661
|
domain: z.ZodString;
|
|
@@ -2408,7 +2459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2408
2459
|
};
|
|
2409
2460
|
} & {
|
|
2410
2461
|
json: {
|
|
2411
|
-
type: "
|
|
2462
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2412
2463
|
phone_number?: string | undefined;
|
|
2413
2464
|
totp_secret?: string | undefined;
|
|
2414
2465
|
credential_id?: string | undefined;
|
|
@@ -2548,7 +2599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2548
2599
|
};
|
|
2549
2600
|
};
|
|
2550
2601
|
output: {
|
|
2551
|
-
name: "email" | "
|
|
2602
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2552
2603
|
enabled: boolean;
|
|
2553
2604
|
trial_expired?: boolean | undefined;
|
|
2554
2605
|
}[];
|
|
@@ -2703,7 +2754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2703
2754
|
$get: {
|
|
2704
2755
|
input: {
|
|
2705
2756
|
param: {
|
|
2706
|
-
factor_name: "email" | "
|
|
2757
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2707
2758
|
};
|
|
2708
2759
|
} & {
|
|
2709
2760
|
header: {
|
|
@@ -2711,7 +2762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2711
2762
|
};
|
|
2712
2763
|
};
|
|
2713
2764
|
output: {
|
|
2714
|
-
name: "email" | "
|
|
2765
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2715
2766
|
enabled: boolean;
|
|
2716
2767
|
trial_expired?: boolean | undefined;
|
|
2717
2768
|
};
|
|
@@ -2724,7 +2775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2724
2775
|
$put: {
|
|
2725
2776
|
input: {
|
|
2726
2777
|
param: {
|
|
2727
|
-
factor_name: "email" | "
|
|
2778
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2728
2779
|
};
|
|
2729
2780
|
} & {
|
|
2730
2781
|
header: {
|
|
@@ -2736,7 +2787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2736
2787
|
};
|
|
2737
2788
|
};
|
|
2738
2789
|
output: {
|
|
2739
|
-
name: "email" | "
|
|
2790
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2740
2791
|
enabled: boolean;
|
|
2741
2792
|
trial_expired?: boolean | undefined;
|
|
2742
2793
|
};
|
|
@@ -4912,7 +4963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4912
4963
|
hint?: string | undefined;
|
|
4913
4964
|
messages?: {
|
|
4914
4965
|
text: string;
|
|
4915
|
-
type: "
|
|
4966
|
+
type: "error" | "success" | "info" | "warning";
|
|
4916
4967
|
id?: number | undefined;
|
|
4917
4968
|
}[] | undefined;
|
|
4918
4969
|
required?: boolean | undefined;
|
|
@@ -4930,7 +4981,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4930
4981
|
hint?: string | undefined;
|
|
4931
4982
|
messages?: {
|
|
4932
4983
|
text: string;
|
|
4933
|
-
type: "
|
|
4984
|
+
type: "error" | "success" | "info" | "warning";
|
|
4934
4985
|
id?: number | undefined;
|
|
4935
4986
|
}[] | undefined;
|
|
4936
4987
|
required?: boolean | undefined;
|
|
@@ -4954,7 +5005,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4954
5005
|
hint?: string | undefined;
|
|
4955
5006
|
messages?: {
|
|
4956
5007
|
text: string;
|
|
4957
|
-
type: "
|
|
5008
|
+
type: "error" | "success" | "info" | "warning";
|
|
4958
5009
|
id?: number | undefined;
|
|
4959
5010
|
}[] | undefined;
|
|
4960
5011
|
required?: boolean | undefined;
|
|
@@ -4978,7 +5029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4978
5029
|
hint?: string | undefined;
|
|
4979
5030
|
messages?: {
|
|
4980
5031
|
text: string;
|
|
4981
|
-
type: "
|
|
5032
|
+
type: "error" | "success" | "info" | "warning";
|
|
4982
5033
|
id?: number | undefined;
|
|
4983
5034
|
}[] | undefined;
|
|
4984
5035
|
required?: boolean | undefined;
|
|
@@ -5007,7 +5058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5007
5058
|
hint?: string | undefined;
|
|
5008
5059
|
messages?: {
|
|
5009
5060
|
text: string;
|
|
5010
|
-
type: "
|
|
5061
|
+
type: "error" | "success" | "info" | "warning";
|
|
5011
5062
|
id?: number | undefined;
|
|
5012
5063
|
}[] | undefined;
|
|
5013
5064
|
required?: boolean | undefined;
|
|
@@ -5022,7 +5073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5022
5073
|
hint?: string | undefined;
|
|
5023
5074
|
messages?: {
|
|
5024
5075
|
text: string;
|
|
5025
|
-
type: "
|
|
5076
|
+
type: "error" | "success" | "info" | "warning";
|
|
5026
5077
|
id?: number | undefined;
|
|
5027
5078
|
}[] | undefined;
|
|
5028
5079
|
required?: boolean | undefined;
|
|
@@ -5043,7 +5094,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5043
5094
|
hint?: string | undefined;
|
|
5044
5095
|
messages?: {
|
|
5045
5096
|
text: string;
|
|
5046
|
-
type: "
|
|
5097
|
+
type: "error" | "success" | "info" | "warning";
|
|
5047
5098
|
id?: number | undefined;
|
|
5048
5099
|
}[] | undefined;
|
|
5049
5100
|
required?: boolean | undefined;
|
|
@@ -5068,7 +5119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5068
5119
|
hint?: string | undefined;
|
|
5069
5120
|
messages?: {
|
|
5070
5121
|
text: string;
|
|
5071
|
-
type: "
|
|
5122
|
+
type: "error" | "success" | "info" | "warning";
|
|
5072
5123
|
id?: number | undefined;
|
|
5073
5124
|
}[] | undefined;
|
|
5074
5125
|
required?: boolean | undefined;
|
|
@@ -5087,7 +5138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5087
5138
|
hint?: string | undefined;
|
|
5088
5139
|
messages?: {
|
|
5089
5140
|
text: string;
|
|
5090
|
-
type: "
|
|
5141
|
+
type: "error" | "success" | "info" | "warning";
|
|
5091
5142
|
id?: number | undefined;
|
|
5092
5143
|
}[] | undefined;
|
|
5093
5144
|
required?: boolean | undefined;
|
|
@@ -5107,7 +5158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5107
5158
|
hint?: string | undefined;
|
|
5108
5159
|
messages?: {
|
|
5109
5160
|
text: string;
|
|
5110
|
-
type: "
|
|
5161
|
+
type: "error" | "success" | "info" | "warning";
|
|
5111
5162
|
id?: number | undefined;
|
|
5112
5163
|
}[] | undefined;
|
|
5113
5164
|
required?: boolean | undefined;
|
|
@@ -5126,7 +5177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5126
5177
|
hint?: string | undefined;
|
|
5127
5178
|
messages?: {
|
|
5128
5179
|
text: string;
|
|
5129
|
-
type: "
|
|
5180
|
+
type: "error" | "success" | "info" | "warning";
|
|
5130
5181
|
id?: number | undefined;
|
|
5131
5182
|
}[] | undefined;
|
|
5132
5183
|
required?: boolean | undefined;
|
|
@@ -5148,7 +5199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5148
5199
|
hint?: string | undefined;
|
|
5149
5200
|
messages?: {
|
|
5150
5201
|
text: string;
|
|
5151
|
-
type: "
|
|
5202
|
+
type: "error" | "success" | "info" | "warning";
|
|
5152
5203
|
id?: number | undefined;
|
|
5153
5204
|
}[] | undefined;
|
|
5154
5205
|
required?: boolean | undefined;
|
|
@@ -5170,7 +5221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5170
5221
|
hint?: string | undefined;
|
|
5171
5222
|
messages?: {
|
|
5172
5223
|
text: string;
|
|
5173
|
-
type: "
|
|
5224
|
+
type: "error" | "success" | "info" | "warning";
|
|
5174
5225
|
id?: number | undefined;
|
|
5175
5226
|
}[] | undefined;
|
|
5176
5227
|
required?: boolean | undefined;
|
|
@@ -5189,7 +5240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5189
5240
|
hint?: string | undefined;
|
|
5190
5241
|
messages?: {
|
|
5191
5242
|
text: string;
|
|
5192
|
-
type: "
|
|
5243
|
+
type: "error" | "success" | "info" | "warning";
|
|
5193
5244
|
id?: number | undefined;
|
|
5194
5245
|
}[] | undefined;
|
|
5195
5246
|
required?: boolean | undefined;
|
|
@@ -5214,7 +5265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5214
5265
|
hint?: string | undefined;
|
|
5215
5266
|
messages?: {
|
|
5216
5267
|
text: string;
|
|
5217
|
-
type: "
|
|
5268
|
+
type: "error" | "success" | "info" | "warning";
|
|
5218
5269
|
id?: number | undefined;
|
|
5219
5270
|
}[] | undefined;
|
|
5220
5271
|
required?: boolean | undefined;
|
|
@@ -5235,7 +5286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5235
5286
|
hint?: string | undefined;
|
|
5236
5287
|
messages?: {
|
|
5237
5288
|
text: string;
|
|
5238
|
-
type: "
|
|
5289
|
+
type: "error" | "success" | "info" | "warning";
|
|
5239
5290
|
id?: number | undefined;
|
|
5240
5291
|
}[] | undefined;
|
|
5241
5292
|
required?: boolean | undefined;
|
|
@@ -5256,7 +5307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5256
5307
|
hint?: string | undefined;
|
|
5257
5308
|
messages?: {
|
|
5258
5309
|
text: string;
|
|
5259
|
-
type: "
|
|
5310
|
+
type: "error" | "success" | "info" | "warning";
|
|
5260
5311
|
id?: number | undefined;
|
|
5261
5312
|
}[] | undefined;
|
|
5262
5313
|
required?: boolean | undefined;
|
|
@@ -5489,7 +5540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5489
5540
|
hint?: string | undefined;
|
|
5490
5541
|
messages?: {
|
|
5491
5542
|
text: string;
|
|
5492
|
-
type: "
|
|
5543
|
+
type: "error" | "success" | "info" | "warning";
|
|
5493
5544
|
id?: number | undefined;
|
|
5494
5545
|
}[] | undefined;
|
|
5495
5546
|
required?: boolean | undefined;
|
|
@@ -5507,7 +5558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5507
5558
|
hint?: string | undefined;
|
|
5508
5559
|
messages?: {
|
|
5509
5560
|
text: string;
|
|
5510
|
-
type: "
|
|
5561
|
+
type: "error" | "success" | "info" | "warning";
|
|
5511
5562
|
id?: number | undefined;
|
|
5512
5563
|
}[] | undefined;
|
|
5513
5564
|
required?: boolean | undefined;
|
|
@@ -5531,7 +5582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5531
5582
|
hint?: string | undefined;
|
|
5532
5583
|
messages?: {
|
|
5533
5584
|
text: string;
|
|
5534
|
-
type: "
|
|
5585
|
+
type: "error" | "success" | "info" | "warning";
|
|
5535
5586
|
id?: number | undefined;
|
|
5536
5587
|
}[] | undefined;
|
|
5537
5588
|
required?: boolean | undefined;
|
|
@@ -5555,7 +5606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5555
5606
|
hint?: string | undefined;
|
|
5556
5607
|
messages?: {
|
|
5557
5608
|
text: string;
|
|
5558
|
-
type: "
|
|
5609
|
+
type: "error" | "success" | "info" | "warning";
|
|
5559
5610
|
id?: number | undefined;
|
|
5560
5611
|
}[] | undefined;
|
|
5561
5612
|
required?: boolean | undefined;
|
|
@@ -5584,7 +5635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5584
5635
|
hint?: string | undefined;
|
|
5585
5636
|
messages?: {
|
|
5586
5637
|
text: string;
|
|
5587
|
-
type: "
|
|
5638
|
+
type: "error" | "success" | "info" | "warning";
|
|
5588
5639
|
id?: number | undefined;
|
|
5589
5640
|
}[] | undefined;
|
|
5590
5641
|
required?: boolean | undefined;
|
|
@@ -5599,7 +5650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5599
5650
|
hint?: string | undefined;
|
|
5600
5651
|
messages?: {
|
|
5601
5652
|
text: string;
|
|
5602
|
-
type: "
|
|
5653
|
+
type: "error" | "success" | "info" | "warning";
|
|
5603
5654
|
id?: number | undefined;
|
|
5604
5655
|
}[] | undefined;
|
|
5605
5656
|
required?: boolean | undefined;
|
|
@@ -5620,7 +5671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5620
5671
|
hint?: string | undefined;
|
|
5621
5672
|
messages?: {
|
|
5622
5673
|
text: string;
|
|
5623
|
-
type: "
|
|
5674
|
+
type: "error" | "success" | "info" | "warning";
|
|
5624
5675
|
id?: number | undefined;
|
|
5625
5676
|
}[] | undefined;
|
|
5626
5677
|
required?: boolean | undefined;
|
|
@@ -5645,7 +5696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5645
5696
|
hint?: string | undefined;
|
|
5646
5697
|
messages?: {
|
|
5647
5698
|
text: string;
|
|
5648
|
-
type: "
|
|
5699
|
+
type: "error" | "success" | "info" | "warning";
|
|
5649
5700
|
id?: number | undefined;
|
|
5650
5701
|
}[] | undefined;
|
|
5651
5702
|
required?: boolean | undefined;
|
|
@@ -5664,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5664
5715
|
hint?: string | undefined;
|
|
5665
5716
|
messages?: {
|
|
5666
5717
|
text: string;
|
|
5667
|
-
type: "
|
|
5718
|
+
type: "error" | "success" | "info" | "warning";
|
|
5668
5719
|
id?: number | undefined;
|
|
5669
5720
|
}[] | undefined;
|
|
5670
5721
|
required?: boolean | undefined;
|
|
@@ -5684,7 +5735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5684
5735
|
hint?: string | undefined;
|
|
5685
5736
|
messages?: {
|
|
5686
5737
|
text: string;
|
|
5687
|
-
type: "
|
|
5738
|
+
type: "error" | "success" | "info" | "warning";
|
|
5688
5739
|
id?: number | undefined;
|
|
5689
5740
|
}[] | undefined;
|
|
5690
5741
|
required?: boolean | undefined;
|
|
@@ -5703,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5703
5754
|
hint?: string | undefined;
|
|
5704
5755
|
messages?: {
|
|
5705
5756
|
text: string;
|
|
5706
|
-
type: "
|
|
5757
|
+
type: "error" | "success" | "info" | "warning";
|
|
5707
5758
|
id?: number | undefined;
|
|
5708
5759
|
}[] | undefined;
|
|
5709
5760
|
required?: boolean | undefined;
|
|
@@ -5725,7 +5776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5725
5776
|
hint?: string | undefined;
|
|
5726
5777
|
messages?: {
|
|
5727
5778
|
text: string;
|
|
5728
|
-
type: "
|
|
5779
|
+
type: "error" | "success" | "info" | "warning";
|
|
5729
5780
|
id?: number | undefined;
|
|
5730
5781
|
}[] | undefined;
|
|
5731
5782
|
required?: boolean | undefined;
|
|
@@ -5747,7 +5798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5747
5798
|
hint?: string | undefined;
|
|
5748
5799
|
messages?: {
|
|
5749
5800
|
text: string;
|
|
5750
|
-
type: "
|
|
5801
|
+
type: "error" | "success" | "info" | "warning";
|
|
5751
5802
|
id?: number | undefined;
|
|
5752
5803
|
}[] | undefined;
|
|
5753
5804
|
required?: boolean | undefined;
|
|
@@ -5766,7 +5817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5766
5817
|
hint?: string | undefined;
|
|
5767
5818
|
messages?: {
|
|
5768
5819
|
text: string;
|
|
5769
|
-
type: "
|
|
5820
|
+
type: "error" | "success" | "info" | "warning";
|
|
5770
5821
|
id?: number | undefined;
|
|
5771
5822
|
}[] | undefined;
|
|
5772
5823
|
required?: boolean | undefined;
|
|
@@ -5791,7 +5842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5791
5842
|
hint?: string | undefined;
|
|
5792
5843
|
messages?: {
|
|
5793
5844
|
text: string;
|
|
5794
|
-
type: "
|
|
5845
|
+
type: "error" | "success" | "info" | "warning";
|
|
5795
5846
|
id?: number | undefined;
|
|
5796
5847
|
}[] | undefined;
|
|
5797
5848
|
required?: boolean | undefined;
|
|
@@ -5812,7 +5863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5812
5863
|
hint?: string | undefined;
|
|
5813
5864
|
messages?: {
|
|
5814
5865
|
text: string;
|
|
5815
|
-
type: "
|
|
5866
|
+
type: "error" | "success" | "info" | "warning";
|
|
5816
5867
|
id?: number | undefined;
|
|
5817
5868
|
}[] | undefined;
|
|
5818
5869
|
required?: boolean | undefined;
|
|
@@ -5833,7 +5884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5833
5884
|
hint?: string | undefined;
|
|
5834
5885
|
messages?: {
|
|
5835
5886
|
text: string;
|
|
5836
|
-
type: "
|
|
5887
|
+
type: "error" | "success" | "info" | "warning";
|
|
5837
5888
|
id?: number | undefined;
|
|
5838
5889
|
}[] | undefined;
|
|
5839
5890
|
required?: boolean | undefined;
|
|
@@ -6081,7 +6132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6081
6132
|
hint?: string | undefined;
|
|
6082
6133
|
messages?: {
|
|
6083
6134
|
text: string;
|
|
6084
|
-
type: "
|
|
6135
|
+
type: "error" | "success" | "info" | "warning";
|
|
6085
6136
|
id?: number | undefined;
|
|
6086
6137
|
}[] | undefined;
|
|
6087
6138
|
required?: boolean | undefined;
|
|
@@ -6099,7 +6150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6099
6150
|
hint?: string | undefined;
|
|
6100
6151
|
messages?: {
|
|
6101
6152
|
text: string;
|
|
6102
|
-
type: "
|
|
6153
|
+
type: "error" | "success" | "info" | "warning";
|
|
6103
6154
|
id?: number | undefined;
|
|
6104
6155
|
}[] | undefined;
|
|
6105
6156
|
required?: boolean | undefined;
|
|
@@ -6123,7 +6174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6123
6174
|
hint?: string | undefined;
|
|
6124
6175
|
messages?: {
|
|
6125
6176
|
text: string;
|
|
6126
|
-
type: "
|
|
6177
|
+
type: "error" | "success" | "info" | "warning";
|
|
6127
6178
|
id?: number | undefined;
|
|
6128
6179
|
}[] | undefined;
|
|
6129
6180
|
required?: boolean | undefined;
|
|
@@ -6147,7 +6198,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6147
6198
|
hint?: string | undefined;
|
|
6148
6199
|
messages?: {
|
|
6149
6200
|
text: string;
|
|
6150
|
-
type: "
|
|
6201
|
+
type: "error" | "success" | "info" | "warning";
|
|
6151
6202
|
id?: number | undefined;
|
|
6152
6203
|
}[] | undefined;
|
|
6153
6204
|
required?: boolean | undefined;
|
|
@@ -6176,7 +6227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6176
6227
|
hint?: string | undefined;
|
|
6177
6228
|
messages?: {
|
|
6178
6229
|
text: string;
|
|
6179
|
-
type: "
|
|
6230
|
+
type: "error" | "success" | "info" | "warning";
|
|
6180
6231
|
id?: number | undefined;
|
|
6181
6232
|
}[] | undefined;
|
|
6182
6233
|
required?: boolean | undefined;
|
|
@@ -6191,7 +6242,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6191
6242
|
hint?: string | undefined;
|
|
6192
6243
|
messages?: {
|
|
6193
6244
|
text: string;
|
|
6194
|
-
type: "
|
|
6245
|
+
type: "error" | "success" | "info" | "warning";
|
|
6195
6246
|
id?: number | undefined;
|
|
6196
6247
|
}[] | undefined;
|
|
6197
6248
|
required?: boolean | undefined;
|
|
@@ -6212,7 +6263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6212
6263
|
hint?: string | undefined;
|
|
6213
6264
|
messages?: {
|
|
6214
6265
|
text: string;
|
|
6215
|
-
type: "
|
|
6266
|
+
type: "error" | "success" | "info" | "warning";
|
|
6216
6267
|
id?: number | undefined;
|
|
6217
6268
|
}[] | undefined;
|
|
6218
6269
|
required?: boolean | undefined;
|
|
@@ -6237,7 +6288,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6237
6288
|
hint?: string | undefined;
|
|
6238
6289
|
messages?: {
|
|
6239
6290
|
text: string;
|
|
6240
|
-
type: "
|
|
6291
|
+
type: "error" | "success" | "info" | "warning";
|
|
6241
6292
|
id?: number | undefined;
|
|
6242
6293
|
}[] | undefined;
|
|
6243
6294
|
required?: boolean | undefined;
|
|
@@ -6256,7 +6307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6256
6307
|
hint?: string | undefined;
|
|
6257
6308
|
messages?: {
|
|
6258
6309
|
text: string;
|
|
6259
|
-
type: "
|
|
6310
|
+
type: "error" | "success" | "info" | "warning";
|
|
6260
6311
|
id?: number | undefined;
|
|
6261
6312
|
}[] | undefined;
|
|
6262
6313
|
required?: boolean | undefined;
|
|
@@ -6276,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6276
6327
|
hint?: string | undefined;
|
|
6277
6328
|
messages?: {
|
|
6278
6329
|
text: string;
|
|
6279
|
-
type: "
|
|
6330
|
+
type: "error" | "success" | "info" | "warning";
|
|
6280
6331
|
id?: number | undefined;
|
|
6281
6332
|
}[] | undefined;
|
|
6282
6333
|
required?: boolean | undefined;
|
|
@@ -6295,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6295
6346
|
hint?: string | undefined;
|
|
6296
6347
|
messages?: {
|
|
6297
6348
|
text: string;
|
|
6298
|
-
type: "
|
|
6349
|
+
type: "error" | "success" | "info" | "warning";
|
|
6299
6350
|
id?: number | undefined;
|
|
6300
6351
|
}[] | undefined;
|
|
6301
6352
|
required?: boolean | undefined;
|
|
@@ -6317,7 +6368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6317
6368
|
hint?: string | undefined;
|
|
6318
6369
|
messages?: {
|
|
6319
6370
|
text: string;
|
|
6320
|
-
type: "
|
|
6371
|
+
type: "error" | "success" | "info" | "warning";
|
|
6321
6372
|
id?: number | undefined;
|
|
6322
6373
|
}[] | undefined;
|
|
6323
6374
|
required?: boolean | undefined;
|
|
@@ -6339,7 +6390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6339
6390
|
hint?: string | undefined;
|
|
6340
6391
|
messages?: {
|
|
6341
6392
|
text: string;
|
|
6342
|
-
type: "
|
|
6393
|
+
type: "error" | "success" | "info" | "warning";
|
|
6343
6394
|
id?: number | undefined;
|
|
6344
6395
|
}[] | undefined;
|
|
6345
6396
|
required?: boolean | undefined;
|
|
@@ -6358,7 +6409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6358
6409
|
hint?: string | undefined;
|
|
6359
6410
|
messages?: {
|
|
6360
6411
|
text: string;
|
|
6361
|
-
type: "
|
|
6412
|
+
type: "error" | "success" | "info" | "warning";
|
|
6362
6413
|
id?: number | undefined;
|
|
6363
6414
|
}[] | undefined;
|
|
6364
6415
|
required?: boolean | undefined;
|
|
@@ -6383,7 +6434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6383
6434
|
hint?: string | undefined;
|
|
6384
6435
|
messages?: {
|
|
6385
6436
|
text: string;
|
|
6386
|
-
type: "
|
|
6437
|
+
type: "error" | "success" | "info" | "warning";
|
|
6387
6438
|
id?: number | undefined;
|
|
6388
6439
|
}[] | undefined;
|
|
6389
6440
|
required?: boolean | undefined;
|
|
@@ -6404,7 +6455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6404
6455
|
hint?: string | undefined;
|
|
6405
6456
|
messages?: {
|
|
6406
6457
|
text: string;
|
|
6407
|
-
type: "
|
|
6458
|
+
type: "error" | "success" | "info" | "warning";
|
|
6408
6459
|
id?: number | undefined;
|
|
6409
6460
|
}[] | undefined;
|
|
6410
6461
|
required?: boolean | undefined;
|
|
@@ -6425,7 +6476,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6425
6476
|
hint?: string | undefined;
|
|
6426
6477
|
messages?: {
|
|
6427
6478
|
text: string;
|
|
6428
|
-
type: "
|
|
6479
|
+
type: "error" | "success" | "info" | "warning";
|
|
6429
6480
|
id?: number | undefined;
|
|
6430
6481
|
}[] | undefined;
|
|
6431
6482
|
required?: boolean | undefined;
|
|
@@ -6679,7 +6730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6679
6730
|
hint?: string | undefined;
|
|
6680
6731
|
messages?: {
|
|
6681
6732
|
text: string;
|
|
6682
|
-
type: "
|
|
6733
|
+
type: "error" | "success" | "info" | "warning";
|
|
6683
6734
|
id?: number | undefined;
|
|
6684
6735
|
}[] | undefined;
|
|
6685
6736
|
required?: boolean | undefined;
|
|
@@ -6697,7 +6748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6697
6748
|
hint?: string | undefined;
|
|
6698
6749
|
messages?: {
|
|
6699
6750
|
text: string;
|
|
6700
|
-
type: "
|
|
6751
|
+
type: "error" | "success" | "info" | "warning";
|
|
6701
6752
|
id?: number | undefined;
|
|
6702
6753
|
}[] | undefined;
|
|
6703
6754
|
required?: boolean | undefined;
|
|
@@ -6721,7 +6772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6721
6772
|
hint?: string | undefined;
|
|
6722
6773
|
messages?: {
|
|
6723
6774
|
text: string;
|
|
6724
|
-
type: "
|
|
6775
|
+
type: "error" | "success" | "info" | "warning";
|
|
6725
6776
|
id?: number | undefined;
|
|
6726
6777
|
}[] | undefined;
|
|
6727
6778
|
required?: boolean | undefined;
|
|
@@ -6745,7 +6796,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6745
6796
|
hint?: string | undefined;
|
|
6746
6797
|
messages?: {
|
|
6747
6798
|
text: string;
|
|
6748
|
-
type: "
|
|
6799
|
+
type: "error" | "success" | "info" | "warning";
|
|
6749
6800
|
id?: number | undefined;
|
|
6750
6801
|
}[] | undefined;
|
|
6751
6802
|
required?: boolean | undefined;
|
|
@@ -6770,7 +6821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6770
6821
|
hint?: string | undefined;
|
|
6771
6822
|
messages?: {
|
|
6772
6823
|
text: string;
|
|
6773
|
-
type: "
|
|
6824
|
+
type: "error" | "success" | "info" | "warning";
|
|
6774
6825
|
id?: number | undefined;
|
|
6775
6826
|
}[] | undefined;
|
|
6776
6827
|
required?: boolean | undefined;
|
|
@@ -6785,7 +6836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6785
6836
|
hint?: string | undefined;
|
|
6786
6837
|
messages?: {
|
|
6787
6838
|
text: string;
|
|
6788
|
-
type: "
|
|
6839
|
+
type: "error" | "success" | "info" | "warning";
|
|
6789
6840
|
id?: number | undefined;
|
|
6790
6841
|
}[] | undefined;
|
|
6791
6842
|
required?: boolean | undefined;
|
|
@@ -6806,7 +6857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6806
6857
|
hint?: string | undefined;
|
|
6807
6858
|
messages?: {
|
|
6808
6859
|
text: string;
|
|
6809
|
-
type: "
|
|
6860
|
+
type: "error" | "success" | "info" | "warning";
|
|
6810
6861
|
id?: number | undefined;
|
|
6811
6862
|
}[] | undefined;
|
|
6812
6863
|
required?: boolean | undefined;
|
|
@@ -6831,7 +6882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6831
6882
|
hint?: string | undefined;
|
|
6832
6883
|
messages?: {
|
|
6833
6884
|
text: string;
|
|
6834
|
-
type: "
|
|
6885
|
+
type: "error" | "success" | "info" | "warning";
|
|
6835
6886
|
id?: number | undefined;
|
|
6836
6887
|
}[] | undefined;
|
|
6837
6888
|
required?: boolean | undefined;
|
|
@@ -6850,7 +6901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6850
6901
|
hint?: string | undefined;
|
|
6851
6902
|
messages?: {
|
|
6852
6903
|
text: string;
|
|
6853
|
-
type: "
|
|
6904
|
+
type: "error" | "success" | "info" | "warning";
|
|
6854
6905
|
id?: number | undefined;
|
|
6855
6906
|
}[] | undefined;
|
|
6856
6907
|
required?: boolean | undefined;
|
|
@@ -6870,7 +6921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6870
6921
|
hint?: string | undefined;
|
|
6871
6922
|
messages?: {
|
|
6872
6923
|
text: string;
|
|
6873
|
-
type: "
|
|
6924
|
+
type: "error" | "success" | "info" | "warning";
|
|
6874
6925
|
id?: number | undefined;
|
|
6875
6926
|
}[] | undefined;
|
|
6876
6927
|
required?: boolean | undefined;
|
|
@@ -6889,7 +6940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6889
6940
|
hint?: string | undefined;
|
|
6890
6941
|
messages?: {
|
|
6891
6942
|
text: string;
|
|
6892
|
-
type: "
|
|
6943
|
+
type: "error" | "success" | "info" | "warning";
|
|
6893
6944
|
id?: number | undefined;
|
|
6894
6945
|
}[] | undefined;
|
|
6895
6946
|
required?: boolean | undefined;
|
|
@@ -6911,7 +6962,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6911
6962
|
hint?: string | undefined;
|
|
6912
6963
|
messages?: {
|
|
6913
6964
|
text: string;
|
|
6914
|
-
type: "
|
|
6965
|
+
type: "error" | "success" | "info" | "warning";
|
|
6915
6966
|
id?: number | undefined;
|
|
6916
6967
|
}[] | undefined;
|
|
6917
6968
|
required?: boolean | undefined;
|
|
@@ -6933,7 +6984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6933
6984
|
hint?: string | undefined;
|
|
6934
6985
|
messages?: {
|
|
6935
6986
|
text: string;
|
|
6936
|
-
type: "
|
|
6987
|
+
type: "error" | "success" | "info" | "warning";
|
|
6937
6988
|
id?: number | undefined;
|
|
6938
6989
|
}[] | undefined;
|
|
6939
6990
|
required?: boolean | undefined;
|
|
@@ -6952,7 +7003,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6952
7003
|
hint?: string | undefined;
|
|
6953
7004
|
messages?: {
|
|
6954
7005
|
text: string;
|
|
6955
|
-
type: "
|
|
7006
|
+
type: "error" | "success" | "info" | "warning";
|
|
6956
7007
|
id?: number | undefined;
|
|
6957
7008
|
}[] | undefined;
|
|
6958
7009
|
required?: boolean | undefined;
|
|
@@ -6977,7 +7028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6977
7028
|
hint?: string | undefined;
|
|
6978
7029
|
messages?: {
|
|
6979
7030
|
text: string;
|
|
6980
|
-
type: "
|
|
7031
|
+
type: "error" | "success" | "info" | "warning";
|
|
6981
7032
|
id?: number | undefined;
|
|
6982
7033
|
}[] | undefined;
|
|
6983
7034
|
required?: boolean | undefined;
|
|
@@ -6998,7 +7049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6998
7049
|
hint?: string | undefined;
|
|
6999
7050
|
messages?: {
|
|
7000
7051
|
text: string;
|
|
7001
|
-
type: "
|
|
7052
|
+
type: "error" | "success" | "info" | "warning";
|
|
7002
7053
|
id?: number | undefined;
|
|
7003
7054
|
}[] | undefined;
|
|
7004
7055
|
required?: boolean | undefined;
|
|
@@ -7019,7 +7070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7019
7070
|
hint?: string | undefined;
|
|
7020
7071
|
messages?: {
|
|
7021
7072
|
text: string;
|
|
7022
|
-
type: "
|
|
7073
|
+
type: "error" | "success" | "info" | "warning";
|
|
7023
7074
|
id?: number | undefined;
|
|
7024
7075
|
}[] | undefined;
|
|
7025
7076
|
required?: boolean | undefined;
|
|
@@ -7250,7 +7301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7250
7301
|
hint?: string | undefined;
|
|
7251
7302
|
messages?: {
|
|
7252
7303
|
text: string;
|
|
7253
|
-
type: "
|
|
7304
|
+
type: "error" | "success" | "info" | "warning";
|
|
7254
7305
|
id?: number | undefined;
|
|
7255
7306
|
}[] | undefined;
|
|
7256
7307
|
required?: boolean | undefined;
|
|
@@ -7268,7 +7319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7268
7319
|
hint?: string | undefined;
|
|
7269
7320
|
messages?: {
|
|
7270
7321
|
text: string;
|
|
7271
|
-
type: "
|
|
7322
|
+
type: "error" | "success" | "info" | "warning";
|
|
7272
7323
|
id?: number | undefined;
|
|
7273
7324
|
}[] | undefined;
|
|
7274
7325
|
required?: boolean | undefined;
|
|
@@ -7292,7 +7343,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7292
7343
|
hint?: string | undefined;
|
|
7293
7344
|
messages?: {
|
|
7294
7345
|
text: string;
|
|
7295
|
-
type: "
|
|
7346
|
+
type: "error" | "success" | "info" | "warning";
|
|
7296
7347
|
id?: number | undefined;
|
|
7297
7348
|
}[] | undefined;
|
|
7298
7349
|
required?: boolean | undefined;
|
|
@@ -7316,7 +7367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7316
7367
|
hint?: string | undefined;
|
|
7317
7368
|
messages?: {
|
|
7318
7369
|
text: string;
|
|
7319
|
-
type: "
|
|
7370
|
+
type: "error" | "success" | "info" | "warning";
|
|
7320
7371
|
id?: number | undefined;
|
|
7321
7372
|
}[] | undefined;
|
|
7322
7373
|
required?: boolean | undefined;
|
|
@@ -7345,7 +7396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7345
7396
|
hint?: string | undefined;
|
|
7346
7397
|
messages?: {
|
|
7347
7398
|
text: string;
|
|
7348
|
-
type: "
|
|
7399
|
+
type: "error" | "success" | "info" | "warning";
|
|
7349
7400
|
id?: number | undefined;
|
|
7350
7401
|
}[] | undefined;
|
|
7351
7402
|
required?: boolean | undefined;
|
|
@@ -7360,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7360
7411
|
hint?: string | undefined;
|
|
7361
7412
|
messages?: {
|
|
7362
7413
|
text: string;
|
|
7363
|
-
type: "
|
|
7414
|
+
type: "error" | "success" | "info" | "warning";
|
|
7364
7415
|
id?: number | undefined;
|
|
7365
7416
|
}[] | undefined;
|
|
7366
7417
|
required?: boolean | undefined;
|
|
@@ -7381,7 +7432,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7381
7432
|
hint?: string | undefined;
|
|
7382
7433
|
messages?: {
|
|
7383
7434
|
text: string;
|
|
7384
|
-
type: "
|
|
7435
|
+
type: "error" | "success" | "info" | "warning";
|
|
7385
7436
|
id?: number | undefined;
|
|
7386
7437
|
}[] | undefined;
|
|
7387
7438
|
required?: boolean | undefined;
|
|
@@ -7406,7 +7457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7406
7457
|
hint?: string | undefined;
|
|
7407
7458
|
messages?: {
|
|
7408
7459
|
text: string;
|
|
7409
|
-
type: "
|
|
7460
|
+
type: "error" | "success" | "info" | "warning";
|
|
7410
7461
|
id?: number | undefined;
|
|
7411
7462
|
}[] | undefined;
|
|
7412
7463
|
required?: boolean | undefined;
|
|
@@ -7425,7 +7476,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7425
7476
|
hint?: string | undefined;
|
|
7426
7477
|
messages?: {
|
|
7427
7478
|
text: string;
|
|
7428
|
-
type: "
|
|
7479
|
+
type: "error" | "success" | "info" | "warning";
|
|
7429
7480
|
id?: number | undefined;
|
|
7430
7481
|
}[] | undefined;
|
|
7431
7482
|
required?: boolean | undefined;
|
|
@@ -7445,7 +7496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7445
7496
|
hint?: string | undefined;
|
|
7446
7497
|
messages?: {
|
|
7447
7498
|
text: string;
|
|
7448
|
-
type: "
|
|
7499
|
+
type: "error" | "success" | "info" | "warning";
|
|
7449
7500
|
id?: number | undefined;
|
|
7450
7501
|
}[] | undefined;
|
|
7451
7502
|
required?: boolean | undefined;
|
|
@@ -7464,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7464
7515
|
hint?: string | undefined;
|
|
7465
7516
|
messages?: {
|
|
7466
7517
|
text: string;
|
|
7467
|
-
type: "
|
|
7518
|
+
type: "error" | "success" | "info" | "warning";
|
|
7468
7519
|
id?: number | undefined;
|
|
7469
7520
|
}[] | undefined;
|
|
7470
7521
|
required?: boolean | undefined;
|
|
@@ -7486,7 +7537,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7486
7537
|
hint?: string | undefined;
|
|
7487
7538
|
messages?: {
|
|
7488
7539
|
text: string;
|
|
7489
|
-
type: "
|
|
7540
|
+
type: "error" | "success" | "info" | "warning";
|
|
7490
7541
|
id?: number | undefined;
|
|
7491
7542
|
}[] | undefined;
|
|
7492
7543
|
required?: boolean | undefined;
|
|
@@ -7508,7 +7559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7508
7559
|
hint?: string | undefined;
|
|
7509
7560
|
messages?: {
|
|
7510
7561
|
text: string;
|
|
7511
|
-
type: "
|
|
7562
|
+
type: "error" | "success" | "info" | "warning";
|
|
7512
7563
|
id?: number | undefined;
|
|
7513
7564
|
}[] | undefined;
|
|
7514
7565
|
required?: boolean | undefined;
|
|
@@ -7527,7 +7578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7527
7578
|
hint?: string | undefined;
|
|
7528
7579
|
messages?: {
|
|
7529
7580
|
text: string;
|
|
7530
|
-
type: "
|
|
7581
|
+
type: "error" | "success" | "info" | "warning";
|
|
7531
7582
|
id?: number | undefined;
|
|
7532
7583
|
}[] | undefined;
|
|
7533
7584
|
required?: boolean | undefined;
|
|
@@ -7552,7 +7603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7552
7603
|
hint?: string | undefined;
|
|
7553
7604
|
messages?: {
|
|
7554
7605
|
text: string;
|
|
7555
|
-
type: "
|
|
7606
|
+
type: "error" | "success" | "info" | "warning";
|
|
7556
7607
|
id?: number | undefined;
|
|
7557
7608
|
}[] | undefined;
|
|
7558
7609
|
required?: boolean | undefined;
|
|
@@ -7573,7 +7624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7573
7624
|
hint?: string | undefined;
|
|
7574
7625
|
messages?: {
|
|
7575
7626
|
text: string;
|
|
7576
|
-
type: "
|
|
7627
|
+
type: "error" | "success" | "info" | "warning";
|
|
7577
7628
|
id?: number | undefined;
|
|
7578
7629
|
}[] | undefined;
|
|
7579
7630
|
required?: boolean | undefined;
|
|
@@ -7594,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7594
7645
|
hint?: string | undefined;
|
|
7595
7646
|
messages?: {
|
|
7596
7647
|
text: string;
|
|
7597
|
-
type: "
|
|
7648
|
+
type: "error" | "success" | "info" | "warning";
|
|
7598
7649
|
id?: number | undefined;
|
|
7599
7650
|
}[] | undefined;
|
|
7600
7651
|
required?: boolean | undefined;
|
|
@@ -7827,7 +7878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7827
7878
|
hint?: string | undefined;
|
|
7828
7879
|
messages?: {
|
|
7829
7880
|
text: string;
|
|
7830
|
-
type: "
|
|
7881
|
+
type: "error" | "success" | "info" | "warning";
|
|
7831
7882
|
id?: number | undefined;
|
|
7832
7883
|
}[] | undefined;
|
|
7833
7884
|
required?: boolean | undefined;
|
|
@@ -7845,7 +7896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7845
7896
|
hint?: string | undefined;
|
|
7846
7897
|
messages?: {
|
|
7847
7898
|
text: string;
|
|
7848
|
-
type: "
|
|
7899
|
+
type: "error" | "success" | "info" | "warning";
|
|
7849
7900
|
id?: number | undefined;
|
|
7850
7901
|
}[] | undefined;
|
|
7851
7902
|
required?: boolean | undefined;
|
|
@@ -7869,7 +7920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7869
7920
|
hint?: string | undefined;
|
|
7870
7921
|
messages?: {
|
|
7871
7922
|
text: string;
|
|
7872
|
-
type: "
|
|
7923
|
+
type: "error" | "success" | "info" | "warning";
|
|
7873
7924
|
id?: number | undefined;
|
|
7874
7925
|
}[] | undefined;
|
|
7875
7926
|
required?: boolean | undefined;
|
|
@@ -7893,7 +7944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7893
7944
|
hint?: string | undefined;
|
|
7894
7945
|
messages?: {
|
|
7895
7946
|
text: string;
|
|
7896
|
-
type: "
|
|
7947
|
+
type: "error" | "success" | "info" | "warning";
|
|
7897
7948
|
id?: number | undefined;
|
|
7898
7949
|
}[] | undefined;
|
|
7899
7950
|
required?: boolean | undefined;
|
|
@@ -7918,7 +7969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7918
7969
|
hint?: string | undefined;
|
|
7919
7970
|
messages?: {
|
|
7920
7971
|
text: string;
|
|
7921
|
-
type: "
|
|
7972
|
+
type: "error" | "success" | "info" | "warning";
|
|
7922
7973
|
id?: number | undefined;
|
|
7923
7974
|
}[] | undefined;
|
|
7924
7975
|
required?: boolean | undefined;
|
|
@@ -7933,7 +7984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7933
7984
|
hint?: string | undefined;
|
|
7934
7985
|
messages?: {
|
|
7935
7986
|
text: string;
|
|
7936
|
-
type: "
|
|
7987
|
+
type: "error" | "success" | "info" | "warning";
|
|
7937
7988
|
id?: number | undefined;
|
|
7938
7989
|
}[] | undefined;
|
|
7939
7990
|
required?: boolean | undefined;
|
|
@@ -7954,7 +8005,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7954
8005
|
hint?: string | undefined;
|
|
7955
8006
|
messages?: {
|
|
7956
8007
|
text: string;
|
|
7957
|
-
type: "
|
|
8008
|
+
type: "error" | "success" | "info" | "warning";
|
|
7958
8009
|
id?: number | undefined;
|
|
7959
8010
|
}[] | undefined;
|
|
7960
8011
|
required?: boolean | undefined;
|
|
@@ -7979,7 +8030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7979
8030
|
hint?: string | undefined;
|
|
7980
8031
|
messages?: {
|
|
7981
8032
|
text: string;
|
|
7982
|
-
type: "
|
|
8033
|
+
type: "error" | "success" | "info" | "warning";
|
|
7983
8034
|
id?: number | undefined;
|
|
7984
8035
|
}[] | undefined;
|
|
7985
8036
|
required?: boolean | undefined;
|
|
@@ -7998,7 +8049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7998
8049
|
hint?: string | undefined;
|
|
7999
8050
|
messages?: {
|
|
8000
8051
|
text: string;
|
|
8001
|
-
type: "
|
|
8052
|
+
type: "error" | "success" | "info" | "warning";
|
|
8002
8053
|
id?: number | undefined;
|
|
8003
8054
|
}[] | undefined;
|
|
8004
8055
|
required?: boolean | undefined;
|
|
@@ -8018,7 +8069,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8018
8069
|
hint?: string | undefined;
|
|
8019
8070
|
messages?: {
|
|
8020
8071
|
text: string;
|
|
8021
|
-
type: "
|
|
8072
|
+
type: "error" | "success" | "info" | "warning";
|
|
8022
8073
|
id?: number | undefined;
|
|
8023
8074
|
}[] | undefined;
|
|
8024
8075
|
required?: boolean | undefined;
|
|
@@ -8037,7 +8088,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8037
8088
|
hint?: string | undefined;
|
|
8038
8089
|
messages?: {
|
|
8039
8090
|
text: string;
|
|
8040
|
-
type: "
|
|
8091
|
+
type: "error" | "success" | "info" | "warning";
|
|
8041
8092
|
id?: number | undefined;
|
|
8042
8093
|
}[] | undefined;
|
|
8043
8094
|
required?: boolean | undefined;
|
|
@@ -8059,7 +8110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8059
8110
|
hint?: string | undefined;
|
|
8060
8111
|
messages?: {
|
|
8061
8112
|
text: string;
|
|
8062
|
-
type: "
|
|
8113
|
+
type: "error" | "success" | "info" | "warning";
|
|
8063
8114
|
id?: number | undefined;
|
|
8064
8115
|
}[] | undefined;
|
|
8065
8116
|
required?: boolean | undefined;
|
|
@@ -8081,7 +8132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8081
8132
|
hint?: string | undefined;
|
|
8082
8133
|
messages?: {
|
|
8083
8134
|
text: string;
|
|
8084
|
-
type: "
|
|
8135
|
+
type: "error" | "success" | "info" | "warning";
|
|
8085
8136
|
id?: number | undefined;
|
|
8086
8137
|
}[] | undefined;
|
|
8087
8138
|
required?: boolean | undefined;
|
|
@@ -8100,7 +8151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8100
8151
|
hint?: string | undefined;
|
|
8101
8152
|
messages?: {
|
|
8102
8153
|
text: string;
|
|
8103
|
-
type: "
|
|
8154
|
+
type: "error" | "success" | "info" | "warning";
|
|
8104
8155
|
id?: number | undefined;
|
|
8105
8156
|
}[] | undefined;
|
|
8106
8157
|
required?: boolean | undefined;
|
|
@@ -8125,7 +8176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8125
8176
|
hint?: string | undefined;
|
|
8126
8177
|
messages?: {
|
|
8127
8178
|
text: string;
|
|
8128
|
-
type: "
|
|
8179
|
+
type: "error" | "success" | "info" | "warning";
|
|
8129
8180
|
id?: number | undefined;
|
|
8130
8181
|
}[] | undefined;
|
|
8131
8182
|
required?: boolean | undefined;
|
|
@@ -8146,7 +8197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8146
8197
|
hint?: string | undefined;
|
|
8147
8198
|
messages?: {
|
|
8148
8199
|
text: string;
|
|
8149
|
-
type: "
|
|
8200
|
+
type: "error" | "success" | "info" | "warning";
|
|
8150
8201
|
id?: number | undefined;
|
|
8151
8202
|
}[] | undefined;
|
|
8152
8203
|
required?: boolean | undefined;
|
|
@@ -8167,7 +8218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8167
8218
|
hint?: string | undefined;
|
|
8168
8219
|
messages?: {
|
|
8169
8220
|
text: string;
|
|
8170
|
-
type: "
|
|
8221
|
+
type: "error" | "success" | "info" | "warning";
|
|
8171
8222
|
id?: number | undefined;
|
|
8172
8223
|
}[] | undefined;
|
|
8173
8224
|
required?: boolean | undefined;
|
|
@@ -8398,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8398
8449
|
hint?: string | undefined;
|
|
8399
8450
|
messages?: {
|
|
8400
8451
|
text: string;
|
|
8401
|
-
type: "
|
|
8452
|
+
type: "error" | "success" | "info" | "warning";
|
|
8402
8453
|
id?: number | undefined;
|
|
8403
8454
|
}[] | undefined;
|
|
8404
8455
|
required?: boolean | undefined;
|
|
@@ -8416,7 +8467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8416
8467
|
hint?: string | undefined;
|
|
8417
8468
|
messages?: {
|
|
8418
8469
|
text: string;
|
|
8419
|
-
type: "
|
|
8470
|
+
type: "error" | "success" | "info" | "warning";
|
|
8420
8471
|
id?: number | undefined;
|
|
8421
8472
|
}[] | undefined;
|
|
8422
8473
|
required?: boolean | undefined;
|
|
@@ -8440,7 +8491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8440
8491
|
hint?: string | undefined;
|
|
8441
8492
|
messages?: {
|
|
8442
8493
|
text: string;
|
|
8443
|
-
type: "
|
|
8494
|
+
type: "error" | "success" | "info" | "warning";
|
|
8444
8495
|
id?: number | undefined;
|
|
8445
8496
|
}[] | undefined;
|
|
8446
8497
|
required?: boolean | undefined;
|
|
@@ -8464,7 +8515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8464
8515
|
hint?: string | undefined;
|
|
8465
8516
|
messages?: {
|
|
8466
8517
|
text: string;
|
|
8467
|
-
type: "
|
|
8518
|
+
type: "error" | "success" | "info" | "warning";
|
|
8468
8519
|
id?: number | undefined;
|
|
8469
8520
|
}[] | undefined;
|
|
8470
8521
|
required?: boolean | undefined;
|
|
@@ -8493,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8493
8544
|
hint?: string | undefined;
|
|
8494
8545
|
messages?: {
|
|
8495
8546
|
text: string;
|
|
8496
|
-
type: "
|
|
8547
|
+
type: "error" | "success" | "info" | "warning";
|
|
8497
8548
|
id?: number | undefined;
|
|
8498
8549
|
}[] | undefined;
|
|
8499
8550
|
required?: boolean | undefined;
|
|
@@ -8508,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8508
8559
|
hint?: string | undefined;
|
|
8509
8560
|
messages?: {
|
|
8510
8561
|
text: string;
|
|
8511
|
-
type: "
|
|
8562
|
+
type: "error" | "success" | "info" | "warning";
|
|
8512
8563
|
id?: number | undefined;
|
|
8513
8564
|
}[] | undefined;
|
|
8514
8565
|
required?: boolean | undefined;
|
|
@@ -8529,7 +8580,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8529
8580
|
hint?: string | undefined;
|
|
8530
8581
|
messages?: {
|
|
8531
8582
|
text: string;
|
|
8532
|
-
type: "
|
|
8583
|
+
type: "error" | "success" | "info" | "warning";
|
|
8533
8584
|
id?: number | undefined;
|
|
8534
8585
|
}[] | undefined;
|
|
8535
8586
|
required?: boolean | undefined;
|
|
@@ -8554,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8554
8605
|
hint?: string | undefined;
|
|
8555
8606
|
messages?: {
|
|
8556
8607
|
text: string;
|
|
8557
|
-
type: "
|
|
8608
|
+
type: "error" | "success" | "info" | "warning";
|
|
8558
8609
|
id?: number | undefined;
|
|
8559
8610
|
}[] | undefined;
|
|
8560
8611
|
required?: boolean | undefined;
|
|
@@ -8573,7 +8624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8573
8624
|
hint?: string | undefined;
|
|
8574
8625
|
messages?: {
|
|
8575
8626
|
text: string;
|
|
8576
|
-
type: "
|
|
8627
|
+
type: "error" | "success" | "info" | "warning";
|
|
8577
8628
|
id?: number | undefined;
|
|
8578
8629
|
}[] | undefined;
|
|
8579
8630
|
required?: boolean | undefined;
|
|
@@ -8593,7 +8644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8593
8644
|
hint?: string | undefined;
|
|
8594
8645
|
messages?: {
|
|
8595
8646
|
text: string;
|
|
8596
|
-
type: "
|
|
8647
|
+
type: "error" | "success" | "info" | "warning";
|
|
8597
8648
|
id?: number | undefined;
|
|
8598
8649
|
}[] | undefined;
|
|
8599
8650
|
required?: boolean | undefined;
|
|
@@ -8612,7 +8663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8612
8663
|
hint?: string | undefined;
|
|
8613
8664
|
messages?: {
|
|
8614
8665
|
text: string;
|
|
8615
|
-
type: "
|
|
8666
|
+
type: "error" | "success" | "info" | "warning";
|
|
8616
8667
|
id?: number | undefined;
|
|
8617
8668
|
}[] | undefined;
|
|
8618
8669
|
required?: boolean | undefined;
|
|
@@ -8634,7 +8685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8634
8685
|
hint?: string | undefined;
|
|
8635
8686
|
messages?: {
|
|
8636
8687
|
text: string;
|
|
8637
|
-
type: "
|
|
8688
|
+
type: "error" | "success" | "info" | "warning";
|
|
8638
8689
|
id?: number | undefined;
|
|
8639
8690
|
}[] | undefined;
|
|
8640
8691
|
required?: boolean | undefined;
|
|
@@ -8656,7 +8707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8656
8707
|
hint?: string | undefined;
|
|
8657
8708
|
messages?: {
|
|
8658
8709
|
text: string;
|
|
8659
|
-
type: "
|
|
8710
|
+
type: "error" | "success" | "info" | "warning";
|
|
8660
8711
|
id?: number | undefined;
|
|
8661
8712
|
}[] | undefined;
|
|
8662
8713
|
required?: boolean | undefined;
|
|
@@ -8675,7 +8726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8675
8726
|
hint?: string | undefined;
|
|
8676
8727
|
messages?: {
|
|
8677
8728
|
text: string;
|
|
8678
|
-
type: "
|
|
8729
|
+
type: "error" | "success" | "info" | "warning";
|
|
8679
8730
|
id?: number | undefined;
|
|
8680
8731
|
}[] | undefined;
|
|
8681
8732
|
required?: boolean | undefined;
|
|
@@ -8700,7 +8751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8700
8751
|
hint?: string | undefined;
|
|
8701
8752
|
messages?: {
|
|
8702
8753
|
text: string;
|
|
8703
|
-
type: "
|
|
8754
|
+
type: "error" | "success" | "info" | "warning";
|
|
8704
8755
|
id?: number | undefined;
|
|
8705
8756
|
}[] | undefined;
|
|
8706
8757
|
required?: boolean | undefined;
|
|
@@ -8721,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8721
8772
|
hint?: string | undefined;
|
|
8722
8773
|
messages?: {
|
|
8723
8774
|
text: string;
|
|
8724
|
-
type: "
|
|
8775
|
+
type: "error" | "success" | "info" | "warning";
|
|
8725
8776
|
id?: number | undefined;
|
|
8726
8777
|
}[] | undefined;
|
|
8727
8778
|
required?: boolean | undefined;
|
|
@@ -8742,7 +8793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8742
8793
|
hint?: string | undefined;
|
|
8743
8794
|
messages?: {
|
|
8744
8795
|
text: string;
|
|
8745
|
-
type: "
|
|
8796
|
+
type: "error" | "success" | "info" | "warning";
|
|
8746
8797
|
id?: number | undefined;
|
|
8747
8798
|
}[] | undefined;
|
|
8748
8799
|
required?: boolean | undefined;
|
|
@@ -8972,7 +9023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8972
9023
|
};
|
|
8973
9024
|
};
|
|
8974
9025
|
output: {
|
|
8975
|
-
prompt: "
|
|
9026
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
8976
9027
|
language: string;
|
|
8977
9028
|
}[];
|
|
8978
9029
|
outputFormat: "json";
|
|
@@ -9010,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9010
9061
|
$get: {
|
|
9011
9062
|
input: {
|
|
9012
9063
|
param: {
|
|
9013
|
-
prompt: "
|
|
9064
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9014
9065
|
language: string;
|
|
9015
9066
|
};
|
|
9016
9067
|
} & {
|
|
@@ -9032,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9032
9083
|
$put: {
|
|
9033
9084
|
input: {
|
|
9034
9085
|
param: {
|
|
9035
|
-
prompt: "
|
|
9086
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9036
9087
|
language: string;
|
|
9037
9088
|
};
|
|
9038
9089
|
} & {
|
|
@@ -9056,7 +9107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9056
9107
|
$delete: {
|
|
9057
9108
|
input: {
|
|
9058
9109
|
param: {
|
|
9059
|
-
prompt: "
|
|
9110
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9060
9111
|
language: string;
|
|
9061
9112
|
};
|
|
9062
9113
|
} & {
|
|
@@ -9148,7 +9199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9148
9199
|
active?: boolean | undefined;
|
|
9149
9200
|
} | undefined;
|
|
9150
9201
|
signup?: {
|
|
9151
|
-
status?: "optional" | "
|
|
9202
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9152
9203
|
verification?: {
|
|
9153
9204
|
active?: boolean | undefined;
|
|
9154
9205
|
} | undefined;
|
|
@@ -9165,7 +9216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9165
9216
|
active?: boolean | undefined;
|
|
9166
9217
|
} | undefined;
|
|
9167
9218
|
signup?: {
|
|
9168
|
-
status?: "optional" | "
|
|
9219
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9169
9220
|
} | undefined;
|
|
9170
9221
|
validation?: {
|
|
9171
9222
|
max_length?: number | undefined;
|
|
@@ -9182,7 +9233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9182
9233
|
active?: boolean | undefined;
|
|
9183
9234
|
} | undefined;
|
|
9184
9235
|
signup?: {
|
|
9185
|
-
status?: "optional" | "
|
|
9236
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9186
9237
|
} | undefined;
|
|
9187
9238
|
} | undefined;
|
|
9188
9239
|
} | undefined;
|
|
@@ -9282,7 +9333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9282
9333
|
active?: boolean | undefined;
|
|
9283
9334
|
} | undefined;
|
|
9284
9335
|
signup?: {
|
|
9285
|
-
status?: "optional" | "
|
|
9336
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9286
9337
|
verification?: {
|
|
9287
9338
|
active?: boolean | undefined;
|
|
9288
9339
|
} | undefined;
|
|
@@ -9299,7 +9350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9299
9350
|
active?: boolean | undefined;
|
|
9300
9351
|
} | undefined;
|
|
9301
9352
|
signup?: {
|
|
9302
|
-
status?: "optional" | "
|
|
9353
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9303
9354
|
} | undefined;
|
|
9304
9355
|
validation?: {
|
|
9305
9356
|
max_length?: number | undefined;
|
|
@@ -9316,7 +9367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9316
9367
|
active?: boolean | undefined;
|
|
9317
9368
|
} | undefined;
|
|
9318
9369
|
signup?: {
|
|
9319
|
-
status?: "optional" | "
|
|
9370
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9320
9371
|
} | undefined;
|
|
9321
9372
|
} | undefined;
|
|
9322
9373
|
} | undefined;
|
|
@@ -9431,7 +9482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9431
9482
|
active?: boolean | undefined;
|
|
9432
9483
|
} | undefined;
|
|
9433
9484
|
signup?: {
|
|
9434
|
-
status?: "optional" | "
|
|
9485
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9435
9486
|
verification?: {
|
|
9436
9487
|
active?: boolean | undefined;
|
|
9437
9488
|
} | undefined;
|
|
@@ -9448,7 +9499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9448
9499
|
active?: boolean | undefined;
|
|
9449
9500
|
} | undefined;
|
|
9450
9501
|
signup?: {
|
|
9451
|
-
status?: "optional" | "
|
|
9502
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9452
9503
|
} | undefined;
|
|
9453
9504
|
validation?: {
|
|
9454
9505
|
max_length?: number | undefined;
|
|
@@ -9465,7 +9516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9465
9516
|
active?: boolean | undefined;
|
|
9466
9517
|
} | undefined;
|
|
9467
9518
|
signup?: {
|
|
9468
|
-
status?: "optional" | "
|
|
9519
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9469
9520
|
} | undefined;
|
|
9470
9521
|
} | undefined;
|
|
9471
9522
|
} | undefined;
|
|
@@ -9610,7 +9661,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9610
9661
|
active?: boolean | undefined;
|
|
9611
9662
|
} | undefined;
|
|
9612
9663
|
signup?: {
|
|
9613
|
-
status?: "optional" | "
|
|
9664
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9614
9665
|
verification?: {
|
|
9615
9666
|
active?: boolean | undefined;
|
|
9616
9667
|
} | undefined;
|
|
@@ -9627,7 +9678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9627
9678
|
active?: boolean | undefined;
|
|
9628
9679
|
} | undefined;
|
|
9629
9680
|
signup?: {
|
|
9630
|
-
status?: "optional" | "
|
|
9681
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9631
9682
|
} | undefined;
|
|
9632
9683
|
validation?: {
|
|
9633
9684
|
max_length?: number | undefined;
|
|
@@ -9644,7 +9695,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9644
9695
|
active?: boolean | undefined;
|
|
9645
9696
|
} | undefined;
|
|
9646
9697
|
signup?: {
|
|
9647
|
-
status?: "optional" | "
|
|
9698
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9648
9699
|
} | undefined;
|
|
9649
9700
|
} | undefined;
|
|
9650
9701
|
} | undefined;
|
|
@@ -9768,7 +9819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9768
9819
|
active?: boolean | undefined;
|
|
9769
9820
|
} | undefined;
|
|
9770
9821
|
signup?: {
|
|
9771
|
-
status?: "optional" | "
|
|
9822
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9772
9823
|
verification?: {
|
|
9773
9824
|
active?: boolean | undefined;
|
|
9774
9825
|
} | undefined;
|
|
@@ -9785,7 +9836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9785
9836
|
active?: boolean | undefined;
|
|
9786
9837
|
} | undefined;
|
|
9787
9838
|
signup?: {
|
|
9788
|
-
status?: "optional" | "
|
|
9839
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9789
9840
|
} | undefined;
|
|
9790
9841
|
validation?: {
|
|
9791
9842
|
max_length?: number | undefined;
|
|
@@ -9802,7 +9853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9802
9853
|
active?: boolean | undefined;
|
|
9803
9854
|
} | undefined;
|
|
9804
9855
|
signup?: {
|
|
9805
|
-
status?: "optional" | "
|
|
9856
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
9806
9857
|
} | undefined;
|
|
9807
9858
|
} | undefined;
|
|
9808
9859
|
} | undefined;
|
|
@@ -9918,7 +9969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9918
9969
|
};
|
|
9919
9970
|
} | {
|
|
9920
9971
|
mode: "inline";
|
|
9921
|
-
status: "
|
|
9972
|
+
status: "error" | "success";
|
|
9922
9973
|
connection_id: string;
|
|
9923
9974
|
connection_name: string;
|
|
9924
9975
|
strategy: string;
|
|
@@ -10497,7 +10548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10497
10548
|
log_type: string;
|
|
10498
10549
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10499
10550
|
actor: {
|
|
10500
|
-
type: "
|
|
10551
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10501
10552
|
id?: string | undefined;
|
|
10502
10553
|
email?: string | undefined;
|
|
10503
10554
|
org_id?: string | undefined;
|
|
@@ -10805,7 +10856,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10805
10856
|
created_at: string;
|
|
10806
10857
|
updated_at: string;
|
|
10807
10858
|
name: string;
|
|
10808
|
-
provider: "auth0" | "
|
|
10859
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10809
10860
|
connection: string;
|
|
10810
10861
|
enabled: boolean;
|
|
10811
10862
|
credentials: {
|
|
@@ -10837,7 +10888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10837
10888
|
created_at: string;
|
|
10838
10889
|
updated_at: string;
|
|
10839
10890
|
name: string;
|
|
10840
|
-
provider: "auth0" | "
|
|
10891
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10841
10892
|
connection: string;
|
|
10842
10893
|
enabled: boolean;
|
|
10843
10894
|
credentials: {
|
|
@@ -10863,7 +10914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10863
10914
|
} & {
|
|
10864
10915
|
json: {
|
|
10865
10916
|
name: string;
|
|
10866
|
-
provider: "auth0" | "
|
|
10917
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10867
10918
|
connection: string;
|
|
10868
10919
|
credentials: {
|
|
10869
10920
|
domain: string;
|
|
@@ -10880,7 +10931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10880
10931
|
created_at: string;
|
|
10881
10932
|
updated_at: string;
|
|
10882
10933
|
name: string;
|
|
10883
|
-
provider: "auth0" | "
|
|
10934
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10884
10935
|
connection: string;
|
|
10885
10936
|
enabled: boolean;
|
|
10886
10937
|
credentials: {
|
|
@@ -10911,7 +10962,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10911
10962
|
json: {
|
|
10912
10963
|
id?: string | undefined;
|
|
10913
10964
|
name?: string | undefined;
|
|
10914
|
-
provider?: "auth0" | "
|
|
10965
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
10915
10966
|
connection?: string | undefined;
|
|
10916
10967
|
enabled?: boolean | undefined;
|
|
10917
10968
|
credentials?: {
|
|
@@ -10927,7 +10978,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10927
10978
|
created_at: string;
|
|
10928
10979
|
updated_at: string;
|
|
10929
10980
|
name: string;
|
|
10930
|
-
provider: "auth0" | "
|
|
10981
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10931
10982
|
connection: string;
|
|
10932
10983
|
enabled: boolean;
|
|
10933
10984
|
credentials: {
|
|
@@ -11145,7 +11196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11145
11196
|
};
|
|
11146
11197
|
};
|
|
11147
11198
|
output: {
|
|
11148
|
-
type: "
|
|
11199
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11149
11200
|
date: string;
|
|
11150
11201
|
isMobile: boolean;
|
|
11151
11202
|
log_id: string;
|
|
@@ -11184,7 +11235,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11184
11235
|
limit: number;
|
|
11185
11236
|
length: number;
|
|
11186
11237
|
logs: {
|
|
11187
|
-
type: "
|
|
11238
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11188
11239
|
date: string;
|
|
11189
11240
|
isMobile: boolean;
|
|
11190
11241
|
log_id: string;
|
|
@@ -11238,7 +11289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11238
11289
|
};
|
|
11239
11290
|
};
|
|
11240
11291
|
output: {
|
|
11241
|
-
type: "
|
|
11292
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11242
11293
|
date: string;
|
|
11243
11294
|
isMobile: boolean;
|
|
11244
11295
|
log_id: string;
|
|
@@ -11552,7 +11603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11552
11603
|
addons?: {
|
|
11553
11604
|
[x: string]: any;
|
|
11554
11605
|
} | undefined;
|
|
11555
|
-
token_endpoint_auth_method?: "
|
|
11606
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11556
11607
|
client_metadata?: {
|
|
11557
11608
|
[x: string]: string;
|
|
11558
11609
|
} | undefined;
|
|
@@ -11648,7 +11699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11648
11699
|
addons?: {
|
|
11649
11700
|
[x: string]: any;
|
|
11650
11701
|
} | undefined;
|
|
11651
|
-
token_endpoint_auth_method?: "
|
|
11702
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11652
11703
|
client_metadata?: {
|
|
11653
11704
|
[x: string]: string;
|
|
11654
11705
|
} | undefined;
|
|
@@ -11759,7 +11810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11759
11810
|
addons?: {
|
|
11760
11811
|
[x: string]: any;
|
|
11761
11812
|
} | undefined;
|
|
11762
|
-
token_endpoint_auth_method?: "
|
|
11813
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11763
11814
|
client_metadata?: {
|
|
11764
11815
|
[x: string]: string;
|
|
11765
11816
|
} | undefined;
|
|
@@ -11869,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11869
11920
|
custom_login_page_preview?: string | undefined;
|
|
11870
11921
|
form_template?: string | undefined;
|
|
11871
11922
|
addons?: Record<string, any> | undefined;
|
|
11872
|
-
token_endpoint_auth_method?: "
|
|
11923
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11873
11924
|
client_metadata?: Record<string, string> | undefined;
|
|
11874
11925
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11875
11926
|
mobile?: Record<string, any> | undefined;
|
|
@@ -11949,7 +12000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11949
12000
|
addons?: {
|
|
11950
12001
|
[x: string]: any;
|
|
11951
12002
|
} | undefined;
|
|
11952
|
-
token_endpoint_auth_method?: "
|
|
12003
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11953
12004
|
client_metadata?: {
|
|
11954
12005
|
[x: string]: string;
|
|
11955
12006
|
} | undefined;
|
|
@@ -12038,7 +12089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12038
12089
|
custom_login_page_preview?: string | undefined;
|
|
12039
12090
|
form_template?: string | undefined;
|
|
12040
12091
|
addons?: Record<string, any> | undefined;
|
|
12041
|
-
token_endpoint_auth_method?: "
|
|
12092
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12042
12093
|
client_metadata?: Record<string, string> | undefined;
|
|
12043
12094
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12044
12095
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12118,7 +12169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12118
12169
|
addons?: {
|
|
12119
12170
|
[x: string]: any;
|
|
12120
12171
|
} | undefined;
|
|
12121
|
-
token_endpoint_auth_method?: "
|
|
12172
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12122
12173
|
client_metadata?: {
|
|
12123
12174
|
[x: string]: string;
|
|
12124
12175
|
} | undefined;
|
|
@@ -12240,7 +12291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12240
12291
|
active?: boolean | undefined;
|
|
12241
12292
|
} | undefined;
|
|
12242
12293
|
signup?: {
|
|
12243
|
-
status?: "optional" | "
|
|
12294
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
12244
12295
|
verification?: {
|
|
12245
12296
|
active?: boolean | undefined;
|
|
12246
12297
|
} | undefined;
|
|
@@ -12257,7 +12308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12257
12308
|
active?: boolean | undefined;
|
|
12258
12309
|
} | undefined;
|
|
12259
12310
|
signup?: {
|
|
12260
|
-
status?: "optional" | "
|
|
12311
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
12261
12312
|
} | undefined;
|
|
12262
12313
|
validation?: {
|
|
12263
12314
|
max_length?: number | undefined;
|
|
@@ -12274,7 +12325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12274
12325
|
active?: boolean | undefined;
|
|
12275
12326
|
} | undefined;
|
|
12276
12327
|
signup?: {
|
|
12277
|
-
status?: "optional" | "
|
|
12328
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
12278
12329
|
} | undefined;
|
|
12279
12330
|
} | undefined;
|
|
12280
12331
|
} | undefined;
|
|
@@ -12394,7 +12445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12394
12445
|
active?: boolean | undefined;
|
|
12395
12446
|
} | undefined;
|
|
12396
12447
|
signup?: {
|
|
12397
|
-
status?: "optional" | "
|
|
12448
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
12398
12449
|
verification?: {
|
|
12399
12450
|
active?: boolean | undefined;
|
|
12400
12451
|
} | undefined;
|
|
@@ -12411,7 +12462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12411
12462
|
active?: boolean | undefined;
|
|
12412
12463
|
} | undefined;
|
|
12413
12464
|
signup?: {
|
|
12414
|
-
status?: "optional" | "
|
|
12465
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
12415
12466
|
} | undefined;
|
|
12416
12467
|
validation?: {
|
|
12417
12468
|
max_length?: number | undefined;
|
|
@@ -12428,7 +12479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12428
12479
|
active?: boolean | undefined;
|
|
12429
12480
|
} | undefined;
|
|
12430
12481
|
signup?: {
|
|
12431
|
-
status?: "optional" | "
|
|
12482
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
12432
12483
|
} | undefined;
|
|
12433
12484
|
} | undefined;
|
|
12434
12485
|
} | undefined;
|
|
@@ -13382,7 +13433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13382
13433
|
};
|
|
13383
13434
|
};
|
|
13384
13435
|
output: {
|
|
13385
|
-
type: "
|
|
13436
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13386
13437
|
date: string;
|
|
13387
13438
|
isMobile: boolean;
|
|
13388
13439
|
log_id: string;
|
|
@@ -13421,7 +13472,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13421
13472
|
limit: number;
|
|
13422
13473
|
length: number;
|
|
13423
13474
|
logs: {
|
|
13424
|
-
type: "
|
|
13475
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13425
13476
|
date: string;
|
|
13426
13477
|
isMobile: boolean;
|
|
13427
13478
|
log_id: string;
|
|
@@ -13736,7 +13787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13736
13787
|
};
|
|
13737
13788
|
} & {
|
|
13738
13789
|
json: {
|
|
13739
|
-
template: "
|
|
13790
|
+
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";
|
|
13740
13791
|
body: string;
|
|
13741
13792
|
from: string;
|
|
13742
13793
|
subject: string;
|
|
@@ -13757,7 +13808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13757
13808
|
};
|
|
13758
13809
|
} & {
|
|
13759
13810
|
json: {
|
|
13760
|
-
template: "
|
|
13811
|
+
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";
|
|
13761
13812
|
body: string;
|
|
13762
13813
|
from: string;
|
|
13763
13814
|
subject: string;
|
|
@@ -13769,7 +13820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13769
13820
|
};
|
|
13770
13821
|
};
|
|
13771
13822
|
output: {
|
|
13772
|
-
template: "
|
|
13823
|
+
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";
|
|
13773
13824
|
body: string;
|
|
13774
13825
|
from: string;
|
|
13775
13826
|
subject: string;
|
|
@@ -13788,7 +13839,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13788
13839
|
$get: {
|
|
13789
13840
|
input: {
|
|
13790
13841
|
param: {
|
|
13791
|
-
templateName: "
|
|
13842
|
+
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";
|
|
13792
13843
|
};
|
|
13793
13844
|
} & {
|
|
13794
13845
|
header: {
|
|
@@ -13801,7 +13852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13801
13852
|
} | {
|
|
13802
13853
|
input: {
|
|
13803
13854
|
param: {
|
|
13804
|
-
templateName: "
|
|
13855
|
+
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";
|
|
13805
13856
|
};
|
|
13806
13857
|
} & {
|
|
13807
13858
|
header: {
|
|
@@ -13809,7 +13860,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13809
13860
|
};
|
|
13810
13861
|
};
|
|
13811
13862
|
output: {
|
|
13812
|
-
template: "
|
|
13863
|
+
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
13864
|
body: string;
|
|
13814
13865
|
from: string;
|
|
13815
13866
|
subject: string;
|
|
@@ -13828,7 +13879,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13828
13879
|
$put: {
|
|
13829
13880
|
input: {
|
|
13830
13881
|
param: {
|
|
13831
|
-
templateName: "
|
|
13882
|
+
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";
|
|
13832
13883
|
};
|
|
13833
13884
|
} & {
|
|
13834
13885
|
header: {
|
|
@@ -13836,7 +13887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13836
13887
|
};
|
|
13837
13888
|
} & {
|
|
13838
13889
|
json: {
|
|
13839
|
-
template: "
|
|
13890
|
+
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";
|
|
13840
13891
|
body: string;
|
|
13841
13892
|
from: string;
|
|
13842
13893
|
subject: string;
|
|
@@ -13848,7 +13899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13848
13899
|
};
|
|
13849
13900
|
};
|
|
13850
13901
|
output: {
|
|
13851
|
-
template: "
|
|
13902
|
+
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";
|
|
13852
13903
|
body: string;
|
|
13853
13904
|
from: string;
|
|
13854
13905
|
subject: string;
|
|
@@ -13867,7 +13918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13867
13918
|
$patch: {
|
|
13868
13919
|
input: {
|
|
13869
13920
|
param: {
|
|
13870
|
-
templateName: "
|
|
13921
|
+
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";
|
|
13871
13922
|
};
|
|
13872
13923
|
} & {
|
|
13873
13924
|
header: {
|
|
@@ -13875,7 +13926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13875
13926
|
};
|
|
13876
13927
|
} & {
|
|
13877
13928
|
json: {
|
|
13878
|
-
template?: "
|
|
13929
|
+
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;
|
|
13879
13930
|
body?: string | undefined;
|
|
13880
13931
|
from?: string | undefined;
|
|
13881
13932
|
subject?: string | undefined;
|
|
@@ -13892,7 +13943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13892
13943
|
} | {
|
|
13893
13944
|
input: {
|
|
13894
13945
|
param: {
|
|
13895
|
-
templateName: "
|
|
13946
|
+
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";
|
|
13896
13947
|
};
|
|
13897
13948
|
} & {
|
|
13898
13949
|
header: {
|
|
@@ -13900,7 +13951,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13900
13951
|
};
|
|
13901
13952
|
} & {
|
|
13902
13953
|
json: {
|
|
13903
|
-
template?: "
|
|
13954
|
+
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;
|
|
13904
13955
|
body?: string | undefined;
|
|
13905
13956
|
from?: string | undefined;
|
|
13906
13957
|
subject?: string | undefined;
|
|
@@ -13912,7 +13963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13912
13963
|
};
|
|
13913
13964
|
};
|
|
13914
13965
|
output: {
|
|
13915
|
-
template: "
|
|
13966
|
+
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";
|
|
13916
13967
|
body: string;
|
|
13917
13968
|
from: string;
|
|
13918
13969
|
subject: string;
|
|
@@ -14187,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14187
14238
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14188
14239
|
custom_domain_id: string;
|
|
14189
14240
|
primary: boolean;
|
|
14190
|
-
status: "
|
|
14241
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14191
14242
|
verification_method?: "txt" | undefined;
|
|
14192
14243
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14193
14244
|
domain_metadata?: {
|
|
@@ -14228,7 +14279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14228
14279
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14229
14280
|
custom_domain_id: string;
|
|
14230
14281
|
primary: boolean;
|
|
14231
|
-
status: "
|
|
14282
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14232
14283
|
verification_method?: "txt" | undefined;
|
|
14233
14284
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14234
14285
|
domain_metadata?: {
|
|
@@ -14289,7 +14340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14289
14340
|
domain_metadata?: Record<string, string> | undefined;
|
|
14290
14341
|
custom_domain_id?: string | undefined;
|
|
14291
14342
|
primary?: boolean | undefined;
|
|
14292
|
-
status?: "
|
|
14343
|
+
status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
|
|
14293
14344
|
origin_domain_name?: string | undefined;
|
|
14294
14345
|
verification?: {
|
|
14295
14346
|
methods: ({
|
|
@@ -14310,7 +14361,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14310
14361
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14311
14362
|
custom_domain_id: string;
|
|
14312
14363
|
primary: boolean;
|
|
14313
|
-
status: "
|
|
14364
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14314
14365
|
verification_method?: "txt" | undefined;
|
|
14315
14366
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14316
14367
|
domain_metadata?: {
|
|
@@ -14357,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14357
14408
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14358
14409
|
custom_domain_id: string;
|
|
14359
14410
|
primary: boolean;
|
|
14360
|
-
status: "
|
|
14411
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14361
14412
|
verification_method?: "txt" | undefined;
|
|
14362
14413
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14363
14414
|
domain_metadata?: {
|
|
@@ -14398,7 +14449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14449
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14399
14450
|
custom_domain_id: string;
|
|
14400
14451
|
primary: boolean;
|
|
14401
|
-
status: "
|
|
14452
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
14402
14453
|
verification_method?: "txt" | undefined;
|
|
14403
14454
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14404
14455
|
domain_metadata?: {
|
|
@@ -14958,7 +15009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14958
15009
|
output: {
|
|
14959
15010
|
id: string;
|
|
14960
15011
|
trigger_id: string;
|
|
14961
|
-
status: "
|
|
15012
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
14962
15013
|
results: {
|
|
14963
15014
|
action_name: string;
|
|
14964
15015
|
error: {
|
|
@@ -15005,7 +15056,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15005
15056
|
logs: {
|
|
15006
15057
|
action_name: string;
|
|
15007
15058
|
lines: {
|
|
15008
|
-
level: "error" | "log" | "
|
|
15059
|
+
level: "error" | "log" | "debug" | "info" | "warn";
|
|
15009
15060
|
message: string;
|
|
15010
15061
|
}[];
|
|
15011
15062
|
}[];
|
|
@@ -15672,7 +15723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15672
15723
|
args: hono_utils_types.JSONValue[];
|
|
15673
15724
|
}[];
|
|
15674
15725
|
logs: {
|
|
15675
|
-
level: "error" | "log" | "
|
|
15726
|
+
level: "error" | "log" | "debug" | "info" | "warn";
|
|
15676
15727
|
message: string;
|
|
15677
15728
|
}[];
|
|
15678
15729
|
error?: string | undefined;
|
|
@@ -15970,7 +16021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15970
16021
|
scope?: string | undefined;
|
|
15971
16022
|
grant_types?: string[] | undefined;
|
|
15972
16023
|
response_types?: string[] | undefined;
|
|
15973
|
-
token_endpoint_auth_method?: "
|
|
16024
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15974
16025
|
jwks_uri?: string | undefined;
|
|
15975
16026
|
jwks?: Record<string, unknown> | undefined;
|
|
15976
16027
|
software_id?: string | undefined;
|
|
@@ -16059,7 +16110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16059
16110
|
scope?: string | undefined;
|
|
16060
16111
|
grant_types?: string[] | undefined;
|
|
16061
16112
|
response_types?: string[] | undefined;
|
|
16062
|
-
token_endpoint_auth_method?: "
|
|
16113
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16063
16114
|
jwks_uri?: string | undefined;
|
|
16064
16115
|
jwks?: Record<string, unknown> | undefined;
|
|
16065
16116
|
software_id?: string | undefined;
|
|
@@ -16405,19 +16456,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16405
16456
|
email: string;
|
|
16406
16457
|
send: "code" | "link";
|
|
16407
16458
|
authParams: {
|
|
16408
|
-
scope?: string | undefined;
|
|
16409
|
-
state?: string | undefined;
|
|
16410
|
-
audience?: string | undefined;
|
|
16411
|
-
code_challenge?: string | undefined;
|
|
16412
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16413
|
-
redirect_uri?: string | undefined;
|
|
16414
|
-
nonce?: string | undefined;
|
|
16415
16459
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16416
16460
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16461
|
+
scope?: string | undefined;
|
|
16417
16462
|
username?: string | undefined;
|
|
16463
|
+
state?: string | undefined;
|
|
16418
16464
|
act_as?: string | undefined;
|
|
16465
|
+
redirect_uri?: string | undefined;
|
|
16466
|
+
audience?: string | undefined;
|
|
16419
16467
|
organization?: string | undefined;
|
|
16468
|
+
nonce?: string | undefined;
|
|
16420
16469
|
prompt?: string | undefined;
|
|
16470
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16471
|
+
code_challenge?: string | undefined;
|
|
16421
16472
|
ui_locales?: string | undefined;
|
|
16422
16473
|
max_age?: number | undefined;
|
|
16423
16474
|
acr_values?: string | undefined;
|
|
@@ -16441,19 +16492,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16441
16492
|
phone_number: string;
|
|
16442
16493
|
send: "code" | "link";
|
|
16443
16494
|
authParams: {
|
|
16444
|
-
scope?: string | undefined;
|
|
16445
|
-
state?: string | undefined;
|
|
16446
|
-
audience?: string | undefined;
|
|
16447
|
-
code_challenge?: string | undefined;
|
|
16448
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16449
|
-
redirect_uri?: string | undefined;
|
|
16450
|
-
nonce?: string | undefined;
|
|
16451
16495
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16452
16496
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16497
|
+
scope?: string | undefined;
|
|
16453
16498
|
username?: string | undefined;
|
|
16499
|
+
state?: string | undefined;
|
|
16454
16500
|
act_as?: string | undefined;
|
|
16501
|
+
redirect_uri?: string | undefined;
|
|
16502
|
+
audience?: string | undefined;
|
|
16455
16503
|
organization?: string | undefined;
|
|
16504
|
+
nonce?: string | undefined;
|
|
16456
16505
|
prompt?: string | undefined;
|
|
16506
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16507
|
+
code_challenge?: string | undefined;
|
|
16457
16508
|
ui_locales?: string | undefined;
|
|
16458
16509
|
max_age?: number | undefined;
|
|
16459
16510
|
acr_values?: string | undefined;
|
|
@@ -16585,14 +16636,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16585
16636
|
input: {
|
|
16586
16637
|
form: {
|
|
16587
16638
|
token: string;
|
|
16588
|
-
token_type_hint?: "
|
|
16639
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
16589
16640
|
client_id?: string | undefined;
|
|
16590
16641
|
client_secret?: string | undefined;
|
|
16591
16642
|
};
|
|
16592
16643
|
} & {
|
|
16593
16644
|
json: {
|
|
16594
16645
|
token: string;
|
|
16595
|
-
token_type_hint?: "
|
|
16646
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
16596
16647
|
client_id?: string | undefined;
|
|
16597
16648
|
client_secret?: string | undefined;
|
|
16598
16649
|
};
|
|
@@ -16604,14 +16655,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16604
16655
|
input: {
|
|
16605
16656
|
form: {
|
|
16606
16657
|
token: string;
|
|
16607
|
-
token_type_hint?: "
|
|
16658
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
16608
16659
|
client_id?: string | undefined;
|
|
16609
16660
|
client_secret?: string | undefined;
|
|
16610
16661
|
};
|
|
16611
16662
|
} & {
|
|
16612
16663
|
json: {
|
|
16613
16664
|
token: string;
|
|
16614
|
-
token_type_hint?: "
|
|
16665
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
16615
16666
|
client_id?: string | undefined;
|
|
16616
16667
|
client_secret?: string | undefined;
|
|
16617
16668
|
};
|
|
@@ -16626,14 +16677,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16626
16677
|
input: {
|
|
16627
16678
|
form: {
|
|
16628
16679
|
token: string;
|
|
16629
|
-
token_type_hint?: "
|
|
16680
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
16630
16681
|
client_id?: string | undefined;
|
|
16631
16682
|
client_secret?: string | undefined;
|
|
16632
16683
|
};
|
|
16633
16684
|
} & {
|
|
16634
16685
|
json: {
|
|
16635
16686
|
token: string;
|
|
16636
|
-
token_type_hint?: "
|
|
16687
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
16637
16688
|
client_id?: string | undefined;
|
|
16638
16689
|
client_secret?: string | undefined;
|
|
16639
16690
|
};
|
|
@@ -17837,7 +17888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17837
17888
|
} & {
|
|
17838
17889
|
form: {
|
|
17839
17890
|
username: string;
|
|
17840
|
-
login_selection?: "
|
|
17891
|
+
login_selection?: "password" | "code" | undefined;
|
|
17841
17892
|
};
|
|
17842
17893
|
};
|
|
17843
17894
|
output: {};
|
|
@@ -17851,7 +17902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17851
17902
|
} & {
|
|
17852
17903
|
form: {
|
|
17853
17904
|
username: string;
|
|
17854
|
-
login_selection?: "
|
|
17905
|
+
login_selection?: "password" | "code" | undefined;
|
|
17855
17906
|
};
|
|
17856
17907
|
};
|
|
17857
17908
|
output: {};
|
|
@@ -18200,7 +18251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18200
18251
|
$get: {
|
|
18201
18252
|
input: {
|
|
18202
18253
|
param: {
|
|
18203
|
-
screen: "signup" | "
|
|
18254
|
+
screen: "signup" | "account" | "login" | "reset-password" | "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";
|
|
18204
18255
|
};
|
|
18205
18256
|
} & {
|
|
18206
18257
|
query: {
|
|
@@ -18216,7 +18267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18216
18267
|
} | {
|
|
18217
18268
|
input: {
|
|
18218
18269
|
param: {
|
|
18219
|
-
screen: "signup" | "
|
|
18270
|
+
screen: "signup" | "account" | "login" | "reset-password" | "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";
|
|
18220
18271
|
};
|
|
18221
18272
|
} & {
|
|
18222
18273
|
query: {
|
|
@@ -18232,7 +18283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18232
18283
|
} | {
|
|
18233
18284
|
input: {
|
|
18234
18285
|
param: {
|
|
18235
|
-
screen: "signup" | "
|
|
18286
|
+
screen: "signup" | "account" | "login" | "reset-password" | "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";
|
|
18236
18287
|
};
|
|
18237
18288
|
} & {
|
|
18238
18289
|
query: {
|
|
@@ -18386,5 +18437,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18386
18437
|
createX509Certificate: typeof createX509Certificate;
|
|
18387
18438
|
};
|
|
18388
18439
|
|
|
18389
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createAuthMiddleware, createDefaultDestinations, createInMemoryCache, deepMergePatch, drainOutbox, fetchAll, init, injectTailwindCSS, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
18440
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
18390
18441
|
export type { AuthHeroConfig, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|