authhero 8.2.1 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/js/client.js +3 -3
- package/dist/authhero.cjs +105 -105
- package/dist/authhero.d.ts +349 -238
- package/dist/authhero.mjs +6422 -6355
- package/dist/client.js +3 -3
- 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 +3 -3
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/client/loading-link-handler.d.ts +14 -0
- package/dist/types/components/Button.d.ts +2 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +218 -218
- package/dist/types/middlewares/authentication.d.ts +17 -0
- package/dist/types/routes/auth-api/index.d.ts +21 -21
- package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +6 -6
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +190 -190
- 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/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +26 -1
- package/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/utils/field-encryption.d.ts +30 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +9 -0
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -870,14 +870,31 @@ declare const MANAGEMENT_API_AUDIENCE = "urn:authhero:management";
|
|
|
870
870
|
* token, so a per-tenant identifier (e.g.
|
|
871
871
|
* `https://${tenant_id}.token.example.com/v2/api/`) can be constructed at
|
|
872
872
|
* request time alongside any global legacy identifiers.
|
|
873
|
+
*
|
|
874
|
+
* `additionalIssuers` extends the set of accepted token issuers beyond the
|
|
875
|
+
* deployment's own `getIssuer(env, custom_domain)`. The resolver receives the
|
|
876
|
+
* token's `tenant_id` and returns the issuers accepted for that token, so a
|
|
877
|
+
* control-plane issuer can be accepted on forwarded admin requests whose
|
|
878
|
+
* per-tenant worker has a different `env.ISSUER`. The default issuer is always
|
|
879
|
+
* accepted; the resolver is purely additive and may return `[]` to refuse.
|
|
873
880
|
*/
|
|
874
881
|
type ManagementAudienceResolver = (params: {
|
|
875
882
|
tenant_id?: string;
|
|
876
883
|
}) => string[] | Promise<string[]>;
|
|
884
|
+
/**
|
|
885
|
+
* Resolver returning the issuers accepted **in addition to** the deployment's
|
|
886
|
+
* own issuer when verifying bearer JWTs. Receives the token's `tenant_id` so a
|
|
887
|
+
* per-tenant or control-plane issuer can be constructed at request time.
|
|
888
|
+
* Returning `[]` keeps the strict single-issuer behavior for that token.
|
|
889
|
+
*/
|
|
890
|
+
type IssuerResolver = (params: {
|
|
891
|
+
tenant_id?: string;
|
|
892
|
+
}) => string[] | Promise<string[]>;
|
|
877
893
|
interface AuthMiddlewareOptions {
|
|
878
894
|
requireManagementAudience?: boolean;
|
|
879
895
|
relaxManagementAudience?: boolean;
|
|
880
896
|
additionalManagementAudiences?: ManagementAudienceResolver;
|
|
897
|
+
additionalIssuers?: IssuerResolver;
|
|
881
898
|
}
|
|
882
899
|
declare function createAuthMiddleware(app: OpenAPIHono<{
|
|
883
900
|
Bindings: Bindings;
|
|
@@ -1377,6 +1394,31 @@ interface AuthHeroConfig {
|
|
|
1377
1394
|
* ```
|
|
1378
1395
|
*/
|
|
1379
1396
|
additionalManagementAudiences?: ManagementAudienceResolver;
|
|
1397
|
+
/**
|
|
1398
|
+
* Resolver returning the list of issuers accepted by the bearer-JWT issuer
|
|
1399
|
+
* check **in addition to** the deployment's own
|
|
1400
|
+
* `getIssuer(env, custom_domain)`. The token's `tenant_id` is passed in, so a
|
|
1401
|
+
* per-tenant or control-plane issuer can be constructed at request time.
|
|
1402
|
+
*
|
|
1403
|
+
* This is needed when control-plane-minted admin tokens are forwarded to a
|
|
1404
|
+
* per-tenant worker: the token's `iss` is the control-plane issuer while the
|
|
1405
|
+
* worker's `env.ISSUER` is per-tenant, so the strict single-issuer check
|
|
1406
|
+
* would otherwise reject it. The signature is still verified normally; this
|
|
1407
|
+
* only widens which `iss` values are accepted.
|
|
1408
|
+
*
|
|
1409
|
+
* authhero stays generic — it never derives or hardcodes any issuer. Scoping
|
|
1410
|
+
* (e.g. only accepting the control-plane issuer for control-plane tokens) is
|
|
1411
|
+
* the host app's job: the resolver receives `tenant_id` and can return `[]`
|
|
1412
|
+
* to refuse. The default issuer is always accepted; the resolver is purely
|
|
1413
|
+
* additive.
|
|
1414
|
+
*
|
|
1415
|
+
* @example
|
|
1416
|
+
* ```ts
|
|
1417
|
+
* additionalIssuers: ({ tenant_id }) =>
|
|
1418
|
+
* tenant_id ? ["https://token.example.com/"] : [];
|
|
1419
|
+
* ```
|
|
1420
|
+
*/
|
|
1421
|
+
additionalIssuers?: IssuerResolver;
|
|
1380
1422
|
}
|
|
1381
1423
|
|
|
1382
1424
|
type UserInfo = {
|
|
@@ -1527,8 +1569,9 @@ type Props$l = {
|
|
|
1527
1569
|
disabled?: boolean;
|
|
1528
1570
|
isLoading?: boolean;
|
|
1529
1571
|
id?: string;
|
|
1572
|
+
loadingLink?: boolean;
|
|
1530
1573
|
};
|
|
1531
|
-
declare const Button$1: ({ children, className, Component, variant, href, disabled, isLoading, id, }: PropsWithChildren<Props$l>) => hono_jsx_jsx_dev_runtime.JSX.Element;
|
|
1574
|
+
declare const Button$1: ({ children, className, Component, variant, href, disabled, isLoading, id, loadingLink, }: PropsWithChildren<Props$l>) => hono_jsx_jsx_dev_runtime.JSX.Element;
|
|
1532
1575
|
|
|
1533
1576
|
type Props$k = {
|
|
1534
1577
|
theme: Theme | null;
|
|
@@ -1826,27 +1869,27 @@ interface InMemoryCacheConfig {
|
|
|
1826
1869
|
*/
|
|
1827
1870
|
declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter;
|
|
1828
1871
|
|
|
1829
|
-
/**
|
|
1830
|
-
* Wraps a DataAdapters instance so that sensitive credential fields are
|
|
1831
|
-
* transparently encrypted on write and decrypted on read. Only the adapters
|
|
1832
|
-
* that hold secrets are wrapped; everything else passes through unchanged.
|
|
1833
|
-
*
|
|
1834
|
-
* Encrypted columns: clients.client_secret, connections.options
|
|
1835
|
-
* (client_secret/app_secret/twilio_token/configuration.client_secret),
|
|
1836
|
-
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1837
|
-
* migration_sources.credentials.client_secret.
|
|
1838
|
-
*
|
|
1839
|
-
* clientConnections.listByClient is also wrapped so its returned Connection
|
|
1840
|
-
* objects are decrypted — getEnrichedClient uses this path to load connections
|
|
1841
|
-
* for the OAuth strategies.
|
|
1842
|
-
*
|
|
1843
|
-
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1844
|
-
*/
|
|
1845
|
-
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
1846
|
-
|
|
1847
1872
|
declare const PREFIX = "enc:v1:";
|
|
1848
1873
|
type EncryptedField = `${typeof PREFIX}${string}`;
|
|
1849
1874
|
declare function isEncrypted(value: string): value is EncryptedField;
|
|
1875
|
+
/**
|
|
1876
|
+
* A set of AES-256-GCM keys addressable by id. `default` decrypts (and by
|
|
1877
|
+
* default encrypts) legacy unkeyed `enc:v1:` values; `keys[id]` handles values
|
|
1878
|
+
* tagged with that id (`enc:v1:<id>:`).
|
|
1879
|
+
*
|
|
1880
|
+
* This is what lets a single database hold ciphertext under more than one key —
|
|
1881
|
+
* e.g. a WFP tenant's own secrets under the tenant key and inherited control
|
|
1882
|
+
* plane secrets under a control-plane-only key the tenant operator never holds.
|
|
1883
|
+
*/
|
|
1884
|
+
interface KeyRing {
|
|
1885
|
+
default: CryptoKey;
|
|
1886
|
+
keys?: Record<string, CryptoKey>;
|
|
1887
|
+
}
|
|
1888
|
+
/**
|
|
1889
|
+
* The key id a keyed value was encrypted under, or `undefined` for a legacy
|
|
1890
|
+
* unkeyed value (or a non-encrypted plaintext).
|
|
1891
|
+
*/
|
|
1892
|
+
declare function parseKeyId(value: string): string | undefined;
|
|
1850
1893
|
/**
|
|
1851
1894
|
* Imports a base64-encoded 32-byte key as an AES-256-GCM CryptoKey. Throws if
|
|
1852
1895
|
* the decoded key is not exactly 32 bytes so a misconfigured secret fails loudly
|
|
@@ -1864,6 +1907,74 @@ declare function encryptField(plaintext: string, key: CryptoKey): Promise<Encryp
|
|
|
1864
1907
|
* prefixed value cannot be decrypted (wrong key or corrupted ciphertext).
|
|
1865
1908
|
*/
|
|
1866
1909
|
declare function decryptField(value: string, key: CryptoKey): Promise<string>;
|
|
1910
|
+
/**
|
|
1911
|
+
* Encrypts a value using a key ring, optionally tagging it with `keyId` so the
|
|
1912
|
+
* same key is selected on read. With no `keyId` the value is encrypted under the
|
|
1913
|
+
* ring's default key and is byte-compatible with `encryptField` (legacy form).
|
|
1914
|
+
*/
|
|
1915
|
+
declare function encryptFieldWithRing(plaintext: string, ring: KeyRing, keyId?: string): Promise<EncryptedField>;
|
|
1916
|
+
/**
|
|
1917
|
+
* Decrypts a value using a key ring, selecting the key from the id embedded in
|
|
1918
|
+
* the ciphertext (or the default key for legacy unkeyed values). Plaintext
|
|
1919
|
+
* values (no `enc:v1:` prefix) are returned unchanged.
|
|
1920
|
+
*/
|
|
1921
|
+
declare function decryptFieldWithRing(value: string, ring: KeyRing): Promise<string>;
|
|
1922
|
+
|
|
1923
|
+
/**
|
|
1924
|
+
* Resolves which key id (if any) a tenant's secrets are encrypted under.
|
|
1925
|
+
* Returning `undefined` uses the ring's default key and produces legacy,
|
|
1926
|
+
* untagged `enc:v1:` ciphertext — byte-compatible with the single-key adapter.
|
|
1927
|
+
*
|
|
1928
|
+
* The canonical use: tag rows owned by the control plane tenant with a
|
|
1929
|
+
* control-plane-only key id, so the same database can hold a tenant's own
|
|
1930
|
+
* secrets (default key) alongside inherited control plane secrets the tenant
|
|
1931
|
+
* operator cannot decrypt.
|
|
1932
|
+
*/
|
|
1933
|
+
type EncryptKeyIdResolver = (tenantId: string) => string | undefined;
|
|
1934
|
+
interface EncryptionOptions {
|
|
1935
|
+
resolveEncryptKeyId?: EncryptKeyIdResolver;
|
|
1936
|
+
}
|
|
1937
|
+
/**
|
|
1938
|
+
* Wraps a DataAdapters instance so that sensitive credential fields are
|
|
1939
|
+
* transparently encrypted on write and decrypted on read. Only the adapters
|
|
1940
|
+
* that hold secrets are wrapped; everything else passes through unchanged.
|
|
1941
|
+
*
|
|
1942
|
+
* Encrypted columns: clients.client_secret, connections.options
|
|
1943
|
+
* (client_secret/app_secret/twilio_token/configuration.client_secret),
|
|
1944
|
+
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1945
|
+
* migration_sources.credentials.client_secret.
|
|
1946
|
+
*
|
|
1947
|
+
* clientConnections.listByClient is also wrapped so its returned Connection
|
|
1948
|
+
* objects are decrypted — getEnrichedClient uses this path to load connections
|
|
1949
|
+
* for the OAuth strategies.
|
|
1950
|
+
*
|
|
1951
|
+
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1952
|
+
*/
|
|
1953
|
+
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
1954
|
+
/**
|
|
1955
|
+
* Like {@link createEncryptedDataAdapter}, but encrypts each tenant's secrets
|
|
1956
|
+
* under a key selected from a {@link KeyRing}. On read, the key is chosen from
|
|
1957
|
+
* the id embedded in the ciphertext, so a single database can mix values
|
|
1958
|
+
* encrypted under different keys.
|
|
1959
|
+
*
|
|
1960
|
+
* `options.resolveEncryptKeyId(tenantId)` decides which key id new ciphertext is
|
|
1961
|
+
* tagged with. Return `undefined` for the ring's default key (legacy untagged
|
|
1962
|
+
* form). The intended use is to tag control plane tenant rows with a
|
|
1963
|
+
* control-plane-only key id so an inheriting tenant can hold the inherited
|
|
1964
|
+
* secrets at rest without being able to decrypt them.
|
|
1965
|
+
*
|
|
1966
|
+
* @example
|
|
1967
|
+
* ```typescript
|
|
1968
|
+
* const adapters = createEncryptedDataAdapterWithKeyRing(base, {
|
|
1969
|
+
* default: tenantKey,
|
|
1970
|
+
* keys: { cp: controlPlaneKey },
|
|
1971
|
+
* }, {
|
|
1972
|
+
* resolveEncryptKeyId: (tenantId) =>
|
|
1973
|
+
* tenantId === CONTROL_PLANE_TENANT_ID ? "cp" : undefined,
|
|
1974
|
+
* });
|
|
1975
|
+
* ```
|
|
1976
|
+
*/
|
|
1977
|
+
declare function createEncryptedDataAdapterWithKeyRing(data: DataAdapters, ring: KeyRing, options?: EncryptionOptions): DataAdapters;
|
|
1867
1978
|
|
|
1868
1979
|
declare const mailgunCredentialsSchema: z.ZodObject<{
|
|
1869
1980
|
api_key: z.ZodString;
|
|
@@ -2756,7 +2867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2756
2867
|
};
|
|
2757
2868
|
} & {
|
|
2758
2869
|
json: {
|
|
2759
|
-
type: "
|
|
2870
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
2760
2871
|
phone_number?: string | undefined;
|
|
2761
2872
|
totp_secret?: string | undefined;
|
|
2762
2873
|
credential_id?: string | undefined;
|
|
@@ -2896,7 +3007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2896
3007
|
};
|
|
2897
3008
|
};
|
|
2898
3009
|
output: {
|
|
2899
|
-
name: "
|
|
3010
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2900
3011
|
enabled: boolean;
|
|
2901
3012
|
trial_expired?: boolean | undefined;
|
|
2902
3013
|
}[];
|
|
@@ -3051,7 +3162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3051
3162
|
$get: {
|
|
3052
3163
|
input: {
|
|
3053
3164
|
param: {
|
|
3054
|
-
factor_name: "
|
|
3165
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3055
3166
|
};
|
|
3056
3167
|
} & {
|
|
3057
3168
|
header: {
|
|
@@ -3059,7 +3170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3059
3170
|
};
|
|
3060
3171
|
};
|
|
3061
3172
|
output: {
|
|
3062
|
-
name: "
|
|
3173
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3063
3174
|
enabled: boolean;
|
|
3064
3175
|
trial_expired?: boolean | undefined;
|
|
3065
3176
|
};
|
|
@@ -3072,7 +3183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3072
3183
|
$put: {
|
|
3073
3184
|
input: {
|
|
3074
3185
|
param: {
|
|
3075
|
-
factor_name: "
|
|
3186
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3076
3187
|
};
|
|
3077
3188
|
} & {
|
|
3078
3189
|
header: {
|
|
@@ -3084,7 +3195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3084
3195
|
};
|
|
3085
3196
|
};
|
|
3086
3197
|
output: {
|
|
3087
|
-
name: "
|
|
3198
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3088
3199
|
enabled: boolean;
|
|
3089
3200
|
trial_expired?: boolean | undefined;
|
|
3090
3201
|
};
|
|
@@ -3830,9 +3941,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3830
3941
|
email?: string | undefined;
|
|
3831
3942
|
};
|
|
3832
3943
|
id?: string | undefined;
|
|
3833
|
-
connection_id?: string | undefined;
|
|
3834
3944
|
app_metadata?: Record<string, any> | undefined;
|
|
3835
3945
|
user_metadata?: Record<string, any> | undefined;
|
|
3946
|
+
connection_id?: string | undefined;
|
|
3836
3947
|
roles?: string[] | undefined;
|
|
3837
3948
|
ttl_sec?: number | undefined;
|
|
3838
3949
|
send_invitation_email?: boolean | undefined;
|
|
@@ -4017,8 +4128,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4017
4128
|
};
|
|
4018
4129
|
} & {
|
|
4019
4130
|
json: {
|
|
4020
|
-
assign_membership_on_login?: boolean | undefined;
|
|
4021
4131
|
show_as_button?: boolean | undefined;
|
|
4132
|
+
assign_membership_on_login?: boolean | undefined;
|
|
4022
4133
|
is_signup_enabled?: boolean | undefined;
|
|
4023
4134
|
};
|
|
4024
4135
|
};
|
|
@@ -5260,7 +5371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5260
5371
|
hint?: string | undefined;
|
|
5261
5372
|
messages?: {
|
|
5262
5373
|
text: string;
|
|
5263
|
-
type: "
|
|
5374
|
+
type: "error" | "success" | "info" | "warning";
|
|
5264
5375
|
id?: number | undefined;
|
|
5265
5376
|
}[] | undefined;
|
|
5266
5377
|
required?: boolean | undefined;
|
|
@@ -5278,7 +5389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5278
5389
|
hint?: string | undefined;
|
|
5279
5390
|
messages?: {
|
|
5280
5391
|
text: string;
|
|
5281
|
-
type: "
|
|
5392
|
+
type: "error" | "success" | "info" | "warning";
|
|
5282
5393
|
id?: number | undefined;
|
|
5283
5394
|
}[] | undefined;
|
|
5284
5395
|
required?: boolean | undefined;
|
|
@@ -5302,7 +5413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5302
5413
|
hint?: string | undefined;
|
|
5303
5414
|
messages?: {
|
|
5304
5415
|
text: string;
|
|
5305
|
-
type: "
|
|
5416
|
+
type: "error" | "success" | "info" | "warning";
|
|
5306
5417
|
id?: number | undefined;
|
|
5307
5418
|
}[] | undefined;
|
|
5308
5419
|
required?: boolean | undefined;
|
|
@@ -5326,7 +5437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5326
5437
|
hint?: string | undefined;
|
|
5327
5438
|
messages?: {
|
|
5328
5439
|
text: string;
|
|
5329
|
-
type: "
|
|
5440
|
+
type: "error" | "success" | "info" | "warning";
|
|
5330
5441
|
id?: number | undefined;
|
|
5331
5442
|
}[] | undefined;
|
|
5332
5443
|
required?: boolean | undefined;
|
|
@@ -5355,7 +5466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5355
5466
|
hint?: string | undefined;
|
|
5356
5467
|
messages?: {
|
|
5357
5468
|
text: string;
|
|
5358
|
-
type: "
|
|
5469
|
+
type: "error" | "success" | "info" | "warning";
|
|
5359
5470
|
id?: number | undefined;
|
|
5360
5471
|
}[] | undefined;
|
|
5361
5472
|
required?: boolean | undefined;
|
|
@@ -5370,7 +5481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5370
5481
|
hint?: string | undefined;
|
|
5371
5482
|
messages?: {
|
|
5372
5483
|
text: string;
|
|
5373
|
-
type: "
|
|
5484
|
+
type: "error" | "success" | "info" | "warning";
|
|
5374
5485
|
id?: number | undefined;
|
|
5375
5486
|
}[] | undefined;
|
|
5376
5487
|
required?: boolean | undefined;
|
|
@@ -5391,7 +5502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5391
5502
|
hint?: string | undefined;
|
|
5392
5503
|
messages?: {
|
|
5393
5504
|
text: string;
|
|
5394
|
-
type: "
|
|
5505
|
+
type: "error" | "success" | "info" | "warning";
|
|
5395
5506
|
id?: number | undefined;
|
|
5396
5507
|
}[] | undefined;
|
|
5397
5508
|
required?: boolean | undefined;
|
|
@@ -5416,7 +5527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5416
5527
|
hint?: string | undefined;
|
|
5417
5528
|
messages?: {
|
|
5418
5529
|
text: string;
|
|
5419
|
-
type: "
|
|
5530
|
+
type: "error" | "success" | "info" | "warning";
|
|
5420
5531
|
id?: number | undefined;
|
|
5421
5532
|
}[] | undefined;
|
|
5422
5533
|
required?: boolean | undefined;
|
|
@@ -5435,7 +5546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5435
5546
|
hint?: string | undefined;
|
|
5436
5547
|
messages?: {
|
|
5437
5548
|
text: string;
|
|
5438
|
-
type: "
|
|
5549
|
+
type: "error" | "success" | "info" | "warning";
|
|
5439
5550
|
id?: number | undefined;
|
|
5440
5551
|
}[] | undefined;
|
|
5441
5552
|
required?: boolean | undefined;
|
|
@@ -5455,7 +5566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5455
5566
|
hint?: string | undefined;
|
|
5456
5567
|
messages?: {
|
|
5457
5568
|
text: string;
|
|
5458
|
-
type: "
|
|
5569
|
+
type: "error" | "success" | "info" | "warning";
|
|
5459
5570
|
id?: number | undefined;
|
|
5460
5571
|
}[] | undefined;
|
|
5461
5572
|
required?: boolean | undefined;
|
|
@@ -5474,7 +5585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5474
5585
|
hint?: string | undefined;
|
|
5475
5586
|
messages?: {
|
|
5476
5587
|
text: string;
|
|
5477
|
-
type: "
|
|
5588
|
+
type: "error" | "success" | "info" | "warning";
|
|
5478
5589
|
id?: number | undefined;
|
|
5479
5590
|
}[] | undefined;
|
|
5480
5591
|
required?: boolean | undefined;
|
|
@@ -5496,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5496
5607
|
hint?: string | undefined;
|
|
5497
5608
|
messages?: {
|
|
5498
5609
|
text: string;
|
|
5499
|
-
type: "
|
|
5610
|
+
type: "error" | "success" | "info" | "warning";
|
|
5500
5611
|
id?: number | undefined;
|
|
5501
5612
|
}[] | undefined;
|
|
5502
5613
|
required?: boolean | undefined;
|
|
@@ -5518,7 +5629,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5518
5629
|
hint?: string | undefined;
|
|
5519
5630
|
messages?: {
|
|
5520
5631
|
text: string;
|
|
5521
|
-
type: "
|
|
5632
|
+
type: "error" | "success" | "info" | "warning";
|
|
5522
5633
|
id?: number | undefined;
|
|
5523
5634
|
}[] | undefined;
|
|
5524
5635
|
required?: boolean | undefined;
|
|
@@ -5537,7 +5648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5537
5648
|
hint?: string | undefined;
|
|
5538
5649
|
messages?: {
|
|
5539
5650
|
text: string;
|
|
5540
|
-
type: "
|
|
5651
|
+
type: "error" | "success" | "info" | "warning";
|
|
5541
5652
|
id?: number | undefined;
|
|
5542
5653
|
}[] | undefined;
|
|
5543
5654
|
required?: boolean | undefined;
|
|
@@ -5562,7 +5673,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5562
5673
|
hint?: string | undefined;
|
|
5563
5674
|
messages?: {
|
|
5564
5675
|
text: string;
|
|
5565
|
-
type: "
|
|
5676
|
+
type: "error" | "success" | "info" | "warning";
|
|
5566
5677
|
id?: number | undefined;
|
|
5567
5678
|
}[] | undefined;
|
|
5568
5679
|
required?: boolean | undefined;
|
|
@@ -5583,7 +5694,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5583
5694
|
hint?: string | undefined;
|
|
5584
5695
|
messages?: {
|
|
5585
5696
|
text: string;
|
|
5586
|
-
type: "
|
|
5697
|
+
type: "error" | "success" | "info" | "warning";
|
|
5587
5698
|
id?: number | undefined;
|
|
5588
5699
|
}[] | undefined;
|
|
5589
5700
|
required?: boolean | undefined;
|
|
@@ -5604,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5604
5715
|
hint?: string | undefined;
|
|
5605
5716
|
messages?: {
|
|
5606
5717
|
text: string;
|
|
5607
|
-
type: "
|
|
5718
|
+
type: "error" | "success" | "info" | "warning";
|
|
5608
5719
|
id?: number | undefined;
|
|
5609
5720
|
}[] | undefined;
|
|
5610
5721
|
required?: boolean | undefined;
|
|
@@ -5837,7 +5948,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5837
5948
|
hint?: string | undefined;
|
|
5838
5949
|
messages?: {
|
|
5839
5950
|
text: string;
|
|
5840
|
-
type: "
|
|
5951
|
+
type: "error" | "success" | "info" | "warning";
|
|
5841
5952
|
id?: number | undefined;
|
|
5842
5953
|
}[] | undefined;
|
|
5843
5954
|
required?: boolean | undefined;
|
|
@@ -5855,7 +5966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5855
5966
|
hint?: string | undefined;
|
|
5856
5967
|
messages?: {
|
|
5857
5968
|
text: string;
|
|
5858
|
-
type: "
|
|
5969
|
+
type: "error" | "success" | "info" | "warning";
|
|
5859
5970
|
id?: number | undefined;
|
|
5860
5971
|
}[] | undefined;
|
|
5861
5972
|
required?: boolean | undefined;
|
|
@@ -5879,7 +5990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5879
5990
|
hint?: string | undefined;
|
|
5880
5991
|
messages?: {
|
|
5881
5992
|
text: string;
|
|
5882
|
-
type: "
|
|
5993
|
+
type: "error" | "success" | "info" | "warning";
|
|
5883
5994
|
id?: number | undefined;
|
|
5884
5995
|
}[] | undefined;
|
|
5885
5996
|
required?: boolean | undefined;
|
|
@@ -5903,7 +6014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5903
6014
|
hint?: string | undefined;
|
|
5904
6015
|
messages?: {
|
|
5905
6016
|
text: string;
|
|
5906
|
-
type: "
|
|
6017
|
+
type: "error" | "success" | "info" | "warning";
|
|
5907
6018
|
id?: number | undefined;
|
|
5908
6019
|
}[] | undefined;
|
|
5909
6020
|
required?: boolean | undefined;
|
|
@@ -5932,7 +6043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5932
6043
|
hint?: string | undefined;
|
|
5933
6044
|
messages?: {
|
|
5934
6045
|
text: string;
|
|
5935
|
-
type: "
|
|
6046
|
+
type: "error" | "success" | "info" | "warning";
|
|
5936
6047
|
id?: number | undefined;
|
|
5937
6048
|
}[] | undefined;
|
|
5938
6049
|
required?: boolean | undefined;
|
|
@@ -5947,7 +6058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5947
6058
|
hint?: string | undefined;
|
|
5948
6059
|
messages?: {
|
|
5949
6060
|
text: string;
|
|
5950
|
-
type: "
|
|
6061
|
+
type: "error" | "success" | "info" | "warning";
|
|
5951
6062
|
id?: number | undefined;
|
|
5952
6063
|
}[] | undefined;
|
|
5953
6064
|
required?: boolean | undefined;
|
|
@@ -5968,7 +6079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5968
6079
|
hint?: string | undefined;
|
|
5969
6080
|
messages?: {
|
|
5970
6081
|
text: string;
|
|
5971
|
-
type: "
|
|
6082
|
+
type: "error" | "success" | "info" | "warning";
|
|
5972
6083
|
id?: number | undefined;
|
|
5973
6084
|
}[] | undefined;
|
|
5974
6085
|
required?: boolean | undefined;
|
|
@@ -5993,7 +6104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5993
6104
|
hint?: string | undefined;
|
|
5994
6105
|
messages?: {
|
|
5995
6106
|
text: string;
|
|
5996
|
-
type: "
|
|
6107
|
+
type: "error" | "success" | "info" | "warning";
|
|
5997
6108
|
id?: number | undefined;
|
|
5998
6109
|
}[] | undefined;
|
|
5999
6110
|
required?: boolean | undefined;
|
|
@@ -6012,7 +6123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6012
6123
|
hint?: string | undefined;
|
|
6013
6124
|
messages?: {
|
|
6014
6125
|
text: string;
|
|
6015
|
-
type: "
|
|
6126
|
+
type: "error" | "success" | "info" | "warning";
|
|
6016
6127
|
id?: number | undefined;
|
|
6017
6128
|
}[] | undefined;
|
|
6018
6129
|
required?: boolean | undefined;
|
|
@@ -6032,7 +6143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6032
6143
|
hint?: string | undefined;
|
|
6033
6144
|
messages?: {
|
|
6034
6145
|
text: string;
|
|
6035
|
-
type: "
|
|
6146
|
+
type: "error" | "success" | "info" | "warning";
|
|
6036
6147
|
id?: number | undefined;
|
|
6037
6148
|
}[] | undefined;
|
|
6038
6149
|
required?: boolean | undefined;
|
|
@@ -6051,7 +6162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6051
6162
|
hint?: string | undefined;
|
|
6052
6163
|
messages?: {
|
|
6053
6164
|
text: string;
|
|
6054
|
-
type: "
|
|
6165
|
+
type: "error" | "success" | "info" | "warning";
|
|
6055
6166
|
id?: number | undefined;
|
|
6056
6167
|
}[] | undefined;
|
|
6057
6168
|
required?: boolean | undefined;
|
|
@@ -6073,7 +6184,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6073
6184
|
hint?: string | undefined;
|
|
6074
6185
|
messages?: {
|
|
6075
6186
|
text: string;
|
|
6076
|
-
type: "
|
|
6187
|
+
type: "error" | "success" | "info" | "warning";
|
|
6077
6188
|
id?: number | undefined;
|
|
6078
6189
|
}[] | undefined;
|
|
6079
6190
|
required?: boolean | undefined;
|
|
@@ -6095,7 +6206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6095
6206
|
hint?: string | undefined;
|
|
6096
6207
|
messages?: {
|
|
6097
6208
|
text: string;
|
|
6098
|
-
type: "
|
|
6209
|
+
type: "error" | "success" | "info" | "warning";
|
|
6099
6210
|
id?: number | undefined;
|
|
6100
6211
|
}[] | undefined;
|
|
6101
6212
|
required?: boolean | undefined;
|
|
@@ -6114,7 +6225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6114
6225
|
hint?: string | undefined;
|
|
6115
6226
|
messages?: {
|
|
6116
6227
|
text: string;
|
|
6117
|
-
type: "
|
|
6228
|
+
type: "error" | "success" | "info" | "warning";
|
|
6118
6229
|
id?: number | undefined;
|
|
6119
6230
|
}[] | undefined;
|
|
6120
6231
|
required?: boolean | undefined;
|
|
@@ -6139,7 +6250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6139
6250
|
hint?: string | undefined;
|
|
6140
6251
|
messages?: {
|
|
6141
6252
|
text: string;
|
|
6142
|
-
type: "
|
|
6253
|
+
type: "error" | "success" | "info" | "warning";
|
|
6143
6254
|
id?: number | undefined;
|
|
6144
6255
|
}[] | undefined;
|
|
6145
6256
|
required?: boolean | undefined;
|
|
@@ -6160,7 +6271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6160
6271
|
hint?: string | undefined;
|
|
6161
6272
|
messages?: {
|
|
6162
6273
|
text: string;
|
|
6163
|
-
type: "
|
|
6274
|
+
type: "error" | "success" | "info" | "warning";
|
|
6164
6275
|
id?: number | undefined;
|
|
6165
6276
|
}[] | undefined;
|
|
6166
6277
|
required?: boolean | undefined;
|
|
@@ -6181,7 +6292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6181
6292
|
hint?: string | undefined;
|
|
6182
6293
|
messages?: {
|
|
6183
6294
|
text: string;
|
|
6184
|
-
type: "
|
|
6295
|
+
type: "error" | "success" | "info" | "warning";
|
|
6185
6296
|
id?: number | undefined;
|
|
6186
6297
|
}[] | undefined;
|
|
6187
6298
|
required?: boolean | undefined;
|
|
@@ -6429,7 +6540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6429
6540
|
hint?: string | undefined;
|
|
6430
6541
|
messages?: {
|
|
6431
6542
|
text: string;
|
|
6432
|
-
type: "
|
|
6543
|
+
type: "error" | "success" | "info" | "warning";
|
|
6433
6544
|
id?: number | undefined;
|
|
6434
6545
|
}[] | undefined;
|
|
6435
6546
|
required?: boolean | undefined;
|
|
@@ -6447,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6447
6558
|
hint?: string | undefined;
|
|
6448
6559
|
messages?: {
|
|
6449
6560
|
text: string;
|
|
6450
|
-
type: "
|
|
6561
|
+
type: "error" | "success" | "info" | "warning";
|
|
6451
6562
|
id?: number | undefined;
|
|
6452
6563
|
}[] | undefined;
|
|
6453
6564
|
required?: boolean | undefined;
|
|
@@ -6471,7 +6582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6471
6582
|
hint?: string | undefined;
|
|
6472
6583
|
messages?: {
|
|
6473
6584
|
text: string;
|
|
6474
|
-
type: "
|
|
6585
|
+
type: "error" | "success" | "info" | "warning";
|
|
6475
6586
|
id?: number | undefined;
|
|
6476
6587
|
}[] | undefined;
|
|
6477
6588
|
required?: boolean | undefined;
|
|
@@ -6495,7 +6606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6495
6606
|
hint?: string | undefined;
|
|
6496
6607
|
messages?: {
|
|
6497
6608
|
text: string;
|
|
6498
|
-
type: "
|
|
6609
|
+
type: "error" | "success" | "info" | "warning";
|
|
6499
6610
|
id?: number | undefined;
|
|
6500
6611
|
}[] | undefined;
|
|
6501
6612
|
required?: boolean | undefined;
|
|
@@ -6524,7 +6635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6524
6635
|
hint?: string | undefined;
|
|
6525
6636
|
messages?: {
|
|
6526
6637
|
text: string;
|
|
6527
|
-
type: "
|
|
6638
|
+
type: "error" | "success" | "info" | "warning";
|
|
6528
6639
|
id?: number | undefined;
|
|
6529
6640
|
}[] | undefined;
|
|
6530
6641
|
required?: boolean | undefined;
|
|
@@ -6539,7 +6650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6539
6650
|
hint?: string | undefined;
|
|
6540
6651
|
messages?: {
|
|
6541
6652
|
text: string;
|
|
6542
|
-
type: "
|
|
6653
|
+
type: "error" | "success" | "info" | "warning";
|
|
6543
6654
|
id?: number | undefined;
|
|
6544
6655
|
}[] | undefined;
|
|
6545
6656
|
required?: boolean | undefined;
|
|
@@ -6560,7 +6671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6560
6671
|
hint?: string | undefined;
|
|
6561
6672
|
messages?: {
|
|
6562
6673
|
text: string;
|
|
6563
|
-
type: "
|
|
6674
|
+
type: "error" | "success" | "info" | "warning";
|
|
6564
6675
|
id?: number | undefined;
|
|
6565
6676
|
}[] | undefined;
|
|
6566
6677
|
required?: boolean | undefined;
|
|
@@ -6585,7 +6696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6585
6696
|
hint?: string | undefined;
|
|
6586
6697
|
messages?: {
|
|
6587
6698
|
text: string;
|
|
6588
|
-
type: "
|
|
6699
|
+
type: "error" | "success" | "info" | "warning";
|
|
6589
6700
|
id?: number | undefined;
|
|
6590
6701
|
}[] | undefined;
|
|
6591
6702
|
required?: boolean | undefined;
|
|
@@ -6604,7 +6715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6604
6715
|
hint?: string | undefined;
|
|
6605
6716
|
messages?: {
|
|
6606
6717
|
text: string;
|
|
6607
|
-
type: "
|
|
6718
|
+
type: "error" | "success" | "info" | "warning";
|
|
6608
6719
|
id?: number | undefined;
|
|
6609
6720
|
}[] | undefined;
|
|
6610
6721
|
required?: boolean | undefined;
|
|
@@ -6624,7 +6735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6624
6735
|
hint?: string | undefined;
|
|
6625
6736
|
messages?: {
|
|
6626
6737
|
text: string;
|
|
6627
|
-
type: "
|
|
6738
|
+
type: "error" | "success" | "info" | "warning";
|
|
6628
6739
|
id?: number | undefined;
|
|
6629
6740
|
}[] | undefined;
|
|
6630
6741
|
required?: boolean | undefined;
|
|
@@ -6643,7 +6754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6643
6754
|
hint?: string | undefined;
|
|
6644
6755
|
messages?: {
|
|
6645
6756
|
text: string;
|
|
6646
|
-
type: "
|
|
6757
|
+
type: "error" | "success" | "info" | "warning";
|
|
6647
6758
|
id?: number | undefined;
|
|
6648
6759
|
}[] | undefined;
|
|
6649
6760
|
required?: boolean | undefined;
|
|
@@ -6665,7 +6776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6665
6776
|
hint?: string | undefined;
|
|
6666
6777
|
messages?: {
|
|
6667
6778
|
text: string;
|
|
6668
|
-
type: "
|
|
6779
|
+
type: "error" | "success" | "info" | "warning";
|
|
6669
6780
|
id?: number | undefined;
|
|
6670
6781
|
}[] | undefined;
|
|
6671
6782
|
required?: boolean | undefined;
|
|
@@ -6687,7 +6798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6687
6798
|
hint?: string | undefined;
|
|
6688
6799
|
messages?: {
|
|
6689
6800
|
text: string;
|
|
6690
|
-
type: "
|
|
6801
|
+
type: "error" | "success" | "info" | "warning";
|
|
6691
6802
|
id?: number | undefined;
|
|
6692
6803
|
}[] | undefined;
|
|
6693
6804
|
required?: boolean | undefined;
|
|
@@ -6706,7 +6817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6706
6817
|
hint?: string | undefined;
|
|
6707
6818
|
messages?: {
|
|
6708
6819
|
text: string;
|
|
6709
|
-
type: "
|
|
6820
|
+
type: "error" | "success" | "info" | "warning";
|
|
6710
6821
|
id?: number | undefined;
|
|
6711
6822
|
}[] | undefined;
|
|
6712
6823
|
required?: boolean | undefined;
|
|
@@ -6731,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6731
6842
|
hint?: string | undefined;
|
|
6732
6843
|
messages?: {
|
|
6733
6844
|
text: string;
|
|
6734
|
-
type: "
|
|
6845
|
+
type: "error" | "success" | "info" | "warning";
|
|
6735
6846
|
id?: number | undefined;
|
|
6736
6847
|
}[] | undefined;
|
|
6737
6848
|
required?: boolean | undefined;
|
|
@@ -6752,7 +6863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6752
6863
|
hint?: string | undefined;
|
|
6753
6864
|
messages?: {
|
|
6754
6865
|
text: string;
|
|
6755
|
-
type: "
|
|
6866
|
+
type: "error" | "success" | "info" | "warning";
|
|
6756
6867
|
id?: number | undefined;
|
|
6757
6868
|
}[] | undefined;
|
|
6758
6869
|
required?: boolean | undefined;
|
|
@@ -6773,7 +6884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6773
6884
|
hint?: string | undefined;
|
|
6774
6885
|
messages?: {
|
|
6775
6886
|
text: string;
|
|
6776
|
-
type: "
|
|
6887
|
+
type: "error" | "success" | "info" | "warning";
|
|
6777
6888
|
id?: number | undefined;
|
|
6778
6889
|
}[] | undefined;
|
|
6779
6890
|
required?: boolean | undefined;
|
|
@@ -7027,7 +7138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7027
7138
|
hint?: string | undefined;
|
|
7028
7139
|
messages?: {
|
|
7029
7140
|
text: string;
|
|
7030
|
-
type: "
|
|
7141
|
+
type: "error" | "success" | "info" | "warning";
|
|
7031
7142
|
id?: number | undefined;
|
|
7032
7143
|
}[] | undefined;
|
|
7033
7144
|
required?: boolean | undefined;
|
|
@@ -7045,7 +7156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7045
7156
|
hint?: string | undefined;
|
|
7046
7157
|
messages?: {
|
|
7047
7158
|
text: string;
|
|
7048
|
-
type: "
|
|
7159
|
+
type: "error" | "success" | "info" | "warning";
|
|
7049
7160
|
id?: number | undefined;
|
|
7050
7161
|
}[] | undefined;
|
|
7051
7162
|
required?: boolean | undefined;
|
|
@@ -7069,7 +7180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7069
7180
|
hint?: string | undefined;
|
|
7070
7181
|
messages?: {
|
|
7071
7182
|
text: string;
|
|
7072
|
-
type: "
|
|
7183
|
+
type: "error" | "success" | "info" | "warning";
|
|
7073
7184
|
id?: number | undefined;
|
|
7074
7185
|
}[] | undefined;
|
|
7075
7186
|
required?: boolean | undefined;
|
|
@@ -7093,7 +7204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7093
7204
|
hint?: string | undefined;
|
|
7094
7205
|
messages?: {
|
|
7095
7206
|
text: string;
|
|
7096
|
-
type: "
|
|
7207
|
+
type: "error" | "success" | "info" | "warning";
|
|
7097
7208
|
id?: number | undefined;
|
|
7098
7209
|
}[] | undefined;
|
|
7099
7210
|
required?: boolean | undefined;
|
|
@@ -7118,7 +7229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7118
7229
|
hint?: string | undefined;
|
|
7119
7230
|
messages?: {
|
|
7120
7231
|
text: string;
|
|
7121
|
-
type: "
|
|
7232
|
+
type: "error" | "success" | "info" | "warning";
|
|
7122
7233
|
id?: number | undefined;
|
|
7123
7234
|
}[] | undefined;
|
|
7124
7235
|
required?: boolean | undefined;
|
|
@@ -7133,7 +7244,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7133
7244
|
hint?: string | undefined;
|
|
7134
7245
|
messages?: {
|
|
7135
7246
|
text: string;
|
|
7136
|
-
type: "
|
|
7247
|
+
type: "error" | "success" | "info" | "warning";
|
|
7137
7248
|
id?: number | undefined;
|
|
7138
7249
|
}[] | undefined;
|
|
7139
7250
|
required?: boolean | undefined;
|
|
@@ -7154,7 +7265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7154
7265
|
hint?: string | undefined;
|
|
7155
7266
|
messages?: {
|
|
7156
7267
|
text: string;
|
|
7157
|
-
type: "
|
|
7268
|
+
type: "error" | "success" | "info" | "warning";
|
|
7158
7269
|
id?: number | undefined;
|
|
7159
7270
|
}[] | undefined;
|
|
7160
7271
|
required?: boolean | undefined;
|
|
@@ -7179,7 +7290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7179
7290
|
hint?: string | undefined;
|
|
7180
7291
|
messages?: {
|
|
7181
7292
|
text: string;
|
|
7182
|
-
type: "
|
|
7293
|
+
type: "error" | "success" | "info" | "warning";
|
|
7183
7294
|
id?: number | undefined;
|
|
7184
7295
|
}[] | undefined;
|
|
7185
7296
|
required?: boolean | undefined;
|
|
@@ -7198,7 +7309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7198
7309
|
hint?: string | undefined;
|
|
7199
7310
|
messages?: {
|
|
7200
7311
|
text: string;
|
|
7201
|
-
type: "
|
|
7312
|
+
type: "error" | "success" | "info" | "warning";
|
|
7202
7313
|
id?: number | undefined;
|
|
7203
7314
|
}[] | undefined;
|
|
7204
7315
|
required?: boolean | undefined;
|
|
@@ -7218,7 +7329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7218
7329
|
hint?: string | undefined;
|
|
7219
7330
|
messages?: {
|
|
7220
7331
|
text: string;
|
|
7221
|
-
type: "
|
|
7332
|
+
type: "error" | "success" | "info" | "warning";
|
|
7222
7333
|
id?: number | undefined;
|
|
7223
7334
|
}[] | undefined;
|
|
7224
7335
|
required?: boolean | undefined;
|
|
@@ -7237,7 +7348,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7237
7348
|
hint?: string | undefined;
|
|
7238
7349
|
messages?: {
|
|
7239
7350
|
text: string;
|
|
7240
|
-
type: "
|
|
7351
|
+
type: "error" | "success" | "info" | "warning";
|
|
7241
7352
|
id?: number | undefined;
|
|
7242
7353
|
}[] | undefined;
|
|
7243
7354
|
required?: boolean | undefined;
|
|
@@ -7259,7 +7370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7259
7370
|
hint?: string | undefined;
|
|
7260
7371
|
messages?: {
|
|
7261
7372
|
text: string;
|
|
7262
|
-
type: "
|
|
7373
|
+
type: "error" | "success" | "info" | "warning";
|
|
7263
7374
|
id?: number | undefined;
|
|
7264
7375
|
}[] | undefined;
|
|
7265
7376
|
required?: boolean | undefined;
|
|
@@ -7281,7 +7392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7281
7392
|
hint?: string | undefined;
|
|
7282
7393
|
messages?: {
|
|
7283
7394
|
text: string;
|
|
7284
|
-
type: "
|
|
7395
|
+
type: "error" | "success" | "info" | "warning";
|
|
7285
7396
|
id?: number | undefined;
|
|
7286
7397
|
}[] | undefined;
|
|
7287
7398
|
required?: boolean | undefined;
|
|
@@ -7300,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7300
7411
|
hint?: string | undefined;
|
|
7301
7412
|
messages?: {
|
|
7302
7413
|
text: string;
|
|
7303
|
-
type: "
|
|
7414
|
+
type: "error" | "success" | "info" | "warning";
|
|
7304
7415
|
id?: number | undefined;
|
|
7305
7416
|
}[] | undefined;
|
|
7306
7417
|
required?: boolean | undefined;
|
|
@@ -7325,7 +7436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7325
7436
|
hint?: string | undefined;
|
|
7326
7437
|
messages?: {
|
|
7327
7438
|
text: string;
|
|
7328
|
-
type: "
|
|
7439
|
+
type: "error" | "success" | "info" | "warning";
|
|
7329
7440
|
id?: number | undefined;
|
|
7330
7441
|
}[] | undefined;
|
|
7331
7442
|
required?: boolean | undefined;
|
|
@@ -7346,7 +7457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7346
7457
|
hint?: string | undefined;
|
|
7347
7458
|
messages?: {
|
|
7348
7459
|
text: string;
|
|
7349
|
-
type: "
|
|
7460
|
+
type: "error" | "success" | "info" | "warning";
|
|
7350
7461
|
id?: number | undefined;
|
|
7351
7462
|
}[] | undefined;
|
|
7352
7463
|
required?: boolean | undefined;
|
|
@@ -7367,7 +7478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7367
7478
|
hint?: string | undefined;
|
|
7368
7479
|
messages?: {
|
|
7369
7480
|
text: string;
|
|
7370
|
-
type: "
|
|
7481
|
+
type: "error" | "success" | "info" | "warning";
|
|
7371
7482
|
id?: number | undefined;
|
|
7372
7483
|
}[] | undefined;
|
|
7373
7484
|
required?: boolean | undefined;
|
|
@@ -7598,7 +7709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7598
7709
|
hint?: string | undefined;
|
|
7599
7710
|
messages?: {
|
|
7600
7711
|
text: string;
|
|
7601
|
-
type: "
|
|
7712
|
+
type: "error" | "success" | "info" | "warning";
|
|
7602
7713
|
id?: number | undefined;
|
|
7603
7714
|
}[] | undefined;
|
|
7604
7715
|
required?: boolean | undefined;
|
|
@@ -7616,7 +7727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7616
7727
|
hint?: string | undefined;
|
|
7617
7728
|
messages?: {
|
|
7618
7729
|
text: string;
|
|
7619
|
-
type: "
|
|
7730
|
+
type: "error" | "success" | "info" | "warning";
|
|
7620
7731
|
id?: number | undefined;
|
|
7621
7732
|
}[] | undefined;
|
|
7622
7733
|
required?: boolean | undefined;
|
|
@@ -7640,7 +7751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7640
7751
|
hint?: string | undefined;
|
|
7641
7752
|
messages?: {
|
|
7642
7753
|
text: string;
|
|
7643
|
-
type: "
|
|
7754
|
+
type: "error" | "success" | "info" | "warning";
|
|
7644
7755
|
id?: number | undefined;
|
|
7645
7756
|
}[] | undefined;
|
|
7646
7757
|
required?: boolean | undefined;
|
|
@@ -7664,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7664
7775
|
hint?: string | undefined;
|
|
7665
7776
|
messages?: {
|
|
7666
7777
|
text: string;
|
|
7667
|
-
type: "
|
|
7778
|
+
type: "error" | "success" | "info" | "warning";
|
|
7668
7779
|
id?: number | undefined;
|
|
7669
7780
|
}[] | undefined;
|
|
7670
7781
|
required?: boolean | undefined;
|
|
@@ -7693,7 +7804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7693
7804
|
hint?: string | undefined;
|
|
7694
7805
|
messages?: {
|
|
7695
7806
|
text: string;
|
|
7696
|
-
type: "
|
|
7807
|
+
type: "error" | "success" | "info" | "warning";
|
|
7697
7808
|
id?: number | undefined;
|
|
7698
7809
|
}[] | undefined;
|
|
7699
7810
|
required?: boolean | undefined;
|
|
@@ -7708,7 +7819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7708
7819
|
hint?: string | undefined;
|
|
7709
7820
|
messages?: {
|
|
7710
7821
|
text: string;
|
|
7711
|
-
type: "
|
|
7822
|
+
type: "error" | "success" | "info" | "warning";
|
|
7712
7823
|
id?: number | undefined;
|
|
7713
7824
|
}[] | undefined;
|
|
7714
7825
|
required?: boolean | undefined;
|
|
@@ -7729,7 +7840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7729
7840
|
hint?: string | undefined;
|
|
7730
7841
|
messages?: {
|
|
7731
7842
|
text: string;
|
|
7732
|
-
type: "
|
|
7843
|
+
type: "error" | "success" | "info" | "warning";
|
|
7733
7844
|
id?: number | undefined;
|
|
7734
7845
|
}[] | undefined;
|
|
7735
7846
|
required?: boolean | undefined;
|
|
@@ -7754,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7754
7865
|
hint?: string | undefined;
|
|
7755
7866
|
messages?: {
|
|
7756
7867
|
text: string;
|
|
7757
|
-
type: "
|
|
7868
|
+
type: "error" | "success" | "info" | "warning";
|
|
7758
7869
|
id?: number | undefined;
|
|
7759
7870
|
}[] | undefined;
|
|
7760
7871
|
required?: boolean | undefined;
|
|
@@ -7773,7 +7884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7773
7884
|
hint?: string | undefined;
|
|
7774
7885
|
messages?: {
|
|
7775
7886
|
text: string;
|
|
7776
|
-
type: "
|
|
7887
|
+
type: "error" | "success" | "info" | "warning";
|
|
7777
7888
|
id?: number | undefined;
|
|
7778
7889
|
}[] | undefined;
|
|
7779
7890
|
required?: boolean | undefined;
|
|
@@ -7793,7 +7904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7793
7904
|
hint?: string | undefined;
|
|
7794
7905
|
messages?: {
|
|
7795
7906
|
text: string;
|
|
7796
|
-
type: "
|
|
7907
|
+
type: "error" | "success" | "info" | "warning";
|
|
7797
7908
|
id?: number | undefined;
|
|
7798
7909
|
}[] | undefined;
|
|
7799
7910
|
required?: boolean | undefined;
|
|
@@ -7812,7 +7923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7812
7923
|
hint?: string | undefined;
|
|
7813
7924
|
messages?: {
|
|
7814
7925
|
text: string;
|
|
7815
|
-
type: "
|
|
7926
|
+
type: "error" | "success" | "info" | "warning";
|
|
7816
7927
|
id?: number | undefined;
|
|
7817
7928
|
}[] | undefined;
|
|
7818
7929
|
required?: boolean | undefined;
|
|
@@ -7834,7 +7945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7834
7945
|
hint?: string | undefined;
|
|
7835
7946
|
messages?: {
|
|
7836
7947
|
text: string;
|
|
7837
|
-
type: "
|
|
7948
|
+
type: "error" | "success" | "info" | "warning";
|
|
7838
7949
|
id?: number | undefined;
|
|
7839
7950
|
}[] | undefined;
|
|
7840
7951
|
required?: boolean | undefined;
|
|
@@ -7856,7 +7967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7856
7967
|
hint?: string | undefined;
|
|
7857
7968
|
messages?: {
|
|
7858
7969
|
text: string;
|
|
7859
|
-
type: "
|
|
7970
|
+
type: "error" | "success" | "info" | "warning";
|
|
7860
7971
|
id?: number | undefined;
|
|
7861
7972
|
}[] | undefined;
|
|
7862
7973
|
required?: boolean | undefined;
|
|
@@ -7875,7 +7986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7875
7986
|
hint?: string | undefined;
|
|
7876
7987
|
messages?: {
|
|
7877
7988
|
text: string;
|
|
7878
|
-
type: "
|
|
7989
|
+
type: "error" | "success" | "info" | "warning";
|
|
7879
7990
|
id?: number | undefined;
|
|
7880
7991
|
}[] | undefined;
|
|
7881
7992
|
required?: boolean | undefined;
|
|
@@ -7900,7 +8011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7900
8011
|
hint?: string | undefined;
|
|
7901
8012
|
messages?: {
|
|
7902
8013
|
text: string;
|
|
7903
|
-
type: "
|
|
8014
|
+
type: "error" | "success" | "info" | "warning";
|
|
7904
8015
|
id?: number | undefined;
|
|
7905
8016
|
}[] | undefined;
|
|
7906
8017
|
required?: boolean | undefined;
|
|
@@ -7921,7 +8032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7921
8032
|
hint?: string | undefined;
|
|
7922
8033
|
messages?: {
|
|
7923
8034
|
text: string;
|
|
7924
|
-
type: "
|
|
8035
|
+
type: "error" | "success" | "info" | "warning";
|
|
7925
8036
|
id?: number | undefined;
|
|
7926
8037
|
}[] | undefined;
|
|
7927
8038
|
required?: boolean | undefined;
|
|
@@ -7942,7 +8053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7942
8053
|
hint?: string | undefined;
|
|
7943
8054
|
messages?: {
|
|
7944
8055
|
text: string;
|
|
7945
|
-
type: "
|
|
8056
|
+
type: "error" | "success" | "info" | "warning";
|
|
7946
8057
|
id?: number | undefined;
|
|
7947
8058
|
}[] | undefined;
|
|
7948
8059
|
required?: boolean | undefined;
|
|
@@ -8175,7 +8286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8175
8286
|
hint?: string | undefined;
|
|
8176
8287
|
messages?: {
|
|
8177
8288
|
text: string;
|
|
8178
|
-
type: "
|
|
8289
|
+
type: "error" | "success" | "info" | "warning";
|
|
8179
8290
|
id?: number | undefined;
|
|
8180
8291
|
}[] | undefined;
|
|
8181
8292
|
required?: boolean | undefined;
|
|
@@ -8193,7 +8304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8193
8304
|
hint?: string | undefined;
|
|
8194
8305
|
messages?: {
|
|
8195
8306
|
text: string;
|
|
8196
|
-
type: "
|
|
8307
|
+
type: "error" | "success" | "info" | "warning";
|
|
8197
8308
|
id?: number | undefined;
|
|
8198
8309
|
}[] | undefined;
|
|
8199
8310
|
required?: boolean | undefined;
|
|
@@ -8217,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8217
8328
|
hint?: string | undefined;
|
|
8218
8329
|
messages?: {
|
|
8219
8330
|
text: string;
|
|
8220
|
-
type: "
|
|
8331
|
+
type: "error" | "success" | "info" | "warning";
|
|
8221
8332
|
id?: number | undefined;
|
|
8222
8333
|
}[] | undefined;
|
|
8223
8334
|
required?: boolean | undefined;
|
|
@@ -8241,7 +8352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8241
8352
|
hint?: string | undefined;
|
|
8242
8353
|
messages?: {
|
|
8243
8354
|
text: string;
|
|
8244
|
-
type: "
|
|
8355
|
+
type: "error" | "success" | "info" | "warning";
|
|
8245
8356
|
id?: number | undefined;
|
|
8246
8357
|
}[] | undefined;
|
|
8247
8358
|
required?: boolean | undefined;
|
|
@@ -8266,7 +8377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8266
8377
|
hint?: string | undefined;
|
|
8267
8378
|
messages?: {
|
|
8268
8379
|
text: string;
|
|
8269
|
-
type: "
|
|
8380
|
+
type: "error" | "success" | "info" | "warning";
|
|
8270
8381
|
id?: number | undefined;
|
|
8271
8382
|
}[] | undefined;
|
|
8272
8383
|
required?: boolean | undefined;
|
|
@@ -8281,7 +8392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8281
8392
|
hint?: string | undefined;
|
|
8282
8393
|
messages?: {
|
|
8283
8394
|
text: string;
|
|
8284
|
-
type: "
|
|
8395
|
+
type: "error" | "success" | "info" | "warning";
|
|
8285
8396
|
id?: number | undefined;
|
|
8286
8397
|
}[] | undefined;
|
|
8287
8398
|
required?: boolean | undefined;
|
|
@@ -8302,7 +8413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8302
8413
|
hint?: string | undefined;
|
|
8303
8414
|
messages?: {
|
|
8304
8415
|
text: string;
|
|
8305
|
-
type: "
|
|
8416
|
+
type: "error" | "success" | "info" | "warning";
|
|
8306
8417
|
id?: number | undefined;
|
|
8307
8418
|
}[] | undefined;
|
|
8308
8419
|
required?: boolean | undefined;
|
|
@@ -8327,7 +8438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8327
8438
|
hint?: string | undefined;
|
|
8328
8439
|
messages?: {
|
|
8329
8440
|
text: string;
|
|
8330
|
-
type: "
|
|
8441
|
+
type: "error" | "success" | "info" | "warning";
|
|
8331
8442
|
id?: number | undefined;
|
|
8332
8443
|
}[] | undefined;
|
|
8333
8444
|
required?: boolean | undefined;
|
|
@@ -8346,7 +8457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8346
8457
|
hint?: string | undefined;
|
|
8347
8458
|
messages?: {
|
|
8348
8459
|
text: string;
|
|
8349
|
-
type: "
|
|
8460
|
+
type: "error" | "success" | "info" | "warning";
|
|
8350
8461
|
id?: number | undefined;
|
|
8351
8462
|
}[] | undefined;
|
|
8352
8463
|
required?: boolean | undefined;
|
|
@@ -8366,7 +8477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8366
8477
|
hint?: string | undefined;
|
|
8367
8478
|
messages?: {
|
|
8368
8479
|
text: string;
|
|
8369
|
-
type: "
|
|
8480
|
+
type: "error" | "success" | "info" | "warning";
|
|
8370
8481
|
id?: number | undefined;
|
|
8371
8482
|
}[] | undefined;
|
|
8372
8483
|
required?: boolean | undefined;
|
|
@@ -8385,7 +8496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8385
8496
|
hint?: string | undefined;
|
|
8386
8497
|
messages?: {
|
|
8387
8498
|
text: string;
|
|
8388
|
-
type: "
|
|
8499
|
+
type: "error" | "success" | "info" | "warning";
|
|
8389
8500
|
id?: number | undefined;
|
|
8390
8501
|
}[] | undefined;
|
|
8391
8502
|
required?: boolean | undefined;
|
|
@@ -8407,7 +8518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8407
8518
|
hint?: string | undefined;
|
|
8408
8519
|
messages?: {
|
|
8409
8520
|
text: string;
|
|
8410
|
-
type: "
|
|
8521
|
+
type: "error" | "success" | "info" | "warning";
|
|
8411
8522
|
id?: number | undefined;
|
|
8412
8523
|
}[] | undefined;
|
|
8413
8524
|
required?: boolean | undefined;
|
|
@@ -8429,7 +8540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8429
8540
|
hint?: string | undefined;
|
|
8430
8541
|
messages?: {
|
|
8431
8542
|
text: string;
|
|
8432
|
-
type: "
|
|
8543
|
+
type: "error" | "success" | "info" | "warning";
|
|
8433
8544
|
id?: number | undefined;
|
|
8434
8545
|
}[] | undefined;
|
|
8435
8546
|
required?: boolean | undefined;
|
|
@@ -8448,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8448
8559
|
hint?: string | undefined;
|
|
8449
8560
|
messages?: {
|
|
8450
8561
|
text: string;
|
|
8451
|
-
type: "
|
|
8562
|
+
type: "error" | "success" | "info" | "warning";
|
|
8452
8563
|
id?: number | undefined;
|
|
8453
8564
|
}[] | undefined;
|
|
8454
8565
|
required?: boolean | undefined;
|
|
@@ -8473,7 +8584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8473
8584
|
hint?: string | undefined;
|
|
8474
8585
|
messages?: {
|
|
8475
8586
|
text: string;
|
|
8476
|
-
type: "
|
|
8587
|
+
type: "error" | "success" | "info" | "warning";
|
|
8477
8588
|
id?: number | undefined;
|
|
8478
8589
|
}[] | undefined;
|
|
8479
8590
|
required?: boolean | undefined;
|
|
@@ -8494,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8494
8605
|
hint?: string | undefined;
|
|
8495
8606
|
messages?: {
|
|
8496
8607
|
text: string;
|
|
8497
|
-
type: "
|
|
8608
|
+
type: "error" | "success" | "info" | "warning";
|
|
8498
8609
|
id?: number | undefined;
|
|
8499
8610
|
}[] | undefined;
|
|
8500
8611
|
required?: boolean | undefined;
|
|
@@ -8515,7 +8626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8515
8626
|
hint?: string | undefined;
|
|
8516
8627
|
messages?: {
|
|
8517
8628
|
text: string;
|
|
8518
|
-
type: "
|
|
8629
|
+
type: "error" | "success" | "info" | "warning";
|
|
8519
8630
|
id?: number | undefined;
|
|
8520
8631
|
}[] | undefined;
|
|
8521
8632
|
required?: boolean | undefined;
|
|
@@ -8746,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8746
8857
|
hint?: string | undefined;
|
|
8747
8858
|
messages?: {
|
|
8748
8859
|
text: string;
|
|
8749
|
-
type: "
|
|
8860
|
+
type: "error" | "success" | "info" | "warning";
|
|
8750
8861
|
id?: number | undefined;
|
|
8751
8862
|
}[] | undefined;
|
|
8752
8863
|
required?: boolean | undefined;
|
|
@@ -8764,7 +8875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8764
8875
|
hint?: string | undefined;
|
|
8765
8876
|
messages?: {
|
|
8766
8877
|
text: string;
|
|
8767
|
-
type: "
|
|
8878
|
+
type: "error" | "success" | "info" | "warning";
|
|
8768
8879
|
id?: number | undefined;
|
|
8769
8880
|
}[] | undefined;
|
|
8770
8881
|
required?: boolean | undefined;
|
|
@@ -8788,7 +8899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8788
8899
|
hint?: string | undefined;
|
|
8789
8900
|
messages?: {
|
|
8790
8901
|
text: string;
|
|
8791
|
-
type: "
|
|
8902
|
+
type: "error" | "success" | "info" | "warning";
|
|
8792
8903
|
id?: number | undefined;
|
|
8793
8904
|
}[] | undefined;
|
|
8794
8905
|
required?: boolean | undefined;
|
|
@@ -8812,7 +8923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8812
8923
|
hint?: string | undefined;
|
|
8813
8924
|
messages?: {
|
|
8814
8925
|
text: string;
|
|
8815
|
-
type: "
|
|
8926
|
+
type: "error" | "success" | "info" | "warning";
|
|
8816
8927
|
id?: number | undefined;
|
|
8817
8928
|
}[] | undefined;
|
|
8818
8929
|
required?: boolean | undefined;
|
|
@@ -8841,7 +8952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8841
8952
|
hint?: string | undefined;
|
|
8842
8953
|
messages?: {
|
|
8843
8954
|
text: string;
|
|
8844
|
-
type: "
|
|
8955
|
+
type: "error" | "success" | "info" | "warning";
|
|
8845
8956
|
id?: number | undefined;
|
|
8846
8957
|
}[] | undefined;
|
|
8847
8958
|
required?: boolean | undefined;
|
|
@@ -8856,7 +8967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8856
8967
|
hint?: string | undefined;
|
|
8857
8968
|
messages?: {
|
|
8858
8969
|
text: string;
|
|
8859
|
-
type: "
|
|
8970
|
+
type: "error" | "success" | "info" | "warning";
|
|
8860
8971
|
id?: number | undefined;
|
|
8861
8972
|
}[] | undefined;
|
|
8862
8973
|
required?: boolean | undefined;
|
|
@@ -8877,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8877
8988
|
hint?: string | undefined;
|
|
8878
8989
|
messages?: {
|
|
8879
8990
|
text: string;
|
|
8880
|
-
type: "
|
|
8991
|
+
type: "error" | "success" | "info" | "warning";
|
|
8881
8992
|
id?: number | undefined;
|
|
8882
8993
|
}[] | undefined;
|
|
8883
8994
|
required?: boolean | undefined;
|
|
@@ -8902,7 +9013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8902
9013
|
hint?: string | undefined;
|
|
8903
9014
|
messages?: {
|
|
8904
9015
|
text: string;
|
|
8905
|
-
type: "
|
|
9016
|
+
type: "error" | "success" | "info" | "warning";
|
|
8906
9017
|
id?: number | undefined;
|
|
8907
9018
|
}[] | undefined;
|
|
8908
9019
|
required?: boolean | undefined;
|
|
@@ -8921,7 +9032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8921
9032
|
hint?: string | undefined;
|
|
8922
9033
|
messages?: {
|
|
8923
9034
|
text: string;
|
|
8924
|
-
type: "
|
|
9035
|
+
type: "error" | "success" | "info" | "warning";
|
|
8925
9036
|
id?: number | undefined;
|
|
8926
9037
|
}[] | undefined;
|
|
8927
9038
|
required?: boolean | undefined;
|
|
@@ -8941,7 +9052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8941
9052
|
hint?: string | undefined;
|
|
8942
9053
|
messages?: {
|
|
8943
9054
|
text: string;
|
|
8944
|
-
type: "
|
|
9055
|
+
type: "error" | "success" | "info" | "warning";
|
|
8945
9056
|
id?: number | undefined;
|
|
8946
9057
|
}[] | undefined;
|
|
8947
9058
|
required?: boolean | undefined;
|
|
@@ -8960,7 +9071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8960
9071
|
hint?: string | undefined;
|
|
8961
9072
|
messages?: {
|
|
8962
9073
|
text: string;
|
|
8963
|
-
type: "
|
|
9074
|
+
type: "error" | "success" | "info" | "warning";
|
|
8964
9075
|
id?: number | undefined;
|
|
8965
9076
|
}[] | undefined;
|
|
8966
9077
|
required?: boolean | undefined;
|
|
@@ -8982,7 +9093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8982
9093
|
hint?: string | undefined;
|
|
8983
9094
|
messages?: {
|
|
8984
9095
|
text: string;
|
|
8985
|
-
type: "
|
|
9096
|
+
type: "error" | "success" | "info" | "warning";
|
|
8986
9097
|
id?: number | undefined;
|
|
8987
9098
|
}[] | undefined;
|
|
8988
9099
|
required?: boolean | undefined;
|
|
@@ -9004,7 +9115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9004
9115
|
hint?: string | undefined;
|
|
9005
9116
|
messages?: {
|
|
9006
9117
|
text: string;
|
|
9007
|
-
type: "
|
|
9118
|
+
type: "error" | "success" | "info" | "warning";
|
|
9008
9119
|
id?: number | undefined;
|
|
9009
9120
|
}[] | undefined;
|
|
9010
9121
|
required?: boolean | undefined;
|
|
@@ -9023,7 +9134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9023
9134
|
hint?: string | undefined;
|
|
9024
9135
|
messages?: {
|
|
9025
9136
|
text: string;
|
|
9026
|
-
type: "
|
|
9137
|
+
type: "error" | "success" | "info" | "warning";
|
|
9027
9138
|
id?: number | undefined;
|
|
9028
9139
|
}[] | undefined;
|
|
9029
9140
|
required?: boolean | undefined;
|
|
@@ -9048,7 +9159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9048
9159
|
hint?: string | undefined;
|
|
9049
9160
|
messages?: {
|
|
9050
9161
|
text: string;
|
|
9051
|
-
type: "
|
|
9162
|
+
type: "error" | "success" | "info" | "warning";
|
|
9052
9163
|
id?: number | undefined;
|
|
9053
9164
|
}[] | undefined;
|
|
9054
9165
|
required?: boolean | undefined;
|
|
@@ -9069,7 +9180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9069
9180
|
hint?: string | undefined;
|
|
9070
9181
|
messages?: {
|
|
9071
9182
|
text: string;
|
|
9072
|
-
type: "
|
|
9183
|
+
type: "error" | "success" | "info" | "warning";
|
|
9073
9184
|
id?: number | undefined;
|
|
9074
9185
|
}[] | undefined;
|
|
9075
9186
|
required?: boolean | undefined;
|
|
@@ -9090,7 +9201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9090
9201
|
hint?: string | undefined;
|
|
9091
9202
|
messages?: {
|
|
9092
9203
|
text: string;
|
|
9093
|
-
type: "
|
|
9204
|
+
type: "error" | "success" | "info" | "warning";
|
|
9094
9205
|
id?: number | undefined;
|
|
9095
9206
|
}[] | undefined;
|
|
9096
9207
|
required?: boolean | undefined;
|
|
@@ -9320,7 +9431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9320
9431
|
};
|
|
9321
9432
|
};
|
|
9322
9433
|
output: {
|
|
9323
|
-
prompt: "
|
|
9434
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9324
9435
|
language: string;
|
|
9325
9436
|
}[];
|
|
9326
9437
|
outputFormat: "json";
|
|
@@ -9358,7 +9469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9358
9469
|
$get: {
|
|
9359
9470
|
input: {
|
|
9360
9471
|
param: {
|
|
9361
|
-
prompt: "
|
|
9472
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9362
9473
|
language: string;
|
|
9363
9474
|
};
|
|
9364
9475
|
} & {
|
|
@@ -9380,7 +9491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9380
9491
|
$put: {
|
|
9381
9492
|
input: {
|
|
9382
9493
|
param: {
|
|
9383
|
-
prompt: "
|
|
9494
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9384
9495
|
language: string;
|
|
9385
9496
|
};
|
|
9386
9497
|
} & {
|
|
@@ -9404,7 +9515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9404
9515
|
$delete: {
|
|
9405
9516
|
input: {
|
|
9406
9517
|
param: {
|
|
9407
|
-
prompt: "
|
|
9518
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9408
9519
|
language: string;
|
|
9409
9520
|
};
|
|
9410
9521
|
} & {
|
|
@@ -10266,7 +10377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10266
10377
|
};
|
|
10267
10378
|
} | {
|
|
10268
10379
|
mode: "inline";
|
|
10269
|
-
status: "
|
|
10380
|
+
status: "error" | "success";
|
|
10270
10381
|
connection_id: string;
|
|
10271
10382
|
connection_name: string;
|
|
10272
10383
|
strategy: string;
|
|
@@ -11383,7 +11494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11383
11494
|
[x: string]: hono_utils_types.JSONValue;
|
|
11384
11495
|
};
|
|
11385
11496
|
id: string;
|
|
11386
|
-
status: "
|
|
11497
|
+
status: "active" | "suspended" | "paused";
|
|
11387
11498
|
filters?: {
|
|
11388
11499
|
type: string;
|
|
11389
11500
|
name: string;
|
|
@@ -11415,7 +11526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11415
11526
|
[x: string]: hono_utils_types.JSONValue;
|
|
11416
11527
|
};
|
|
11417
11528
|
id: string;
|
|
11418
|
-
status: "
|
|
11529
|
+
status: "active" | "suspended" | "paused";
|
|
11419
11530
|
filters?: {
|
|
11420
11531
|
type: string;
|
|
11421
11532
|
name: string;
|
|
@@ -11440,7 +11551,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11440
11551
|
name: string;
|
|
11441
11552
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11442
11553
|
sink: Record<string, unknown>;
|
|
11443
|
-
status?: "
|
|
11554
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
11444
11555
|
filters?: {
|
|
11445
11556
|
type: string;
|
|
11446
11557
|
name: string;
|
|
@@ -11455,7 +11566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11455
11566
|
[x: string]: hono_utils_types.JSONValue;
|
|
11456
11567
|
};
|
|
11457
11568
|
id: string;
|
|
11458
|
-
status: "
|
|
11569
|
+
status: "active" | "suspended" | "paused";
|
|
11459
11570
|
filters?: {
|
|
11460
11571
|
type: string;
|
|
11461
11572
|
name: string;
|
|
@@ -11490,7 +11601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11490
11601
|
}[] | undefined;
|
|
11491
11602
|
isPriority?: boolean | undefined;
|
|
11492
11603
|
id?: string | undefined;
|
|
11493
|
-
status?: "
|
|
11604
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
11494
11605
|
created_at?: string | undefined;
|
|
11495
11606
|
updated_at?: string | undefined;
|
|
11496
11607
|
};
|
|
@@ -11502,7 +11613,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11502
11613
|
[x: string]: hono_utils_types.JSONValue;
|
|
11503
11614
|
};
|
|
11504
11615
|
id: string;
|
|
11505
|
-
status: "
|
|
11616
|
+
status: "active" | "suspended" | "paused";
|
|
11506
11617
|
filters?: {
|
|
11507
11618
|
type: string;
|
|
11508
11619
|
name: string;
|
|
@@ -11553,7 +11664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11553
11664
|
};
|
|
11554
11665
|
};
|
|
11555
11666
|
output: {
|
|
11556
|
-
type: "
|
|
11667
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11557
11668
|
date: string;
|
|
11558
11669
|
isMobile: boolean;
|
|
11559
11670
|
log_id: string;
|
|
@@ -11592,7 +11703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11592
11703
|
limit: number;
|
|
11593
11704
|
length: number;
|
|
11594
11705
|
logs: {
|
|
11595
|
-
type: "
|
|
11706
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11596
11707
|
date: string;
|
|
11597
11708
|
isMobile: boolean;
|
|
11598
11709
|
log_id: string;
|
|
@@ -11646,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11646
11757
|
};
|
|
11647
11758
|
};
|
|
11648
11759
|
output: {
|
|
11649
|
-
type: "
|
|
11760
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11650
11761
|
date: string;
|
|
11651
11762
|
isMobile: boolean;
|
|
11652
11763
|
log_id: string;
|
|
@@ -11801,7 +11912,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11801
11912
|
audience?: string | undefined;
|
|
11802
11913
|
client_id?: string | undefined;
|
|
11803
11914
|
allow_any_organization?: string | undefined;
|
|
11804
|
-
subject_type?: "
|
|
11915
|
+
subject_type?: "user" | "client" | undefined;
|
|
11805
11916
|
};
|
|
11806
11917
|
} & {
|
|
11807
11918
|
header: {
|
|
@@ -11816,7 +11927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11816
11927
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11817
11928
|
allow_any_organization?: boolean | undefined;
|
|
11818
11929
|
is_system?: boolean | undefined;
|
|
11819
|
-
subject_type?: "
|
|
11930
|
+
subject_type?: "user" | "client" | undefined;
|
|
11820
11931
|
authorization_details_types?: string[] | undefined;
|
|
11821
11932
|
created_at?: string | undefined;
|
|
11822
11933
|
updated_at?: string | undefined;
|
|
@@ -11832,7 +11943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11832
11943
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11833
11944
|
allow_any_organization?: boolean | undefined;
|
|
11834
11945
|
is_system?: boolean | undefined;
|
|
11835
|
-
subject_type?: "
|
|
11946
|
+
subject_type?: "user" | "client" | undefined;
|
|
11836
11947
|
authorization_details_types?: string[] | undefined;
|
|
11837
11948
|
created_at?: string | undefined;
|
|
11838
11949
|
updated_at?: string | undefined;
|
|
@@ -11863,7 +11974,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11863
11974
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11864
11975
|
allow_any_organization?: boolean | undefined;
|
|
11865
11976
|
is_system?: boolean | undefined;
|
|
11866
|
-
subject_type?: "
|
|
11977
|
+
subject_type?: "user" | "client" | undefined;
|
|
11867
11978
|
authorization_details_types?: string[] | undefined;
|
|
11868
11979
|
created_at?: string | undefined;
|
|
11869
11980
|
updated_at?: string | undefined;
|
|
@@ -11908,7 +12019,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11908
12019
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11909
12020
|
allow_any_organization?: boolean | undefined;
|
|
11910
12021
|
is_system?: boolean | undefined;
|
|
11911
|
-
subject_type?: "
|
|
12022
|
+
subject_type?: "user" | "client" | undefined;
|
|
11912
12023
|
authorization_details_types?: string[] | undefined;
|
|
11913
12024
|
};
|
|
11914
12025
|
};
|
|
@@ -11920,7 +12031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11920
12031
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11921
12032
|
allow_any_organization?: boolean | undefined;
|
|
11922
12033
|
is_system?: boolean | undefined;
|
|
11923
|
-
subject_type?: "
|
|
12034
|
+
subject_type?: "user" | "client" | undefined;
|
|
11924
12035
|
authorization_details_types?: string[] | undefined;
|
|
11925
12036
|
created_at?: string | undefined;
|
|
11926
12037
|
updated_at?: string | undefined;
|
|
@@ -11944,7 +12055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11944
12055
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11945
12056
|
allow_any_organization?: boolean | undefined;
|
|
11946
12057
|
is_system?: boolean | undefined;
|
|
11947
|
-
subject_type?: "
|
|
12058
|
+
subject_type?: "user" | "client" | undefined;
|
|
11948
12059
|
authorization_details_types?: string[] | undefined;
|
|
11949
12060
|
};
|
|
11950
12061
|
};
|
|
@@ -11956,7 +12067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11956
12067
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11957
12068
|
allow_any_organization?: boolean | undefined;
|
|
11958
12069
|
is_system?: boolean | undefined;
|
|
11959
|
-
subject_type?: "
|
|
12070
|
+
subject_type?: "user" | "client" | undefined;
|
|
11960
12071
|
authorization_details_types?: string[] | undefined;
|
|
11961
12072
|
created_at?: string | undefined;
|
|
11962
12073
|
updated_at?: string | undefined;
|
|
@@ -12034,7 +12145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12034
12145
|
addons?: {
|
|
12035
12146
|
[x: string]: any;
|
|
12036
12147
|
} | undefined;
|
|
12037
|
-
token_endpoint_auth_method?: "
|
|
12148
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12038
12149
|
client_metadata?: {
|
|
12039
12150
|
[x: string]: string;
|
|
12040
12151
|
} | undefined;
|
|
@@ -12130,7 +12241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12130
12241
|
addons?: {
|
|
12131
12242
|
[x: string]: any;
|
|
12132
12243
|
} | undefined;
|
|
12133
|
-
token_endpoint_auth_method?: "
|
|
12244
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12134
12245
|
client_metadata?: {
|
|
12135
12246
|
[x: string]: string;
|
|
12136
12247
|
} | undefined;
|
|
@@ -12241,7 +12352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12241
12352
|
addons?: {
|
|
12242
12353
|
[x: string]: any;
|
|
12243
12354
|
} | undefined;
|
|
12244
|
-
token_endpoint_auth_method?: "
|
|
12355
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12245
12356
|
client_metadata?: {
|
|
12246
12357
|
[x: string]: string;
|
|
12247
12358
|
} | undefined;
|
|
@@ -12351,7 +12462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12351
12462
|
custom_login_page_preview?: string | undefined;
|
|
12352
12463
|
form_template?: string | undefined;
|
|
12353
12464
|
addons?: Record<string, any> | undefined;
|
|
12354
|
-
token_endpoint_auth_method?: "
|
|
12465
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12355
12466
|
client_metadata?: Record<string, string> | undefined;
|
|
12356
12467
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12357
12468
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12431,7 +12542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12431
12542
|
addons?: {
|
|
12432
12543
|
[x: string]: any;
|
|
12433
12544
|
} | undefined;
|
|
12434
|
-
token_endpoint_auth_method?: "
|
|
12545
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12435
12546
|
client_metadata?: {
|
|
12436
12547
|
[x: string]: string;
|
|
12437
12548
|
} | undefined;
|
|
@@ -12520,7 +12631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12520
12631
|
custom_login_page_preview?: string | undefined;
|
|
12521
12632
|
form_template?: string | undefined;
|
|
12522
12633
|
addons?: Record<string, any> | undefined;
|
|
12523
|
-
token_endpoint_auth_method?: "
|
|
12634
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12524
12635
|
client_metadata?: Record<string, string> | undefined;
|
|
12525
12636
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12526
12637
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12600,7 +12711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12600
12711
|
addons?: {
|
|
12601
12712
|
[x: string]: any;
|
|
12602
12713
|
} | undefined;
|
|
12603
|
-
token_endpoint_auth_method?: "
|
|
12714
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12604
12715
|
client_metadata?: {
|
|
12605
12716
|
[x: string]: string;
|
|
12606
12717
|
} | undefined;
|
|
@@ -13864,7 +13975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13864
13975
|
};
|
|
13865
13976
|
};
|
|
13866
13977
|
output: {
|
|
13867
|
-
type: "
|
|
13978
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13868
13979
|
date: string;
|
|
13869
13980
|
isMobile: boolean;
|
|
13870
13981
|
log_id: string;
|
|
@@ -13903,7 +14014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13903
14014
|
limit: number;
|
|
13904
14015
|
length: number;
|
|
13905
14016
|
logs: {
|
|
13906
|
-
type: "
|
|
14017
|
+
type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13907
14018
|
date: string;
|
|
13908
14019
|
isMobile: boolean;
|
|
13909
14020
|
log_id: string;
|
|
@@ -14218,7 +14329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14218
14329
|
};
|
|
14219
14330
|
} & {
|
|
14220
14331
|
json: {
|
|
14221
|
-
template: "
|
|
14332
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14222
14333
|
body: string;
|
|
14223
14334
|
from: string;
|
|
14224
14335
|
subject: string;
|
|
@@ -14239,7 +14350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14239
14350
|
};
|
|
14240
14351
|
} & {
|
|
14241
14352
|
json: {
|
|
14242
|
-
template: "
|
|
14353
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14243
14354
|
body: string;
|
|
14244
14355
|
from: string;
|
|
14245
14356
|
subject: string;
|
|
@@ -14251,7 +14362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14251
14362
|
};
|
|
14252
14363
|
};
|
|
14253
14364
|
output: {
|
|
14254
|
-
template: "
|
|
14365
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14255
14366
|
body: string;
|
|
14256
14367
|
from: string;
|
|
14257
14368
|
subject: string;
|
|
@@ -14274,7 +14385,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14274
14385
|
};
|
|
14275
14386
|
};
|
|
14276
14387
|
output: {
|
|
14277
|
-
name: "
|
|
14388
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14278
14389
|
body: string;
|
|
14279
14390
|
subject: string;
|
|
14280
14391
|
}[];
|
|
@@ -14287,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14287
14398
|
$get: {
|
|
14288
14399
|
input: {
|
|
14289
14400
|
param: {
|
|
14290
|
-
templateName: "
|
|
14401
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14291
14402
|
};
|
|
14292
14403
|
} & {
|
|
14293
14404
|
header: {
|
|
@@ -14300,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14300
14411
|
} | {
|
|
14301
14412
|
input: {
|
|
14302
14413
|
param: {
|
|
14303
|
-
templateName: "
|
|
14414
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14304
14415
|
};
|
|
14305
14416
|
} & {
|
|
14306
14417
|
header: {
|
|
@@ -14308,7 +14419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14308
14419
|
};
|
|
14309
14420
|
};
|
|
14310
14421
|
output: {
|
|
14311
|
-
template: "
|
|
14422
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14312
14423
|
body: string;
|
|
14313
14424
|
from: string;
|
|
14314
14425
|
subject: string;
|
|
@@ -14327,7 +14438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14327
14438
|
$put: {
|
|
14328
14439
|
input: {
|
|
14329
14440
|
param: {
|
|
14330
|
-
templateName: "
|
|
14441
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14331
14442
|
};
|
|
14332
14443
|
} & {
|
|
14333
14444
|
header: {
|
|
@@ -14335,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14335
14446
|
};
|
|
14336
14447
|
} & {
|
|
14337
14448
|
json: {
|
|
14338
|
-
template: "
|
|
14449
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14339
14450
|
body: string;
|
|
14340
14451
|
subject: string;
|
|
14341
14452
|
syntax?: "liquid" | undefined;
|
|
@@ -14347,7 +14458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14347
14458
|
};
|
|
14348
14459
|
};
|
|
14349
14460
|
output: {
|
|
14350
|
-
template: "
|
|
14461
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14351
14462
|
body: string;
|
|
14352
14463
|
from: string;
|
|
14353
14464
|
subject: string;
|
|
@@ -14366,7 +14477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14366
14477
|
$patch: {
|
|
14367
14478
|
input: {
|
|
14368
14479
|
param: {
|
|
14369
|
-
templateName: "
|
|
14480
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14370
14481
|
};
|
|
14371
14482
|
} & {
|
|
14372
14483
|
header: {
|
|
@@ -14374,7 +14485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14374
14485
|
};
|
|
14375
14486
|
} & {
|
|
14376
14487
|
json: {
|
|
14377
|
-
template?: "
|
|
14488
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14378
14489
|
body?: string | undefined;
|
|
14379
14490
|
from?: string | undefined;
|
|
14380
14491
|
subject?: string | undefined;
|
|
@@ -14391,7 +14502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14391
14502
|
} | {
|
|
14392
14503
|
input: {
|
|
14393
14504
|
param: {
|
|
14394
|
-
templateName: "
|
|
14505
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14395
14506
|
};
|
|
14396
14507
|
} & {
|
|
14397
14508
|
header: {
|
|
@@ -14399,7 +14510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14399
14510
|
};
|
|
14400
14511
|
} & {
|
|
14401
14512
|
json: {
|
|
14402
|
-
template?: "
|
|
14513
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14403
14514
|
body?: string | undefined;
|
|
14404
14515
|
from?: string | undefined;
|
|
14405
14516
|
subject?: string | undefined;
|
|
@@ -14411,7 +14522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14522
|
};
|
|
14412
14523
|
};
|
|
14413
14524
|
output: {
|
|
14414
|
-
template: "
|
|
14525
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14415
14526
|
body: string;
|
|
14416
14527
|
from: string;
|
|
14417
14528
|
subject: string;
|
|
@@ -14430,7 +14541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14430
14541
|
$delete: {
|
|
14431
14542
|
input: {
|
|
14432
14543
|
param: {
|
|
14433
|
-
templateName: "
|
|
14544
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14434
14545
|
};
|
|
14435
14546
|
} & {
|
|
14436
14547
|
header: {
|
|
@@ -14443,7 +14554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14443
14554
|
} | {
|
|
14444
14555
|
input: {
|
|
14445
14556
|
param: {
|
|
14446
|
-
templateName: "
|
|
14557
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14447
14558
|
};
|
|
14448
14559
|
} & {
|
|
14449
14560
|
header: {
|
|
@@ -14460,7 +14571,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14460
14571
|
$post: {
|
|
14461
14572
|
input: {
|
|
14462
14573
|
param: {
|
|
14463
|
-
templateName: "
|
|
14574
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14464
14575
|
};
|
|
14465
14576
|
} & {
|
|
14466
14577
|
header: {
|
|
@@ -14743,7 +14854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14743
14854
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14744
14855
|
custom_domain_id: string;
|
|
14745
14856
|
primary: boolean;
|
|
14746
|
-
status: "
|
|
14857
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14747
14858
|
verification_method?: "txt" | undefined;
|
|
14748
14859
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14749
14860
|
domain_metadata?: {
|
|
@@ -14784,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14784
14895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14785
14896
|
custom_domain_id: string;
|
|
14786
14897
|
primary: boolean;
|
|
14787
|
-
status: "
|
|
14898
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14788
14899
|
verification_method?: "txt" | undefined;
|
|
14789
14900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14790
14901
|
domain_metadata?: {
|
|
@@ -14848,7 +14959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14848
14959
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14849
14960
|
custom_domain_id: string;
|
|
14850
14961
|
primary: boolean;
|
|
14851
|
-
status: "
|
|
14962
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14852
14963
|
verification_method?: "txt" | undefined;
|
|
14853
14964
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14854
14965
|
domain_metadata?: {
|
|
@@ -14895,7 +15006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14895
15006
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14896
15007
|
custom_domain_id: string;
|
|
14897
15008
|
primary: boolean;
|
|
14898
|
-
status: "
|
|
15009
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14899
15010
|
verification_method?: "txt" | undefined;
|
|
14900
15011
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14901
15012
|
domain_metadata?: {
|
|
@@ -14941,7 +15052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14941
15052
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14942
15053
|
custom_domain_id: string;
|
|
14943
15054
|
primary: boolean;
|
|
14944
|
-
status: "
|
|
15055
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14945
15056
|
verification_method?: "txt" | undefined;
|
|
14946
15057
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14947
15058
|
domain_metadata?: {
|
|
@@ -14982,7 +15093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14982
15093
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14983
15094
|
custom_domain_id: string;
|
|
14984
15095
|
primary: boolean;
|
|
14985
|
-
status: "
|
|
15096
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14986
15097
|
verification_method?: "txt" | undefined;
|
|
14987
15098
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14988
15099
|
domain_metadata?: {
|
|
@@ -15030,7 +15141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15030
15141
|
base_focus_color: string;
|
|
15031
15142
|
base_hover_color: string;
|
|
15032
15143
|
body_text: string;
|
|
15033
|
-
captcha_widget_theme: "
|
|
15144
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15034
15145
|
error: string;
|
|
15035
15146
|
header: string;
|
|
15036
15147
|
icons: string;
|
|
@@ -15120,7 +15231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15120
15231
|
base_focus_color: string;
|
|
15121
15232
|
base_hover_color: string;
|
|
15122
15233
|
body_text: string;
|
|
15123
|
-
captcha_widget_theme: "
|
|
15234
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15124
15235
|
error: string;
|
|
15125
15236
|
header: string;
|
|
15126
15237
|
icons: string;
|
|
@@ -15199,7 +15310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15199
15310
|
base_focus_color: string;
|
|
15200
15311
|
base_hover_color: string;
|
|
15201
15312
|
body_text: string;
|
|
15202
|
-
captcha_widget_theme: "
|
|
15313
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15203
15314
|
error: string;
|
|
15204
15315
|
header: string;
|
|
15205
15316
|
icons: string;
|
|
@@ -15289,7 +15400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15289
15400
|
font?: {
|
|
15290
15401
|
url: string;
|
|
15291
15402
|
} | undefined;
|
|
15292
|
-
dark_mode?: "
|
|
15403
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15293
15404
|
};
|
|
15294
15405
|
outputFormat: "json";
|
|
15295
15406
|
status: 200;
|
|
@@ -15319,7 +15430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15319
15430
|
font?: {
|
|
15320
15431
|
url: string;
|
|
15321
15432
|
} | undefined;
|
|
15322
|
-
dark_mode?: "
|
|
15433
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15323
15434
|
};
|
|
15324
15435
|
};
|
|
15325
15436
|
output: {
|
|
@@ -15338,7 +15449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15338
15449
|
font?: {
|
|
15339
15450
|
url: string;
|
|
15340
15451
|
} | undefined;
|
|
15341
|
-
dark_mode?: "
|
|
15452
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15342
15453
|
};
|
|
15343
15454
|
outputFormat: "json";
|
|
15344
15455
|
status: 200;
|
|
@@ -15589,7 +15700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15589
15700
|
logs: {
|
|
15590
15701
|
action_name: string;
|
|
15591
15702
|
lines: {
|
|
15592
|
-
level: "
|
|
15703
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15593
15704
|
message: string;
|
|
15594
15705
|
}[];
|
|
15595
15706
|
}[];
|
|
@@ -16256,7 +16367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16256
16367
|
args: hono_utils_types.JSONValue[];
|
|
16257
16368
|
}[];
|
|
16258
16369
|
logs: {
|
|
16259
|
-
level: "
|
|
16370
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16260
16371
|
message: string;
|
|
16261
16372
|
}[];
|
|
16262
16373
|
error?: string | undefined;
|
|
@@ -16554,7 +16665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16554
16665
|
scope?: string | undefined;
|
|
16555
16666
|
grant_types?: string[] | undefined;
|
|
16556
16667
|
response_types?: string[] | undefined;
|
|
16557
|
-
token_endpoint_auth_method?: "
|
|
16668
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16558
16669
|
jwks_uri?: string | undefined;
|
|
16559
16670
|
jwks?: Record<string, unknown> | undefined;
|
|
16560
16671
|
software_id?: string | undefined;
|
|
@@ -16643,7 +16754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16643
16754
|
scope?: string | undefined;
|
|
16644
16755
|
grant_types?: string[] | undefined;
|
|
16645
16756
|
response_types?: string[] | undefined;
|
|
16646
|
-
token_endpoint_auth_method?: "
|
|
16757
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16647
16758
|
jwks_uri?: string | undefined;
|
|
16648
16759
|
jwks?: Record<string, unknown> | undefined;
|
|
16649
16760
|
software_id?: string | undefined;
|
|
@@ -16989,19 +17100,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16989
17100
|
email: string;
|
|
16990
17101
|
send: "code" | "link";
|
|
16991
17102
|
authParams: {
|
|
16992
|
-
state?: string | undefined;
|
|
16993
|
-
code_challenge?: string | undefined;
|
|
16994
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16995
|
-
redirect_uri?: string | undefined;
|
|
16996
|
-
nonce?: string | undefined;
|
|
16997
|
-
act_as?: string | undefined;
|
|
16998
17103
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16999
17104
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17000
|
-
audience?: string | undefined;
|
|
17001
|
-
organization?: string | undefined;
|
|
17002
17105
|
scope?: string | undefined;
|
|
17003
|
-
prompt?: string | undefined;
|
|
17004
17106
|
username?: string | undefined;
|
|
17107
|
+
audience?: string | undefined;
|
|
17108
|
+
state?: string | undefined;
|
|
17109
|
+
prompt?: string | undefined;
|
|
17110
|
+
act_as?: string | undefined;
|
|
17111
|
+
redirect_uri?: string | undefined;
|
|
17112
|
+
organization?: string | undefined;
|
|
17113
|
+
nonce?: string | undefined;
|
|
17114
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17115
|
+
code_challenge?: string | undefined;
|
|
17005
17116
|
ui_locales?: string | undefined;
|
|
17006
17117
|
max_age?: number | undefined;
|
|
17007
17118
|
acr_values?: string | undefined;
|
|
@@ -17025,19 +17136,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17025
17136
|
phone_number: string;
|
|
17026
17137
|
send: "code" | "link";
|
|
17027
17138
|
authParams: {
|
|
17028
|
-
state?: string | undefined;
|
|
17029
|
-
code_challenge?: string | undefined;
|
|
17030
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17031
|
-
redirect_uri?: string | undefined;
|
|
17032
|
-
nonce?: string | undefined;
|
|
17033
|
-
act_as?: string | undefined;
|
|
17034
17139
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17035
17140
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17036
|
-
audience?: string | undefined;
|
|
17037
|
-
organization?: string | undefined;
|
|
17038
17141
|
scope?: string | undefined;
|
|
17039
|
-
prompt?: string | undefined;
|
|
17040
17142
|
username?: string | undefined;
|
|
17143
|
+
audience?: string | undefined;
|
|
17144
|
+
state?: string | undefined;
|
|
17145
|
+
prompt?: string | undefined;
|
|
17146
|
+
act_as?: string | undefined;
|
|
17147
|
+
redirect_uri?: string | undefined;
|
|
17148
|
+
organization?: string | undefined;
|
|
17149
|
+
nonce?: string | undefined;
|
|
17150
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17151
|
+
code_challenge?: string | undefined;
|
|
17041
17152
|
ui_locales?: string | undefined;
|
|
17042
17153
|
max_age?: number | undefined;
|
|
17043
17154
|
acr_values?: string | undefined;
|
|
@@ -17753,7 +17864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17753
17864
|
output: {
|
|
17754
17865
|
keys: {
|
|
17755
17866
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17756
|
-
kty: "
|
|
17867
|
+
kty: "RSA" | "EC" | "oct";
|
|
17757
17868
|
kid?: string | undefined;
|
|
17758
17869
|
use?: "sig" | "enc" | undefined;
|
|
17759
17870
|
n?: string | undefined;
|
|
@@ -18944,7 +19055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18944
19055
|
$get: {
|
|
18945
19056
|
input: {
|
|
18946
19057
|
param: {
|
|
18947
|
-
screen: "
|
|
19058
|
+
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";
|
|
18948
19059
|
};
|
|
18949
19060
|
} & {
|
|
18950
19061
|
query: {
|
|
@@ -18960,7 +19071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18960
19071
|
} | {
|
|
18961
19072
|
input: {
|
|
18962
19073
|
param: {
|
|
18963
|
-
screen: "
|
|
19074
|
+
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";
|
|
18964
19075
|
};
|
|
18965
19076
|
} & {
|
|
18966
19077
|
query: {
|
|
@@ -18976,7 +19087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18976
19087
|
} | {
|
|
18977
19088
|
input: {
|
|
18978
19089
|
param: {
|
|
18979
|
-
screen: "
|
|
19090
|
+
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";
|
|
18980
19091
|
};
|
|
18981
19092
|
} & {
|
|
18982
19093
|
query: {
|
|
@@ -18996,7 +19107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18996
19107
|
$post: {
|
|
18997
19108
|
input: {
|
|
18998
19109
|
param: {
|
|
18999
|
-
screen: "
|
|
19110
|
+
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";
|
|
19000
19111
|
};
|
|
19001
19112
|
} & {
|
|
19002
19113
|
query: {
|
|
@@ -19014,7 +19125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19014
19125
|
} | {
|
|
19015
19126
|
input: {
|
|
19016
19127
|
param: {
|
|
19017
|
-
screen: "
|
|
19128
|
+
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";
|
|
19018
19129
|
};
|
|
19019
19130
|
} & {
|
|
19020
19131
|
query: {
|
|
@@ -19032,7 +19143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19032
19143
|
} | {
|
|
19033
19144
|
input: {
|
|
19034
19145
|
param: {
|
|
19035
|
-
screen: "
|
|
19146
|
+
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";
|
|
19036
19147
|
};
|
|
19037
19148
|
} & {
|
|
19038
19149
|
query: {
|
|
@@ -19130,5 +19241,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19130
19241
|
createX509Certificate: typeof createX509Certificate;
|
|
19131
19242
|
};
|
|
19132
19243
|
|
|
19133
|
-
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 };
|
|
19134
|
-
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 };
|
|
19244
|
+
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 };
|
|
19245
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, 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 };
|