authhero 9.10.0 → 9.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +146 -146
- package/dist/authhero.d.ts +494 -250
- package/dist/authhero.mjs +15108 -14199
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/reserved-claims.d.ts +19 -3
- package/dist/types/helpers/run-retention.d.ts +5 -0
- package/dist/types/helpers/users-import/map.d.ts +128 -0
- package/dist/types/helpers/users-import/process.d.ts +95 -0
- package/dist/types/helpers/users-import-cleanup.d.ts +26 -0
- package/dist/types/index.d.ts +369 -246
- package/dist/types/routes/auth-api/index.d.ts +9 -9
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +333 -214
- package/dist/types/routes/management-api/jobs.d.ts +133 -0
- package/dist/types/routes/management-api/keys.d.ts +12 -12
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenant-operations.d.ts +32 -8
- package/dist/types/routes/management-api/users.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/AuthHeroConfig.d.ts +34 -0
- package/dist/types/types/Bindings.d.ts +3 -0
- package/dist/types/types/auth0/UserImport.d.ts +317 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +6 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as hono_utils_types from 'hono/utils/types';
|
|
2
1
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
2
|
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, ActionExecutionsAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, AuditCategory, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
3
|
export * from '@authhero/adapter-interfaces';
|
|
5
|
-
import * as hono_types from 'hono/types';
|
|
6
4
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
5
|
+
import * as hono_types from 'hono/types';
|
|
6
|
+
import * as hono_utils_types from 'hono/utils/types';
|
|
7
7
|
import { z, OpenAPIHono } from '@hono/zod-openapi';
|
|
8
8
|
import { CountryCode } from 'libphonenumber-js';
|
|
9
9
|
import { SamlSigner } from '@authhero/saml/core';
|
|
@@ -1903,6 +1903,40 @@ interface AuthHeroConfig {
|
|
|
1903
1903
|
* satisfy this shape.
|
|
1904
1904
|
*/
|
|
1905
1905
|
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
1906
|
+
/**
|
|
1907
|
+
* Maximum accepted size of a bulk user-import file, in bytes
|
|
1908
|
+
* (`POST /api/v2/jobs/users-imports`). Defaults to Auth0's documented
|
|
1909
|
+
* 500 KB, so any Auth0-shaped client sees identical behaviour. Raise it
|
|
1910
|
+
* only for a migration you control end to end — a larger file means more
|
|
1911
|
+
* rows staged inside a single request.
|
|
1912
|
+
*/
|
|
1913
|
+
usersImportMaxBytes?: number;
|
|
1914
|
+
/**
|
|
1915
|
+
* Maximum bulk user-import jobs a single tenant may have in flight.
|
|
1916
|
+
* Defaults to Auth0's limit of 2; further submissions get a 429.
|
|
1917
|
+
*/
|
|
1918
|
+
usersImportMaxConcurrentJobs?: number;
|
|
1919
|
+
/**
|
|
1920
|
+
* Let hooks write the `azp` claim, which the authorization server otherwise
|
|
1921
|
+
* owns. Defaults to `false`, and should stay that way in a new deployment.
|
|
1922
|
+
*
|
|
1923
|
+
* `azp` is reserved because `middlewares/authentication.ts` reads it as the
|
|
1924
|
+
* calling client's id, so a hook-supplied value lands in the request context
|
|
1925
|
+
* where a registered client id is expected.
|
|
1926
|
+
*
|
|
1927
|
+
* The flag exists because reserving the name is not a no-op for a deployment
|
|
1928
|
+
* that was already using it: the mint never emits `azp` itself, so a hook
|
|
1929
|
+
* was the only thing writing it, and reserving it deletes the claim from
|
|
1930
|
+
* every token rather than restoring a server-computed value. Turning this on
|
|
1931
|
+
* keeps those tokens intact while the services reading `azp` are moved onto
|
|
1932
|
+
* a claim the hook owns.
|
|
1933
|
+
*
|
|
1934
|
+
* **Transitional.** Enable it only where the hooks writing `azp` are
|
|
1935
|
+
* first-party code, and turn it off once the migration is done.
|
|
1936
|
+
*
|
|
1937
|
+
* @default false
|
|
1938
|
+
*/
|
|
1939
|
+
unsafeAllowAzpCustomClaim?: boolean;
|
|
1906
1940
|
/**
|
|
1907
1941
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1908
1942
|
* This is only configurable in code, not stored in the database.
|
|
@@ -2170,6 +2204,9 @@ type Bindings = {
|
|
|
2170
2204
|
webhookInvoker?: WebhookInvoker;
|
|
2171
2205
|
tenantUpgrade?: (tenantId: string) => Promise<void>;
|
|
2172
2206
|
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
2207
|
+
usersImportMaxBytes?: number;
|
|
2208
|
+
usersImportMaxConcurrentJobs?: number;
|
|
2209
|
+
unsafeAllowAzpCustomClaim?: boolean;
|
|
2173
2210
|
outbox?: OutboxConfig;
|
|
2174
2211
|
userLinkingMode?: UserLinkingModeOption;
|
|
2175
2212
|
usernamePasswordProvider?: UsernamePasswordProviderResolver;
|
|
@@ -2880,6 +2917,89 @@ interface ActionExecutionsCleanupParams {
|
|
|
2880
2917
|
*/
|
|
2881
2918
|
declare function cleanupActionExecutions(actionExecutions: ActionExecutionsAdapter, params?: ActionExecutionsCleanupParams): Promise<number | null>;
|
|
2882
2919
|
|
|
2920
|
+
interface UsersImportCleanupParams {
|
|
2921
|
+
/** Hours to keep finished import jobs. Defaults to Auth0's 24. */
|
|
2922
|
+
retentionHours?: number;
|
|
2923
|
+
/** Maximum jobs to delete per sweep. */
|
|
2924
|
+
limit?: number;
|
|
2925
|
+
}
|
|
2926
|
+
/**
|
|
2927
|
+
* Delete finished bulk-import jobs (and, by cascade, their staged rows)
|
|
2928
|
+
* older than the retention window.
|
|
2929
|
+
*
|
|
2930
|
+
* Staged rows hold the submitted user entries, so this is a privacy control
|
|
2931
|
+
* as much as a housekeeping one — though credential material is redacted
|
|
2932
|
+
* before staging rather than relying on this sweep.
|
|
2933
|
+
*
|
|
2934
|
+
* Only terminal jobs are removed: an unfinished import may legitimately be
|
|
2935
|
+
* older than the window (a very large file, or one that has been waiting on
|
|
2936
|
+
* a resume sweep), and deleting it would strand the users it had not yet
|
|
2937
|
+
* created. Returns the number of jobs deleted, or `null` when the
|
|
2938
|
+
* deployment has no tenant-operations adapter.
|
|
2939
|
+
*/
|
|
2940
|
+
declare function cleanupUsersImports(data: DataAdapters, params?: UsersImportCleanupParams): Promise<number | null>;
|
|
2941
|
+
|
|
2942
|
+
interface AdvanceOptions {
|
|
2943
|
+
/** Stop after this many rows, so a driver can bound its own runtime. */
|
|
2944
|
+
maxRows?: number;
|
|
2945
|
+
/** Rows per chunk; defaults to {@link DEFAULT_CHUNK_SIZE}. */
|
|
2946
|
+
chunkSize?: number;
|
|
2947
|
+
/** Lease duration for this driver's claim. */
|
|
2948
|
+
leaseMs?: number;
|
|
2949
|
+
/**
|
|
2950
|
+
* Wall-clock deadline (epoch ms). The driver stops cleanly at the next
|
|
2951
|
+
* chunk boundary once passed, leaving the remainder `pending` for the
|
|
2952
|
+
* next driver — never mid-chunk, so no work is half-committed.
|
|
2953
|
+
*/
|
|
2954
|
+
deadline?: number;
|
|
2955
|
+
/** Identifies the lease holder; defaults to a random id. */
|
|
2956
|
+
workerId?: string;
|
|
2957
|
+
}
|
|
2958
|
+
interface AdvanceResult {
|
|
2959
|
+
/** True when no `pending` rows remain and the operation was finalized. */
|
|
2960
|
+
done: boolean;
|
|
2961
|
+
/** Rows this call committed an outcome for. */
|
|
2962
|
+
processed: number;
|
|
2963
|
+
/** Rows still `pending` after this call. */
|
|
2964
|
+
remaining: number;
|
|
2965
|
+
/** False when another live driver holds the lease. */
|
|
2966
|
+
claimed: boolean;
|
|
2967
|
+
}
|
|
2968
|
+
/**
|
|
2969
|
+
* Advance a `users_import` operation by processing staged rows until it is
|
|
2970
|
+
* finished or the caller's budget runs out.
|
|
2971
|
+
*
|
|
2972
|
+
* This is the whole execution model. Every engine — an inline kick from the
|
|
2973
|
+
* accepting request, a cron sweep, a Cloudflare Workflow step — calls this
|
|
2974
|
+
* same function; they differ only in how much budget they pass and how often
|
|
2975
|
+
* they call it. Durability comes from the database, not from the caller:
|
|
2976
|
+
* outcomes are committed chunk by chunk, so a driver that dies loses at most
|
|
2977
|
+
* the chunk in flight, and those rows stay `pending` for whoever runs next.
|
|
2978
|
+
*/
|
|
2979
|
+
declare function advanceUsersImport(data: DataAdapters, operationId: string, options?: AdvanceOptions): Promise<AdvanceResult>;
|
|
2980
|
+
interface ResumeUsersImportsOptions extends Omit<AdvanceOptions, "workerId"> {
|
|
2981
|
+
/** Maximum operations to advance in one sweep. */
|
|
2982
|
+
maxOperations?: number;
|
|
2983
|
+
}
|
|
2984
|
+
interface ResumeUsersImportsResult {
|
|
2985
|
+
scanned: number;
|
|
2986
|
+
advanced: number;
|
|
2987
|
+
completed: number;
|
|
2988
|
+
errors: number;
|
|
2989
|
+
}
|
|
2990
|
+
/**
|
|
2991
|
+
* Resume every unfinished bulk import that no live driver is working on.
|
|
2992
|
+
*
|
|
2993
|
+
* This is what makes the feature durable regardless of deployment. Wire it
|
|
2994
|
+
* to a scheduled handler alongside `runRetention`: whatever started an
|
|
2995
|
+
* import — a request that timed out, a worker that was evicted, a process
|
|
2996
|
+
* that was redeployed mid-run — the sweep picks the job back up and carries
|
|
2997
|
+
* it to completion from the last committed chunk.
|
|
2998
|
+
*
|
|
2999
|
+
* One operation's failure never aborts the sweep.
|
|
3000
|
+
*/
|
|
3001
|
+
declare function resumeUsersImports(data: DataAdapters, options?: ResumeUsersImportsOptions): Promise<ResumeUsersImportsResult>;
|
|
3002
|
+
|
|
2883
3003
|
/**
|
|
2884
3004
|
* Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
|
|
2885
3005
|
* `webhookInvoker` can request a non-default scope for its outbound call.
|
|
@@ -3158,6 +3278,11 @@ interface RunRetentionConfig {
|
|
|
3158
3278
|
outboxRetentionDays?: number;
|
|
3159
3279
|
/** Days of action execution history to keep. Default 30. */
|
|
3160
3280
|
actionExecutionsRetentionDays?: number;
|
|
3281
|
+
/**
|
|
3282
|
+
* Hours to keep finished bulk user-import jobs and their staged rows.
|
|
3283
|
+
* Default 24, matching Auth0's job-data retention.
|
|
3284
|
+
*/
|
|
3285
|
+
usersImportRetentionHours?: number;
|
|
3161
3286
|
/**
|
|
3162
3287
|
* Scope the session sweep to a single tenant. Codes and outbox events are
|
|
3163
3288
|
* always swept globally — an expired row is dead regardless of who owns it.
|
|
@@ -4433,6 +4558,125 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4433
4558
|
Bindings: Bindings;
|
|
4434
4559
|
Variables: Variables;
|
|
4435
4560
|
}, hono_types.MergeSchemaPath<{
|
|
4561
|
+
"/users-imports": {
|
|
4562
|
+
$post: {
|
|
4563
|
+
input: {
|
|
4564
|
+
header: {
|
|
4565
|
+
"tenant-id"?: string | undefined;
|
|
4566
|
+
};
|
|
4567
|
+
} & {
|
|
4568
|
+
form: {
|
|
4569
|
+
users: any;
|
|
4570
|
+
connection_id: string;
|
|
4571
|
+
upsert?: string | boolean | undefined;
|
|
4572
|
+
external_id?: string | undefined;
|
|
4573
|
+
send_completion_email?: string | boolean | undefined;
|
|
4574
|
+
};
|
|
4575
|
+
};
|
|
4576
|
+
output: {
|
|
4577
|
+
id: string;
|
|
4578
|
+
type: string;
|
|
4579
|
+
status: "pending" | "failed" | "completed";
|
|
4580
|
+
created_at?: string | undefined;
|
|
4581
|
+
connection_id?: string | undefined;
|
|
4582
|
+
external_id?: string | undefined;
|
|
4583
|
+
percentage_done?: number | undefined;
|
|
4584
|
+
time_left_seconds?: number | undefined;
|
|
4585
|
+
status_details?: string | undefined;
|
|
4586
|
+
summary?: {
|
|
4587
|
+
failed: number;
|
|
4588
|
+
updated: number;
|
|
4589
|
+
inserted: number;
|
|
4590
|
+
total: number;
|
|
4591
|
+
} | undefined;
|
|
4592
|
+
};
|
|
4593
|
+
outputFormat: "json";
|
|
4594
|
+
status: 202;
|
|
4595
|
+
};
|
|
4596
|
+
};
|
|
4597
|
+
} & {
|
|
4598
|
+
"/:id": {
|
|
4599
|
+
$get: {
|
|
4600
|
+
input: {
|
|
4601
|
+
param: {
|
|
4602
|
+
id: string;
|
|
4603
|
+
};
|
|
4604
|
+
} & {
|
|
4605
|
+
header: {
|
|
4606
|
+
"tenant-id"?: string | undefined;
|
|
4607
|
+
};
|
|
4608
|
+
};
|
|
4609
|
+
output: {
|
|
4610
|
+
id: string;
|
|
4611
|
+
type: string;
|
|
4612
|
+
status: "pending" | "failed" | "completed";
|
|
4613
|
+
created_at?: string | undefined;
|
|
4614
|
+
connection_id?: string | undefined;
|
|
4615
|
+
external_id?: string | undefined;
|
|
4616
|
+
percentage_done?: number | undefined;
|
|
4617
|
+
time_left_seconds?: number | undefined;
|
|
4618
|
+
status_details?: string | undefined;
|
|
4619
|
+
summary?: {
|
|
4620
|
+
failed: number;
|
|
4621
|
+
updated: number;
|
|
4622
|
+
inserted: number;
|
|
4623
|
+
total: number;
|
|
4624
|
+
} | undefined;
|
|
4625
|
+
};
|
|
4626
|
+
outputFormat: "json";
|
|
4627
|
+
status: 200;
|
|
4628
|
+
};
|
|
4629
|
+
};
|
|
4630
|
+
} & {
|
|
4631
|
+
"/:id/errors": {
|
|
4632
|
+
$get: {
|
|
4633
|
+
input: {
|
|
4634
|
+
param: {
|
|
4635
|
+
id: string;
|
|
4636
|
+
};
|
|
4637
|
+
} & {
|
|
4638
|
+
query: {
|
|
4639
|
+
page?: unknown;
|
|
4640
|
+
per_page?: unknown;
|
|
4641
|
+
};
|
|
4642
|
+
} & {
|
|
4643
|
+
header: {
|
|
4644
|
+
"tenant-id"?: string | undefined;
|
|
4645
|
+
};
|
|
4646
|
+
};
|
|
4647
|
+
output: {};
|
|
4648
|
+
outputFormat: string;
|
|
4649
|
+
status: 204;
|
|
4650
|
+
} | {
|
|
4651
|
+
input: {
|
|
4652
|
+
param: {
|
|
4653
|
+
id: string;
|
|
4654
|
+
};
|
|
4655
|
+
} & {
|
|
4656
|
+
query: {
|
|
4657
|
+
page?: unknown;
|
|
4658
|
+
per_page?: unknown;
|
|
4659
|
+
};
|
|
4660
|
+
} & {
|
|
4661
|
+
header: {
|
|
4662
|
+
"tenant-id"?: string | undefined;
|
|
4663
|
+
};
|
|
4664
|
+
};
|
|
4665
|
+
output: {
|
|
4666
|
+
user: {
|
|
4667
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
4668
|
+
};
|
|
4669
|
+
errors: {
|
|
4670
|
+
code: string;
|
|
4671
|
+
message: string;
|
|
4672
|
+
path?: string | undefined;
|
|
4673
|
+
}[];
|
|
4674
|
+
}[];
|
|
4675
|
+
outputFormat: "json";
|
|
4676
|
+
status: 200;
|
|
4677
|
+
};
|
|
4678
|
+
};
|
|
4679
|
+
}, "/jobs"> & hono_types.MergeSchemaPath<{
|
|
4436
4680
|
"/export": {
|
|
4437
4681
|
$get: {
|
|
4438
4682
|
input: {
|
|
@@ -4525,7 +4769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4525
4769
|
};
|
|
4526
4770
|
} & {
|
|
4527
4771
|
json: {
|
|
4528
|
-
type: "
|
|
4772
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4529
4773
|
phone_number?: string | undefined;
|
|
4530
4774
|
totp_secret?: string | undefined;
|
|
4531
4775
|
credential_id?: string | undefined;
|
|
@@ -4665,7 +4909,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4665
4909
|
};
|
|
4666
4910
|
};
|
|
4667
4911
|
output: {
|
|
4668
|
-
name: "
|
|
4912
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4669
4913
|
enabled: boolean;
|
|
4670
4914
|
trial_expired?: boolean | undefined;
|
|
4671
4915
|
}[];
|
|
@@ -4820,7 +5064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4820
5064
|
$get: {
|
|
4821
5065
|
input: {
|
|
4822
5066
|
param: {
|
|
4823
|
-
factor_name: "
|
|
5067
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4824
5068
|
};
|
|
4825
5069
|
} & {
|
|
4826
5070
|
header: {
|
|
@@ -4828,7 +5072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4828
5072
|
};
|
|
4829
5073
|
};
|
|
4830
5074
|
output: {
|
|
4831
|
-
name: "
|
|
5075
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4832
5076
|
enabled: boolean;
|
|
4833
5077
|
trial_expired?: boolean | undefined;
|
|
4834
5078
|
};
|
|
@@ -4841,7 +5085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4841
5085
|
$put: {
|
|
4842
5086
|
input: {
|
|
4843
5087
|
param: {
|
|
4844
|
-
factor_name: "
|
|
5088
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4845
5089
|
};
|
|
4846
5090
|
} & {
|
|
4847
5091
|
header: {
|
|
@@ -4853,7 +5097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4853
5097
|
};
|
|
4854
5098
|
};
|
|
4855
5099
|
output: {
|
|
4856
|
-
name: "
|
|
5100
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4857
5101
|
enabled: boolean;
|
|
4858
5102
|
trial_expired?: boolean | undefined;
|
|
4859
5103
|
};
|
|
@@ -5632,9 +5876,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5632
5876
|
email?: string | undefined;
|
|
5633
5877
|
};
|
|
5634
5878
|
id?: string | undefined;
|
|
5635
|
-
connection_id?: string | undefined;
|
|
5636
5879
|
app_metadata?: Record<string, any> | undefined;
|
|
5637
5880
|
user_metadata?: Record<string, any> | undefined;
|
|
5881
|
+
connection_id?: string | undefined;
|
|
5638
5882
|
roles?: string[] | undefined;
|
|
5639
5883
|
ttl_sec?: number | undefined;
|
|
5640
5884
|
send_invitation_email?: boolean | undefined;
|
|
@@ -5820,8 +6064,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5820
6064
|
};
|
|
5821
6065
|
} & {
|
|
5822
6066
|
json: {
|
|
5823
|
-
assign_membership_on_login?: boolean | undefined;
|
|
5824
6067
|
show_as_button?: boolean | undefined;
|
|
6068
|
+
assign_membership_on_login?: boolean | undefined;
|
|
5825
6069
|
is_signup_enabled?: boolean | undefined;
|
|
5826
6070
|
};
|
|
5827
6071
|
};
|
|
@@ -7117,7 +7361,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7117
7361
|
hint?: string | undefined;
|
|
7118
7362
|
messages?: {
|
|
7119
7363
|
text: string;
|
|
7120
|
-
type: "
|
|
7364
|
+
type: "error" | "success" | "info" | "warning";
|
|
7121
7365
|
id?: number | undefined;
|
|
7122
7366
|
}[] | undefined;
|
|
7123
7367
|
required?: boolean | undefined;
|
|
@@ -7135,7 +7379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7135
7379
|
hint?: string | undefined;
|
|
7136
7380
|
messages?: {
|
|
7137
7381
|
text: string;
|
|
7138
|
-
type: "
|
|
7382
|
+
type: "error" | "success" | "info" | "warning";
|
|
7139
7383
|
id?: number | undefined;
|
|
7140
7384
|
}[] | undefined;
|
|
7141
7385
|
required?: boolean | undefined;
|
|
@@ -7159,7 +7403,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7159
7403
|
hint?: string | undefined;
|
|
7160
7404
|
messages?: {
|
|
7161
7405
|
text: string;
|
|
7162
|
-
type: "
|
|
7406
|
+
type: "error" | "success" | "info" | "warning";
|
|
7163
7407
|
id?: number | undefined;
|
|
7164
7408
|
}[] | undefined;
|
|
7165
7409
|
required?: boolean | undefined;
|
|
@@ -7183,7 +7427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7183
7427
|
hint?: string | undefined;
|
|
7184
7428
|
messages?: {
|
|
7185
7429
|
text: string;
|
|
7186
|
-
type: "
|
|
7430
|
+
type: "error" | "success" | "info" | "warning";
|
|
7187
7431
|
id?: number | undefined;
|
|
7188
7432
|
}[] | undefined;
|
|
7189
7433
|
required?: boolean | undefined;
|
|
@@ -7207,7 +7451,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7207
7451
|
hint?: string | undefined;
|
|
7208
7452
|
messages?: {
|
|
7209
7453
|
text: string;
|
|
7210
|
-
type: "
|
|
7454
|
+
type: "error" | "success" | "info" | "warning";
|
|
7211
7455
|
id?: number | undefined;
|
|
7212
7456
|
}[] | undefined;
|
|
7213
7457
|
required?: boolean | undefined;
|
|
@@ -7236,7 +7480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7236
7480
|
hint?: string | undefined;
|
|
7237
7481
|
messages?: {
|
|
7238
7482
|
text: string;
|
|
7239
|
-
type: "
|
|
7483
|
+
type: "error" | "success" | "info" | "warning";
|
|
7240
7484
|
id?: number | undefined;
|
|
7241
7485
|
}[] | undefined;
|
|
7242
7486
|
required?: boolean | undefined;
|
|
@@ -7251,7 +7495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7251
7495
|
hint?: string | undefined;
|
|
7252
7496
|
messages?: {
|
|
7253
7497
|
text: string;
|
|
7254
|
-
type: "
|
|
7498
|
+
type: "error" | "success" | "info" | "warning";
|
|
7255
7499
|
id?: number | undefined;
|
|
7256
7500
|
}[] | undefined;
|
|
7257
7501
|
required?: boolean | undefined;
|
|
@@ -7272,7 +7516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7272
7516
|
hint?: string | undefined;
|
|
7273
7517
|
messages?: {
|
|
7274
7518
|
text: string;
|
|
7275
|
-
type: "
|
|
7519
|
+
type: "error" | "success" | "info" | "warning";
|
|
7276
7520
|
id?: number | undefined;
|
|
7277
7521
|
}[] | undefined;
|
|
7278
7522
|
required?: boolean | undefined;
|
|
@@ -7297,7 +7541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7297
7541
|
hint?: string | undefined;
|
|
7298
7542
|
messages?: {
|
|
7299
7543
|
text: string;
|
|
7300
|
-
type: "
|
|
7544
|
+
type: "error" | "success" | "info" | "warning";
|
|
7301
7545
|
id?: number | undefined;
|
|
7302
7546
|
}[] | undefined;
|
|
7303
7547
|
required?: boolean | undefined;
|
|
@@ -7318,7 +7562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7318
7562
|
hint?: string | undefined;
|
|
7319
7563
|
messages?: {
|
|
7320
7564
|
text: string;
|
|
7321
|
-
type: "
|
|
7565
|
+
type: "error" | "success" | "info" | "warning";
|
|
7322
7566
|
id?: number | undefined;
|
|
7323
7567
|
}[] | undefined;
|
|
7324
7568
|
required?: boolean | undefined;
|
|
@@ -7338,7 +7582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7338
7582
|
hint?: string | undefined;
|
|
7339
7583
|
messages?: {
|
|
7340
7584
|
text: string;
|
|
7341
|
-
type: "
|
|
7585
|
+
type: "error" | "success" | "info" | "warning";
|
|
7342
7586
|
id?: number | undefined;
|
|
7343
7587
|
}[] | undefined;
|
|
7344
7588
|
required?: boolean | undefined;
|
|
@@ -7357,7 +7601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7357
7601
|
hint?: string | undefined;
|
|
7358
7602
|
messages?: {
|
|
7359
7603
|
text: string;
|
|
7360
|
-
type: "
|
|
7604
|
+
type: "error" | "success" | "info" | "warning";
|
|
7361
7605
|
id?: number | undefined;
|
|
7362
7606
|
}[] | undefined;
|
|
7363
7607
|
required?: boolean | undefined;
|
|
@@ -7379,7 +7623,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7379
7623
|
hint?: string | undefined;
|
|
7380
7624
|
messages?: {
|
|
7381
7625
|
text: string;
|
|
7382
|
-
type: "
|
|
7626
|
+
type: "error" | "success" | "info" | "warning";
|
|
7383
7627
|
id?: number | undefined;
|
|
7384
7628
|
}[] | undefined;
|
|
7385
7629
|
required?: boolean | undefined;
|
|
@@ -7401,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7401
7645
|
hint?: string | undefined;
|
|
7402
7646
|
messages?: {
|
|
7403
7647
|
text: string;
|
|
7404
|
-
type: "
|
|
7648
|
+
type: "error" | "success" | "info" | "warning";
|
|
7405
7649
|
id?: number | undefined;
|
|
7406
7650
|
}[] | undefined;
|
|
7407
7651
|
required?: boolean | undefined;
|
|
@@ -7420,7 +7664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7420
7664
|
hint?: string | undefined;
|
|
7421
7665
|
messages?: {
|
|
7422
7666
|
text: string;
|
|
7423
|
-
type: "
|
|
7667
|
+
type: "error" | "success" | "info" | "warning";
|
|
7424
7668
|
id?: number | undefined;
|
|
7425
7669
|
}[] | undefined;
|
|
7426
7670
|
required?: boolean | undefined;
|
|
@@ -7447,7 +7691,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7447
7691
|
hint?: string | undefined;
|
|
7448
7692
|
messages?: {
|
|
7449
7693
|
text: string;
|
|
7450
|
-
type: "
|
|
7694
|
+
type: "error" | "success" | "info" | "warning";
|
|
7451
7695
|
id?: number | undefined;
|
|
7452
7696
|
}[] | undefined;
|
|
7453
7697
|
required?: boolean | undefined;
|
|
@@ -7468,7 +7712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7468
7712
|
hint?: string | undefined;
|
|
7469
7713
|
messages?: {
|
|
7470
7714
|
text: string;
|
|
7471
|
-
type: "
|
|
7715
|
+
type: "error" | "success" | "info" | "warning";
|
|
7472
7716
|
id?: number | undefined;
|
|
7473
7717
|
}[] | undefined;
|
|
7474
7718
|
required?: boolean | undefined;
|
|
@@ -7491,7 +7735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7491
7735
|
hint?: string | undefined;
|
|
7492
7736
|
messages?: {
|
|
7493
7737
|
text: string;
|
|
7494
|
-
type: "
|
|
7738
|
+
type: "error" | "success" | "info" | "warning";
|
|
7495
7739
|
id?: number | undefined;
|
|
7496
7740
|
}[] | undefined;
|
|
7497
7741
|
required?: boolean | undefined;
|
|
@@ -7724,7 +7968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7724
7968
|
hint?: string | undefined;
|
|
7725
7969
|
messages?: {
|
|
7726
7970
|
text: string;
|
|
7727
|
-
type: "
|
|
7971
|
+
type: "error" | "success" | "info" | "warning";
|
|
7728
7972
|
id?: number | undefined;
|
|
7729
7973
|
}[] | undefined;
|
|
7730
7974
|
required?: boolean | undefined;
|
|
@@ -7742,7 +7986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7742
7986
|
hint?: string | undefined;
|
|
7743
7987
|
messages?: {
|
|
7744
7988
|
text: string;
|
|
7745
|
-
type: "
|
|
7989
|
+
type: "error" | "success" | "info" | "warning";
|
|
7746
7990
|
id?: number | undefined;
|
|
7747
7991
|
}[] | undefined;
|
|
7748
7992
|
required?: boolean | undefined;
|
|
@@ -7766,7 +8010,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7766
8010
|
hint?: string | undefined;
|
|
7767
8011
|
messages?: {
|
|
7768
8012
|
text: string;
|
|
7769
|
-
type: "
|
|
8013
|
+
type: "error" | "success" | "info" | "warning";
|
|
7770
8014
|
id?: number | undefined;
|
|
7771
8015
|
}[] | undefined;
|
|
7772
8016
|
required?: boolean | undefined;
|
|
@@ -7790,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7790
8034
|
hint?: string | undefined;
|
|
7791
8035
|
messages?: {
|
|
7792
8036
|
text: string;
|
|
7793
|
-
type: "
|
|
8037
|
+
type: "error" | "success" | "info" | "warning";
|
|
7794
8038
|
id?: number | undefined;
|
|
7795
8039
|
}[] | undefined;
|
|
7796
8040
|
required?: boolean | undefined;
|
|
@@ -7814,7 +8058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7814
8058
|
hint?: string | undefined;
|
|
7815
8059
|
messages?: {
|
|
7816
8060
|
text: string;
|
|
7817
|
-
type: "
|
|
8061
|
+
type: "error" | "success" | "info" | "warning";
|
|
7818
8062
|
id?: number | undefined;
|
|
7819
8063
|
}[] | undefined;
|
|
7820
8064
|
required?: boolean | undefined;
|
|
@@ -7843,7 +8087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7843
8087
|
hint?: string | undefined;
|
|
7844
8088
|
messages?: {
|
|
7845
8089
|
text: string;
|
|
7846
|
-
type: "
|
|
8090
|
+
type: "error" | "success" | "info" | "warning";
|
|
7847
8091
|
id?: number | undefined;
|
|
7848
8092
|
}[] | undefined;
|
|
7849
8093
|
required?: boolean | undefined;
|
|
@@ -7858,7 +8102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7858
8102
|
hint?: string | undefined;
|
|
7859
8103
|
messages?: {
|
|
7860
8104
|
text: string;
|
|
7861
|
-
type: "
|
|
8105
|
+
type: "error" | "success" | "info" | "warning";
|
|
7862
8106
|
id?: number | undefined;
|
|
7863
8107
|
}[] | undefined;
|
|
7864
8108
|
required?: boolean | undefined;
|
|
@@ -7879,7 +8123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7879
8123
|
hint?: string | undefined;
|
|
7880
8124
|
messages?: {
|
|
7881
8125
|
text: string;
|
|
7882
|
-
type: "
|
|
8126
|
+
type: "error" | "success" | "info" | "warning";
|
|
7883
8127
|
id?: number | undefined;
|
|
7884
8128
|
}[] | undefined;
|
|
7885
8129
|
required?: boolean | undefined;
|
|
@@ -7904,7 +8148,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7904
8148
|
hint?: string | undefined;
|
|
7905
8149
|
messages?: {
|
|
7906
8150
|
text: string;
|
|
7907
|
-
type: "
|
|
8151
|
+
type: "error" | "success" | "info" | "warning";
|
|
7908
8152
|
id?: number | undefined;
|
|
7909
8153
|
}[] | undefined;
|
|
7910
8154
|
required?: boolean | undefined;
|
|
@@ -7925,7 +8169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7925
8169
|
hint?: string | undefined;
|
|
7926
8170
|
messages?: {
|
|
7927
8171
|
text: string;
|
|
7928
|
-
type: "
|
|
8172
|
+
type: "error" | "success" | "info" | "warning";
|
|
7929
8173
|
id?: number | undefined;
|
|
7930
8174
|
}[] | undefined;
|
|
7931
8175
|
required?: boolean | undefined;
|
|
@@ -7945,7 +8189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7945
8189
|
hint?: string | undefined;
|
|
7946
8190
|
messages?: {
|
|
7947
8191
|
text: string;
|
|
7948
|
-
type: "
|
|
8192
|
+
type: "error" | "success" | "info" | "warning";
|
|
7949
8193
|
id?: number | undefined;
|
|
7950
8194
|
}[] | undefined;
|
|
7951
8195
|
required?: boolean | undefined;
|
|
@@ -7964,7 +8208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7964
8208
|
hint?: string | undefined;
|
|
7965
8209
|
messages?: {
|
|
7966
8210
|
text: string;
|
|
7967
|
-
type: "
|
|
8211
|
+
type: "error" | "success" | "info" | "warning";
|
|
7968
8212
|
id?: number | undefined;
|
|
7969
8213
|
}[] | undefined;
|
|
7970
8214
|
required?: boolean | undefined;
|
|
@@ -7986,7 +8230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7986
8230
|
hint?: string | undefined;
|
|
7987
8231
|
messages?: {
|
|
7988
8232
|
text: string;
|
|
7989
|
-
type: "
|
|
8233
|
+
type: "error" | "success" | "info" | "warning";
|
|
7990
8234
|
id?: number | undefined;
|
|
7991
8235
|
}[] | undefined;
|
|
7992
8236
|
required?: boolean | undefined;
|
|
@@ -8008,7 +8252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8008
8252
|
hint?: string | undefined;
|
|
8009
8253
|
messages?: {
|
|
8010
8254
|
text: string;
|
|
8011
|
-
type: "
|
|
8255
|
+
type: "error" | "success" | "info" | "warning";
|
|
8012
8256
|
id?: number | undefined;
|
|
8013
8257
|
}[] | undefined;
|
|
8014
8258
|
required?: boolean | undefined;
|
|
@@ -8027,7 +8271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8027
8271
|
hint?: string | undefined;
|
|
8028
8272
|
messages?: {
|
|
8029
8273
|
text: string;
|
|
8030
|
-
type: "
|
|
8274
|
+
type: "error" | "success" | "info" | "warning";
|
|
8031
8275
|
id?: number | undefined;
|
|
8032
8276
|
}[] | undefined;
|
|
8033
8277
|
required?: boolean | undefined;
|
|
@@ -8054,7 +8298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8054
8298
|
hint?: string | undefined;
|
|
8055
8299
|
messages?: {
|
|
8056
8300
|
text: string;
|
|
8057
|
-
type: "
|
|
8301
|
+
type: "error" | "success" | "info" | "warning";
|
|
8058
8302
|
id?: number | undefined;
|
|
8059
8303
|
}[] | undefined;
|
|
8060
8304
|
required?: boolean | undefined;
|
|
@@ -8075,7 +8319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8075
8319
|
hint?: string | undefined;
|
|
8076
8320
|
messages?: {
|
|
8077
8321
|
text: string;
|
|
8078
|
-
type: "
|
|
8322
|
+
type: "error" | "success" | "info" | "warning";
|
|
8079
8323
|
id?: number | undefined;
|
|
8080
8324
|
}[] | undefined;
|
|
8081
8325
|
required?: boolean | undefined;
|
|
@@ -8098,7 +8342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8098
8342
|
hint?: string | undefined;
|
|
8099
8343
|
messages?: {
|
|
8100
8344
|
text: string;
|
|
8101
|
-
type: "
|
|
8345
|
+
type: "error" | "success" | "info" | "warning";
|
|
8102
8346
|
id?: number | undefined;
|
|
8103
8347
|
}[] | undefined;
|
|
8104
8348
|
required?: boolean | undefined;
|
|
@@ -8347,7 +8591,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8347
8591
|
hint?: string | undefined;
|
|
8348
8592
|
messages?: {
|
|
8349
8593
|
text: string;
|
|
8350
|
-
type: "
|
|
8594
|
+
type: "error" | "success" | "info" | "warning";
|
|
8351
8595
|
id?: number | undefined;
|
|
8352
8596
|
}[] | undefined;
|
|
8353
8597
|
required?: boolean | undefined;
|
|
@@ -8365,7 +8609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8365
8609
|
hint?: string | undefined;
|
|
8366
8610
|
messages?: {
|
|
8367
8611
|
text: string;
|
|
8368
|
-
type: "
|
|
8612
|
+
type: "error" | "success" | "info" | "warning";
|
|
8369
8613
|
id?: number | undefined;
|
|
8370
8614
|
}[] | undefined;
|
|
8371
8615
|
required?: boolean | undefined;
|
|
@@ -8389,7 +8633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8389
8633
|
hint?: string | undefined;
|
|
8390
8634
|
messages?: {
|
|
8391
8635
|
text: string;
|
|
8392
|
-
type: "
|
|
8636
|
+
type: "error" | "success" | "info" | "warning";
|
|
8393
8637
|
id?: number | undefined;
|
|
8394
8638
|
}[] | undefined;
|
|
8395
8639
|
required?: boolean | undefined;
|
|
@@ -8413,7 +8657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8413
8657
|
hint?: string | undefined;
|
|
8414
8658
|
messages?: {
|
|
8415
8659
|
text: string;
|
|
8416
|
-
type: "
|
|
8660
|
+
type: "error" | "success" | "info" | "warning";
|
|
8417
8661
|
id?: number | undefined;
|
|
8418
8662
|
}[] | undefined;
|
|
8419
8663
|
required?: boolean | undefined;
|
|
@@ -8437,7 +8681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8437
8681
|
hint?: string | undefined;
|
|
8438
8682
|
messages?: {
|
|
8439
8683
|
text: string;
|
|
8440
|
-
type: "
|
|
8684
|
+
type: "error" | "success" | "info" | "warning";
|
|
8441
8685
|
id?: number | undefined;
|
|
8442
8686
|
}[] | undefined;
|
|
8443
8687
|
required?: boolean | undefined;
|
|
@@ -8466,7 +8710,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8466
8710
|
hint?: string | undefined;
|
|
8467
8711
|
messages?: {
|
|
8468
8712
|
text: string;
|
|
8469
|
-
type: "
|
|
8713
|
+
type: "error" | "success" | "info" | "warning";
|
|
8470
8714
|
id?: number | undefined;
|
|
8471
8715
|
}[] | undefined;
|
|
8472
8716
|
required?: boolean | undefined;
|
|
@@ -8481,7 +8725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8481
8725
|
hint?: string | undefined;
|
|
8482
8726
|
messages?: {
|
|
8483
8727
|
text: string;
|
|
8484
|
-
type: "
|
|
8728
|
+
type: "error" | "success" | "info" | "warning";
|
|
8485
8729
|
id?: number | undefined;
|
|
8486
8730
|
}[] | undefined;
|
|
8487
8731
|
required?: boolean | undefined;
|
|
@@ -8502,7 +8746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8502
8746
|
hint?: string | undefined;
|
|
8503
8747
|
messages?: {
|
|
8504
8748
|
text: string;
|
|
8505
|
-
type: "
|
|
8749
|
+
type: "error" | "success" | "info" | "warning";
|
|
8506
8750
|
id?: number | undefined;
|
|
8507
8751
|
}[] | undefined;
|
|
8508
8752
|
required?: boolean | undefined;
|
|
@@ -8527,7 +8771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8527
8771
|
hint?: string | undefined;
|
|
8528
8772
|
messages?: {
|
|
8529
8773
|
text: string;
|
|
8530
|
-
type: "
|
|
8774
|
+
type: "error" | "success" | "info" | "warning";
|
|
8531
8775
|
id?: number | undefined;
|
|
8532
8776
|
}[] | undefined;
|
|
8533
8777
|
required?: boolean | undefined;
|
|
@@ -8548,7 +8792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8548
8792
|
hint?: string | undefined;
|
|
8549
8793
|
messages?: {
|
|
8550
8794
|
text: string;
|
|
8551
|
-
type: "
|
|
8795
|
+
type: "error" | "success" | "info" | "warning";
|
|
8552
8796
|
id?: number | undefined;
|
|
8553
8797
|
}[] | undefined;
|
|
8554
8798
|
required?: boolean | undefined;
|
|
@@ -8568,7 +8812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8568
8812
|
hint?: string | undefined;
|
|
8569
8813
|
messages?: {
|
|
8570
8814
|
text: string;
|
|
8571
|
-
type: "
|
|
8815
|
+
type: "error" | "success" | "info" | "warning";
|
|
8572
8816
|
id?: number | undefined;
|
|
8573
8817
|
}[] | undefined;
|
|
8574
8818
|
required?: boolean | undefined;
|
|
@@ -8587,7 +8831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8587
8831
|
hint?: string | undefined;
|
|
8588
8832
|
messages?: {
|
|
8589
8833
|
text: string;
|
|
8590
|
-
type: "
|
|
8834
|
+
type: "error" | "success" | "info" | "warning";
|
|
8591
8835
|
id?: number | undefined;
|
|
8592
8836
|
}[] | undefined;
|
|
8593
8837
|
required?: boolean | undefined;
|
|
@@ -8609,7 +8853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8609
8853
|
hint?: string | undefined;
|
|
8610
8854
|
messages?: {
|
|
8611
8855
|
text: string;
|
|
8612
|
-
type: "
|
|
8856
|
+
type: "error" | "success" | "info" | "warning";
|
|
8613
8857
|
id?: number | undefined;
|
|
8614
8858
|
}[] | undefined;
|
|
8615
8859
|
required?: boolean | undefined;
|
|
@@ -8631,7 +8875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8631
8875
|
hint?: string | undefined;
|
|
8632
8876
|
messages?: {
|
|
8633
8877
|
text: string;
|
|
8634
|
-
type: "
|
|
8878
|
+
type: "error" | "success" | "info" | "warning";
|
|
8635
8879
|
id?: number | undefined;
|
|
8636
8880
|
}[] | undefined;
|
|
8637
8881
|
required?: boolean | undefined;
|
|
@@ -8650,7 +8894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8650
8894
|
hint?: string | undefined;
|
|
8651
8895
|
messages?: {
|
|
8652
8896
|
text: string;
|
|
8653
|
-
type: "
|
|
8897
|
+
type: "error" | "success" | "info" | "warning";
|
|
8654
8898
|
id?: number | undefined;
|
|
8655
8899
|
}[] | undefined;
|
|
8656
8900
|
required?: boolean | undefined;
|
|
@@ -8677,7 +8921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8677
8921
|
hint?: string | undefined;
|
|
8678
8922
|
messages?: {
|
|
8679
8923
|
text: string;
|
|
8680
|
-
type: "
|
|
8924
|
+
type: "error" | "success" | "info" | "warning";
|
|
8681
8925
|
id?: number | undefined;
|
|
8682
8926
|
}[] | undefined;
|
|
8683
8927
|
required?: boolean | undefined;
|
|
@@ -8698,7 +8942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8698
8942
|
hint?: string | undefined;
|
|
8699
8943
|
messages?: {
|
|
8700
8944
|
text: string;
|
|
8701
|
-
type: "
|
|
8945
|
+
type: "error" | "success" | "info" | "warning";
|
|
8702
8946
|
id?: number | undefined;
|
|
8703
8947
|
}[] | undefined;
|
|
8704
8948
|
required?: boolean | undefined;
|
|
@@ -8721,7 +8965,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8721
8965
|
hint?: string | undefined;
|
|
8722
8966
|
messages?: {
|
|
8723
8967
|
text: string;
|
|
8724
|
-
type: "
|
|
8968
|
+
type: "error" | "success" | "info" | "warning";
|
|
8725
8969
|
id?: number | undefined;
|
|
8726
8970
|
}[] | undefined;
|
|
8727
8971
|
required?: boolean | undefined;
|
|
@@ -8975,7 +9219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8975
9219
|
hint?: string | undefined;
|
|
8976
9220
|
messages?: {
|
|
8977
9221
|
text: string;
|
|
8978
|
-
type: "
|
|
9222
|
+
type: "error" | "success" | "info" | "warning";
|
|
8979
9223
|
id?: number | undefined;
|
|
8980
9224
|
}[] | undefined;
|
|
8981
9225
|
required?: boolean | undefined;
|
|
@@ -8993,7 +9237,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8993
9237
|
hint?: string | undefined;
|
|
8994
9238
|
messages?: {
|
|
8995
9239
|
text: string;
|
|
8996
|
-
type: "
|
|
9240
|
+
type: "error" | "success" | "info" | "warning";
|
|
8997
9241
|
id?: number | undefined;
|
|
8998
9242
|
}[] | undefined;
|
|
8999
9243
|
required?: boolean | undefined;
|
|
@@ -9017,7 +9261,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9017
9261
|
hint?: string | undefined;
|
|
9018
9262
|
messages?: {
|
|
9019
9263
|
text: string;
|
|
9020
|
-
type: "
|
|
9264
|
+
type: "error" | "success" | "info" | "warning";
|
|
9021
9265
|
id?: number | undefined;
|
|
9022
9266
|
}[] | undefined;
|
|
9023
9267
|
required?: boolean | undefined;
|
|
@@ -9041,7 +9285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9041
9285
|
hint?: string | undefined;
|
|
9042
9286
|
messages?: {
|
|
9043
9287
|
text: string;
|
|
9044
|
-
type: "
|
|
9288
|
+
type: "error" | "success" | "info" | "warning";
|
|
9045
9289
|
id?: number | undefined;
|
|
9046
9290
|
}[] | undefined;
|
|
9047
9291
|
required?: boolean | undefined;
|
|
@@ -9065,7 +9309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9065
9309
|
hint?: string | undefined;
|
|
9066
9310
|
messages?: {
|
|
9067
9311
|
text: string;
|
|
9068
|
-
type: "
|
|
9312
|
+
type: "error" | "success" | "info" | "warning";
|
|
9069
9313
|
id?: number | undefined;
|
|
9070
9314
|
}[] | undefined;
|
|
9071
9315
|
required?: boolean | undefined;
|
|
@@ -9090,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9090
9334
|
hint?: string | undefined;
|
|
9091
9335
|
messages?: {
|
|
9092
9336
|
text: string;
|
|
9093
|
-
type: "
|
|
9337
|
+
type: "error" | "success" | "info" | "warning";
|
|
9094
9338
|
id?: number | undefined;
|
|
9095
9339
|
}[] | undefined;
|
|
9096
9340
|
required?: boolean | undefined;
|
|
@@ -9105,7 +9349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9105
9349
|
hint?: string | undefined;
|
|
9106
9350
|
messages?: {
|
|
9107
9351
|
text: string;
|
|
9108
|
-
type: "
|
|
9352
|
+
type: "error" | "success" | "info" | "warning";
|
|
9109
9353
|
id?: number | undefined;
|
|
9110
9354
|
}[] | undefined;
|
|
9111
9355
|
required?: boolean | undefined;
|
|
@@ -9126,7 +9370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9126
9370
|
hint?: string | undefined;
|
|
9127
9371
|
messages?: {
|
|
9128
9372
|
text: string;
|
|
9129
|
-
type: "
|
|
9373
|
+
type: "error" | "success" | "info" | "warning";
|
|
9130
9374
|
id?: number | undefined;
|
|
9131
9375
|
}[] | undefined;
|
|
9132
9376
|
required?: boolean | undefined;
|
|
@@ -9151,7 +9395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9151
9395
|
hint?: string | undefined;
|
|
9152
9396
|
messages?: {
|
|
9153
9397
|
text: string;
|
|
9154
|
-
type: "
|
|
9398
|
+
type: "error" | "success" | "info" | "warning";
|
|
9155
9399
|
id?: number | undefined;
|
|
9156
9400
|
}[] | undefined;
|
|
9157
9401
|
required?: boolean | undefined;
|
|
@@ -9172,7 +9416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9172
9416
|
hint?: string | undefined;
|
|
9173
9417
|
messages?: {
|
|
9174
9418
|
text: string;
|
|
9175
|
-
type: "
|
|
9419
|
+
type: "error" | "success" | "info" | "warning";
|
|
9176
9420
|
id?: number | undefined;
|
|
9177
9421
|
}[] | undefined;
|
|
9178
9422
|
required?: boolean | undefined;
|
|
@@ -9192,7 +9436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9192
9436
|
hint?: string | undefined;
|
|
9193
9437
|
messages?: {
|
|
9194
9438
|
text: string;
|
|
9195
|
-
type: "
|
|
9439
|
+
type: "error" | "success" | "info" | "warning";
|
|
9196
9440
|
id?: number | undefined;
|
|
9197
9441
|
}[] | undefined;
|
|
9198
9442
|
required?: boolean | undefined;
|
|
@@ -9211,7 +9455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9211
9455
|
hint?: string | undefined;
|
|
9212
9456
|
messages?: {
|
|
9213
9457
|
text: string;
|
|
9214
|
-
type: "
|
|
9458
|
+
type: "error" | "success" | "info" | "warning";
|
|
9215
9459
|
id?: number | undefined;
|
|
9216
9460
|
}[] | undefined;
|
|
9217
9461
|
required?: boolean | undefined;
|
|
@@ -9233,7 +9477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9233
9477
|
hint?: string | undefined;
|
|
9234
9478
|
messages?: {
|
|
9235
9479
|
text: string;
|
|
9236
|
-
type: "
|
|
9480
|
+
type: "error" | "success" | "info" | "warning";
|
|
9237
9481
|
id?: number | undefined;
|
|
9238
9482
|
}[] | undefined;
|
|
9239
9483
|
required?: boolean | undefined;
|
|
@@ -9255,7 +9499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9255
9499
|
hint?: string | undefined;
|
|
9256
9500
|
messages?: {
|
|
9257
9501
|
text: string;
|
|
9258
|
-
type: "
|
|
9502
|
+
type: "error" | "success" | "info" | "warning";
|
|
9259
9503
|
id?: number | undefined;
|
|
9260
9504
|
}[] | undefined;
|
|
9261
9505
|
required?: boolean | undefined;
|
|
@@ -9274,7 +9518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9274
9518
|
hint?: string | undefined;
|
|
9275
9519
|
messages?: {
|
|
9276
9520
|
text: string;
|
|
9277
|
-
type: "
|
|
9521
|
+
type: "error" | "success" | "info" | "warning";
|
|
9278
9522
|
id?: number | undefined;
|
|
9279
9523
|
}[] | undefined;
|
|
9280
9524
|
required?: boolean | undefined;
|
|
@@ -9301,7 +9545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9301
9545
|
hint?: string | undefined;
|
|
9302
9546
|
messages?: {
|
|
9303
9547
|
text: string;
|
|
9304
|
-
type: "
|
|
9548
|
+
type: "error" | "success" | "info" | "warning";
|
|
9305
9549
|
id?: number | undefined;
|
|
9306
9550
|
}[] | undefined;
|
|
9307
9551
|
required?: boolean | undefined;
|
|
@@ -9322,7 +9566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9322
9566
|
hint?: string | undefined;
|
|
9323
9567
|
messages?: {
|
|
9324
9568
|
text: string;
|
|
9325
|
-
type: "
|
|
9569
|
+
type: "error" | "success" | "info" | "warning";
|
|
9326
9570
|
id?: number | undefined;
|
|
9327
9571
|
}[] | undefined;
|
|
9328
9572
|
required?: boolean | undefined;
|
|
@@ -9345,7 +9589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9345
9589
|
hint?: string | undefined;
|
|
9346
9590
|
messages?: {
|
|
9347
9591
|
text: string;
|
|
9348
|
-
type: "
|
|
9592
|
+
type: "error" | "success" | "info" | "warning";
|
|
9349
9593
|
id?: number | undefined;
|
|
9350
9594
|
}[] | undefined;
|
|
9351
9595
|
required?: boolean | undefined;
|
|
@@ -9576,7 +9820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9576
9820
|
hint?: string | undefined;
|
|
9577
9821
|
messages?: {
|
|
9578
9822
|
text: string;
|
|
9579
|
-
type: "
|
|
9823
|
+
type: "error" | "success" | "info" | "warning";
|
|
9580
9824
|
id?: number | undefined;
|
|
9581
9825
|
}[] | undefined;
|
|
9582
9826
|
required?: boolean | undefined;
|
|
@@ -9594,7 +9838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9594
9838
|
hint?: string | undefined;
|
|
9595
9839
|
messages?: {
|
|
9596
9840
|
text: string;
|
|
9597
|
-
type: "
|
|
9841
|
+
type: "error" | "success" | "info" | "warning";
|
|
9598
9842
|
id?: number | undefined;
|
|
9599
9843
|
}[] | undefined;
|
|
9600
9844
|
required?: boolean | undefined;
|
|
@@ -9618,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9618
9862
|
hint?: string | undefined;
|
|
9619
9863
|
messages?: {
|
|
9620
9864
|
text: string;
|
|
9621
|
-
type: "
|
|
9865
|
+
type: "error" | "success" | "info" | "warning";
|
|
9622
9866
|
id?: number | undefined;
|
|
9623
9867
|
}[] | undefined;
|
|
9624
9868
|
required?: boolean | undefined;
|
|
@@ -9642,7 +9886,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9642
9886
|
hint?: string | undefined;
|
|
9643
9887
|
messages?: {
|
|
9644
9888
|
text: string;
|
|
9645
|
-
type: "
|
|
9889
|
+
type: "error" | "success" | "info" | "warning";
|
|
9646
9890
|
id?: number | undefined;
|
|
9647
9891
|
}[] | undefined;
|
|
9648
9892
|
required?: boolean | undefined;
|
|
@@ -9666,7 +9910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9666
9910
|
hint?: string | undefined;
|
|
9667
9911
|
messages?: {
|
|
9668
9912
|
text: string;
|
|
9669
|
-
type: "
|
|
9913
|
+
type: "error" | "success" | "info" | "warning";
|
|
9670
9914
|
id?: number | undefined;
|
|
9671
9915
|
}[] | undefined;
|
|
9672
9916
|
required?: boolean | undefined;
|
|
@@ -9695,7 +9939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9695
9939
|
hint?: string | undefined;
|
|
9696
9940
|
messages?: {
|
|
9697
9941
|
text: string;
|
|
9698
|
-
type: "
|
|
9942
|
+
type: "error" | "success" | "info" | "warning";
|
|
9699
9943
|
id?: number | undefined;
|
|
9700
9944
|
}[] | undefined;
|
|
9701
9945
|
required?: boolean | undefined;
|
|
@@ -9710,7 +9954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9710
9954
|
hint?: string | undefined;
|
|
9711
9955
|
messages?: {
|
|
9712
9956
|
text: string;
|
|
9713
|
-
type: "
|
|
9957
|
+
type: "error" | "success" | "info" | "warning";
|
|
9714
9958
|
id?: number | undefined;
|
|
9715
9959
|
}[] | undefined;
|
|
9716
9960
|
required?: boolean | undefined;
|
|
@@ -9731,7 +9975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9731
9975
|
hint?: string | undefined;
|
|
9732
9976
|
messages?: {
|
|
9733
9977
|
text: string;
|
|
9734
|
-
type: "
|
|
9978
|
+
type: "error" | "success" | "info" | "warning";
|
|
9735
9979
|
id?: number | undefined;
|
|
9736
9980
|
}[] | undefined;
|
|
9737
9981
|
required?: boolean | undefined;
|
|
@@ -9756,7 +10000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9756
10000
|
hint?: string | undefined;
|
|
9757
10001
|
messages?: {
|
|
9758
10002
|
text: string;
|
|
9759
|
-
type: "
|
|
10003
|
+
type: "error" | "success" | "info" | "warning";
|
|
9760
10004
|
id?: number | undefined;
|
|
9761
10005
|
}[] | undefined;
|
|
9762
10006
|
required?: boolean | undefined;
|
|
@@ -9777,7 +10021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9777
10021
|
hint?: string | undefined;
|
|
9778
10022
|
messages?: {
|
|
9779
10023
|
text: string;
|
|
9780
|
-
type: "
|
|
10024
|
+
type: "error" | "success" | "info" | "warning";
|
|
9781
10025
|
id?: number | undefined;
|
|
9782
10026
|
}[] | undefined;
|
|
9783
10027
|
required?: boolean | undefined;
|
|
@@ -9797,7 +10041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9797
10041
|
hint?: string | undefined;
|
|
9798
10042
|
messages?: {
|
|
9799
10043
|
text: string;
|
|
9800
|
-
type: "
|
|
10044
|
+
type: "error" | "success" | "info" | "warning";
|
|
9801
10045
|
id?: number | undefined;
|
|
9802
10046
|
}[] | undefined;
|
|
9803
10047
|
required?: boolean | undefined;
|
|
@@ -9816,7 +10060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9816
10060
|
hint?: string | undefined;
|
|
9817
10061
|
messages?: {
|
|
9818
10062
|
text: string;
|
|
9819
|
-
type: "
|
|
10063
|
+
type: "error" | "success" | "info" | "warning";
|
|
9820
10064
|
id?: number | undefined;
|
|
9821
10065
|
}[] | undefined;
|
|
9822
10066
|
required?: boolean | undefined;
|
|
@@ -9838,7 +10082,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9838
10082
|
hint?: string | undefined;
|
|
9839
10083
|
messages?: {
|
|
9840
10084
|
text: string;
|
|
9841
|
-
type: "
|
|
10085
|
+
type: "error" | "success" | "info" | "warning";
|
|
9842
10086
|
id?: number | undefined;
|
|
9843
10087
|
}[] | undefined;
|
|
9844
10088
|
required?: boolean | undefined;
|
|
@@ -9860,7 +10104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9860
10104
|
hint?: string | undefined;
|
|
9861
10105
|
messages?: {
|
|
9862
10106
|
text: string;
|
|
9863
|
-
type: "
|
|
10107
|
+
type: "error" | "success" | "info" | "warning";
|
|
9864
10108
|
id?: number | undefined;
|
|
9865
10109
|
}[] | undefined;
|
|
9866
10110
|
required?: boolean | undefined;
|
|
@@ -9879,7 +10123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9879
10123
|
hint?: string | undefined;
|
|
9880
10124
|
messages?: {
|
|
9881
10125
|
text: string;
|
|
9882
|
-
type: "
|
|
10126
|
+
type: "error" | "success" | "info" | "warning";
|
|
9883
10127
|
id?: number | undefined;
|
|
9884
10128
|
}[] | undefined;
|
|
9885
10129
|
required?: boolean | undefined;
|
|
@@ -9906,7 +10150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9906
10150
|
hint?: string | undefined;
|
|
9907
10151
|
messages?: {
|
|
9908
10152
|
text: string;
|
|
9909
|
-
type: "
|
|
10153
|
+
type: "error" | "success" | "info" | "warning";
|
|
9910
10154
|
id?: number | undefined;
|
|
9911
10155
|
}[] | undefined;
|
|
9912
10156
|
required?: boolean | undefined;
|
|
@@ -9927,7 +10171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9927
10171
|
hint?: string | undefined;
|
|
9928
10172
|
messages?: {
|
|
9929
10173
|
text: string;
|
|
9930
|
-
type: "
|
|
10174
|
+
type: "error" | "success" | "info" | "warning";
|
|
9931
10175
|
id?: number | undefined;
|
|
9932
10176
|
}[] | undefined;
|
|
9933
10177
|
required?: boolean | undefined;
|
|
@@ -9950,7 +10194,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9950
10194
|
hint?: string | undefined;
|
|
9951
10195
|
messages?: {
|
|
9952
10196
|
text: string;
|
|
9953
|
-
type: "
|
|
10197
|
+
type: "error" | "success" | "info" | "warning";
|
|
9954
10198
|
id?: number | undefined;
|
|
9955
10199
|
}[] | undefined;
|
|
9956
10200
|
required?: boolean | undefined;
|
|
@@ -10183,7 +10427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10183
10427
|
hint?: string | undefined;
|
|
10184
10428
|
messages?: {
|
|
10185
10429
|
text: string;
|
|
10186
|
-
type: "
|
|
10430
|
+
type: "error" | "success" | "info" | "warning";
|
|
10187
10431
|
id?: number | undefined;
|
|
10188
10432
|
}[] | undefined;
|
|
10189
10433
|
required?: boolean | undefined;
|
|
@@ -10201,7 +10445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10201
10445
|
hint?: string | undefined;
|
|
10202
10446
|
messages?: {
|
|
10203
10447
|
text: string;
|
|
10204
|
-
type: "
|
|
10448
|
+
type: "error" | "success" | "info" | "warning";
|
|
10205
10449
|
id?: number | undefined;
|
|
10206
10450
|
}[] | undefined;
|
|
10207
10451
|
required?: boolean | undefined;
|
|
@@ -10225,7 +10469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10225
10469
|
hint?: string | undefined;
|
|
10226
10470
|
messages?: {
|
|
10227
10471
|
text: string;
|
|
10228
|
-
type: "
|
|
10472
|
+
type: "error" | "success" | "info" | "warning";
|
|
10229
10473
|
id?: number | undefined;
|
|
10230
10474
|
}[] | undefined;
|
|
10231
10475
|
required?: boolean | undefined;
|
|
@@ -10249,7 +10493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10249
10493
|
hint?: string | undefined;
|
|
10250
10494
|
messages?: {
|
|
10251
10495
|
text: string;
|
|
10252
|
-
type: "
|
|
10496
|
+
type: "error" | "success" | "info" | "warning";
|
|
10253
10497
|
id?: number | undefined;
|
|
10254
10498
|
}[] | undefined;
|
|
10255
10499
|
required?: boolean | undefined;
|
|
@@ -10273,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10273
10517
|
hint?: string | undefined;
|
|
10274
10518
|
messages?: {
|
|
10275
10519
|
text: string;
|
|
10276
|
-
type: "
|
|
10520
|
+
type: "error" | "success" | "info" | "warning";
|
|
10277
10521
|
id?: number | undefined;
|
|
10278
10522
|
}[] | undefined;
|
|
10279
10523
|
required?: boolean | undefined;
|
|
@@ -10298,7 +10542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10298
10542
|
hint?: string | undefined;
|
|
10299
10543
|
messages?: {
|
|
10300
10544
|
text: string;
|
|
10301
|
-
type: "
|
|
10545
|
+
type: "error" | "success" | "info" | "warning";
|
|
10302
10546
|
id?: number | undefined;
|
|
10303
10547
|
}[] | undefined;
|
|
10304
10548
|
required?: boolean | undefined;
|
|
@@ -10313,7 +10557,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10313
10557
|
hint?: string | undefined;
|
|
10314
10558
|
messages?: {
|
|
10315
10559
|
text: string;
|
|
10316
|
-
type: "
|
|
10560
|
+
type: "error" | "success" | "info" | "warning";
|
|
10317
10561
|
id?: number | undefined;
|
|
10318
10562
|
}[] | undefined;
|
|
10319
10563
|
required?: boolean | undefined;
|
|
@@ -10334,7 +10578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10334
10578
|
hint?: string | undefined;
|
|
10335
10579
|
messages?: {
|
|
10336
10580
|
text: string;
|
|
10337
|
-
type: "
|
|
10581
|
+
type: "error" | "success" | "info" | "warning";
|
|
10338
10582
|
id?: number | undefined;
|
|
10339
10583
|
}[] | undefined;
|
|
10340
10584
|
required?: boolean | undefined;
|
|
@@ -10359,7 +10603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10359
10603
|
hint?: string | undefined;
|
|
10360
10604
|
messages?: {
|
|
10361
10605
|
text: string;
|
|
10362
|
-
type: "
|
|
10606
|
+
type: "error" | "success" | "info" | "warning";
|
|
10363
10607
|
id?: number | undefined;
|
|
10364
10608
|
}[] | undefined;
|
|
10365
10609
|
required?: boolean | undefined;
|
|
@@ -10380,7 +10624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10380
10624
|
hint?: string | undefined;
|
|
10381
10625
|
messages?: {
|
|
10382
10626
|
text: string;
|
|
10383
|
-
type: "
|
|
10627
|
+
type: "error" | "success" | "info" | "warning";
|
|
10384
10628
|
id?: number | undefined;
|
|
10385
10629
|
}[] | undefined;
|
|
10386
10630
|
required?: boolean | undefined;
|
|
@@ -10400,7 +10644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10400
10644
|
hint?: string | undefined;
|
|
10401
10645
|
messages?: {
|
|
10402
10646
|
text: string;
|
|
10403
|
-
type: "
|
|
10647
|
+
type: "error" | "success" | "info" | "warning";
|
|
10404
10648
|
id?: number | undefined;
|
|
10405
10649
|
}[] | undefined;
|
|
10406
10650
|
required?: boolean | undefined;
|
|
@@ -10419,7 +10663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10419
10663
|
hint?: string | undefined;
|
|
10420
10664
|
messages?: {
|
|
10421
10665
|
text: string;
|
|
10422
|
-
type: "
|
|
10666
|
+
type: "error" | "success" | "info" | "warning";
|
|
10423
10667
|
id?: number | undefined;
|
|
10424
10668
|
}[] | undefined;
|
|
10425
10669
|
required?: boolean | undefined;
|
|
@@ -10441,7 +10685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10441
10685
|
hint?: string | undefined;
|
|
10442
10686
|
messages?: {
|
|
10443
10687
|
text: string;
|
|
10444
|
-
type: "
|
|
10688
|
+
type: "error" | "success" | "info" | "warning";
|
|
10445
10689
|
id?: number | undefined;
|
|
10446
10690
|
}[] | undefined;
|
|
10447
10691
|
required?: boolean | undefined;
|
|
@@ -10463,7 +10707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10463
10707
|
hint?: string | undefined;
|
|
10464
10708
|
messages?: {
|
|
10465
10709
|
text: string;
|
|
10466
|
-
type: "
|
|
10710
|
+
type: "error" | "success" | "info" | "warning";
|
|
10467
10711
|
id?: number | undefined;
|
|
10468
10712
|
}[] | undefined;
|
|
10469
10713
|
required?: boolean | undefined;
|
|
@@ -10482,7 +10726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10482
10726
|
hint?: string | undefined;
|
|
10483
10727
|
messages?: {
|
|
10484
10728
|
text: string;
|
|
10485
|
-
type: "
|
|
10729
|
+
type: "error" | "success" | "info" | "warning";
|
|
10486
10730
|
id?: number | undefined;
|
|
10487
10731
|
}[] | undefined;
|
|
10488
10732
|
required?: boolean | undefined;
|
|
@@ -10509,7 +10753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10509
10753
|
hint?: string | undefined;
|
|
10510
10754
|
messages?: {
|
|
10511
10755
|
text: string;
|
|
10512
|
-
type: "
|
|
10756
|
+
type: "error" | "success" | "info" | "warning";
|
|
10513
10757
|
id?: number | undefined;
|
|
10514
10758
|
}[] | undefined;
|
|
10515
10759
|
required?: boolean | undefined;
|
|
@@ -10530,7 +10774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10530
10774
|
hint?: string | undefined;
|
|
10531
10775
|
messages?: {
|
|
10532
10776
|
text: string;
|
|
10533
|
-
type: "
|
|
10777
|
+
type: "error" | "success" | "info" | "warning";
|
|
10534
10778
|
id?: number | undefined;
|
|
10535
10779
|
}[] | undefined;
|
|
10536
10780
|
required?: boolean | undefined;
|
|
@@ -10553,7 +10797,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10553
10797
|
hint?: string | undefined;
|
|
10554
10798
|
messages?: {
|
|
10555
10799
|
text: string;
|
|
10556
|
-
type: "
|
|
10800
|
+
type: "error" | "success" | "info" | "warning";
|
|
10557
10801
|
id?: number | undefined;
|
|
10558
10802
|
}[] | undefined;
|
|
10559
10803
|
required?: boolean | undefined;
|
|
@@ -10784,7 +11028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10784
11028
|
hint?: string | undefined;
|
|
10785
11029
|
messages?: {
|
|
10786
11030
|
text: string;
|
|
10787
|
-
type: "
|
|
11031
|
+
type: "error" | "success" | "info" | "warning";
|
|
10788
11032
|
id?: number | undefined;
|
|
10789
11033
|
}[] | undefined;
|
|
10790
11034
|
required?: boolean | undefined;
|
|
@@ -10802,7 +11046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10802
11046
|
hint?: string | undefined;
|
|
10803
11047
|
messages?: {
|
|
10804
11048
|
text: string;
|
|
10805
|
-
type: "
|
|
11049
|
+
type: "error" | "success" | "info" | "warning";
|
|
10806
11050
|
id?: number | undefined;
|
|
10807
11051
|
}[] | undefined;
|
|
10808
11052
|
required?: boolean | undefined;
|
|
@@ -10826,7 +11070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10826
11070
|
hint?: string | undefined;
|
|
10827
11071
|
messages?: {
|
|
10828
11072
|
text: string;
|
|
10829
|
-
type: "
|
|
11073
|
+
type: "error" | "success" | "info" | "warning";
|
|
10830
11074
|
id?: number | undefined;
|
|
10831
11075
|
}[] | undefined;
|
|
10832
11076
|
required?: boolean | undefined;
|
|
@@ -10850,7 +11094,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10850
11094
|
hint?: string | undefined;
|
|
10851
11095
|
messages?: {
|
|
10852
11096
|
text: string;
|
|
10853
|
-
type: "
|
|
11097
|
+
type: "error" | "success" | "info" | "warning";
|
|
10854
11098
|
id?: number | undefined;
|
|
10855
11099
|
}[] | undefined;
|
|
10856
11100
|
required?: boolean | undefined;
|
|
@@ -10874,7 +11118,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10874
11118
|
hint?: string | undefined;
|
|
10875
11119
|
messages?: {
|
|
10876
11120
|
text: string;
|
|
10877
|
-
type: "
|
|
11121
|
+
type: "error" | "success" | "info" | "warning";
|
|
10878
11122
|
id?: number | undefined;
|
|
10879
11123
|
}[] | undefined;
|
|
10880
11124
|
required?: boolean | undefined;
|
|
@@ -10903,7 +11147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10903
11147
|
hint?: string | undefined;
|
|
10904
11148
|
messages?: {
|
|
10905
11149
|
text: string;
|
|
10906
|
-
type: "
|
|
11150
|
+
type: "error" | "success" | "info" | "warning";
|
|
10907
11151
|
id?: number | undefined;
|
|
10908
11152
|
}[] | undefined;
|
|
10909
11153
|
required?: boolean | undefined;
|
|
@@ -10918,7 +11162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10918
11162
|
hint?: string | undefined;
|
|
10919
11163
|
messages?: {
|
|
10920
11164
|
text: string;
|
|
10921
|
-
type: "
|
|
11165
|
+
type: "error" | "success" | "info" | "warning";
|
|
10922
11166
|
id?: number | undefined;
|
|
10923
11167
|
}[] | undefined;
|
|
10924
11168
|
required?: boolean | undefined;
|
|
@@ -10939,7 +11183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10939
11183
|
hint?: string | undefined;
|
|
10940
11184
|
messages?: {
|
|
10941
11185
|
text: string;
|
|
10942
|
-
type: "
|
|
11186
|
+
type: "error" | "success" | "info" | "warning";
|
|
10943
11187
|
id?: number | undefined;
|
|
10944
11188
|
}[] | undefined;
|
|
10945
11189
|
required?: boolean | undefined;
|
|
@@ -10964,7 +11208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10964
11208
|
hint?: string | undefined;
|
|
10965
11209
|
messages?: {
|
|
10966
11210
|
text: string;
|
|
10967
|
-
type: "
|
|
11211
|
+
type: "error" | "success" | "info" | "warning";
|
|
10968
11212
|
id?: number | undefined;
|
|
10969
11213
|
}[] | undefined;
|
|
10970
11214
|
required?: boolean | undefined;
|
|
@@ -10985,7 +11229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10985
11229
|
hint?: string | undefined;
|
|
10986
11230
|
messages?: {
|
|
10987
11231
|
text: string;
|
|
10988
|
-
type: "
|
|
11232
|
+
type: "error" | "success" | "info" | "warning";
|
|
10989
11233
|
id?: number | undefined;
|
|
10990
11234
|
}[] | undefined;
|
|
10991
11235
|
required?: boolean | undefined;
|
|
@@ -11005,7 +11249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11005
11249
|
hint?: string | undefined;
|
|
11006
11250
|
messages?: {
|
|
11007
11251
|
text: string;
|
|
11008
|
-
type: "
|
|
11252
|
+
type: "error" | "success" | "info" | "warning";
|
|
11009
11253
|
id?: number | undefined;
|
|
11010
11254
|
}[] | undefined;
|
|
11011
11255
|
required?: boolean | undefined;
|
|
@@ -11024,7 +11268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11024
11268
|
hint?: string | undefined;
|
|
11025
11269
|
messages?: {
|
|
11026
11270
|
text: string;
|
|
11027
|
-
type: "
|
|
11271
|
+
type: "error" | "success" | "info" | "warning";
|
|
11028
11272
|
id?: number | undefined;
|
|
11029
11273
|
}[] | undefined;
|
|
11030
11274
|
required?: boolean | undefined;
|
|
@@ -11046,7 +11290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11046
11290
|
hint?: string | undefined;
|
|
11047
11291
|
messages?: {
|
|
11048
11292
|
text: string;
|
|
11049
|
-
type: "
|
|
11293
|
+
type: "error" | "success" | "info" | "warning";
|
|
11050
11294
|
id?: number | undefined;
|
|
11051
11295
|
}[] | undefined;
|
|
11052
11296
|
required?: boolean | undefined;
|
|
@@ -11068,7 +11312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11068
11312
|
hint?: string | undefined;
|
|
11069
11313
|
messages?: {
|
|
11070
11314
|
text: string;
|
|
11071
|
-
type: "
|
|
11315
|
+
type: "error" | "success" | "info" | "warning";
|
|
11072
11316
|
id?: number | undefined;
|
|
11073
11317
|
}[] | undefined;
|
|
11074
11318
|
required?: boolean | undefined;
|
|
@@ -11087,7 +11331,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11087
11331
|
hint?: string | undefined;
|
|
11088
11332
|
messages?: {
|
|
11089
11333
|
text: string;
|
|
11090
|
-
type: "
|
|
11334
|
+
type: "error" | "success" | "info" | "warning";
|
|
11091
11335
|
id?: number | undefined;
|
|
11092
11336
|
}[] | undefined;
|
|
11093
11337
|
required?: boolean | undefined;
|
|
@@ -11114,7 +11358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11114
11358
|
hint?: string | undefined;
|
|
11115
11359
|
messages?: {
|
|
11116
11360
|
text: string;
|
|
11117
|
-
type: "
|
|
11361
|
+
type: "error" | "success" | "info" | "warning";
|
|
11118
11362
|
id?: number | undefined;
|
|
11119
11363
|
}[] | undefined;
|
|
11120
11364
|
required?: boolean | undefined;
|
|
@@ -11135,7 +11379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11135
11379
|
hint?: string | undefined;
|
|
11136
11380
|
messages?: {
|
|
11137
11381
|
text: string;
|
|
11138
|
-
type: "
|
|
11382
|
+
type: "error" | "success" | "info" | "warning";
|
|
11139
11383
|
id?: number | undefined;
|
|
11140
11384
|
}[] | undefined;
|
|
11141
11385
|
required?: boolean | undefined;
|
|
@@ -11158,7 +11402,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11158
11402
|
hint?: string | undefined;
|
|
11159
11403
|
messages?: {
|
|
11160
11404
|
text: string;
|
|
11161
|
-
type: "
|
|
11405
|
+
type: "error" | "success" | "info" | "warning";
|
|
11162
11406
|
id?: number | undefined;
|
|
11163
11407
|
}[] | undefined;
|
|
11164
11408
|
required?: boolean | undefined;
|
|
@@ -11464,7 +11708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11464
11708
|
};
|
|
11465
11709
|
};
|
|
11466
11710
|
output: {
|
|
11467
|
-
prompt: "
|
|
11711
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11468
11712
|
language: string;
|
|
11469
11713
|
}[];
|
|
11470
11714
|
outputFormat: "json";
|
|
@@ -11502,7 +11746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11502
11746
|
$get: {
|
|
11503
11747
|
input: {
|
|
11504
11748
|
param: {
|
|
11505
|
-
prompt: "
|
|
11749
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11506
11750
|
language: string;
|
|
11507
11751
|
};
|
|
11508
11752
|
} & {
|
|
@@ -11524,7 +11768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11524
11768
|
$put: {
|
|
11525
11769
|
input: {
|
|
11526
11770
|
param: {
|
|
11527
|
-
prompt: "
|
|
11771
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11528
11772
|
language: string;
|
|
11529
11773
|
};
|
|
11530
11774
|
} & {
|
|
@@ -11548,7 +11792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11548
11792
|
$delete: {
|
|
11549
11793
|
input: {
|
|
11550
11794
|
param: {
|
|
11551
|
-
prompt: "
|
|
11795
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11552
11796
|
language: string;
|
|
11553
11797
|
};
|
|
11554
11798
|
} & {
|
|
@@ -12431,7 +12675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12431
12675
|
};
|
|
12432
12676
|
} | {
|
|
12433
12677
|
mode: "inline";
|
|
12434
|
-
status: "
|
|
12678
|
+
status: "error" | "success";
|
|
12435
12679
|
connection_id: string;
|
|
12436
12680
|
connection_name: string;
|
|
12437
12681
|
strategy: string;
|
|
@@ -13491,7 +13735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13491
13735
|
created_at: string;
|
|
13492
13736
|
updated_at: string;
|
|
13493
13737
|
name: string;
|
|
13494
|
-
provider: "auth0" | "
|
|
13738
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13495
13739
|
connection: string;
|
|
13496
13740
|
enabled: boolean;
|
|
13497
13741
|
credentials: {
|
|
@@ -13523,7 +13767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13523
13767
|
created_at: string;
|
|
13524
13768
|
updated_at: string;
|
|
13525
13769
|
name: string;
|
|
13526
|
-
provider: "auth0" | "
|
|
13770
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13527
13771
|
connection: string;
|
|
13528
13772
|
enabled: boolean;
|
|
13529
13773
|
credentials: {
|
|
@@ -13549,7 +13793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13549
13793
|
} & {
|
|
13550
13794
|
json: {
|
|
13551
13795
|
name: string;
|
|
13552
|
-
provider: "auth0" | "
|
|
13796
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13553
13797
|
connection: string;
|
|
13554
13798
|
credentials: {
|
|
13555
13799
|
domain: string;
|
|
@@ -13566,7 +13810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13566
13810
|
created_at: string;
|
|
13567
13811
|
updated_at: string;
|
|
13568
13812
|
name: string;
|
|
13569
|
-
provider: "auth0" | "
|
|
13813
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13570
13814
|
connection: string;
|
|
13571
13815
|
enabled: boolean;
|
|
13572
13816
|
credentials: {
|
|
@@ -13597,7 +13841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13597
13841
|
json: {
|
|
13598
13842
|
id?: string | undefined;
|
|
13599
13843
|
name?: string | undefined;
|
|
13600
|
-
provider?: "auth0" | "
|
|
13844
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
13601
13845
|
connection?: string | undefined;
|
|
13602
13846
|
enabled?: boolean | undefined;
|
|
13603
13847
|
credentials?: {
|
|
@@ -13613,7 +13857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13613
13857
|
created_at: string;
|
|
13614
13858
|
updated_at: string;
|
|
13615
13859
|
name: string;
|
|
13616
|
-
provider: "auth0" | "
|
|
13860
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13617
13861
|
connection: string;
|
|
13618
13862
|
enabled: boolean;
|
|
13619
13863
|
credentials: {
|
|
@@ -13661,7 +13905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13661
13905
|
[x: string]: hono_utils_types.JSONValue;
|
|
13662
13906
|
};
|
|
13663
13907
|
id: string;
|
|
13664
|
-
status: "
|
|
13908
|
+
status: "active" | "suspended" | "paused";
|
|
13665
13909
|
filters?: {
|
|
13666
13910
|
type: string;
|
|
13667
13911
|
name: string;
|
|
@@ -13693,7 +13937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13693
13937
|
[x: string]: hono_utils_types.JSONValue;
|
|
13694
13938
|
};
|
|
13695
13939
|
id: string;
|
|
13696
|
-
status: "
|
|
13940
|
+
status: "active" | "suspended" | "paused";
|
|
13697
13941
|
filters?: {
|
|
13698
13942
|
type: string;
|
|
13699
13943
|
name: string;
|
|
@@ -13718,7 +13962,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13718
13962
|
name: string;
|
|
13719
13963
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
13720
13964
|
sink: Record<string, unknown>;
|
|
13721
|
-
status?: "
|
|
13965
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
13722
13966
|
filters?: {
|
|
13723
13967
|
type: string;
|
|
13724
13968
|
name: string;
|
|
@@ -13733,7 +13977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13733
13977
|
[x: string]: hono_utils_types.JSONValue;
|
|
13734
13978
|
};
|
|
13735
13979
|
id: string;
|
|
13736
|
-
status: "
|
|
13980
|
+
status: "active" | "suspended" | "paused";
|
|
13737
13981
|
filters?: {
|
|
13738
13982
|
type: string;
|
|
13739
13983
|
name: string;
|
|
@@ -13768,7 +14012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13768
14012
|
}[] | undefined;
|
|
13769
14013
|
isPriority?: boolean | undefined;
|
|
13770
14014
|
id?: string | undefined;
|
|
13771
|
-
status?: "
|
|
14015
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
13772
14016
|
created_at?: string | undefined;
|
|
13773
14017
|
updated_at?: string | undefined;
|
|
13774
14018
|
};
|
|
@@ -13780,7 +14024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13780
14024
|
[x: string]: hono_utils_types.JSONValue;
|
|
13781
14025
|
};
|
|
13782
14026
|
id: string;
|
|
13783
|
-
status: "
|
|
14027
|
+
status: "active" | "suspended" | "paused";
|
|
13784
14028
|
filters?: {
|
|
13785
14029
|
type: string;
|
|
13786
14030
|
name: string;
|
|
@@ -13831,7 +14075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13831
14075
|
};
|
|
13832
14076
|
};
|
|
13833
14077
|
output: {
|
|
13834
|
-
type: "
|
|
14078
|
+
type: "w" | "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" | "fn" | "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" | "i" | "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" | "wn" | "wum";
|
|
13835
14079
|
date: string;
|
|
13836
14080
|
isMobile: boolean;
|
|
13837
14081
|
log_id: string;
|
|
@@ -13870,7 +14114,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13870
14114
|
limit: number;
|
|
13871
14115
|
length: number;
|
|
13872
14116
|
logs: {
|
|
13873
|
-
type: "
|
|
14117
|
+
type: "w" | "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" | "fn" | "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" | "i" | "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" | "wn" | "wum";
|
|
13874
14118
|
date: string;
|
|
13875
14119
|
isMobile: boolean;
|
|
13876
14120
|
log_id: string;
|
|
@@ -13909,7 +14153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13909
14153
|
next?: string | undefined;
|
|
13910
14154
|
} | {
|
|
13911
14155
|
logs: {
|
|
13912
|
-
type: "
|
|
14156
|
+
type: "w" | "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" | "fn" | "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" | "i" | "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" | "wn" | "wum";
|
|
13913
14157
|
date: string;
|
|
13914
14158
|
isMobile: boolean;
|
|
13915
14159
|
log_id: string;
|
|
@@ -13963,7 +14207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13963
14207
|
};
|
|
13964
14208
|
};
|
|
13965
14209
|
output: {
|
|
13966
|
-
type: "
|
|
14210
|
+
type: "w" | "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" | "fn" | "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" | "i" | "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" | "wn" | "wum";
|
|
13967
14211
|
date: string;
|
|
13968
14212
|
isMobile: boolean;
|
|
13969
14213
|
log_id: string;
|
|
@@ -14119,7 +14363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14119
14363
|
audience?: string | undefined;
|
|
14120
14364
|
client_id?: string | undefined;
|
|
14121
14365
|
allow_any_organization?: string | undefined;
|
|
14122
|
-
subject_type?: "
|
|
14366
|
+
subject_type?: "client" | "user" | undefined;
|
|
14123
14367
|
};
|
|
14124
14368
|
} & {
|
|
14125
14369
|
header: {
|
|
@@ -14134,7 +14378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14134
14378
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14135
14379
|
allow_any_organization?: boolean | undefined;
|
|
14136
14380
|
is_system?: boolean | undefined;
|
|
14137
|
-
subject_type?: "
|
|
14381
|
+
subject_type?: "client" | "user" | undefined;
|
|
14138
14382
|
authorization_details_types?: string[] | undefined;
|
|
14139
14383
|
created_at?: string | undefined;
|
|
14140
14384
|
updated_at?: string | undefined;
|
|
@@ -14150,7 +14394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14150
14394
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14151
14395
|
allow_any_organization?: boolean | undefined;
|
|
14152
14396
|
is_system?: boolean | undefined;
|
|
14153
|
-
subject_type?: "
|
|
14397
|
+
subject_type?: "client" | "user" | undefined;
|
|
14154
14398
|
authorization_details_types?: string[] | undefined;
|
|
14155
14399
|
created_at?: string | undefined;
|
|
14156
14400
|
updated_at?: string | undefined;
|
|
@@ -14166,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14166
14410
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14167
14411
|
allow_any_organization?: boolean | undefined;
|
|
14168
14412
|
is_system?: boolean | undefined;
|
|
14169
|
-
subject_type?: "
|
|
14413
|
+
subject_type?: "client" | "user" | undefined;
|
|
14170
14414
|
authorization_details_types?: string[] | undefined;
|
|
14171
14415
|
created_at?: string | undefined;
|
|
14172
14416
|
updated_at?: string | undefined;
|
|
@@ -14197,7 +14441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14197
14441
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14198
14442
|
allow_any_organization?: boolean | undefined;
|
|
14199
14443
|
is_system?: boolean | undefined;
|
|
14200
|
-
subject_type?: "
|
|
14444
|
+
subject_type?: "client" | "user" | undefined;
|
|
14201
14445
|
authorization_details_types?: string[] | undefined;
|
|
14202
14446
|
created_at?: string | undefined;
|
|
14203
14447
|
updated_at?: string | undefined;
|
|
@@ -14242,7 +14486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14242
14486
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14243
14487
|
allow_any_organization?: boolean | undefined;
|
|
14244
14488
|
is_system?: boolean | undefined;
|
|
14245
|
-
subject_type?: "
|
|
14489
|
+
subject_type?: "client" | "user" | undefined;
|
|
14246
14490
|
authorization_details_types?: string[] | undefined;
|
|
14247
14491
|
};
|
|
14248
14492
|
};
|
|
@@ -14254,7 +14498,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14254
14498
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14255
14499
|
allow_any_organization?: boolean | undefined;
|
|
14256
14500
|
is_system?: boolean | undefined;
|
|
14257
|
-
subject_type?: "
|
|
14501
|
+
subject_type?: "client" | "user" | undefined;
|
|
14258
14502
|
authorization_details_types?: string[] | undefined;
|
|
14259
14503
|
created_at?: string | undefined;
|
|
14260
14504
|
updated_at?: string | undefined;
|
|
@@ -14278,7 +14522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14278
14522
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14279
14523
|
allow_any_organization?: boolean | undefined;
|
|
14280
14524
|
is_system?: boolean | undefined;
|
|
14281
|
-
subject_type?: "
|
|
14525
|
+
subject_type?: "client" | "user" | undefined;
|
|
14282
14526
|
authorization_details_types?: string[] | undefined;
|
|
14283
14527
|
};
|
|
14284
14528
|
};
|
|
@@ -14290,7 +14534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14290
14534
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
14291
14535
|
allow_any_organization?: boolean | undefined;
|
|
14292
14536
|
is_system?: boolean | undefined;
|
|
14293
|
-
subject_type?: "
|
|
14537
|
+
subject_type?: "client" | "user" | undefined;
|
|
14294
14538
|
authorization_details_types?: string[] | undefined;
|
|
14295
14539
|
created_at?: string | undefined;
|
|
14296
14540
|
updated_at?: string | undefined;
|
|
@@ -14374,7 +14618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14374
14618
|
addons?: {
|
|
14375
14619
|
[x: string]: any;
|
|
14376
14620
|
} | undefined;
|
|
14377
|
-
token_endpoint_auth_method?: "
|
|
14621
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14378
14622
|
client_metadata?: {
|
|
14379
14623
|
[x: string]: string;
|
|
14380
14624
|
} | undefined;
|
|
@@ -14476,7 +14720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14476
14720
|
addons?: {
|
|
14477
14721
|
[x: string]: any;
|
|
14478
14722
|
} | undefined;
|
|
14479
|
-
token_endpoint_auth_method?: "
|
|
14723
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14480
14724
|
client_metadata?: {
|
|
14481
14725
|
[x: string]: string;
|
|
14482
14726
|
} | undefined;
|
|
@@ -14578,7 +14822,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14578
14822
|
addons?: {
|
|
14579
14823
|
[x: string]: any;
|
|
14580
14824
|
} | undefined;
|
|
14581
|
-
token_endpoint_auth_method?: "
|
|
14825
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14582
14826
|
client_metadata?: {
|
|
14583
14827
|
[x: string]: string;
|
|
14584
14828
|
} | undefined;
|
|
@@ -14695,7 +14939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14695
14939
|
addons?: {
|
|
14696
14940
|
[x: string]: any;
|
|
14697
14941
|
} | undefined;
|
|
14698
|
-
token_endpoint_auth_method?: "
|
|
14942
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14699
14943
|
client_metadata?: {
|
|
14700
14944
|
[x: string]: string;
|
|
14701
14945
|
} | undefined;
|
|
@@ -14813,7 +15057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14813
15057
|
custom_login_page_preview?: string | undefined;
|
|
14814
15058
|
form_template?: string | undefined;
|
|
14815
15059
|
addons?: Record<string, any> | undefined;
|
|
14816
|
-
token_endpoint_auth_method?: "
|
|
15060
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14817
15061
|
client_metadata?: Record<string, string> | undefined;
|
|
14818
15062
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14819
15063
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14899,7 +15143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14899
15143
|
addons?: {
|
|
14900
15144
|
[x: string]: any;
|
|
14901
15145
|
} | undefined;
|
|
14902
|
-
token_endpoint_auth_method?: "
|
|
15146
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14903
15147
|
client_metadata?: {
|
|
14904
15148
|
[x: string]: string;
|
|
14905
15149
|
} | undefined;
|
|
@@ -14996,7 +15240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14996
15240
|
custom_login_page_preview?: string | undefined;
|
|
14997
15241
|
form_template?: string | undefined;
|
|
14998
15242
|
addons?: Record<string, any> | undefined;
|
|
14999
|
-
token_endpoint_auth_method?: "
|
|
15243
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15000
15244
|
client_metadata?: Record<string, string> | undefined;
|
|
15001
15245
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
15002
15246
|
mobile?: Record<string, any> | undefined;
|
|
@@ -15082,7 +15326,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15082
15326
|
addons?: {
|
|
15083
15327
|
[x: string]: any;
|
|
15084
15328
|
} | undefined;
|
|
15085
|
-
token_endpoint_auth_method?: "
|
|
15329
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15086
15330
|
client_metadata?: {
|
|
15087
15331
|
[x: string]: string;
|
|
15088
15332
|
} | undefined;
|
|
@@ -15542,20 +15786,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15542
15786
|
};
|
|
15543
15787
|
};
|
|
15544
15788
|
output: {
|
|
15545
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15546
15789
|
kid: string;
|
|
15547
15790
|
cert: string;
|
|
15548
15791
|
fingerprint: string;
|
|
15549
15792
|
thumbprint: string;
|
|
15793
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15550
15794
|
tenant_id?: string | undefined;
|
|
15551
15795
|
connection?: string | undefined;
|
|
15552
|
-
next?: boolean | undefined;
|
|
15553
|
-
revoked_at?: string | undefined;
|
|
15554
15796
|
current?: boolean | undefined;
|
|
15797
|
+
next?: boolean | undefined;
|
|
15555
15798
|
previous?: boolean | undefined;
|
|
15556
15799
|
current_since?: string | undefined;
|
|
15557
15800
|
current_until?: string | undefined;
|
|
15558
15801
|
revoked?: boolean | undefined;
|
|
15802
|
+
revoked_at?: string | undefined;
|
|
15559
15803
|
expires_at?: string | undefined;
|
|
15560
15804
|
expired?: boolean | undefined;
|
|
15561
15805
|
inherited?: boolean | undefined;
|
|
@@ -15581,20 +15825,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15581
15825
|
};
|
|
15582
15826
|
};
|
|
15583
15827
|
output: {
|
|
15584
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15585
15828
|
kid: string;
|
|
15586
15829
|
cert: string;
|
|
15587
15830
|
fingerprint: string;
|
|
15588
15831
|
thumbprint: string;
|
|
15832
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15589
15833
|
tenant_id?: string | undefined;
|
|
15590
15834
|
connection?: string | undefined;
|
|
15591
|
-
next?: boolean | undefined;
|
|
15592
|
-
revoked_at?: string | undefined;
|
|
15593
15835
|
current?: boolean | undefined;
|
|
15836
|
+
next?: boolean | undefined;
|
|
15594
15837
|
previous?: boolean | undefined;
|
|
15595
15838
|
current_since?: string | undefined;
|
|
15596
15839
|
current_until?: string | undefined;
|
|
15597
15840
|
revoked?: boolean | undefined;
|
|
15841
|
+
revoked_at?: string | undefined;
|
|
15598
15842
|
expires_at?: string | undefined;
|
|
15599
15843
|
expired?: boolean | undefined;
|
|
15600
15844
|
inherited?: boolean | undefined;
|
|
@@ -15619,20 +15863,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15619
15863
|
};
|
|
15620
15864
|
};
|
|
15621
15865
|
output: {
|
|
15622
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15623
15866
|
kid: string;
|
|
15624
15867
|
cert: string;
|
|
15625
15868
|
fingerprint: string;
|
|
15626
15869
|
thumbprint: string;
|
|
15870
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15627
15871
|
tenant_id?: string | undefined;
|
|
15628
15872
|
connection?: string | undefined;
|
|
15629
|
-
next?: boolean | undefined;
|
|
15630
|
-
revoked_at?: string | undefined;
|
|
15631
15873
|
current?: boolean | undefined;
|
|
15874
|
+
next?: boolean | undefined;
|
|
15632
15875
|
previous?: boolean | undefined;
|
|
15633
15876
|
current_since?: string | undefined;
|
|
15634
15877
|
current_until?: string | undefined;
|
|
15635
15878
|
revoked?: boolean | undefined;
|
|
15879
|
+
revoked_at?: string | undefined;
|
|
15636
15880
|
expires_at?: string | undefined;
|
|
15637
15881
|
expired?: boolean | undefined;
|
|
15638
15882
|
inherited?: boolean | undefined;
|
|
@@ -15659,20 +15903,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15659
15903
|
};
|
|
15660
15904
|
};
|
|
15661
15905
|
output: {
|
|
15662
|
-
type: "jwt_signing" | "saml_encryption";
|
|
15663
15906
|
kid: string;
|
|
15664
15907
|
cert: string;
|
|
15665
15908
|
fingerprint: string;
|
|
15666
15909
|
thumbprint: string;
|
|
15910
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15667
15911
|
tenant_id?: string | undefined;
|
|
15668
15912
|
connection?: string | undefined;
|
|
15669
|
-
next?: boolean | undefined;
|
|
15670
|
-
revoked_at?: string | undefined;
|
|
15671
15913
|
current?: boolean | undefined;
|
|
15914
|
+
next?: boolean | undefined;
|
|
15672
15915
|
previous?: boolean | undefined;
|
|
15673
15916
|
current_since?: string | undefined;
|
|
15674
15917
|
current_until?: string | undefined;
|
|
15675
15918
|
revoked?: boolean | undefined;
|
|
15919
|
+
revoked_at?: string | undefined;
|
|
15676
15920
|
expires_at?: string | undefined;
|
|
15677
15921
|
expired?: boolean | undefined;
|
|
15678
15922
|
inherited?: boolean | undefined;
|
|
@@ -16517,8 +16761,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16517
16761
|
};
|
|
16518
16762
|
};
|
|
16519
16763
|
output: {
|
|
16520
|
-
id: string;
|
|
16521
16764
|
created_at: string;
|
|
16765
|
+
id: string;
|
|
16522
16766
|
client_id: string;
|
|
16523
16767
|
user_id: string;
|
|
16524
16768
|
rotating: boolean;
|
|
@@ -16535,21 +16779,24 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16535
16779
|
audience: string;
|
|
16536
16780
|
scopes: string;
|
|
16537
16781
|
}[];
|
|
16782
|
+
organization?: string | undefined;
|
|
16538
16783
|
revoked_at?: string | undefined;
|
|
16539
16784
|
expires_at?: string | undefined;
|
|
16540
|
-
idle_expires_at?: string | undefined;
|
|
16541
16785
|
session_id?: string | undefined;
|
|
16542
|
-
organization?: string | undefined;
|
|
16543
16786
|
auth_connection?: string | undefined;
|
|
16544
16787
|
auth_strategy?: {
|
|
16545
16788
|
strategy: string;
|
|
16546
16789
|
strategy_type: string;
|
|
16547
16790
|
} | undefined;
|
|
16791
|
+
idle_expires_at?: string | undefined;
|
|
16548
16792
|
last_exchanged_at?: string | undefined;
|
|
16549
16793
|
}[] | {
|
|
16794
|
+
start: number;
|
|
16795
|
+
limit: number;
|
|
16796
|
+
length: number;
|
|
16550
16797
|
tokens: {
|
|
16551
|
-
id: string;
|
|
16552
16798
|
created_at: string;
|
|
16799
|
+
id: string;
|
|
16553
16800
|
client_id: string;
|
|
16554
16801
|
user_id: string;
|
|
16555
16802
|
rotating: boolean;
|
|
@@ -16566,26 +16813,24 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16566
16813
|
audience: string;
|
|
16567
16814
|
scopes: string;
|
|
16568
16815
|
}[];
|
|
16816
|
+
organization?: string | undefined;
|
|
16569
16817
|
revoked_at?: string | undefined;
|
|
16570
16818
|
expires_at?: string | undefined;
|
|
16571
|
-
idle_expires_at?: string | undefined;
|
|
16572
16819
|
session_id?: string | undefined;
|
|
16573
|
-
organization?: string | undefined;
|
|
16574
16820
|
auth_connection?: string | undefined;
|
|
16575
16821
|
auth_strategy?: {
|
|
16576
16822
|
strategy: string;
|
|
16577
16823
|
strategy_type: string;
|
|
16578
16824
|
} | undefined;
|
|
16825
|
+
idle_expires_at?: string | undefined;
|
|
16579
16826
|
last_exchanged_at?: string | undefined;
|
|
16580
16827
|
}[];
|
|
16828
|
+
total?: number | undefined;
|
|
16581
16829
|
next?: string | undefined;
|
|
16582
16830
|
} | {
|
|
16583
|
-
start: number;
|
|
16584
|
-
limit: number;
|
|
16585
|
-
length: number;
|
|
16586
16831
|
tokens: {
|
|
16587
|
-
id: string;
|
|
16588
16832
|
created_at: string;
|
|
16833
|
+
id: string;
|
|
16589
16834
|
client_id: string;
|
|
16590
16835
|
user_id: string;
|
|
16591
16836
|
rotating: boolean;
|
|
@@ -16602,19 +16847,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16602
16847
|
audience: string;
|
|
16603
16848
|
scopes: string;
|
|
16604
16849
|
}[];
|
|
16850
|
+
organization?: string | undefined;
|
|
16605
16851
|
revoked_at?: string | undefined;
|
|
16606
16852
|
expires_at?: string | undefined;
|
|
16607
|
-
idle_expires_at?: string | undefined;
|
|
16608
16853
|
session_id?: string | undefined;
|
|
16609
|
-
organization?: string | undefined;
|
|
16610
16854
|
auth_connection?: string | undefined;
|
|
16611
16855
|
auth_strategy?: {
|
|
16612
16856
|
strategy: string;
|
|
16613
16857
|
strategy_type: string;
|
|
16614
16858
|
} | undefined;
|
|
16859
|
+
idle_expires_at?: string | undefined;
|
|
16615
16860
|
last_exchanged_at?: string | undefined;
|
|
16616
16861
|
}[];
|
|
16617
|
-
total?: number | undefined;
|
|
16618
16862
|
next?: string | undefined;
|
|
16619
16863
|
};
|
|
16620
16864
|
outputFormat: "json";
|
|
@@ -16663,7 +16907,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16663
16907
|
};
|
|
16664
16908
|
};
|
|
16665
16909
|
output: {
|
|
16666
|
-
type: "
|
|
16910
|
+
type: "w" | "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" | "fn" | "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" | "i" | "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" | "wn" | "wum";
|
|
16667
16911
|
date: string;
|
|
16668
16912
|
isMobile: boolean;
|
|
16669
16913
|
log_id: string;
|
|
@@ -16702,7 +16946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16702
16946
|
limit: number;
|
|
16703
16947
|
length: number;
|
|
16704
16948
|
logs: {
|
|
16705
|
-
type: "
|
|
16949
|
+
type: "w" | "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" | "fn" | "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" | "i" | "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" | "wn" | "wum";
|
|
16706
16950
|
date: string;
|
|
16707
16951
|
isMobile: boolean;
|
|
16708
16952
|
log_id: string;
|
|
@@ -17546,7 +17790,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17546
17790
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17547
17791
|
custom_domain_id: string;
|
|
17548
17792
|
primary: boolean;
|
|
17549
|
-
status: "
|
|
17793
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17550
17794
|
verification_method?: "txt" | undefined;
|
|
17551
17795
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17552
17796
|
domain_metadata?: {
|
|
@@ -17587,7 +17831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17587
17831
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17588
17832
|
custom_domain_id: string;
|
|
17589
17833
|
primary: boolean;
|
|
17590
|
-
status: "
|
|
17834
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17591
17835
|
verification_method?: "txt" | undefined;
|
|
17592
17836
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17593
17837
|
domain_metadata?: {
|
|
@@ -17651,7 +17895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17651
17895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17652
17896
|
custom_domain_id: string;
|
|
17653
17897
|
primary: boolean;
|
|
17654
|
-
status: "
|
|
17898
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17655
17899
|
verification_method?: "txt" | undefined;
|
|
17656
17900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17657
17901
|
domain_metadata?: {
|
|
@@ -17698,7 +17942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17698
17942
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17699
17943
|
custom_domain_id: string;
|
|
17700
17944
|
primary: boolean;
|
|
17701
|
-
status: "
|
|
17945
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17702
17946
|
verification_method?: "txt" | undefined;
|
|
17703
17947
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17704
17948
|
domain_metadata?: {
|
|
@@ -17744,7 +17988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17744
17988
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17745
17989
|
custom_domain_id: string;
|
|
17746
17990
|
primary: boolean;
|
|
17747
|
-
status: "
|
|
17991
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17748
17992
|
verification_method?: "txt" | undefined;
|
|
17749
17993
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17750
17994
|
domain_metadata?: {
|
|
@@ -17785,7 +18029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17785
18029
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17786
18030
|
custom_domain_id: string;
|
|
17787
18031
|
primary: boolean;
|
|
17788
|
-
status: "
|
|
18032
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17789
18033
|
verification_method?: "txt" | undefined;
|
|
17790
18034
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17791
18035
|
domain_metadata?: {
|
|
@@ -17884,12 +18128,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17884
18128
|
background_color: string;
|
|
17885
18129
|
background_image_url: string;
|
|
17886
18130
|
page_layout: "center" | "left" | "right";
|
|
17887
|
-
logo_placement?: "
|
|
18131
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
17888
18132
|
};
|
|
17889
18133
|
widget: {
|
|
17890
18134
|
header_text_alignment: "center" | "left" | "right";
|
|
17891
18135
|
logo_height: number;
|
|
17892
|
-
logo_position: "
|
|
18136
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
17893
18137
|
logo_url: string;
|
|
17894
18138
|
social_buttons_layout: "bottom" | "top";
|
|
17895
18139
|
};
|
|
@@ -17974,12 +18218,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17974
18218
|
background_color: string;
|
|
17975
18219
|
background_image_url: string;
|
|
17976
18220
|
page_layout: "center" | "left" | "right";
|
|
17977
|
-
logo_placement?: "
|
|
18221
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
17978
18222
|
};
|
|
17979
18223
|
widget: {
|
|
17980
18224
|
header_text_alignment: "center" | "left" | "right";
|
|
17981
18225
|
logo_height: number;
|
|
17982
|
-
logo_position: "
|
|
18226
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
17983
18227
|
logo_url: string;
|
|
17984
18228
|
social_buttons_layout: "bottom" | "top";
|
|
17985
18229
|
};
|
|
@@ -18053,12 +18297,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18053
18297
|
background_color: string;
|
|
18054
18298
|
background_image_url: string;
|
|
18055
18299
|
page_layout: "center" | "left" | "right";
|
|
18056
|
-
logo_placement?: "
|
|
18300
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
18057
18301
|
};
|
|
18058
18302
|
widget: {
|
|
18059
18303
|
header_text_alignment: "center" | "left" | "right";
|
|
18060
18304
|
logo_height: number;
|
|
18061
|
-
logo_position: "
|
|
18305
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
18062
18306
|
logo_url: string;
|
|
18063
18307
|
social_buttons_layout: "bottom" | "top";
|
|
18064
18308
|
};
|
|
@@ -18215,7 +18459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18215
18459
|
} & {
|
|
18216
18460
|
json: {
|
|
18217
18461
|
body?: string | undefined;
|
|
18218
|
-
screen?: "
|
|
18462
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
18219
18463
|
branding?: {
|
|
18220
18464
|
colors?: {
|
|
18221
18465
|
primary: string;
|
|
@@ -18301,12 +18545,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18301
18545
|
background_color: string;
|
|
18302
18546
|
background_image_url: string;
|
|
18303
18547
|
page_layout: "center" | "left" | "right";
|
|
18304
|
-
logo_placement?: "
|
|
18548
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
18305
18549
|
} | undefined;
|
|
18306
18550
|
widget?: {
|
|
18307
18551
|
header_text_alignment: "center" | "left" | "right";
|
|
18308
18552
|
logo_height: number;
|
|
18309
|
-
logo_position: "
|
|
18553
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
18310
18554
|
logo_url: string;
|
|
18311
18555
|
social_buttons_layout: "bottom" | "top";
|
|
18312
18556
|
} | undefined;
|
|
@@ -19477,7 +19721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19477
19721
|
scope?: string | undefined;
|
|
19478
19722
|
grant_types?: string[] | undefined;
|
|
19479
19723
|
response_types?: string[] | undefined;
|
|
19480
|
-
token_endpoint_auth_method?: "
|
|
19724
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19481
19725
|
jwks_uri?: string | undefined;
|
|
19482
19726
|
jwks?: Record<string, unknown> | undefined;
|
|
19483
19727
|
software_id?: string | undefined;
|
|
@@ -19566,7 +19810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19566
19810
|
scope?: string | undefined;
|
|
19567
19811
|
grant_types?: string[] | undefined;
|
|
19568
19812
|
response_types?: string[] | undefined;
|
|
19569
|
-
token_endpoint_auth_method?: "
|
|
19813
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19570
19814
|
jwks_uri?: string | undefined;
|
|
19571
19815
|
jwks?: Record<string, unknown> | undefined;
|
|
19572
19816
|
software_id?: string | undefined;
|
|
@@ -19912,17 +20156,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19912
20156
|
email: string;
|
|
19913
20157
|
send: "code" | "link";
|
|
19914
20158
|
authParams: {
|
|
19915
|
-
audience?: string | undefined;
|
|
19916
|
-
username?: string | undefined;
|
|
19917
|
-
prompt?: string | undefined;
|
|
19918
|
-
scope?: string | undefined;
|
|
19919
|
-
organization?: string | undefined;
|
|
19920
20159
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19921
20160
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19922
|
-
|
|
20161
|
+
scope?: string | undefined;
|
|
20162
|
+
username?: string | undefined;
|
|
20163
|
+
audience?: string | undefined;
|
|
20164
|
+
nonce?: string | undefined;
|
|
20165
|
+
organization?: string | undefined;
|
|
19923
20166
|
redirect_uri?: string | undefined;
|
|
20167
|
+
state?: string | undefined;
|
|
19924
20168
|
act_as?: string | undefined;
|
|
19925
|
-
|
|
20169
|
+
prompt?: string | undefined;
|
|
19926
20170
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19927
20171
|
code_challenge?: string | undefined;
|
|
19928
20172
|
ui_locales?: string | undefined;
|
|
@@ -19948,17 +20192,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19948
20192
|
phone_number: string;
|
|
19949
20193
|
send: "code" | "link";
|
|
19950
20194
|
authParams: {
|
|
19951
|
-
audience?: string | undefined;
|
|
19952
|
-
username?: string | undefined;
|
|
19953
|
-
prompt?: string | undefined;
|
|
19954
|
-
scope?: string | undefined;
|
|
19955
|
-
organization?: string | undefined;
|
|
19956
20195
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19957
20196
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19958
|
-
|
|
20197
|
+
scope?: string | undefined;
|
|
20198
|
+
username?: string | undefined;
|
|
20199
|
+
audience?: string | undefined;
|
|
20200
|
+
nonce?: string | undefined;
|
|
20201
|
+
organization?: string | undefined;
|
|
19959
20202
|
redirect_uri?: string | undefined;
|
|
20203
|
+
state?: string | undefined;
|
|
19960
20204
|
act_as?: string | undefined;
|
|
19961
|
-
|
|
20205
|
+
prompt?: string | undefined;
|
|
19962
20206
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19963
20207
|
code_challenge?: string | undefined;
|
|
19964
20208
|
ui_locales?: string | undefined;
|
|
@@ -20190,7 +20434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20190
20434
|
client_id: string;
|
|
20191
20435
|
username: string;
|
|
20192
20436
|
otp: string;
|
|
20193
|
-
realm: "
|
|
20437
|
+
realm: "email" | "sms";
|
|
20194
20438
|
scope?: string | undefined;
|
|
20195
20439
|
audience?: string | undefined;
|
|
20196
20440
|
} | {
|
|
@@ -20239,7 +20483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20239
20483
|
client_id: string;
|
|
20240
20484
|
username: string;
|
|
20241
20485
|
otp: string;
|
|
20242
|
-
realm: "
|
|
20486
|
+
realm: "email" | "sms";
|
|
20243
20487
|
scope?: string | undefined;
|
|
20244
20488
|
audience?: string | undefined;
|
|
20245
20489
|
} | {
|
|
@@ -20293,7 +20537,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20293
20537
|
client_id: string;
|
|
20294
20538
|
username: string;
|
|
20295
20539
|
otp: string;
|
|
20296
|
-
realm: "
|
|
20540
|
+
realm: "email" | "sms";
|
|
20297
20541
|
scope?: string | undefined;
|
|
20298
20542
|
audience?: string | undefined;
|
|
20299
20543
|
} | {
|
|
@@ -20342,7 +20586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20342
20586
|
client_id: string;
|
|
20343
20587
|
username: string;
|
|
20344
20588
|
otp: string;
|
|
20345
|
-
realm: "
|
|
20589
|
+
realm: "email" | "sms";
|
|
20346
20590
|
scope?: string | undefined;
|
|
20347
20591
|
audience?: string | undefined;
|
|
20348
20592
|
} | {
|
|
@@ -20404,7 +20648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20404
20648
|
client_id: string;
|
|
20405
20649
|
username: string;
|
|
20406
20650
|
otp: string;
|
|
20407
|
-
realm: "
|
|
20651
|
+
realm: "email" | "sms";
|
|
20408
20652
|
scope?: string | undefined;
|
|
20409
20653
|
audience?: string | undefined;
|
|
20410
20654
|
} | {
|
|
@@ -20453,7 +20697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20453
20697
|
client_id: string;
|
|
20454
20698
|
username: string;
|
|
20455
20699
|
otp: string;
|
|
20456
|
-
realm: "
|
|
20700
|
+
realm: "email" | "sms";
|
|
20457
20701
|
scope?: string | undefined;
|
|
20458
20702
|
audience?: string | undefined;
|
|
20459
20703
|
} | {
|
|
@@ -20510,7 +20754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20510
20754
|
client_id: string;
|
|
20511
20755
|
username: string;
|
|
20512
20756
|
otp: string;
|
|
20513
|
-
realm: "
|
|
20757
|
+
realm: "email" | "sms";
|
|
20514
20758
|
scope?: string | undefined;
|
|
20515
20759
|
audience?: string | undefined;
|
|
20516
20760
|
} | {
|
|
@@ -20559,7 +20803,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20559
20803
|
client_id: string;
|
|
20560
20804
|
username: string;
|
|
20561
20805
|
otp: string;
|
|
20562
|
-
realm: "
|
|
20806
|
+
realm: "email" | "sms";
|
|
20563
20807
|
scope?: string | undefined;
|
|
20564
20808
|
audience?: string | undefined;
|
|
20565
20809
|
} | {
|
|
@@ -20616,7 +20860,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20616
20860
|
client_id: string;
|
|
20617
20861
|
username: string;
|
|
20618
20862
|
otp: string;
|
|
20619
|
-
realm: "
|
|
20863
|
+
realm: "email" | "sms";
|
|
20620
20864
|
scope?: string | undefined;
|
|
20621
20865
|
audience?: string | undefined;
|
|
20622
20866
|
} | {
|
|
@@ -20665,7 +20909,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20665
20909
|
client_id: string;
|
|
20666
20910
|
username: string;
|
|
20667
20911
|
otp: string;
|
|
20668
|
-
realm: "
|
|
20912
|
+
realm: "email" | "sms";
|
|
20669
20913
|
scope?: string | undefined;
|
|
20670
20914
|
audience?: string | undefined;
|
|
20671
20915
|
} | {
|
|
@@ -20696,7 +20940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20696
20940
|
output: {
|
|
20697
20941
|
keys: {
|
|
20698
20942
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
20699
|
-
kty: "
|
|
20943
|
+
kty: "RSA" | "EC" | "oct";
|
|
20700
20944
|
kid?: string | undefined;
|
|
20701
20945
|
use?: "sig" | "enc" | undefined;
|
|
20702
20946
|
n?: string | undefined;
|
|
@@ -21891,7 +22135,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21891
22135
|
$get: {
|
|
21892
22136
|
input: {
|
|
21893
22137
|
param: {
|
|
21894
|
-
screen: "
|
|
22138
|
+
screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21895
22139
|
};
|
|
21896
22140
|
} & {
|
|
21897
22141
|
query: {
|
|
@@ -21907,7 +22151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21907
22151
|
} | {
|
|
21908
22152
|
input: {
|
|
21909
22153
|
param: {
|
|
21910
|
-
screen: "
|
|
22154
|
+
screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21911
22155
|
};
|
|
21912
22156
|
} & {
|
|
21913
22157
|
query: {
|
|
@@ -21923,7 +22167,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21923
22167
|
} | {
|
|
21924
22168
|
input: {
|
|
21925
22169
|
param: {
|
|
21926
|
-
screen: "
|
|
22170
|
+
screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21927
22171
|
};
|
|
21928
22172
|
} & {
|
|
21929
22173
|
query: {
|
|
@@ -21943,7 +22187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21943
22187
|
$post: {
|
|
21944
22188
|
input: {
|
|
21945
22189
|
param: {
|
|
21946
|
-
screen: "
|
|
22190
|
+
screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21947
22191
|
};
|
|
21948
22192
|
} & {
|
|
21949
22193
|
query: {
|
|
@@ -21961,7 +22205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21961
22205
|
} | {
|
|
21962
22206
|
input: {
|
|
21963
22207
|
param: {
|
|
21964
|
-
screen: "
|
|
22208
|
+
screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21965
22209
|
};
|
|
21966
22210
|
} & {
|
|
21967
22211
|
query: {
|
|
@@ -22063,5 +22307,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22063
22307
|
createX509Certificate: typeof createX509Certificate;
|
|
22064
22308
|
};
|
|
22065
22309
|
|
|
22066
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, 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, PipelineDestination, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupActionExecutions, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
22067
|
-
export type { ActionExecutionsCleanupParams, AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, OutboxMetric, OutboxMetricName, OutboxMetricsSink, OutboxPipelineConfig, PipelineDestinationOptions, PipelineRecord, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|
|
22310
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, 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, PipelineDestination, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, advanceUsersImport, backfillProxyHostsToKv, cleanupActionExecutions, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, cleanupUsersImports, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, resumeUsersImports, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
22311
|
+
export type { ActionExecutionsCleanupParams, AdvanceOptions, AdvanceResult, AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, OutboxMetric, OutboxMetricName, OutboxMetricsSink, OutboxPipelineConfig, PipelineDestinationOptions, PipelineRecord, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, ResumeUsersImportsOptions, ResumeUsersImportsResult, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, UsersImportCleanupParams, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|