authhero 8.2.0 → 8.3.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/authhero.cjs +108 -108
- package/dist/authhero.d.ts +337 -244
- package/dist/authhero.mjs +10549 -10425
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/createEncryptedDataAdapter.d.ts +40 -0
- package/dist/types/adapters/index.d.ts +4 -2
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/compose-auth-data.d.ts +9 -1
- package/dist/types/helpers/server-timing.d.ts +44 -2
- package/dist/types/index.d.ts +224 -224
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +64 -64
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Bindings.d.ts +21 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/types/Variables.d.ts +4 -0
- package/dist/types/utils/field-encryption.d.ts +30 -0
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -61,6 +61,10 @@ type Variables = {
|
|
|
61
61
|
backgroundPromises?: Promise<void>[];
|
|
62
62
|
client_authenticated_via_assertion?: boolean;
|
|
63
63
|
action_execution_id?: string;
|
|
64
|
+
serverTiming?: {
|
|
65
|
+
name: string;
|
|
66
|
+
dur: number;
|
|
67
|
+
}[];
|
|
64
68
|
is_lazy_migration?: boolean;
|
|
65
69
|
};
|
|
66
70
|
|
|
@@ -1454,6 +1458,27 @@ type Bindings = {
|
|
|
1454
1458
|
* leave unset (or false) in production so SSRF protection stays on.
|
|
1455
1459
|
*/
|
|
1456
1460
|
ALLOW_PRIVATE_OUTBOUND_FETCH?: boolean;
|
|
1461
|
+
/**
|
|
1462
|
+
* Controls where Server-Timing instrumentation goes. The data/cache adapters
|
|
1463
|
+
* and the webhook hook always measure per-operation latency; this decides the
|
|
1464
|
+
* sink:
|
|
1465
|
+
* - "off" (default / unset): measurements are dropped — no header, no log.
|
|
1466
|
+
* - "client": emit the `Server-Timing` response header (optionally gated to
|
|
1467
|
+
* SERVER_TIMING_IPS).
|
|
1468
|
+
* - "log": write a structured server-side log line; never sent to the client.
|
|
1469
|
+
* - "both": do both.
|
|
1470
|
+
* Off by default so per-operation timings — a user-enumeration / side-channel
|
|
1471
|
+
* surface on the public auth endpoints — are never exposed to anonymous
|
|
1472
|
+
* callers in production. See helpers/server-timing.ts.
|
|
1473
|
+
*/
|
|
1474
|
+
SERVER_TIMING?: "off" | "client" | "log" | "both";
|
|
1475
|
+
/**
|
|
1476
|
+
* Optional comma-separated allowlist of client IPs (exact match against the
|
|
1477
|
+
* resolved `ip` var). When set, the "client" sink only attaches the
|
|
1478
|
+
* Server-Timing header for matching callers; the "log" sink is unaffected.
|
|
1479
|
+
* Use this to expose timings to your own IP without leaking them publicly.
|
|
1480
|
+
*/
|
|
1481
|
+
SERVER_TIMING_IPS?: string;
|
|
1457
1482
|
};
|
|
1458
1483
|
|
|
1459
1484
|
/**
|
|
@@ -1801,27 +1826,27 @@ interface InMemoryCacheConfig {
|
|
|
1801
1826
|
*/
|
|
1802
1827
|
declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter;
|
|
1803
1828
|
|
|
1804
|
-
/**
|
|
1805
|
-
* Wraps a DataAdapters instance so that sensitive credential fields are
|
|
1806
|
-
* transparently encrypted on write and decrypted on read. Only the adapters
|
|
1807
|
-
* that hold secrets are wrapped; everything else passes through unchanged.
|
|
1808
|
-
*
|
|
1809
|
-
* Encrypted columns: clients.client_secret, connections.options
|
|
1810
|
-
* (client_secret/app_secret/twilio_token/configuration.client_secret),
|
|
1811
|
-
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1812
|
-
* migration_sources.credentials.client_secret.
|
|
1813
|
-
*
|
|
1814
|
-
* clientConnections.listByClient is also wrapped so its returned Connection
|
|
1815
|
-
* objects are decrypted — getEnrichedClient uses this path to load connections
|
|
1816
|
-
* for the OAuth strategies.
|
|
1817
|
-
*
|
|
1818
|
-
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1819
|
-
*/
|
|
1820
|
-
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
1821
|
-
|
|
1822
1829
|
declare const PREFIX = "enc:v1:";
|
|
1823
1830
|
type EncryptedField = `${typeof PREFIX}${string}`;
|
|
1824
1831
|
declare function isEncrypted(value: string): value is EncryptedField;
|
|
1832
|
+
/**
|
|
1833
|
+
* A set of AES-256-GCM keys addressable by id. `default` decrypts (and by
|
|
1834
|
+
* default encrypts) legacy unkeyed `enc:v1:` values; `keys[id]` handles values
|
|
1835
|
+
* tagged with that id (`enc:v1:<id>:`).
|
|
1836
|
+
*
|
|
1837
|
+
* This is what lets a single database hold ciphertext under more than one key —
|
|
1838
|
+
* e.g. a WFP tenant's own secrets under the tenant key and inherited control
|
|
1839
|
+
* plane secrets under a control-plane-only key the tenant operator never holds.
|
|
1840
|
+
*/
|
|
1841
|
+
interface KeyRing {
|
|
1842
|
+
default: CryptoKey;
|
|
1843
|
+
keys?: Record<string, CryptoKey>;
|
|
1844
|
+
}
|
|
1845
|
+
/**
|
|
1846
|
+
* The key id a keyed value was encrypted under, or `undefined` for a legacy
|
|
1847
|
+
* unkeyed value (or a non-encrypted plaintext).
|
|
1848
|
+
*/
|
|
1849
|
+
declare function parseKeyId(value: string): string | undefined;
|
|
1825
1850
|
/**
|
|
1826
1851
|
* Imports a base64-encoded 32-byte key as an AES-256-GCM CryptoKey. Throws if
|
|
1827
1852
|
* the decoded key is not exactly 32 bytes so a misconfigured secret fails loudly
|
|
@@ -1839,6 +1864,74 @@ declare function encryptField(plaintext: string, key: CryptoKey): Promise<Encryp
|
|
|
1839
1864
|
* prefixed value cannot be decrypted (wrong key or corrupted ciphertext).
|
|
1840
1865
|
*/
|
|
1841
1866
|
declare function decryptField(value: string, key: CryptoKey): Promise<string>;
|
|
1867
|
+
/**
|
|
1868
|
+
* Encrypts a value using a key ring, optionally tagging it with `keyId` so the
|
|
1869
|
+
* same key is selected on read. With no `keyId` the value is encrypted under the
|
|
1870
|
+
* ring's default key and is byte-compatible with `encryptField` (legacy form).
|
|
1871
|
+
*/
|
|
1872
|
+
declare function encryptFieldWithRing(plaintext: string, ring: KeyRing, keyId?: string): Promise<EncryptedField>;
|
|
1873
|
+
/**
|
|
1874
|
+
* Decrypts a value using a key ring, selecting the key from the id embedded in
|
|
1875
|
+
* the ciphertext (or the default key for legacy unkeyed values). Plaintext
|
|
1876
|
+
* values (no `enc:v1:` prefix) are returned unchanged.
|
|
1877
|
+
*/
|
|
1878
|
+
declare function decryptFieldWithRing(value: string, ring: KeyRing): Promise<string>;
|
|
1879
|
+
|
|
1880
|
+
/**
|
|
1881
|
+
* Resolves which key id (if any) a tenant's secrets are encrypted under.
|
|
1882
|
+
* Returning `undefined` uses the ring's default key and produces legacy,
|
|
1883
|
+
* untagged `enc:v1:` ciphertext — byte-compatible with the single-key adapter.
|
|
1884
|
+
*
|
|
1885
|
+
* The canonical use: tag rows owned by the control plane tenant with a
|
|
1886
|
+
* control-plane-only key id, so the same database can hold a tenant's own
|
|
1887
|
+
* secrets (default key) alongside inherited control plane secrets the tenant
|
|
1888
|
+
* operator cannot decrypt.
|
|
1889
|
+
*/
|
|
1890
|
+
type EncryptKeyIdResolver = (tenantId: string) => string | undefined;
|
|
1891
|
+
interface EncryptionOptions {
|
|
1892
|
+
resolveEncryptKeyId?: EncryptKeyIdResolver;
|
|
1893
|
+
}
|
|
1894
|
+
/**
|
|
1895
|
+
* Wraps a DataAdapters instance so that sensitive credential fields are
|
|
1896
|
+
* transparently encrypted on write and decrypted on read. Only the adapters
|
|
1897
|
+
* that hold secrets are wrapped; everything else passes through unchanged.
|
|
1898
|
+
*
|
|
1899
|
+
* Encrypted columns: clients.client_secret, connections.options
|
|
1900
|
+
* (client_secret/app_secret/twilio_token/configuration.client_secret),
|
|
1901
|
+
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1902
|
+
* migration_sources.credentials.client_secret.
|
|
1903
|
+
*
|
|
1904
|
+
* clientConnections.listByClient is also wrapped so its returned Connection
|
|
1905
|
+
* objects are decrypted — getEnrichedClient uses this path to load connections
|
|
1906
|
+
* for the OAuth strategies.
|
|
1907
|
+
*
|
|
1908
|
+
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1909
|
+
*/
|
|
1910
|
+
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
1911
|
+
/**
|
|
1912
|
+
* Like {@link createEncryptedDataAdapter}, but encrypts each tenant's secrets
|
|
1913
|
+
* under a key selected from a {@link KeyRing}. On read, the key is chosen from
|
|
1914
|
+
* the id embedded in the ciphertext, so a single database can mix values
|
|
1915
|
+
* encrypted under different keys.
|
|
1916
|
+
*
|
|
1917
|
+
* `options.resolveEncryptKeyId(tenantId)` decides which key id new ciphertext is
|
|
1918
|
+
* tagged with. Return `undefined` for the ring's default key (legacy untagged
|
|
1919
|
+
* form). The intended use is to tag control plane tenant rows with a
|
|
1920
|
+
* control-plane-only key id so an inheriting tenant can hold the inherited
|
|
1921
|
+
* secrets at rest without being able to decrypt them.
|
|
1922
|
+
*
|
|
1923
|
+
* @example
|
|
1924
|
+
* ```typescript
|
|
1925
|
+
* const adapters = createEncryptedDataAdapterWithKeyRing(base, {
|
|
1926
|
+
* default: tenantKey,
|
|
1927
|
+
* keys: { cp: controlPlaneKey },
|
|
1928
|
+
* }, {
|
|
1929
|
+
* resolveEncryptKeyId: (tenantId) =>
|
|
1930
|
+
* tenantId === CONTROL_PLANE_TENANT_ID ? "cp" : undefined,
|
|
1931
|
+
* });
|
|
1932
|
+
* ```
|
|
1933
|
+
*/
|
|
1934
|
+
declare function createEncryptedDataAdapterWithKeyRing(data: DataAdapters, ring: KeyRing, options?: EncryptionOptions): DataAdapters;
|
|
1842
1935
|
|
|
1843
1936
|
declare const mailgunCredentialsSchema: z.ZodObject<{
|
|
1844
1937
|
api_key: z.ZodString;
|
|
@@ -2731,7 +2824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2731
2824
|
};
|
|
2732
2825
|
} & {
|
|
2733
2826
|
json: {
|
|
2734
|
-
type: "email" | "passkey" | "push" | "phone" | "
|
|
2827
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2735
2828
|
phone_number?: string | undefined;
|
|
2736
2829
|
totp_secret?: string | undefined;
|
|
2737
2830
|
credential_id?: string | undefined;
|
|
@@ -2871,7 +2964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2871
2964
|
};
|
|
2872
2965
|
};
|
|
2873
2966
|
output: {
|
|
2874
|
-
name: "email" | "
|
|
2967
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
2875
2968
|
enabled: boolean;
|
|
2876
2969
|
trial_expired?: boolean | undefined;
|
|
2877
2970
|
}[];
|
|
@@ -3026,7 +3119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3026
3119
|
$get: {
|
|
3027
3120
|
input: {
|
|
3028
3121
|
param: {
|
|
3029
|
-
factor_name: "email" | "
|
|
3122
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
3030
3123
|
};
|
|
3031
3124
|
} & {
|
|
3032
3125
|
header: {
|
|
@@ -3034,7 +3127,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3034
3127
|
};
|
|
3035
3128
|
};
|
|
3036
3129
|
output: {
|
|
3037
|
-
name: "email" | "
|
|
3130
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
3038
3131
|
enabled: boolean;
|
|
3039
3132
|
trial_expired?: boolean | undefined;
|
|
3040
3133
|
};
|
|
@@ -3047,7 +3140,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3047
3140
|
$put: {
|
|
3048
3141
|
input: {
|
|
3049
3142
|
param: {
|
|
3050
|
-
factor_name: "email" | "
|
|
3143
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
3051
3144
|
};
|
|
3052
3145
|
} & {
|
|
3053
3146
|
header: {
|
|
@@ -3059,7 +3152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3059
3152
|
};
|
|
3060
3153
|
};
|
|
3061
3154
|
output: {
|
|
3062
|
-
name: "email" | "
|
|
3155
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
|
|
3063
3156
|
enabled: boolean;
|
|
3064
3157
|
trial_expired?: boolean | undefined;
|
|
3065
3158
|
};
|
|
@@ -5235,7 +5328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5235
5328
|
hint?: string | undefined;
|
|
5236
5329
|
messages?: {
|
|
5237
5330
|
text: string;
|
|
5238
|
-
type: "
|
|
5331
|
+
type: "error" | "success" | "info" | "warning";
|
|
5239
5332
|
id?: number | undefined;
|
|
5240
5333
|
}[] | undefined;
|
|
5241
5334
|
required?: boolean | undefined;
|
|
@@ -5253,7 +5346,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5253
5346
|
hint?: string | undefined;
|
|
5254
5347
|
messages?: {
|
|
5255
5348
|
text: string;
|
|
5256
|
-
type: "
|
|
5349
|
+
type: "error" | "success" | "info" | "warning";
|
|
5257
5350
|
id?: number | undefined;
|
|
5258
5351
|
}[] | undefined;
|
|
5259
5352
|
required?: boolean | undefined;
|
|
@@ -5277,7 +5370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5277
5370
|
hint?: string | undefined;
|
|
5278
5371
|
messages?: {
|
|
5279
5372
|
text: string;
|
|
5280
|
-
type: "
|
|
5373
|
+
type: "error" | "success" | "info" | "warning";
|
|
5281
5374
|
id?: number | undefined;
|
|
5282
5375
|
}[] | undefined;
|
|
5283
5376
|
required?: boolean | undefined;
|
|
@@ -5301,7 +5394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5301
5394
|
hint?: string | undefined;
|
|
5302
5395
|
messages?: {
|
|
5303
5396
|
text: string;
|
|
5304
|
-
type: "
|
|
5397
|
+
type: "error" | "success" | "info" | "warning";
|
|
5305
5398
|
id?: number | undefined;
|
|
5306
5399
|
}[] | undefined;
|
|
5307
5400
|
required?: boolean | undefined;
|
|
@@ -5330,7 +5423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5330
5423
|
hint?: string | undefined;
|
|
5331
5424
|
messages?: {
|
|
5332
5425
|
text: string;
|
|
5333
|
-
type: "
|
|
5426
|
+
type: "error" | "success" | "info" | "warning";
|
|
5334
5427
|
id?: number | undefined;
|
|
5335
5428
|
}[] | undefined;
|
|
5336
5429
|
required?: boolean | undefined;
|
|
@@ -5345,7 +5438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5345
5438
|
hint?: string | undefined;
|
|
5346
5439
|
messages?: {
|
|
5347
5440
|
text: string;
|
|
5348
|
-
type: "
|
|
5441
|
+
type: "error" | "success" | "info" | "warning";
|
|
5349
5442
|
id?: number | undefined;
|
|
5350
5443
|
}[] | undefined;
|
|
5351
5444
|
required?: boolean | undefined;
|
|
@@ -5366,7 +5459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5366
5459
|
hint?: string | undefined;
|
|
5367
5460
|
messages?: {
|
|
5368
5461
|
text: string;
|
|
5369
|
-
type: "
|
|
5462
|
+
type: "error" | "success" | "info" | "warning";
|
|
5370
5463
|
id?: number | undefined;
|
|
5371
5464
|
}[] | undefined;
|
|
5372
5465
|
required?: boolean | undefined;
|
|
@@ -5391,7 +5484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5391
5484
|
hint?: string | undefined;
|
|
5392
5485
|
messages?: {
|
|
5393
5486
|
text: string;
|
|
5394
|
-
type: "
|
|
5487
|
+
type: "error" | "success" | "info" | "warning";
|
|
5395
5488
|
id?: number | undefined;
|
|
5396
5489
|
}[] | undefined;
|
|
5397
5490
|
required?: boolean | undefined;
|
|
@@ -5410,7 +5503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5410
5503
|
hint?: string | undefined;
|
|
5411
5504
|
messages?: {
|
|
5412
5505
|
text: string;
|
|
5413
|
-
type: "
|
|
5506
|
+
type: "error" | "success" | "info" | "warning";
|
|
5414
5507
|
id?: number | undefined;
|
|
5415
5508
|
}[] | undefined;
|
|
5416
5509
|
required?: boolean | undefined;
|
|
@@ -5430,7 +5523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5430
5523
|
hint?: string | undefined;
|
|
5431
5524
|
messages?: {
|
|
5432
5525
|
text: string;
|
|
5433
|
-
type: "
|
|
5526
|
+
type: "error" | "success" | "info" | "warning";
|
|
5434
5527
|
id?: number | undefined;
|
|
5435
5528
|
}[] | undefined;
|
|
5436
5529
|
required?: boolean | undefined;
|
|
@@ -5449,7 +5542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5449
5542
|
hint?: string | undefined;
|
|
5450
5543
|
messages?: {
|
|
5451
5544
|
text: string;
|
|
5452
|
-
type: "
|
|
5545
|
+
type: "error" | "success" | "info" | "warning";
|
|
5453
5546
|
id?: number | undefined;
|
|
5454
5547
|
}[] | undefined;
|
|
5455
5548
|
required?: boolean | undefined;
|
|
@@ -5471,7 +5564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5471
5564
|
hint?: string | undefined;
|
|
5472
5565
|
messages?: {
|
|
5473
5566
|
text: string;
|
|
5474
|
-
type: "
|
|
5567
|
+
type: "error" | "success" | "info" | "warning";
|
|
5475
5568
|
id?: number | undefined;
|
|
5476
5569
|
}[] | undefined;
|
|
5477
5570
|
required?: boolean | undefined;
|
|
@@ -5493,7 +5586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5493
5586
|
hint?: string | undefined;
|
|
5494
5587
|
messages?: {
|
|
5495
5588
|
text: string;
|
|
5496
|
-
type: "
|
|
5589
|
+
type: "error" | "success" | "info" | "warning";
|
|
5497
5590
|
id?: number | undefined;
|
|
5498
5591
|
}[] | undefined;
|
|
5499
5592
|
required?: boolean | undefined;
|
|
@@ -5512,7 +5605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5512
5605
|
hint?: string | undefined;
|
|
5513
5606
|
messages?: {
|
|
5514
5607
|
text: string;
|
|
5515
|
-
type: "
|
|
5608
|
+
type: "error" | "success" | "info" | "warning";
|
|
5516
5609
|
id?: number | undefined;
|
|
5517
5610
|
}[] | undefined;
|
|
5518
5611
|
required?: boolean | undefined;
|
|
@@ -5537,7 +5630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5537
5630
|
hint?: string | undefined;
|
|
5538
5631
|
messages?: {
|
|
5539
5632
|
text: string;
|
|
5540
|
-
type: "
|
|
5633
|
+
type: "error" | "success" | "info" | "warning";
|
|
5541
5634
|
id?: number | undefined;
|
|
5542
5635
|
}[] | undefined;
|
|
5543
5636
|
required?: boolean | undefined;
|
|
@@ -5558,7 +5651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5558
5651
|
hint?: string | undefined;
|
|
5559
5652
|
messages?: {
|
|
5560
5653
|
text: string;
|
|
5561
|
-
type: "
|
|
5654
|
+
type: "error" | "success" | "info" | "warning";
|
|
5562
5655
|
id?: number | undefined;
|
|
5563
5656
|
}[] | undefined;
|
|
5564
5657
|
required?: boolean | undefined;
|
|
@@ -5579,7 +5672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5579
5672
|
hint?: string | undefined;
|
|
5580
5673
|
messages?: {
|
|
5581
5674
|
text: string;
|
|
5582
|
-
type: "
|
|
5675
|
+
type: "error" | "success" | "info" | "warning";
|
|
5583
5676
|
id?: number | undefined;
|
|
5584
5677
|
}[] | undefined;
|
|
5585
5678
|
required?: boolean | undefined;
|
|
@@ -5812,7 +5905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5812
5905
|
hint?: string | undefined;
|
|
5813
5906
|
messages?: {
|
|
5814
5907
|
text: string;
|
|
5815
|
-
type: "
|
|
5908
|
+
type: "error" | "success" | "info" | "warning";
|
|
5816
5909
|
id?: number | undefined;
|
|
5817
5910
|
}[] | undefined;
|
|
5818
5911
|
required?: boolean | undefined;
|
|
@@ -5830,7 +5923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5830
5923
|
hint?: string | undefined;
|
|
5831
5924
|
messages?: {
|
|
5832
5925
|
text: string;
|
|
5833
|
-
type: "
|
|
5926
|
+
type: "error" | "success" | "info" | "warning";
|
|
5834
5927
|
id?: number | undefined;
|
|
5835
5928
|
}[] | undefined;
|
|
5836
5929
|
required?: boolean | undefined;
|
|
@@ -5854,7 +5947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5854
5947
|
hint?: string | undefined;
|
|
5855
5948
|
messages?: {
|
|
5856
5949
|
text: string;
|
|
5857
|
-
type: "
|
|
5950
|
+
type: "error" | "success" | "info" | "warning";
|
|
5858
5951
|
id?: number | undefined;
|
|
5859
5952
|
}[] | undefined;
|
|
5860
5953
|
required?: boolean | undefined;
|
|
@@ -5878,7 +5971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5878
5971
|
hint?: string | undefined;
|
|
5879
5972
|
messages?: {
|
|
5880
5973
|
text: string;
|
|
5881
|
-
type: "
|
|
5974
|
+
type: "error" | "success" | "info" | "warning";
|
|
5882
5975
|
id?: number | undefined;
|
|
5883
5976
|
}[] | undefined;
|
|
5884
5977
|
required?: boolean | undefined;
|
|
@@ -5907,7 +6000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5907
6000
|
hint?: string | undefined;
|
|
5908
6001
|
messages?: {
|
|
5909
6002
|
text: string;
|
|
5910
|
-
type: "
|
|
6003
|
+
type: "error" | "success" | "info" | "warning";
|
|
5911
6004
|
id?: number | undefined;
|
|
5912
6005
|
}[] | undefined;
|
|
5913
6006
|
required?: boolean | undefined;
|
|
@@ -5922,7 +6015,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5922
6015
|
hint?: string | undefined;
|
|
5923
6016
|
messages?: {
|
|
5924
6017
|
text: string;
|
|
5925
|
-
type: "
|
|
6018
|
+
type: "error" | "success" | "info" | "warning";
|
|
5926
6019
|
id?: number | undefined;
|
|
5927
6020
|
}[] | undefined;
|
|
5928
6021
|
required?: boolean | undefined;
|
|
@@ -5943,7 +6036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5943
6036
|
hint?: string | undefined;
|
|
5944
6037
|
messages?: {
|
|
5945
6038
|
text: string;
|
|
5946
|
-
type: "
|
|
6039
|
+
type: "error" | "success" | "info" | "warning";
|
|
5947
6040
|
id?: number | undefined;
|
|
5948
6041
|
}[] | undefined;
|
|
5949
6042
|
required?: boolean | undefined;
|
|
@@ -5968,7 +6061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5968
6061
|
hint?: string | undefined;
|
|
5969
6062
|
messages?: {
|
|
5970
6063
|
text: string;
|
|
5971
|
-
type: "
|
|
6064
|
+
type: "error" | "success" | "info" | "warning";
|
|
5972
6065
|
id?: number | undefined;
|
|
5973
6066
|
}[] | undefined;
|
|
5974
6067
|
required?: boolean | undefined;
|
|
@@ -5987,7 +6080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5987
6080
|
hint?: string | undefined;
|
|
5988
6081
|
messages?: {
|
|
5989
6082
|
text: string;
|
|
5990
|
-
type: "
|
|
6083
|
+
type: "error" | "success" | "info" | "warning";
|
|
5991
6084
|
id?: number | undefined;
|
|
5992
6085
|
}[] | undefined;
|
|
5993
6086
|
required?: boolean | undefined;
|
|
@@ -6007,7 +6100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6007
6100
|
hint?: string | undefined;
|
|
6008
6101
|
messages?: {
|
|
6009
6102
|
text: string;
|
|
6010
|
-
type: "
|
|
6103
|
+
type: "error" | "success" | "info" | "warning";
|
|
6011
6104
|
id?: number | undefined;
|
|
6012
6105
|
}[] | undefined;
|
|
6013
6106
|
required?: boolean | undefined;
|
|
@@ -6026,7 +6119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6026
6119
|
hint?: string | undefined;
|
|
6027
6120
|
messages?: {
|
|
6028
6121
|
text: string;
|
|
6029
|
-
type: "
|
|
6122
|
+
type: "error" | "success" | "info" | "warning";
|
|
6030
6123
|
id?: number | undefined;
|
|
6031
6124
|
}[] | undefined;
|
|
6032
6125
|
required?: boolean | undefined;
|
|
@@ -6048,7 +6141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6048
6141
|
hint?: string | undefined;
|
|
6049
6142
|
messages?: {
|
|
6050
6143
|
text: string;
|
|
6051
|
-
type: "
|
|
6144
|
+
type: "error" | "success" | "info" | "warning";
|
|
6052
6145
|
id?: number | undefined;
|
|
6053
6146
|
}[] | undefined;
|
|
6054
6147
|
required?: boolean | undefined;
|
|
@@ -6070,7 +6163,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6070
6163
|
hint?: string | undefined;
|
|
6071
6164
|
messages?: {
|
|
6072
6165
|
text: string;
|
|
6073
|
-
type: "
|
|
6166
|
+
type: "error" | "success" | "info" | "warning";
|
|
6074
6167
|
id?: number | undefined;
|
|
6075
6168
|
}[] | undefined;
|
|
6076
6169
|
required?: boolean | undefined;
|
|
@@ -6089,7 +6182,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6089
6182
|
hint?: string | undefined;
|
|
6090
6183
|
messages?: {
|
|
6091
6184
|
text: string;
|
|
6092
|
-
type: "
|
|
6185
|
+
type: "error" | "success" | "info" | "warning";
|
|
6093
6186
|
id?: number | undefined;
|
|
6094
6187
|
}[] | undefined;
|
|
6095
6188
|
required?: boolean | undefined;
|
|
@@ -6114,7 +6207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6114
6207
|
hint?: string | undefined;
|
|
6115
6208
|
messages?: {
|
|
6116
6209
|
text: string;
|
|
6117
|
-
type: "
|
|
6210
|
+
type: "error" | "success" | "info" | "warning";
|
|
6118
6211
|
id?: number | undefined;
|
|
6119
6212
|
}[] | undefined;
|
|
6120
6213
|
required?: boolean | undefined;
|
|
@@ -6135,7 +6228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6135
6228
|
hint?: string | undefined;
|
|
6136
6229
|
messages?: {
|
|
6137
6230
|
text: string;
|
|
6138
|
-
type: "
|
|
6231
|
+
type: "error" | "success" | "info" | "warning";
|
|
6139
6232
|
id?: number | undefined;
|
|
6140
6233
|
}[] | undefined;
|
|
6141
6234
|
required?: boolean | undefined;
|
|
@@ -6156,7 +6249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6156
6249
|
hint?: string | undefined;
|
|
6157
6250
|
messages?: {
|
|
6158
6251
|
text: string;
|
|
6159
|
-
type: "
|
|
6252
|
+
type: "error" | "success" | "info" | "warning";
|
|
6160
6253
|
id?: number | undefined;
|
|
6161
6254
|
}[] | undefined;
|
|
6162
6255
|
required?: boolean | undefined;
|
|
@@ -6404,7 +6497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6404
6497
|
hint?: string | undefined;
|
|
6405
6498
|
messages?: {
|
|
6406
6499
|
text: string;
|
|
6407
|
-
type: "
|
|
6500
|
+
type: "error" | "success" | "info" | "warning";
|
|
6408
6501
|
id?: number | undefined;
|
|
6409
6502
|
}[] | undefined;
|
|
6410
6503
|
required?: boolean | undefined;
|
|
@@ -6422,7 +6515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6422
6515
|
hint?: string | undefined;
|
|
6423
6516
|
messages?: {
|
|
6424
6517
|
text: string;
|
|
6425
|
-
type: "
|
|
6518
|
+
type: "error" | "success" | "info" | "warning";
|
|
6426
6519
|
id?: number | undefined;
|
|
6427
6520
|
}[] | undefined;
|
|
6428
6521
|
required?: boolean | undefined;
|
|
@@ -6446,7 +6539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6446
6539
|
hint?: string | undefined;
|
|
6447
6540
|
messages?: {
|
|
6448
6541
|
text: string;
|
|
6449
|
-
type: "
|
|
6542
|
+
type: "error" | "success" | "info" | "warning";
|
|
6450
6543
|
id?: number | undefined;
|
|
6451
6544
|
}[] | undefined;
|
|
6452
6545
|
required?: boolean | undefined;
|
|
@@ -6470,7 +6563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6470
6563
|
hint?: string | undefined;
|
|
6471
6564
|
messages?: {
|
|
6472
6565
|
text: string;
|
|
6473
|
-
type: "
|
|
6566
|
+
type: "error" | "success" | "info" | "warning";
|
|
6474
6567
|
id?: number | undefined;
|
|
6475
6568
|
}[] | undefined;
|
|
6476
6569
|
required?: boolean | undefined;
|
|
@@ -6499,7 +6592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6499
6592
|
hint?: string | undefined;
|
|
6500
6593
|
messages?: {
|
|
6501
6594
|
text: string;
|
|
6502
|
-
type: "
|
|
6595
|
+
type: "error" | "success" | "info" | "warning";
|
|
6503
6596
|
id?: number | undefined;
|
|
6504
6597
|
}[] | undefined;
|
|
6505
6598
|
required?: boolean | undefined;
|
|
@@ -6514,7 +6607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6514
6607
|
hint?: string | undefined;
|
|
6515
6608
|
messages?: {
|
|
6516
6609
|
text: string;
|
|
6517
|
-
type: "
|
|
6610
|
+
type: "error" | "success" | "info" | "warning";
|
|
6518
6611
|
id?: number | undefined;
|
|
6519
6612
|
}[] | undefined;
|
|
6520
6613
|
required?: boolean | undefined;
|
|
@@ -6535,7 +6628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6535
6628
|
hint?: string | undefined;
|
|
6536
6629
|
messages?: {
|
|
6537
6630
|
text: string;
|
|
6538
|
-
type: "
|
|
6631
|
+
type: "error" | "success" | "info" | "warning";
|
|
6539
6632
|
id?: number | undefined;
|
|
6540
6633
|
}[] | undefined;
|
|
6541
6634
|
required?: boolean | undefined;
|
|
@@ -6560,7 +6653,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6560
6653
|
hint?: string | undefined;
|
|
6561
6654
|
messages?: {
|
|
6562
6655
|
text: string;
|
|
6563
|
-
type: "
|
|
6656
|
+
type: "error" | "success" | "info" | "warning";
|
|
6564
6657
|
id?: number | undefined;
|
|
6565
6658
|
}[] | undefined;
|
|
6566
6659
|
required?: boolean | undefined;
|
|
@@ -6579,7 +6672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6579
6672
|
hint?: string | undefined;
|
|
6580
6673
|
messages?: {
|
|
6581
6674
|
text: string;
|
|
6582
|
-
type: "
|
|
6675
|
+
type: "error" | "success" | "info" | "warning";
|
|
6583
6676
|
id?: number | undefined;
|
|
6584
6677
|
}[] | undefined;
|
|
6585
6678
|
required?: boolean | undefined;
|
|
@@ -6599,7 +6692,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6599
6692
|
hint?: string | undefined;
|
|
6600
6693
|
messages?: {
|
|
6601
6694
|
text: string;
|
|
6602
|
-
type: "
|
|
6695
|
+
type: "error" | "success" | "info" | "warning";
|
|
6603
6696
|
id?: number | undefined;
|
|
6604
6697
|
}[] | undefined;
|
|
6605
6698
|
required?: boolean | undefined;
|
|
@@ -6618,7 +6711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6618
6711
|
hint?: string | undefined;
|
|
6619
6712
|
messages?: {
|
|
6620
6713
|
text: string;
|
|
6621
|
-
type: "
|
|
6714
|
+
type: "error" | "success" | "info" | "warning";
|
|
6622
6715
|
id?: number | undefined;
|
|
6623
6716
|
}[] | undefined;
|
|
6624
6717
|
required?: boolean | undefined;
|
|
@@ -6640,7 +6733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6640
6733
|
hint?: string | undefined;
|
|
6641
6734
|
messages?: {
|
|
6642
6735
|
text: string;
|
|
6643
|
-
type: "
|
|
6736
|
+
type: "error" | "success" | "info" | "warning";
|
|
6644
6737
|
id?: number | undefined;
|
|
6645
6738
|
}[] | undefined;
|
|
6646
6739
|
required?: boolean | undefined;
|
|
@@ -6662,7 +6755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6662
6755
|
hint?: string | undefined;
|
|
6663
6756
|
messages?: {
|
|
6664
6757
|
text: string;
|
|
6665
|
-
type: "
|
|
6758
|
+
type: "error" | "success" | "info" | "warning";
|
|
6666
6759
|
id?: number | undefined;
|
|
6667
6760
|
}[] | undefined;
|
|
6668
6761
|
required?: boolean | undefined;
|
|
@@ -6681,7 +6774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6681
6774
|
hint?: string | undefined;
|
|
6682
6775
|
messages?: {
|
|
6683
6776
|
text: string;
|
|
6684
|
-
type: "
|
|
6777
|
+
type: "error" | "success" | "info" | "warning";
|
|
6685
6778
|
id?: number | undefined;
|
|
6686
6779
|
}[] | undefined;
|
|
6687
6780
|
required?: boolean | undefined;
|
|
@@ -6706,7 +6799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6706
6799
|
hint?: string | undefined;
|
|
6707
6800
|
messages?: {
|
|
6708
6801
|
text: string;
|
|
6709
|
-
type: "
|
|
6802
|
+
type: "error" | "success" | "info" | "warning";
|
|
6710
6803
|
id?: number | undefined;
|
|
6711
6804
|
}[] | undefined;
|
|
6712
6805
|
required?: boolean | undefined;
|
|
@@ -6727,7 +6820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6727
6820
|
hint?: string | undefined;
|
|
6728
6821
|
messages?: {
|
|
6729
6822
|
text: string;
|
|
6730
|
-
type: "
|
|
6823
|
+
type: "error" | "success" | "info" | "warning";
|
|
6731
6824
|
id?: number | undefined;
|
|
6732
6825
|
}[] | undefined;
|
|
6733
6826
|
required?: boolean | undefined;
|
|
@@ -6748,7 +6841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6748
6841
|
hint?: string | undefined;
|
|
6749
6842
|
messages?: {
|
|
6750
6843
|
text: string;
|
|
6751
|
-
type: "
|
|
6844
|
+
type: "error" | "success" | "info" | "warning";
|
|
6752
6845
|
id?: number | undefined;
|
|
6753
6846
|
}[] | undefined;
|
|
6754
6847
|
required?: boolean | undefined;
|
|
@@ -7002,7 +7095,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7002
7095
|
hint?: string | undefined;
|
|
7003
7096
|
messages?: {
|
|
7004
7097
|
text: string;
|
|
7005
|
-
type: "
|
|
7098
|
+
type: "error" | "success" | "info" | "warning";
|
|
7006
7099
|
id?: number | undefined;
|
|
7007
7100
|
}[] | undefined;
|
|
7008
7101
|
required?: boolean | undefined;
|
|
@@ -7020,7 +7113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7020
7113
|
hint?: string | undefined;
|
|
7021
7114
|
messages?: {
|
|
7022
7115
|
text: string;
|
|
7023
|
-
type: "
|
|
7116
|
+
type: "error" | "success" | "info" | "warning";
|
|
7024
7117
|
id?: number | undefined;
|
|
7025
7118
|
}[] | undefined;
|
|
7026
7119
|
required?: boolean | undefined;
|
|
@@ -7044,7 +7137,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7044
7137
|
hint?: string | undefined;
|
|
7045
7138
|
messages?: {
|
|
7046
7139
|
text: string;
|
|
7047
|
-
type: "
|
|
7140
|
+
type: "error" | "success" | "info" | "warning";
|
|
7048
7141
|
id?: number | undefined;
|
|
7049
7142
|
}[] | undefined;
|
|
7050
7143
|
required?: boolean | undefined;
|
|
@@ -7068,7 +7161,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7068
7161
|
hint?: string | undefined;
|
|
7069
7162
|
messages?: {
|
|
7070
7163
|
text: string;
|
|
7071
|
-
type: "
|
|
7164
|
+
type: "error" | "success" | "info" | "warning";
|
|
7072
7165
|
id?: number | undefined;
|
|
7073
7166
|
}[] | undefined;
|
|
7074
7167
|
required?: boolean | undefined;
|
|
@@ -7093,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7093
7186
|
hint?: string | undefined;
|
|
7094
7187
|
messages?: {
|
|
7095
7188
|
text: string;
|
|
7096
|
-
type: "
|
|
7189
|
+
type: "error" | "success" | "info" | "warning";
|
|
7097
7190
|
id?: number | undefined;
|
|
7098
7191
|
}[] | undefined;
|
|
7099
7192
|
required?: boolean | undefined;
|
|
@@ -7108,7 +7201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7108
7201
|
hint?: string | undefined;
|
|
7109
7202
|
messages?: {
|
|
7110
7203
|
text: string;
|
|
7111
|
-
type: "
|
|
7204
|
+
type: "error" | "success" | "info" | "warning";
|
|
7112
7205
|
id?: number | undefined;
|
|
7113
7206
|
}[] | undefined;
|
|
7114
7207
|
required?: boolean | undefined;
|
|
@@ -7129,7 +7222,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7129
7222
|
hint?: string | undefined;
|
|
7130
7223
|
messages?: {
|
|
7131
7224
|
text: string;
|
|
7132
|
-
type: "
|
|
7225
|
+
type: "error" | "success" | "info" | "warning";
|
|
7133
7226
|
id?: number | undefined;
|
|
7134
7227
|
}[] | undefined;
|
|
7135
7228
|
required?: boolean | undefined;
|
|
@@ -7154,7 +7247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7154
7247
|
hint?: string | undefined;
|
|
7155
7248
|
messages?: {
|
|
7156
7249
|
text: string;
|
|
7157
|
-
type: "
|
|
7250
|
+
type: "error" | "success" | "info" | "warning";
|
|
7158
7251
|
id?: number | undefined;
|
|
7159
7252
|
}[] | undefined;
|
|
7160
7253
|
required?: boolean | undefined;
|
|
@@ -7173,7 +7266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7173
7266
|
hint?: string | undefined;
|
|
7174
7267
|
messages?: {
|
|
7175
7268
|
text: string;
|
|
7176
|
-
type: "
|
|
7269
|
+
type: "error" | "success" | "info" | "warning";
|
|
7177
7270
|
id?: number | undefined;
|
|
7178
7271
|
}[] | undefined;
|
|
7179
7272
|
required?: boolean | undefined;
|
|
@@ -7193,7 +7286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7193
7286
|
hint?: string | undefined;
|
|
7194
7287
|
messages?: {
|
|
7195
7288
|
text: string;
|
|
7196
|
-
type: "
|
|
7289
|
+
type: "error" | "success" | "info" | "warning";
|
|
7197
7290
|
id?: number | undefined;
|
|
7198
7291
|
}[] | undefined;
|
|
7199
7292
|
required?: boolean | undefined;
|
|
@@ -7212,7 +7305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7212
7305
|
hint?: string | undefined;
|
|
7213
7306
|
messages?: {
|
|
7214
7307
|
text: string;
|
|
7215
|
-
type: "
|
|
7308
|
+
type: "error" | "success" | "info" | "warning";
|
|
7216
7309
|
id?: number | undefined;
|
|
7217
7310
|
}[] | undefined;
|
|
7218
7311
|
required?: boolean | undefined;
|
|
@@ -7234,7 +7327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7234
7327
|
hint?: string | undefined;
|
|
7235
7328
|
messages?: {
|
|
7236
7329
|
text: string;
|
|
7237
|
-
type: "
|
|
7330
|
+
type: "error" | "success" | "info" | "warning";
|
|
7238
7331
|
id?: number | undefined;
|
|
7239
7332
|
}[] | undefined;
|
|
7240
7333
|
required?: boolean | undefined;
|
|
@@ -7256,7 +7349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7256
7349
|
hint?: string | undefined;
|
|
7257
7350
|
messages?: {
|
|
7258
7351
|
text: string;
|
|
7259
|
-
type: "
|
|
7352
|
+
type: "error" | "success" | "info" | "warning";
|
|
7260
7353
|
id?: number | undefined;
|
|
7261
7354
|
}[] | undefined;
|
|
7262
7355
|
required?: boolean | undefined;
|
|
@@ -7275,7 +7368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7275
7368
|
hint?: string | undefined;
|
|
7276
7369
|
messages?: {
|
|
7277
7370
|
text: string;
|
|
7278
|
-
type: "
|
|
7371
|
+
type: "error" | "success" | "info" | "warning";
|
|
7279
7372
|
id?: number | undefined;
|
|
7280
7373
|
}[] | undefined;
|
|
7281
7374
|
required?: boolean | undefined;
|
|
@@ -7300,7 +7393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7300
7393
|
hint?: string | undefined;
|
|
7301
7394
|
messages?: {
|
|
7302
7395
|
text: string;
|
|
7303
|
-
type: "
|
|
7396
|
+
type: "error" | "success" | "info" | "warning";
|
|
7304
7397
|
id?: number | undefined;
|
|
7305
7398
|
}[] | undefined;
|
|
7306
7399
|
required?: boolean | undefined;
|
|
@@ -7321,7 +7414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7321
7414
|
hint?: string | undefined;
|
|
7322
7415
|
messages?: {
|
|
7323
7416
|
text: string;
|
|
7324
|
-
type: "
|
|
7417
|
+
type: "error" | "success" | "info" | "warning";
|
|
7325
7418
|
id?: number | undefined;
|
|
7326
7419
|
}[] | undefined;
|
|
7327
7420
|
required?: boolean | undefined;
|
|
@@ -7342,7 +7435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7342
7435
|
hint?: string | undefined;
|
|
7343
7436
|
messages?: {
|
|
7344
7437
|
text: string;
|
|
7345
|
-
type: "
|
|
7438
|
+
type: "error" | "success" | "info" | "warning";
|
|
7346
7439
|
id?: number | undefined;
|
|
7347
7440
|
}[] | undefined;
|
|
7348
7441
|
required?: boolean | undefined;
|
|
@@ -7573,7 +7666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7573
7666
|
hint?: string | undefined;
|
|
7574
7667
|
messages?: {
|
|
7575
7668
|
text: string;
|
|
7576
|
-
type: "
|
|
7669
|
+
type: "error" | "success" | "info" | "warning";
|
|
7577
7670
|
id?: number | undefined;
|
|
7578
7671
|
}[] | undefined;
|
|
7579
7672
|
required?: boolean | undefined;
|
|
@@ -7591,7 +7684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7591
7684
|
hint?: string | undefined;
|
|
7592
7685
|
messages?: {
|
|
7593
7686
|
text: string;
|
|
7594
|
-
type: "
|
|
7687
|
+
type: "error" | "success" | "info" | "warning";
|
|
7595
7688
|
id?: number | undefined;
|
|
7596
7689
|
}[] | undefined;
|
|
7597
7690
|
required?: boolean | undefined;
|
|
@@ -7615,7 +7708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7615
7708
|
hint?: string | undefined;
|
|
7616
7709
|
messages?: {
|
|
7617
7710
|
text: string;
|
|
7618
|
-
type: "
|
|
7711
|
+
type: "error" | "success" | "info" | "warning";
|
|
7619
7712
|
id?: number | undefined;
|
|
7620
7713
|
}[] | undefined;
|
|
7621
7714
|
required?: boolean | undefined;
|
|
@@ -7639,7 +7732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7639
7732
|
hint?: string | undefined;
|
|
7640
7733
|
messages?: {
|
|
7641
7734
|
text: string;
|
|
7642
|
-
type: "
|
|
7735
|
+
type: "error" | "success" | "info" | "warning";
|
|
7643
7736
|
id?: number | undefined;
|
|
7644
7737
|
}[] | undefined;
|
|
7645
7738
|
required?: boolean | undefined;
|
|
@@ -7668,7 +7761,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7668
7761
|
hint?: string | undefined;
|
|
7669
7762
|
messages?: {
|
|
7670
7763
|
text: string;
|
|
7671
|
-
type: "
|
|
7764
|
+
type: "error" | "success" | "info" | "warning";
|
|
7672
7765
|
id?: number | undefined;
|
|
7673
7766
|
}[] | undefined;
|
|
7674
7767
|
required?: boolean | undefined;
|
|
@@ -7683,7 +7776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7683
7776
|
hint?: string | undefined;
|
|
7684
7777
|
messages?: {
|
|
7685
7778
|
text: string;
|
|
7686
|
-
type: "
|
|
7779
|
+
type: "error" | "success" | "info" | "warning";
|
|
7687
7780
|
id?: number | undefined;
|
|
7688
7781
|
}[] | undefined;
|
|
7689
7782
|
required?: boolean | undefined;
|
|
@@ -7704,7 +7797,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7704
7797
|
hint?: string | undefined;
|
|
7705
7798
|
messages?: {
|
|
7706
7799
|
text: string;
|
|
7707
|
-
type: "
|
|
7800
|
+
type: "error" | "success" | "info" | "warning";
|
|
7708
7801
|
id?: number | undefined;
|
|
7709
7802
|
}[] | undefined;
|
|
7710
7803
|
required?: boolean | undefined;
|
|
@@ -7729,7 +7822,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7729
7822
|
hint?: string | undefined;
|
|
7730
7823
|
messages?: {
|
|
7731
7824
|
text: string;
|
|
7732
|
-
type: "
|
|
7825
|
+
type: "error" | "success" | "info" | "warning";
|
|
7733
7826
|
id?: number | undefined;
|
|
7734
7827
|
}[] | undefined;
|
|
7735
7828
|
required?: boolean | undefined;
|
|
@@ -7748,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7748
7841
|
hint?: string | undefined;
|
|
7749
7842
|
messages?: {
|
|
7750
7843
|
text: string;
|
|
7751
|
-
type: "
|
|
7844
|
+
type: "error" | "success" | "info" | "warning";
|
|
7752
7845
|
id?: number | undefined;
|
|
7753
7846
|
}[] | undefined;
|
|
7754
7847
|
required?: boolean | undefined;
|
|
@@ -7768,7 +7861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7768
7861
|
hint?: string | undefined;
|
|
7769
7862
|
messages?: {
|
|
7770
7863
|
text: string;
|
|
7771
|
-
type: "
|
|
7864
|
+
type: "error" | "success" | "info" | "warning";
|
|
7772
7865
|
id?: number | undefined;
|
|
7773
7866
|
}[] | undefined;
|
|
7774
7867
|
required?: boolean | undefined;
|
|
@@ -7787,7 +7880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7787
7880
|
hint?: string | undefined;
|
|
7788
7881
|
messages?: {
|
|
7789
7882
|
text: string;
|
|
7790
|
-
type: "
|
|
7883
|
+
type: "error" | "success" | "info" | "warning";
|
|
7791
7884
|
id?: number | undefined;
|
|
7792
7885
|
}[] | undefined;
|
|
7793
7886
|
required?: boolean | undefined;
|
|
@@ -7809,7 +7902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7809
7902
|
hint?: string | undefined;
|
|
7810
7903
|
messages?: {
|
|
7811
7904
|
text: string;
|
|
7812
|
-
type: "
|
|
7905
|
+
type: "error" | "success" | "info" | "warning";
|
|
7813
7906
|
id?: number | undefined;
|
|
7814
7907
|
}[] | undefined;
|
|
7815
7908
|
required?: boolean | undefined;
|
|
@@ -7831,7 +7924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7831
7924
|
hint?: string | undefined;
|
|
7832
7925
|
messages?: {
|
|
7833
7926
|
text: string;
|
|
7834
|
-
type: "
|
|
7927
|
+
type: "error" | "success" | "info" | "warning";
|
|
7835
7928
|
id?: number | undefined;
|
|
7836
7929
|
}[] | undefined;
|
|
7837
7930
|
required?: boolean | undefined;
|
|
@@ -7850,7 +7943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7850
7943
|
hint?: string | undefined;
|
|
7851
7944
|
messages?: {
|
|
7852
7945
|
text: string;
|
|
7853
|
-
type: "
|
|
7946
|
+
type: "error" | "success" | "info" | "warning";
|
|
7854
7947
|
id?: number | undefined;
|
|
7855
7948
|
}[] | undefined;
|
|
7856
7949
|
required?: boolean | undefined;
|
|
@@ -7875,7 +7968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7875
7968
|
hint?: string | undefined;
|
|
7876
7969
|
messages?: {
|
|
7877
7970
|
text: string;
|
|
7878
|
-
type: "
|
|
7971
|
+
type: "error" | "success" | "info" | "warning";
|
|
7879
7972
|
id?: number | undefined;
|
|
7880
7973
|
}[] | undefined;
|
|
7881
7974
|
required?: boolean | undefined;
|
|
@@ -7896,7 +7989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7896
7989
|
hint?: string | undefined;
|
|
7897
7990
|
messages?: {
|
|
7898
7991
|
text: string;
|
|
7899
|
-
type: "
|
|
7992
|
+
type: "error" | "success" | "info" | "warning";
|
|
7900
7993
|
id?: number | undefined;
|
|
7901
7994
|
}[] | undefined;
|
|
7902
7995
|
required?: boolean | undefined;
|
|
@@ -7917,7 +8010,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7917
8010
|
hint?: string | undefined;
|
|
7918
8011
|
messages?: {
|
|
7919
8012
|
text: string;
|
|
7920
|
-
type: "
|
|
8013
|
+
type: "error" | "success" | "info" | "warning";
|
|
7921
8014
|
id?: number | undefined;
|
|
7922
8015
|
}[] | undefined;
|
|
7923
8016
|
required?: boolean | undefined;
|
|
@@ -8150,7 +8243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8150
8243
|
hint?: string | undefined;
|
|
8151
8244
|
messages?: {
|
|
8152
8245
|
text: string;
|
|
8153
|
-
type: "
|
|
8246
|
+
type: "error" | "success" | "info" | "warning";
|
|
8154
8247
|
id?: number | undefined;
|
|
8155
8248
|
}[] | undefined;
|
|
8156
8249
|
required?: boolean | undefined;
|
|
@@ -8168,7 +8261,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8168
8261
|
hint?: string | undefined;
|
|
8169
8262
|
messages?: {
|
|
8170
8263
|
text: string;
|
|
8171
|
-
type: "
|
|
8264
|
+
type: "error" | "success" | "info" | "warning";
|
|
8172
8265
|
id?: number | undefined;
|
|
8173
8266
|
}[] | undefined;
|
|
8174
8267
|
required?: boolean | undefined;
|
|
@@ -8192,7 +8285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8192
8285
|
hint?: string | undefined;
|
|
8193
8286
|
messages?: {
|
|
8194
8287
|
text: string;
|
|
8195
|
-
type: "
|
|
8288
|
+
type: "error" | "success" | "info" | "warning";
|
|
8196
8289
|
id?: number | undefined;
|
|
8197
8290
|
}[] | undefined;
|
|
8198
8291
|
required?: boolean | undefined;
|
|
@@ -8216,7 +8309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8216
8309
|
hint?: string | undefined;
|
|
8217
8310
|
messages?: {
|
|
8218
8311
|
text: string;
|
|
8219
|
-
type: "
|
|
8312
|
+
type: "error" | "success" | "info" | "warning";
|
|
8220
8313
|
id?: number | undefined;
|
|
8221
8314
|
}[] | undefined;
|
|
8222
8315
|
required?: boolean | undefined;
|
|
@@ -8241,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8241
8334
|
hint?: string | undefined;
|
|
8242
8335
|
messages?: {
|
|
8243
8336
|
text: string;
|
|
8244
|
-
type: "
|
|
8337
|
+
type: "error" | "success" | "info" | "warning";
|
|
8245
8338
|
id?: number | undefined;
|
|
8246
8339
|
}[] | undefined;
|
|
8247
8340
|
required?: boolean | undefined;
|
|
@@ -8256,7 +8349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8256
8349
|
hint?: string | undefined;
|
|
8257
8350
|
messages?: {
|
|
8258
8351
|
text: string;
|
|
8259
|
-
type: "
|
|
8352
|
+
type: "error" | "success" | "info" | "warning";
|
|
8260
8353
|
id?: number | undefined;
|
|
8261
8354
|
}[] | undefined;
|
|
8262
8355
|
required?: boolean | undefined;
|
|
@@ -8277,7 +8370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8277
8370
|
hint?: string | undefined;
|
|
8278
8371
|
messages?: {
|
|
8279
8372
|
text: string;
|
|
8280
|
-
type: "
|
|
8373
|
+
type: "error" | "success" | "info" | "warning";
|
|
8281
8374
|
id?: number | undefined;
|
|
8282
8375
|
}[] | undefined;
|
|
8283
8376
|
required?: boolean | undefined;
|
|
@@ -8302,7 +8395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8302
8395
|
hint?: string | undefined;
|
|
8303
8396
|
messages?: {
|
|
8304
8397
|
text: string;
|
|
8305
|
-
type: "
|
|
8398
|
+
type: "error" | "success" | "info" | "warning";
|
|
8306
8399
|
id?: number | undefined;
|
|
8307
8400
|
}[] | undefined;
|
|
8308
8401
|
required?: boolean | undefined;
|
|
@@ -8321,7 +8414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8321
8414
|
hint?: string | undefined;
|
|
8322
8415
|
messages?: {
|
|
8323
8416
|
text: string;
|
|
8324
|
-
type: "
|
|
8417
|
+
type: "error" | "success" | "info" | "warning";
|
|
8325
8418
|
id?: number | undefined;
|
|
8326
8419
|
}[] | undefined;
|
|
8327
8420
|
required?: boolean | undefined;
|
|
@@ -8341,7 +8434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8341
8434
|
hint?: string | undefined;
|
|
8342
8435
|
messages?: {
|
|
8343
8436
|
text: string;
|
|
8344
|
-
type: "
|
|
8437
|
+
type: "error" | "success" | "info" | "warning";
|
|
8345
8438
|
id?: number | undefined;
|
|
8346
8439
|
}[] | undefined;
|
|
8347
8440
|
required?: boolean | undefined;
|
|
@@ -8360,7 +8453,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8360
8453
|
hint?: string | undefined;
|
|
8361
8454
|
messages?: {
|
|
8362
8455
|
text: string;
|
|
8363
|
-
type: "
|
|
8456
|
+
type: "error" | "success" | "info" | "warning";
|
|
8364
8457
|
id?: number | undefined;
|
|
8365
8458
|
}[] | undefined;
|
|
8366
8459
|
required?: boolean | undefined;
|
|
@@ -8382,7 +8475,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8382
8475
|
hint?: string | undefined;
|
|
8383
8476
|
messages?: {
|
|
8384
8477
|
text: string;
|
|
8385
|
-
type: "
|
|
8478
|
+
type: "error" | "success" | "info" | "warning";
|
|
8386
8479
|
id?: number | undefined;
|
|
8387
8480
|
}[] | undefined;
|
|
8388
8481
|
required?: boolean | undefined;
|
|
@@ -8404,7 +8497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8404
8497
|
hint?: string | undefined;
|
|
8405
8498
|
messages?: {
|
|
8406
8499
|
text: string;
|
|
8407
|
-
type: "
|
|
8500
|
+
type: "error" | "success" | "info" | "warning";
|
|
8408
8501
|
id?: number | undefined;
|
|
8409
8502
|
}[] | undefined;
|
|
8410
8503
|
required?: boolean | undefined;
|
|
@@ -8423,7 +8516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8423
8516
|
hint?: string | undefined;
|
|
8424
8517
|
messages?: {
|
|
8425
8518
|
text: string;
|
|
8426
|
-
type: "
|
|
8519
|
+
type: "error" | "success" | "info" | "warning";
|
|
8427
8520
|
id?: number | undefined;
|
|
8428
8521
|
}[] | undefined;
|
|
8429
8522
|
required?: boolean | undefined;
|
|
@@ -8448,7 +8541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8448
8541
|
hint?: string | undefined;
|
|
8449
8542
|
messages?: {
|
|
8450
8543
|
text: string;
|
|
8451
|
-
type: "
|
|
8544
|
+
type: "error" | "success" | "info" | "warning";
|
|
8452
8545
|
id?: number | undefined;
|
|
8453
8546
|
}[] | undefined;
|
|
8454
8547
|
required?: boolean | undefined;
|
|
@@ -8469,7 +8562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8469
8562
|
hint?: string | undefined;
|
|
8470
8563
|
messages?: {
|
|
8471
8564
|
text: string;
|
|
8472
|
-
type: "
|
|
8565
|
+
type: "error" | "success" | "info" | "warning";
|
|
8473
8566
|
id?: number | undefined;
|
|
8474
8567
|
}[] | undefined;
|
|
8475
8568
|
required?: boolean | undefined;
|
|
@@ -8490,7 +8583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8490
8583
|
hint?: string | undefined;
|
|
8491
8584
|
messages?: {
|
|
8492
8585
|
text: string;
|
|
8493
|
-
type: "
|
|
8586
|
+
type: "error" | "success" | "info" | "warning";
|
|
8494
8587
|
id?: number | undefined;
|
|
8495
8588
|
}[] | undefined;
|
|
8496
8589
|
required?: boolean | undefined;
|
|
@@ -8721,7 +8814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8721
8814
|
hint?: string | undefined;
|
|
8722
8815
|
messages?: {
|
|
8723
8816
|
text: string;
|
|
8724
|
-
type: "
|
|
8817
|
+
type: "error" | "success" | "info" | "warning";
|
|
8725
8818
|
id?: number | undefined;
|
|
8726
8819
|
}[] | undefined;
|
|
8727
8820
|
required?: boolean | undefined;
|
|
@@ -8739,7 +8832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8739
8832
|
hint?: string | undefined;
|
|
8740
8833
|
messages?: {
|
|
8741
8834
|
text: string;
|
|
8742
|
-
type: "
|
|
8835
|
+
type: "error" | "success" | "info" | "warning";
|
|
8743
8836
|
id?: number | undefined;
|
|
8744
8837
|
}[] | undefined;
|
|
8745
8838
|
required?: boolean | undefined;
|
|
@@ -8763,7 +8856,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8763
8856
|
hint?: string | undefined;
|
|
8764
8857
|
messages?: {
|
|
8765
8858
|
text: string;
|
|
8766
|
-
type: "
|
|
8859
|
+
type: "error" | "success" | "info" | "warning";
|
|
8767
8860
|
id?: number | undefined;
|
|
8768
8861
|
}[] | undefined;
|
|
8769
8862
|
required?: boolean | undefined;
|
|
@@ -8787,7 +8880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8787
8880
|
hint?: string | undefined;
|
|
8788
8881
|
messages?: {
|
|
8789
8882
|
text: string;
|
|
8790
|
-
type: "
|
|
8883
|
+
type: "error" | "success" | "info" | "warning";
|
|
8791
8884
|
id?: number | undefined;
|
|
8792
8885
|
}[] | undefined;
|
|
8793
8886
|
required?: boolean | undefined;
|
|
@@ -8816,7 +8909,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8816
8909
|
hint?: string | undefined;
|
|
8817
8910
|
messages?: {
|
|
8818
8911
|
text: string;
|
|
8819
|
-
type: "
|
|
8912
|
+
type: "error" | "success" | "info" | "warning";
|
|
8820
8913
|
id?: number | undefined;
|
|
8821
8914
|
}[] | undefined;
|
|
8822
8915
|
required?: boolean | undefined;
|
|
@@ -8831,7 +8924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8831
8924
|
hint?: string | undefined;
|
|
8832
8925
|
messages?: {
|
|
8833
8926
|
text: string;
|
|
8834
|
-
type: "
|
|
8927
|
+
type: "error" | "success" | "info" | "warning";
|
|
8835
8928
|
id?: number | undefined;
|
|
8836
8929
|
}[] | undefined;
|
|
8837
8930
|
required?: boolean | undefined;
|
|
@@ -8852,7 +8945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8852
8945
|
hint?: string | undefined;
|
|
8853
8946
|
messages?: {
|
|
8854
8947
|
text: string;
|
|
8855
|
-
type: "
|
|
8948
|
+
type: "error" | "success" | "info" | "warning";
|
|
8856
8949
|
id?: number | undefined;
|
|
8857
8950
|
}[] | undefined;
|
|
8858
8951
|
required?: boolean | undefined;
|
|
@@ -8877,7 +8970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8877
8970
|
hint?: string | undefined;
|
|
8878
8971
|
messages?: {
|
|
8879
8972
|
text: string;
|
|
8880
|
-
type: "
|
|
8973
|
+
type: "error" | "success" | "info" | "warning";
|
|
8881
8974
|
id?: number | undefined;
|
|
8882
8975
|
}[] | undefined;
|
|
8883
8976
|
required?: boolean | undefined;
|
|
@@ -8896,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8896
8989
|
hint?: string | undefined;
|
|
8897
8990
|
messages?: {
|
|
8898
8991
|
text: string;
|
|
8899
|
-
type: "
|
|
8992
|
+
type: "error" | "success" | "info" | "warning";
|
|
8900
8993
|
id?: number | undefined;
|
|
8901
8994
|
}[] | undefined;
|
|
8902
8995
|
required?: boolean | undefined;
|
|
@@ -8916,7 +9009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8916
9009
|
hint?: string | undefined;
|
|
8917
9010
|
messages?: {
|
|
8918
9011
|
text: string;
|
|
8919
|
-
type: "
|
|
9012
|
+
type: "error" | "success" | "info" | "warning";
|
|
8920
9013
|
id?: number | undefined;
|
|
8921
9014
|
}[] | undefined;
|
|
8922
9015
|
required?: boolean | undefined;
|
|
@@ -8935,7 +9028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8935
9028
|
hint?: string | undefined;
|
|
8936
9029
|
messages?: {
|
|
8937
9030
|
text: string;
|
|
8938
|
-
type: "
|
|
9031
|
+
type: "error" | "success" | "info" | "warning";
|
|
8939
9032
|
id?: number | undefined;
|
|
8940
9033
|
}[] | undefined;
|
|
8941
9034
|
required?: boolean | undefined;
|
|
@@ -8957,7 +9050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8957
9050
|
hint?: string | undefined;
|
|
8958
9051
|
messages?: {
|
|
8959
9052
|
text: string;
|
|
8960
|
-
type: "
|
|
9053
|
+
type: "error" | "success" | "info" | "warning";
|
|
8961
9054
|
id?: number | undefined;
|
|
8962
9055
|
}[] | undefined;
|
|
8963
9056
|
required?: boolean | undefined;
|
|
@@ -8979,7 +9072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8979
9072
|
hint?: string | undefined;
|
|
8980
9073
|
messages?: {
|
|
8981
9074
|
text: string;
|
|
8982
|
-
type: "
|
|
9075
|
+
type: "error" | "success" | "info" | "warning";
|
|
8983
9076
|
id?: number | undefined;
|
|
8984
9077
|
}[] | undefined;
|
|
8985
9078
|
required?: boolean | undefined;
|
|
@@ -8998,7 +9091,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8998
9091
|
hint?: string | undefined;
|
|
8999
9092
|
messages?: {
|
|
9000
9093
|
text: string;
|
|
9001
|
-
type: "
|
|
9094
|
+
type: "error" | "success" | "info" | "warning";
|
|
9002
9095
|
id?: number | undefined;
|
|
9003
9096
|
}[] | undefined;
|
|
9004
9097
|
required?: boolean | undefined;
|
|
@@ -9023,7 +9116,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9023
9116
|
hint?: string | undefined;
|
|
9024
9117
|
messages?: {
|
|
9025
9118
|
text: string;
|
|
9026
|
-
type: "
|
|
9119
|
+
type: "error" | "success" | "info" | "warning";
|
|
9027
9120
|
id?: number | undefined;
|
|
9028
9121
|
}[] | undefined;
|
|
9029
9122
|
required?: boolean | undefined;
|
|
@@ -9044,7 +9137,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9044
9137
|
hint?: string | undefined;
|
|
9045
9138
|
messages?: {
|
|
9046
9139
|
text: string;
|
|
9047
|
-
type: "
|
|
9140
|
+
type: "error" | "success" | "info" | "warning";
|
|
9048
9141
|
id?: number | undefined;
|
|
9049
9142
|
}[] | undefined;
|
|
9050
9143
|
required?: boolean | undefined;
|
|
@@ -9065,7 +9158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9065
9158
|
hint?: string | undefined;
|
|
9066
9159
|
messages?: {
|
|
9067
9160
|
text: string;
|
|
9068
|
-
type: "
|
|
9161
|
+
type: "error" | "success" | "info" | "warning";
|
|
9069
9162
|
id?: number | undefined;
|
|
9070
9163
|
}[] | undefined;
|
|
9071
9164
|
required?: boolean | undefined;
|
|
@@ -9295,7 +9388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9295
9388
|
};
|
|
9296
9389
|
};
|
|
9297
9390
|
output: {
|
|
9298
|
-
prompt: "signup" | "status" | "
|
|
9391
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9299
9392
|
language: string;
|
|
9300
9393
|
}[];
|
|
9301
9394
|
outputFormat: "json";
|
|
@@ -9333,7 +9426,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9333
9426
|
$get: {
|
|
9334
9427
|
input: {
|
|
9335
9428
|
param: {
|
|
9336
|
-
prompt: "signup" | "status" | "
|
|
9429
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9337
9430
|
language: string;
|
|
9338
9431
|
};
|
|
9339
9432
|
} & {
|
|
@@ -9355,7 +9448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9355
9448
|
$put: {
|
|
9356
9449
|
input: {
|
|
9357
9450
|
param: {
|
|
9358
|
-
prompt: "signup" | "status" | "
|
|
9451
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9359
9452
|
language: string;
|
|
9360
9453
|
};
|
|
9361
9454
|
} & {
|
|
@@ -9379,7 +9472,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9379
9472
|
$delete: {
|
|
9380
9473
|
input: {
|
|
9381
9474
|
param: {
|
|
9382
|
-
prompt: "signup" | "status" | "
|
|
9475
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9383
9476
|
language: string;
|
|
9384
9477
|
};
|
|
9385
9478
|
} & {
|
|
@@ -9481,7 +9574,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9481
9574
|
} | undefined;
|
|
9482
9575
|
unique?: boolean | undefined;
|
|
9483
9576
|
profile_required?: boolean | undefined;
|
|
9484
|
-
verification_method?: "
|
|
9577
|
+
verification_method?: "link" | "code" | undefined;
|
|
9485
9578
|
} | undefined;
|
|
9486
9579
|
username?: {
|
|
9487
9580
|
identifier?: {
|
|
@@ -9615,7 +9708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9615
9708
|
} | undefined;
|
|
9616
9709
|
unique?: boolean | undefined;
|
|
9617
9710
|
profile_required?: boolean | undefined;
|
|
9618
|
-
verification_method?: "
|
|
9711
|
+
verification_method?: "link" | "code" | undefined;
|
|
9619
9712
|
} | undefined;
|
|
9620
9713
|
username?: {
|
|
9621
9714
|
identifier?: {
|
|
@@ -9764,7 +9857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9764
9857
|
} | undefined;
|
|
9765
9858
|
unique?: boolean | undefined;
|
|
9766
9859
|
profile_required?: boolean | undefined;
|
|
9767
|
-
verification_method?: "
|
|
9860
|
+
verification_method?: "link" | "code" | undefined;
|
|
9768
9861
|
} | undefined;
|
|
9769
9862
|
username?: {
|
|
9770
9863
|
identifier?: {
|
|
@@ -9943,7 +10036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9943
10036
|
} | undefined;
|
|
9944
10037
|
unique?: boolean | undefined;
|
|
9945
10038
|
profile_required?: boolean | undefined;
|
|
9946
|
-
verification_method?: "
|
|
10039
|
+
verification_method?: "link" | "code" | undefined;
|
|
9947
10040
|
} | undefined;
|
|
9948
10041
|
username?: {
|
|
9949
10042
|
identifier?: {
|
|
@@ -10101,7 +10194,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10101
10194
|
} | undefined;
|
|
10102
10195
|
unique?: boolean | undefined;
|
|
10103
10196
|
profile_required?: boolean | undefined;
|
|
10104
|
-
verification_method?: "
|
|
10197
|
+
verification_method?: "link" | "code" | undefined;
|
|
10105
10198
|
} | undefined;
|
|
10106
10199
|
username?: {
|
|
10107
10200
|
identifier?: {
|
|
@@ -10241,7 +10334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10241
10334
|
};
|
|
10242
10335
|
} | {
|
|
10243
10336
|
mode: "inline";
|
|
10244
|
-
status: "
|
|
10337
|
+
status: "error" | "success";
|
|
10245
10338
|
connection_id: string;
|
|
10246
10339
|
connection_name: string;
|
|
10247
10340
|
strategy: string;
|
|
@@ -10277,7 +10370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10277
10370
|
tenant_id: string;
|
|
10278
10371
|
created_at: string;
|
|
10279
10372
|
updated_at: string;
|
|
10280
|
-
deploymentStatus: "
|
|
10373
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
10281
10374
|
secrets?: {
|
|
10282
10375
|
[x: string]: string;
|
|
10283
10376
|
} | undefined;
|
|
@@ -10367,7 +10460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10367
10460
|
tenant_id: string;
|
|
10368
10461
|
created_at: string;
|
|
10369
10462
|
updated_at: string;
|
|
10370
|
-
deploymentStatus: "
|
|
10463
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
10371
10464
|
secrets?: {
|
|
10372
10465
|
[x: string]: string;
|
|
10373
10466
|
} | undefined;
|
|
@@ -11528,7 +11621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11528
11621
|
};
|
|
11529
11622
|
};
|
|
11530
11623
|
output: {
|
|
11531
|
-
type: "
|
|
11624
|
+
type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11532
11625
|
date: string;
|
|
11533
11626
|
isMobile: boolean;
|
|
11534
11627
|
log_id: string;
|
|
@@ -11567,7 +11660,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11567
11660
|
limit: number;
|
|
11568
11661
|
length: number;
|
|
11569
11662
|
logs: {
|
|
11570
|
-
type: "
|
|
11663
|
+
type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11571
11664
|
date: string;
|
|
11572
11665
|
isMobile: boolean;
|
|
11573
11666
|
log_id: string;
|
|
@@ -11621,7 +11714,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11621
11714
|
};
|
|
11622
11715
|
};
|
|
11623
11716
|
output: {
|
|
11624
|
-
type: "
|
|
11717
|
+
type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11625
11718
|
date: string;
|
|
11626
11719
|
isMobile: boolean;
|
|
11627
11720
|
log_id: string;
|
|
@@ -11776,7 +11869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11776
11869
|
audience?: string | undefined;
|
|
11777
11870
|
client_id?: string | undefined;
|
|
11778
11871
|
allow_any_organization?: string | undefined;
|
|
11779
|
-
subject_type?: "
|
|
11872
|
+
subject_type?: "client" | "user" | undefined;
|
|
11780
11873
|
};
|
|
11781
11874
|
} & {
|
|
11782
11875
|
header: {
|
|
@@ -11791,7 +11884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11791
11884
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11792
11885
|
allow_any_organization?: boolean | undefined;
|
|
11793
11886
|
is_system?: boolean | undefined;
|
|
11794
|
-
subject_type?: "
|
|
11887
|
+
subject_type?: "client" | "user" | undefined;
|
|
11795
11888
|
authorization_details_types?: string[] | undefined;
|
|
11796
11889
|
created_at?: string | undefined;
|
|
11797
11890
|
updated_at?: string | undefined;
|
|
@@ -11807,7 +11900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11807
11900
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11808
11901
|
allow_any_organization?: boolean | undefined;
|
|
11809
11902
|
is_system?: boolean | undefined;
|
|
11810
|
-
subject_type?: "
|
|
11903
|
+
subject_type?: "client" | "user" | undefined;
|
|
11811
11904
|
authorization_details_types?: string[] | undefined;
|
|
11812
11905
|
created_at?: string | undefined;
|
|
11813
11906
|
updated_at?: string | undefined;
|
|
@@ -11838,7 +11931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11838
11931
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11839
11932
|
allow_any_organization?: boolean | undefined;
|
|
11840
11933
|
is_system?: boolean | undefined;
|
|
11841
|
-
subject_type?: "
|
|
11934
|
+
subject_type?: "client" | "user" | undefined;
|
|
11842
11935
|
authorization_details_types?: string[] | undefined;
|
|
11843
11936
|
created_at?: string | undefined;
|
|
11844
11937
|
updated_at?: string | undefined;
|
|
@@ -11883,7 +11976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11883
11976
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11884
11977
|
allow_any_organization?: boolean | undefined;
|
|
11885
11978
|
is_system?: boolean | undefined;
|
|
11886
|
-
subject_type?: "
|
|
11979
|
+
subject_type?: "client" | "user" | undefined;
|
|
11887
11980
|
authorization_details_types?: string[] | undefined;
|
|
11888
11981
|
};
|
|
11889
11982
|
};
|
|
@@ -11895,7 +11988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11895
11988
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11896
11989
|
allow_any_organization?: boolean | undefined;
|
|
11897
11990
|
is_system?: boolean | undefined;
|
|
11898
|
-
subject_type?: "
|
|
11991
|
+
subject_type?: "client" | "user" | undefined;
|
|
11899
11992
|
authorization_details_types?: string[] | undefined;
|
|
11900
11993
|
created_at?: string | undefined;
|
|
11901
11994
|
updated_at?: string | undefined;
|
|
@@ -11919,7 +12012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11919
12012
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11920
12013
|
allow_any_organization?: boolean | undefined;
|
|
11921
12014
|
is_system?: boolean | undefined;
|
|
11922
|
-
subject_type?: "
|
|
12015
|
+
subject_type?: "client" | "user" | undefined;
|
|
11923
12016
|
authorization_details_types?: string[] | undefined;
|
|
11924
12017
|
};
|
|
11925
12018
|
};
|
|
@@ -11931,7 +12024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11931
12024
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11932
12025
|
allow_any_organization?: boolean | undefined;
|
|
11933
12026
|
is_system?: boolean | undefined;
|
|
11934
|
-
subject_type?: "
|
|
12027
|
+
subject_type?: "client" | "user" | undefined;
|
|
11935
12028
|
authorization_details_types?: string[] | undefined;
|
|
11936
12029
|
created_at?: string | undefined;
|
|
11937
12030
|
updated_at?: string | undefined;
|
|
@@ -12009,7 +12102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12009
12102
|
addons?: {
|
|
12010
12103
|
[x: string]: any;
|
|
12011
12104
|
} | undefined;
|
|
12012
|
-
token_endpoint_auth_method?: "
|
|
12105
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12013
12106
|
client_metadata?: {
|
|
12014
12107
|
[x: string]: string;
|
|
12015
12108
|
} | undefined;
|
|
@@ -12105,7 +12198,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12105
12198
|
addons?: {
|
|
12106
12199
|
[x: string]: any;
|
|
12107
12200
|
} | undefined;
|
|
12108
|
-
token_endpoint_auth_method?: "
|
|
12201
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12109
12202
|
client_metadata?: {
|
|
12110
12203
|
[x: string]: string;
|
|
12111
12204
|
} | undefined;
|
|
@@ -12216,7 +12309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12216
12309
|
addons?: {
|
|
12217
12310
|
[x: string]: any;
|
|
12218
12311
|
} | undefined;
|
|
12219
|
-
token_endpoint_auth_method?: "
|
|
12312
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12220
12313
|
client_metadata?: {
|
|
12221
12314
|
[x: string]: string;
|
|
12222
12315
|
} | undefined;
|
|
@@ -12326,7 +12419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12326
12419
|
custom_login_page_preview?: string | undefined;
|
|
12327
12420
|
form_template?: string | undefined;
|
|
12328
12421
|
addons?: Record<string, any> | undefined;
|
|
12329
|
-
token_endpoint_auth_method?: "
|
|
12422
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12330
12423
|
client_metadata?: Record<string, string> | undefined;
|
|
12331
12424
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12332
12425
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12406,7 +12499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12406
12499
|
addons?: {
|
|
12407
12500
|
[x: string]: any;
|
|
12408
12501
|
} | undefined;
|
|
12409
|
-
token_endpoint_auth_method?: "
|
|
12502
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12410
12503
|
client_metadata?: {
|
|
12411
12504
|
[x: string]: string;
|
|
12412
12505
|
} | undefined;
|
|
@@ -12495,7 +12588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12495
12588
|
custom_login_page_preview?: string | undefined;
|
|
12496
12589
|
form_template?: string | undefined;
|
|
12497
12590
|
addons?: Record<string, any> | undefined;
|
|
12498
|
-
token_endpoint_auth_method?: "
|
|
12591
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12499
12592
|
client_metadata?: Record<string, string> | undefined;
|
|
12500
12593
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12501
12594
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12575,7 +12668,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12575
12668
|
addons?: {
|
|
12576
12669
|
[x: string]: any;
|
|
12577
12670
|
} | undefined;
|
|
12578
|
-
token_endpoint_auth_method?: "
|
|
12671
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12579
12672
|
client_metadata?: {
|
|
12580
12673
|
[x: string]: string;
|
|
12581
12674
|
} | undefined;
|
|
@@ -12707,7 +12800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12707
12800
|
} | undefined;
|
|
12708
12801
|
unique?: boolean | undefined;
|
|
12709
12802
|
profile_required?: boolean | undefined;
|
|
12710
|
-
verification_method?: "
|
|
12803
|
+
verification_method?: "link" | "code" | undefined;
|
|
12711
12804
|
} | undefined;
|
|
12712
12805
|
username?: {
|
|
12713
12806
|
identifier?: {
|
|
@@ -12861,7 +12954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12861
12954
|
} | undefined;
|
|
12862
12955
|
unique?: boolean | undefined;
|
|
12863
12956
|
profile_required?: boolean | undefined;
|
|
12864
|
-
verification_method?: "
|
|
12957
|
+
verification_method?: "link" | "code" | undefined;
|
|
12865
12958
|
} | undefined;
|
|
12866
12959
|
username?: {
|
|
12867
12960
|
identifier?: {
|
|
@@ -13839,7 +13932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13839
13932
|
};
|
|
13840
13933
|
};
|
|
13841
13934
|
output: {
|
|
13842
|
-
type: "
|
|
13935
|
+
type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13843
13936
|
date: string;
|
|
13844
13937
|
isMobile: boolean;
|
|
13845
13938
|
log_id: string;
|
|
@@ -13878,7 +13971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13878
13971
|
limit: number;
|
|
13879
13972
|
length: number;
|
|
13880
13973
|
logs: {
|
|
13881
|
-
type: "
|
|
13974
|
+
type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13882
13975
|
date: string;
|
|
13883
13976
|
isMobile: boolean;
|
|
13884
13977
|
log_id: string;
|
|
@@ -14193,7 +14286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14193
14286
|
};
|
|
14194
14287
|
} & {
|
|
14195
14288
|
json: {
|
|
14196
|
-
template: "verify_email" | "
|
|
14289
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14197
14290
|
body: string;
|
|
14198
14291
|
from: string;
|
|
14199
14292
|
subject: string;
|
|
@@ -14214,7 +14307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14214
14307
|
};
|
|
14215
14308
|
} & {
|
|
14216
14309
|
json: {
|
|
14217
|
-
template: "verify_email" | "
|
|
14310
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14218
14311
|
body: string;
|
|
14219
14312
|
from: string;
|
|
14220
14313
|
subject: string;
|
|
@@ -14226,7 +14319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14226
14319
|
};
|
|
14227
14320
|
};
|
|
14228
14321
|
output: {
|
|
14229
|
-
template: "verify_email" | "
|
|
14322
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14230
14323
|
body: string;
|
|
14231
14324
|
from: string;
|
|
14232
14325
|
subject: string;
|
|
@@ -14249,7 +14342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14249
14342
|
};
|
|
14250
14343
|
};
|
|
14251
14344
|
output: {
|
|
14252
|
-
name: "verify_email" | "
|
|
14345
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14253
14346
|
body: string;
|
|
14254
14347
|
subject: string;
|
|
14255
14348
|
}[];
|
|
@@ -14262,7 +14355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14262
14355
|
$get: {
|
|
14263
14356
|
input: {
|
|
14264
14357
|
param: {
|
|
14265
|
-
templateName: "verify_email" | "
|
|
14358
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14266
14359
|
};
|
|
14267
14360
|
} & {
|
|
14268
14361
|
header: {
|
|
@@ -14275,7 +14368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14275
14368
|
} | {
|
|
14276
14369
|
input: {
|
|
14277
14370
|
param: {
|
|
14278
|
-
templateName: "verify_email" | "
|
|
14371
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14279
14372
|
};
|
|
14280
14373
|
} & {
|
|
14281
14374
|
header: {
|
|
@@ -14283,7 +14376,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14283
14376
|
};
|
|
14284
14377
|
};
|
|
14285
14378
|
output: {
|
|
14286
|
-
template: "verify_email" | "
|
|
14379
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14287
14380
|
body: string;
|
|
14288
14381
|
from: string;
|
|
14289
14382
|
subject: string;
|
|
@@ -14302,7 +14395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14302
14395
|
$put: {
|
|
14303
14396
|
input: {
|
|
14304
14397
|
param: {
|
|
14305
|
-
templateName: "verify_email" | "
|
|
14398
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14306
14399
|
};
|
|
14307
14400
|
} & {
|
|
14308
14401
|
header: {
|
|
@@ -14310,7 +14403,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14310
14403
|
};
|
|
14311
14404
|
} & {
|
|
14312
14405
|
json: {
|
|
14313
|
-
template: "verify_email" | "
|
|
14406
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14314
14407
|
body: string;
|
|
14315
14408
|
subject: string;
|
|
14316
14409
|
syntax?: "liquid" | undefined;
|
|
@@ -14322,7 +14415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14322
14415
|
};
|
|
14323
14416
|
};
|
|
14324
14417
|
output: {
|
|
14325
|
-
template: "verify_email" | "
|
|
14418
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14326
14419
|
body: string;
|
|
14327
14420
|
from: string;
|
|
14328
14421
|
subject: string;
|
|
@@ -14341,7 +14434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14341
14434
|
$patch: {
|
|
14342
14435
|
input: {
|
|
14343
14436
|
param: {
|
|
14344
|
-
templateName: "verify_email" | "
|
|
14437
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14345
14438
|
};
|
|
14346
14439
|
} & {
|
|
14347
14440
|
header: {
|
|
@@ -14349,7 +14442,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14349
14442
|
};
|
|
14350
14443
|
} & {
|
|
14351
14444
|
json: {
|
|
14352
|
-
template?: "verify_email" | "
|
|
14445
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14353
14446
|
body?: string | undefined;
|
|
14354
14447
|
from?: string | undefined;
|
|
14355
14448
|
subject?: string | undefined;
|
|
@@ -14366,7 +14459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14366
14459
|
} | {
|
|
14367
14460
|
input: {
|
|
14368
14461
|
param: {
|
|
14369
|
-
templateName: "verify_email" | "
|
|
14462
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14370
14463
|
};
|
|
14371
14464
|
} & {
|
|
14372
14465
|
header: {
|
|
@@ -14374,7 +14467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14374
14467
|
};
|
|
14375
14468
|
} & {
|
|
14376
14469
|
json: {
|
|
14377
|
-
template?: "verify_email" | "
|
|
14470
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14378
14471
|
body?: string | undefined;
|
|
14379
14472
|
from?: string | undefined;
|
|
14380
14473
|
subject?: string | undefined;
|
|
@@ -14386,7 +14479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14386
14479
|
};
|
|
14387
14480
|
};
|
|
14388
14481
|
output: {
|
|
14389
|
-
template: "verify_email" | "
|
|
14482
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14390
14483
|
body: string;
|
|
14391
14484
|
from: string;
|
|
14392
14485
|
subject: string;
|
|
@@ -14405,7 +14498,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14405
14498
|
$delete: {
|
|
14406
14499
|
input: {
|
|
14407
14500
|
param: {
|
|
14408
|
-
templateName: "verify_email" | "
|
|
14501
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14409
14502
|
};
|
|
14410
14503
|
} & {
|
|
14411
14504
|
header: {
|
|
@@ -14418,7 +14511,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14418
14511
|
} | {
|
|
14419
14512
|
input: {
|
|
14420
14513
|
param: {
|
|
14421
|
-
templateName: "verify_email" | "
|
|
14514
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14422
14515
|
};
|
|
14423
14516
|
} & {
|
|
14424
14517
|
header: {
|
|
@@ -14435,7 +14528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14435
14528
|
$post: {
|
|
14436
14529
|
input: {
|
|
14437
14530
|
param: {
|
|
14438
|
-
templateName: "verify_email" | "
|
|
14531
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14439
14532
|
};
|
|
14440
14533
|
} & {
|
|
14441
14534
|
header: {
|
|
@@ -14718,7 +14811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14718
14811
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14719
14812
|
custom_domain_id: string;
|
|
14720
14813
|
primary: boolean;
|
|
14721
|
-
status: "disabled" | "pending" | "
|
|
14814
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14722
14815
|
verification_method?: "txt" | undefined;
|
|
14723
14816
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14724
14817
|
domain_metadata?: {
|
|
@@ -14759,7 +14852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14759
14852
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14760
14853
|
custom_domain_id: string;
|
|
14761
14854
|
primary: boolean;
|
|
14762
|
-
status: "disabled" | "pending" | "
|
|
14855
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14763
14856
|
verification_method?: "txt" | undefined;
|
|
14764
14857
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14765
14858
|
domain_metadata?: {
|
|
@@ -14823,7 +14916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14823
14916
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14824
14917
|
custom_domain_id: string;
|
|
14825
14918
|
primary: boolean;
|
|
14826
|
-
status: "disabled" | "pending" | "
|
|
14919
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14827
14920
|
verification_method?: "txt" | undefined;
|
|
14828
14921
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14829
14922
|
domain_metadata?: {
|
|
@@ -14870,7 +14963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14870
14963
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14871
14964
|
custom_domain_id: string;
|
|
14872
14965
|
primary: boolean;
|
|
14873
|
-
status: "disabled" | "pending" | "
|
|
14966
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14874
14967
|
verification_method?: "txt" | undefined;
|
|
14875
14968
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14876
14969
|
domain_metadata?: {
|
|
@@ -14916,7 +15009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14916
15009
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14917
15010
|
custom_domain_id: string;
|
|
14918
15011
|
primary: boolean;
|
|
14919
|
-
status: "disabled" | "pending" | "
|
|
15012
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14920
15013
|
verification_method?: "txt" | undefined;
|
|
14921
15014
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14922
15015
|
domain_metadata?: {
|
|
@@ -14957,7 +15050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14957
15050
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14958
15051
|
custom_domain_id: string;
|
|
14959
15052
|
primary: boolean;
|
|
14960
|
-
status: "disabled" | "pending" | "
|
|
15053
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14961
15054
|
verification_method?: "txt" | undefined;
|
|
14962
15055
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14963
15056
|
domain_metadata?: {
|
|
@@ -15442,7 +15535,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15442
15535
|
json: {
|
|
15443
15536
|
bindings: {
|
|
15444
15537
|
ref: {
|
|
15445
|
-
type?: "
|
|
15538
|
+
type?: "action_id" | "action_name" | undefined;
|
|
15446
15539
|
value?: string | undefined;
|
|
15447
15540
|
id?: string | undefined;
|
|
15448
15541
|
name?: string | undefined;
|
|
@@ -15517,7 +15610,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15517
15610
|
output: {
|
|
15518
15611
|
id: string;
|
|
15519
15612
|
trigger_id: string;
|
|
15520
|
-
status: "
|
|
15613
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
15521
15614
|
results: {
|
|
15522
15615
|
action_name: string;
|
|
15523
15616
|
error: {
|
|
@@ -15564,7 +15657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15564
15657
|
logs: {
|
|
15565
15658
|
action_name: string;
|
|
15566
15659
|
lines: {
|
|
15567
|
-
level: "
|
|
15660
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15568
15661
|
message: string;
|
|
15569
15662
|
}[];
|
|
15570
15663
|
}[];
|
|
@@ -16231,7 +16324,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16231
16324
|
args: hono_utils_types.JSONValue[];
|
|
16232
16325
|
}[];
|
|
16233
16326
|
logs: {
|
|
16234
|
-
level: "
|
|
16327
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16235
16328
|
message: string;
|
|
16236
16329
|
}[];
|
|
16237
16330
|
error?: string | undefined;
|
|
@@ -16279,7 +16372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16279
16372
|
message: string;
|
|
16280
16373
|
};
|
|
16281
16374
|
outputFormat: "json";
|
|
16282
|
-
status:
|
|
16375
|
+
status: 500;
|
|
16283
16376
|
} | {
|
|
16284
16377
|
input: {
|
|
16285
16378
|
query: {
|
|
@@ -16297,7 +16390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16297
16390
|
message: string;
|
|
16298
16391
|
};
|
|
16299
16392
|
outputFormat: "json";
|
|
16300
|
-
status:
|
|
16393
|
+
status: 400;
|
|
16301
16394
|
};
|
|
16302
16395
|
};
|
|
16303
16396
|
} & {
|
|
@@ -16335,7 +16428,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16335
16428
|
message: string;
|
|
16336
16429
|
};
|
|
16337
16430
|
outputFormat: "json";
|
|
16338
|
-
status:
|
|
16431
|
+
status: 500;
|
|
16339
16432
|
} | {
|
|
16340
16433
|
input: {
|
|
16341
16434
|
form: {
|
|
@@ -16353,7 +16446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16353
16446
|
message: string;
|
|
16354
16447
|
};
|
|
16355
16448
|
outputFormat: "json";
|
|
16356
|
-
status:
|
|
16449
|
+
status: 400;
|
|
16357
16450
|
};
|
|
16358
16451
|
};
|
|
16359
16452
|
}, "/login/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -16391,7 +16484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16391
16484
|
message: string;
|
|
16392
16485
|
};
|
|
16393
16486
|
outputFormat: "json";
|
|
16394
|
-
status:
|
|
16487
|
+
status: 500;
|
|
16395
16488
|
} | {
|
|
16396
16489
|
input: {
|
|
16397
16490
|
query: {
|
|
@@ -16409,7 +16502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16409
16502
|
message: string;
|
|
16410
16503
|
};
|
|
16411
16504
|
outputFormat: "json";
|
|
16412
|
-
status:
|
|
16505
|
+
status: 400;
|
|
16413
16506
|
};
|
|
16414
16507
|
};
|
|
16415
16508
|
} & {
|
|
@@ -16447,7 +16540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16447
16540
|
message: string;
|
|
16448
16541
|
};
|
|
16449
16542
|
outputFormat: "json";
|
|
16450
|
-
status:
|
|
16543
|
+
status: 500;
|
|
16451
16544
|
} | {
|
|
16452
16545
|
input: {
|
|
16453
16546
|
form: {
|
|
@@ -16465,7 +16558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16465
16558
|
message: string;
|
|
16466
16559
|
};
|
|
16467
16560
|
outputFormat: "json";
|
|
16468
|
-
status:
|
|
16561
|
+
status: 400;
|
|
16469
16562
|
};
|
|
16470
16563
|
};
|
|
16471
16564
|
}, "/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -16529,7 +16622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16529
16622
|
scope?: string | undefined;
|
|
16530
16623
|
grant_types?: string[] | undefined;
|
|
16531
16624
|
response_types?: string[] | undefined;
|
|
16532
|
-
token_endpoint_auth_method?: "
|
|
16625
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16533
16626
|
jwks_uri?: string | undefined;
|
|
16534
16627
|
jwks?: Record<string, unknown> | undefined;
|
|
16535
16628
|
software_id?: string | undefined;
|
|
@@ -16618,7 +16711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16618
16711
|
scope?: string | undefined;
|
|
16619
16712
|
grant_types?: string[] | undefined;
|
|
16620
16713
|
response_types?: string[] | undefined;
|
|
16621
|
-
token_endpoint_auth_method?: "
|
|
16714
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16622
16715
|
jwks_uri?: string | undefined;
|
|
16623
16716
|
jwks?: Record<string, unknown> | undefined;
|
|
16624
16717
|
software_id?: string | undefined;
|
|
@@ -16962,19 +17055,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16962
17055
|
connection: "email";
|
|
16963
17056
|
client_id: string;
|
|
16964
17057
|
email: string;
|
|
16965
|
-
send: "
|
|
17058
|
+
send: "link" | "code";
|
|
16966
17059
|
authParams: {
|
|
16967
|
-
state?: string | undefined;
|
|
16968
|
-
username?: string | undefined;
|
|
16969
17060
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16970
17061
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16971
17062
|
scope?: string | undefined;
|
|
17063
|
+
username?: string | undefined;
|
|
17064
|
+
audience?: string | undefined;
|
|
17065
|
+
state?: string | undefined;
|
|
17066
|
+
prompt?: string | undefined;
|
|
16972
17067
|
act_as?: string | undefined;
|
|
16973
17068
|
redirect_uri?: string | undefined;
|
|
16974
|
-
audience?: string | undefined;
|
|
16975
17069
|
organization?: string | undefined;
|
|
16976
17070
|
nonce?: string | undefined;
|
|
16977
|
-
prompt?: string | undefined;
|
|
16978
17071
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16979
17072
|
code_challenge?: string | undefined;
|
|
16980
17073
|
ui_locales?: string | undefined;
|
|
@@ -16998,19 +17091,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16998
17091
|
client_id: string;
|
|
16999
17092
|
connection: "sms";
|
|
17000
17093
|
phone_number: string;
|
|
17001
|
-
send: "
|
|
17094
|
+
send: "link" | "code";
|
|
17002
17095
|
authParams: {
|
|
17003
|
-
state?: string | undefined;
|
|
17004
|
-
username?: string | undefined;
|
|
17005
17096
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17006
17097
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17007
17098
|
scope?: string | undefined;
|
|
17099
|
+
username?: string | undefined;
|
|
17100
|
+
audience?: string | undefined;
|
|
17101
|
+
state?: string | undefined;
|
|
17102
|
+
prompt?: string | undefined;
|
|
17008
17103
|
act_as?: string | undefined;
|
|
17009
17104
|
redirect_uri?: string | undefined;
|
|
17010
|
-
audience?: string | undefined;
|
|
17011
17105
|
organization?: string | undefined;
|
|
17012
17106
|
nonce?: string | undefined;
|
|
17013
|
-
prompt?: string | undefined;
|
|
17014
17107
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17015
17108
|
code_challenge?: string | undefined;
|
|
17016
17109
|
ui_locales?: string | undefined;
|
|
@@ -17077,7 +17170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17077
17170
|
error_description?: string | undefined;
|
|
17078
17171
|
};
|
|
17079
17172
|
outputFormat: "json";
|
|
17080
|
-
status:
|
|
17173
|
+
status: 500;
|
|
17081
17174
|
} | {
|
|
17082
17175
|
input: {
|
|
17083
17176
|
query: {
|
|
@@ -17098,7 +17191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17098
17191
|
error_description?: string | undefined;
|
|
17099
17192
|
};
|
|
17100
17193
|
outputFormat: "json";
|
|
17101
|
-
status:
|
|
17194
|
+
status: 400;
|
|
17102
17195
|
};
|
|
17103
17196
|
};
|
|
17104
17197
|
}, "/passwordless"> & hono_types.MergeSchemaPath<{
|
|
@@ -17144,14 +17237,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17144
17237
|
input: {
|
|
17145
17238
|
form: {
|
|
17146
17239
|
token: string;
|
|
17147
|
-
token_type_hint?: "
|
|
17240
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17148
17241
|
client_id?: string | undefined;
|
|
17149
17242
|
client_secret?: string | undefined;
|
|
17150
17243
|
};
|
|
17151
17244
|
} & {
|
|
17152
17245
|
json: {
|
|
17153
17246
|
token: string;
|
|
17154
|
-
token_type_hint?: "
|
|
17247
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17155
17248
|
client_id?: string | undefined;
|
|
17156
17249
|
client_secret?: string | undefined;
|
|
17157
17250
|
};
|
|
@@ -17163,14 +17256,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17163
17256
|
input: {
|
|
17164
17257
|
form: {
|
|
17165
17258
|
token: string;
|
|
17166
|
-
token_type_hint?: "
|
|
17259
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17167
17260
|
client_id?: string | undefined;
|
|
17168
17261
|
client_secret?: string | undefined;
|
|
17169
17262
|
};
|
|
17170
17263
|
} & {
|
|
17171
17264
|
json: {
|
|
17172
17265
|
token: string;
|
|
17173
|
-
token_type_hint?: "
|
|
17266
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17174
17267
|
client_id?: string | undefined;
|
|
17175
17268
|
client_secret?: string | undefined;
|
|
17176
17269
|
};
|
|
@@ -17185,14 +17278,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17185
17278
|
input: {
|
|
17186
17279
|
form: {
|
|
17187
17280
|
token: string;
|
|
17188
|
-
token_type_hint?: "
|
|
17281
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17189
17282
|
client_id?: string | undefined;
|
|
17190
17283
|
client_secret?: string | undefined;
|
|
17191
17284
|
};
|
|
17192
17285
|
} & {
|
|
17193
17286
|
json: {
|
|
17194
17287
|
token: string;
|
|
17195
|
-
token_type_hint?: "
|
|
17288
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17196
17289
|
client_id?: string | undefined;
|
|
17197
17290
|
client_secret?: string | undefined;
|
|
17198
17291
|
};
|
|
@@ -18052,7 +18145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18052
18145
|
};
|
|
18053
18146
|
output: {};
|
|
18054
18147
|
outputFormat: string;
|
|
18055
|
-
status:
|
|
18148
|
+
status: 500;
|
|
18056
18149
|
} | {
|
|
18057
18150
|
input: {
|
|
18058
18151
|
query: {
|
|
@@ -18061,7 +18154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18061
18154
|
};
|
|
18062
18155
|
output: {};
|
|
18063
18156
|
outputFormat: string;
|
|
18064
|
-
status:
|
|
18157
|
+
status: 302;
|
|
18065
18158
|
} | {
|
|
18066
18159
|
input: {
|
|
18067
18160
|
query: {
|
|
@@ -18070,7 +18163,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18070
18163
|
};
|
|
18071
18164
|
output: {};
|
|
18072
18165
|
outputFormat: string;
|
|
18073
|
-
status:
|
|
18166
|
+
status: 400;
|
|
18074
18167
|
};
|
|
18075
18168
|
};
|
|
18076
18169
|
}, "/continue"> & hono_types.MergeSchemaPath<{
|
|
@@ -18919,7 +19012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18919
19012
|
$get: {
|
|
18920
19013
|
input: {
|
|
18921
19014
|
param: {
|
|
18922
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "
|
|
19015
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18923
19016
|
};
|
|
18924
19017
|
} & {
|
|
18925
19018
|
query: {
|
|
@@ -18935,7 +19028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18935
19028
|
} | {
|
|
18936
19029
|
input: {
|
|
18937
19030
|
param: {
|
|
18938
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "
|
|
19031
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18939
19032
|
};
|
|
18940
19033
|
} & {
|
|
18941
19034
|
query: {
|
|
@@ -18951,7 +19044,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18951
19044
|
} | {
|
|
18952
19045
|
input: {
|
|
18953
19046
|
param: {
|
|
18954
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "
|
|
19047
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18955
19048
|
};
|
|
18956
19049
|
} & {
|
|
18957
19050
|
query: {
|
|
@@ -18971,7 +19064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18971
19064
|
$post: {
|
|
18972
19065
|
input: {
|
|
18973
19066
|
param: {
|
|
18974
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "
|
|
19067
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18975
19068
|
};
|
|
18976
19069
|
} & {
|
|
18977
19070
|
query: {
|
|
@@ -18989,7 +19082,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18989
19082
|
} | {
|
|
18990
19083
|
input: {
|
|
18991
19084
|
param: {
|
|
18992
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "
|
|
19085
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18993
19086
|
};
|
|
18994
19087
|
} & {
|
|
18995
19088
|
query: {
|
|
@@ -19007,7 +19100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19007
19100
|
} | {
|
|
19008
19101
|
input: {
|
|
19009
19102
|
param: {
|
|
19010
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "
|
|
19103
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
19011
19104
|
};
|
|
19012
19105
|
} & {
|
|
19013
19106
|
query: {
|
|
@@ -19105,5 +19198,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19105
19198
|
createX509Certificate: typeof createX509Certificate;
|
|
19106
19199
|
};
|
|
19107
19200
|
|
|
19108
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, 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, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19109
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, 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, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
19201
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, 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, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19202
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, 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, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|