authhero 9.10.0 → 9.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +146 -146
- package/dist/authhero.d.ts +341 -119
- package/dist/authhero.mjs +15107 -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 +2 -2
- 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 +238 -115
- 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 +2 -2
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +194 -75
- package/dist/types/routes/management-api/jobs.d.ts +133 -0
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- 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 +33 -9
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/AuthHeroConfig.d.ts +13 -0
- package/dist/types/types/Bindings.d.ts +2 -0
- package/dist/types/types/auth0/UserImport.d.ts +317 -0
- 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,19 @@ 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;
|
|
1906
1919
|
/**
|
|
1907
1920
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1908
1921
|
* This is only configurable in code, not stored in the database.
|
|
@@ -2170,6 +2183,8 @@ type Bindings = {
|
|
|
2170
2183
|
webhookInvoker?: WebhookInvoker;
|
|
2171
2184
|
tenantUpgrade?: (tenantId: string) => Promise<void>;
|
|
2172
2185
|
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
2186
|
+
usersImportMaxBytes?: number;
|
|
2187
|
+
usersImportMaxConcurrentJobs?: number;
|
|
2173
2188
|
outbox?: OutboxConfig;
|
|
2174
2189
|
userLinkingMode?: UserLinkingModeOption;
|
|
2175
2190
|
usernamePasswordProvider?: UsernamePasswordProviderResolver;
|
|
@@ -2880,6 +2895,89 @@ interface ActionExecutionsCleanupParams {
|
|
|
2880
2895
|
*/
|
|
2881
2896
|
declare function cleanupActionExecutions(actionExecutions: ActionExecutionsAdapter, params?: ActionExecutionsCleanupParams): Promise<number | null>;
|
|
2882
2897
|
|
|
2898
|
+
interface UsersImportCleanupParams {
|
|
2899
|
+
/** Hours to keep finished import jobs. Defaults to Auth0's 24. */
|
|
2900
|
+
retentionHours?: number;
|
|
2901
|
+
/** Maximum jobs to delete per sweep. */
|
|
2902
|
+
limit?: number;
|
|
2903
|
+
}
|
|
2904
|
+
/**
|
|
2905
|
+
* Delete finished bulk-import jobs (and, by cascade, their staged rows)
|
|
2906
|
+
* older than the retention window.
|
|
2907
|
+
*
|
|
2908
|
+
* Staged rows hold the submitted user entries, so this is a privacy control
|
|
2909
|
+
* as much as a housekeeping one — though credential material is redacted
|
|
2910
|
+
* before staging rather than relying on this sweep.
|
|
2911
|
+
*
|
|
2912
|
+
* Only terminal jobs are removed: an unfinished import may legitimately be
|
|
2913
|
+
* older than the window (a very large file, or one that has been waiting on
|
|
2914
|
+
* a resume sweep), and deleting it would strand the users it had not yet
|
|
2915
|
+
* created. Returns the number of jobs deleted, or `null` when the
|
|
2916
|
+
* deployment has no tenant-operations adapter.
|
|
2917
|
+
*/
|
|
2918
|
+
declare function cleanupUsersImports(data: DataAdapters, params?: UsersImportCleanupParams): Promise<number | null>;
|
|
2919
|
+
|
|
2920
|
+
interface AdvanceOptions {
|
|
2921
|
+
/** Stop after this many rows, so a driver can bound its own runtime. */
|
|
2922
|
+
maxRows?: number;
|
|
2923
|
+
/** Rows per chunk; defaults to {@link DEFAULT_CHUNK_SIZE}. */
|
|
2924
|
+
chunkSize?: number;
|
|
2925
|
+
/** Lease duration for this driver's claim. */
|
|
2926
|
+
leaseMs?: number;
|
|
2927
|
+
/**
|
|
2928
|
+
* Wall-clock deadline (epoch ms). The driver stops cleanly at the next
|
|
2929
|
+
* chunk boundary once passed, leaving the remainder `pending` for the
|
|
2930
|
+
* next driver — never mid-chunk, so no work is half-committed.
|
|
2931
|
+
*/
|
|
2932
|
+
deadline?: number;
|
|
2933
|
+
/** Identifies the lease holder; defaults to a random id. */
|
|
2934
|
+
workerId?: string;
|
|
2935
|
+
}
|
|
2936
|
+
interface AdvanceResult {
|
|
2937
|
+
/** True when no `pending` rows remain and the operation was finalized. */
|
|
2938
|
+
done: boolean;
|
|
2939
|
+
/** Rows this call committed an outcome for. */
|
|
2940
|
+
processed: number;
|
|
2941
|
+
/** Rows still `pending` after this call. */
|
|
2942
|
+
remaining: number;
|
|
2943
|
+
/** False when another live driver holds the lease. */
|
|
2944
|
+
claimed: boolean;
|
|
2945
|
+
}
|
|
2946
|
+
/**
|
|
2947
|
+
* Advance a `users_import` operation by processing staged rows until it is
|
|
2948
|
+
* finished or the caller's budget runs out.
|
|
2949
|
+
*
|
|
2950
|
+
* This is the whole execution model. Every engine — an inline kick from the
|
|
2951
|
+
* accepting request, a cron sweep, a Cloudflare Workflow step — calls this
|
|
2952
|
+
* same function; they differ only in how much budget they pass and how often
|
|
2953
|
+
* they call it. Durability comes from the database, not from the caller:
|
|
2954
|
+
* outcomes are committed chunk by chunk, so a driver that dies loses at most
|
|
2955
|
+
* the chunk in flight, and those rows stay `pending` for whoever runs next.
|
|
2956
|
+
*/
|
|
2957
|
+
declare function advanceUsersImport(data: DataAdapters, operationId: string, options?: AdvanceOptions): Promise<AdvanceResult>;
|
|
2958
|
+
interface ResumeUsersImportsOptions extends Omit<AdvanceOptions, "workerId"> {
|
|
2959
|
+
/** Maximum operations to advance in one sweep. */
|
|
2960
|
+
maxOperations?: number;
|
|
2961
|
+
}
|
|
2962
|
+
interface ResumeUsersImportsResult {
|
|
2963
|
+
scanned: number;
|
|
2964
|
+
advanced: number;
|
|
2965
|
+
completed: number;
|
|
2966
|
+
errors: number;
|
|
2967
|
+
}
|
|
2968
|
+
/**
|
|
2969
|
+
* Resume every unfinished bulk import that no live driver is working on.
|
|
2970
|
+
*
|
|
2971
|
+
* This is what makes the feature durable regardless of deployment. Wire it
|
|
2972
|
+
* to a scheduled handler alongside `runRetention`: whatever started an
|
|
2973
|
+
* import — a request that timed out, a worker that was evicted, a process
|
|
2974
|
+
* that was redeployed mid-run — the sweep picks the job back up and carries
|
|
2975
|
+
* it to completion from the last committed chunk.
|
|
2976
|
+
*
|
|
2977
|
+
* One operation's failure never aborts the sweep.
|
|
2978
|
+
*/
|
|
2979
|
+
declare function resumeUsersImports(data: DataAdapters, options?: ResumeUsersImportsOptions): Promise<ResumeUsersImportsResult>;
|
|
2980
|
+
|
|
2883
2981
|
/**
|
|
2884
2982
|
* Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
|
|
2885
2983
|
* `webhookInvoker` can request a non-default scope for its outbound call.
|
|
@@ -3158,6 +3256,11 @@ interface RunRetentionConfig {
|
|
|
3158
3256
|
outboxRetentionDays?: number;
|
|
3159
3257
|
/** Days of action execution history to keep. Default 30. */
|
|
3160
3258
|
actionExecutionsRetentionDays?: number;
|
|
3259
|
+
/**
|
|
3260
|
+
* Hours to keep finished bulk user-import jobs and their staged rows.
|
|
3261
|
+
* Default 24, matching Auth0's job-data retention.
|
|
3262
|
+
*/
|
|
3263
|
+
usersImportRetentionHours?: number;
|
|
3161
3264
|
/**
|
|
3162
3265
|
* Scope the session sweep to a single tenant. Codes and outbox events are
|
|
3163
3266
|
* always swept globally — an expired row is dead regardless of who owns it.
|
|
@@ -4433,6 +4536,125 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4433
4536
|
Bindings: Bindings;
|
|
4434
4537
|
Variables: Variables;
|
|
4435
4538
|
}, hono_types.MergeSchemaPath<{
|
|
4539
|
+
"/users-imports": {
|
|
4540
|
+
$post: {
|
|
4541
|
+
input: {
|
|
4542
|
+
header: {
|
|
4543
|
+
"tenant-id"?: string | undefined;
|
|
4544
|
+
};
|
|
4545
|
+
} & {
|
|
4546
|
+
form: {
|
|
4547
|
+
users: any;
|
|
4548
|
+
connection_id: string;
|
|
4549
|
+
upsert?: string | boolean | undefined;
|
|
4550
|
+
external_id?: string | undefined;
|
|
4551
|
+
send_completion_email?: string | boolean | undefined;
|
|
4552
|
+
};
|
|
4553
|
+
};
|
|
4554
|
+
output: {
|
|
4555
|
+
id: string;
|
|
4556
|
+
type: string;
|
|
4557
|
+
status: "pending" | "failed" | "completed";
|
|
4558
|
+
created_at?: string | undefined;
|
|
4559
|
+
connection_id?: string | undefined;
|
|
4560
|
+
external_id?: string | undefined;
|
|
4561
|
+
percentage_done?: number | undefined;
|
|
4562
|
+
time_left_seconds?: number | undefined;
|
|
4563
|
+
status_details?: string | undefined;
|
|
4564
|
+
summary?: {
|
|
4565
|
+
failed: number;
|
|
4566
|
+
updated: number;
|
|
4567
|
+
inserted: number;
|
|
4568
|
+
total: number;
|
|
4569
|
+
} | undefined;
|
|
4570
|
+
};
|
|
4571
|
+
outputFormat: "json";
|
|
4572
|
+
status: 202;
|
|
4573
|
+
};
|
|
4574
|
+
};
|
|
4575
|
+
} & {
|
|
4576
|
+
"/:id": {
|
|
4577
|
+
$get: {
|
|
4578
|
+
input: {
|
|
4579
|
+
param: {
|
|
4580
|
+
id: string;
|
|
4581
|
+
};
|
|
4582
|
+
} & {
|
|
4583
|
+
header: {
|
|
4584
|
+
"tenant-id"?: string | undefined;
|
|
4585
|
+
};
|
|
4586
|
+
};
|
|
4587
|
+
output: {
|
|
4588
|
+
id: string;
|
|
4589
|
+
type: string;
|
|
4590
|
+
status: "pending" | "failed" | "completed";
|
|
4591
|
+
created_at?: string | undefined;
|
|
4592
|
+
connection_id?: string | undefined;
|
|
4593
|
+
external_id?: string | undefined;
|
|
4594
|
+
percentage_done?: number | undefined;
|
|
4595
|
+
time_left_seconds?: number | undefined;
|
|
4596
|
+
status_details?: string | undefined;
|
|
4597
|
+
summary?: {
|
|
4598
|
+
failed: number;
|
|
4599
|
+
updated: number;
|
|
4600
|
+
inserted: number;
|
|
4601
|
+
total: number;
|
|
4602
|
+
} | undefined;
|
|
4603
|
+
};
|
|
4604
|
+
outputFormat: "json";
|
|
4605
|
+
status: 200;
|
|
4606
|
+
};
|
|
4607
|
+
};
|
|
4608
|
+
} & {
|
|
4609
|
+
"/:id/errors": {
|
|
4610
|
+
$get: {
|
|
4611
|
+
input: {
|
|
4612
|
+
param: {
|
|
4613
|
+
id: string;
|
|
4614
|
+
};
|
|
4615
|
+
} & {
|
|
4616
|
+
query: {
|
|
4617
|
+
page?: unknown;
|
|
4618
|
+
per_page?: unknown;
|
|
4619
|
+
};
|
|
4620
|
+
} & {
|
|
4621
|
+
header: {
|
|
4622
|
+
"tenant-id"?: string | undefined;
|
|
4623
|
+
};
|
|
4624
|
+
};
|
|
4625
|
+
output: {};
|
|
4626
|
+
outputFormat: string;
|
|
4627
|
+
status: 204;
|
|
4628
|
+
} | {
|
|
4629
|
+
input: {
|
|
4630
|
+
param: {
|
|
4631
|
+
id: string;
|
|
4632
|
+
};
|
|
4633
|
+
} & {
|
|
4634
|
+
query: {
|
|
4635
|
+
page?: unknown;
|
|
4636
|
+
per_page?: unknown;
|
|
4637
|
+
};
|
|
4638
|
+
} & {
|
|
4639
|
+
header: {
|
|
4640
|
+
"tenant-id"?: string | undefined;
|
|
4641
|
+
};
|
|
4642
|
+
};
|
|
4643
|
+
output: {
|
|
4644
|
+
user: {
|
|
4645
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
4646
|
+
};
|
|
4647
|
+
errors: {
|
|
4648
|
+
code: string;
|
|
4649
|
+
message: string;
|
|
4650
|
+
path?: string | undefined;
|
|
4651
|
+
}[];
|
|
4652
|
+
}[];
|
|
4653
|
+
outputFormat: "json";
|
|
4654
|
+
status: 200;
|
|
4655
|
+
};
|
|
4656
|
+
};
|
|
4657
|
+
}, "/jobs"> & hono_types.MergeSchemaPath<{
|
|
4436
4658
|
"/export": {
|
|
4437
4659
|
$get: {
|
|
4438
4660
|
input: {
|
|
@@ -4525,7 +4747,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4525
4747
|
};
|
|
4526
4748
|
} & {
|
|
4527
4749
|
json: {
|
|
4528
|
-
type: "
|
|
4750
|
+
type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
|
|
4529
4751
|
phone_number?: string | undefined;
|
|
4530
4752
|
totp_secret?: string | undefined;
|
|
4531
4753
|
credential_id?: string | undefined;
|
|
@@ -4665,7 +4887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4665
4887
|
};
|
|
4666
4888
|
};
|
|
4667
4889
|
output: {
|
|
4668
|
-
name: "
|
|
4890
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4669
4891
|
enabled: boolean;
|
|
4670
4892
|
trial_expired?: boolean | undefined;
|
|
4671
4893
|
}[];
|
|
@@ -4820,7 +5042,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4820
5042
|
$get: {
|
|
4821
5043
|
input: {
|
|
4822
5044
|
param: {
|
|
4823
|
-
factor_name: "
|
|
5045
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4824
5046
|
};
|
|
4825
5047
|
} & {
|
|
4826
5048
|
header: {
|
|
@@ -4828,7 +5050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4828
5050
|
};
|
|
4829
5051
|
};
|
|
4830
5052
|
output: {
|
|
4831
|
-
name: "
|
|
5053
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4832
5054
|
enabled: boolean;
|
|
4833
5055
|
trial_expired?: boolean | undefined;
|
|
4834
5056
|
};
|
|
@@ -4841,7 +5063,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4841
5063
|
$put: {
|
|
4842
5064
|
input: {
|
|
4843
5065
|
param: {
|
|
4844
|
-
factor_name: "
|
|
5066
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4845
5067
|
};
|
|
4846
5068
|
} & {
|
|
4847
5069
|
header: {
|
|
@@ -4853,7 +5075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4853
5075
|
};
|
|
4854
5076
|
};
|
|
4855
5077
|
output: {
|
|
4856
|
-
name: "
|
|
5078
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4857
5079
|
enabled: boolean;
|
|
4858
5080
|
trial_expired?: boolean | undefined;
|
|
4859
5081
|
};
|
|
@@ -5632,9 +5854,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5632
5854
|
email?: string | undefined;
|
|
5633
5855
|
};
|
|
5634
5856
|
id?: string | undefined;
|
|
5635
|
-
connection_id?: string | undefined;
|
|
5636
5857
|
app_metadata?: Record<string, any> | undefined;
|
|
5637
5858
|
user_metadata?: Record<string, any> | undefined;
|
|
5859
|
+
connection_id?: string | undefined;
|
|
5638
5860
|
roles?: string[] | undefined;
|
|
5639
5861
|
ttl_sec?: number | undefined;
|
|
5640
5862
|
send_invitation_email?: boolean | undefined;
|
|
@@ -5820,8 +6042,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5820
6042
|
};
|
|
5821
6043
|
} & {
|
|
5822
6044
|
json: {
|
|
5823
|
-
assign_membership_on_login?: boolean | undefined;
|
|
5824
6045
|
show_as_button?: boolean | undefined;
|
|
6046
|
+
assign_membership_on_login?: boolean | undefined;
|
|
5825
6047
|
is_signup_enabled?: boolean | undefined;
|
|
5826
6048
|
};
|
|
5827
6049
|
};
|
|
@@ -6392,9 +6614,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6392
6614
|
};
|
|
6393
6615
|
} & {
|
|
6394
6616
|
query: {
|
|
6395
|
-
from?: string | undefined;
|
|
6396
6617
|
page?: string | undefined;
|
|
6397
6618
|
include_totals?: string | undefined;
|
|
6619
|
+
from?: string | undefined;
|
|
6398
6620
|
per_page?: string | undefined;
|
|
6399
6621
|
take?: string | undefined;
|
|
6400
6622
|
};
|
|
@@ -11464,7 +11686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11464
11686
|
};
|
|
11465
11687
|
};
|
|
11466
11688
|
output: {
|
|
11467
|
-
prompt: "
|
|
11689
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11690
|
language: string;
|
|
11469
11691
|
}[];
|
|
11470
11692
|
outputFormat: "json";
|
|
@@ -11502,7 +11724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11502
11724
|
$get: {
|
|
11503
11725
|
input: {
|
|
11504
11726
|
param: {
|
|
11505
|
-
prompt: "
|
|
11727
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11728
|
language: string;
|
|
11507
11729
|
};
|
|
11508
11730
|
} & {
|
|
@@ -11524,7 +11746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11524
11746
|
$put: {
|
|
11525
11747
|
input: {
|
|
11526
11748
|
param: {
|
|
11527
|
-
prompt: "
|
|
11749
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11750
|
language: string;
|
|
11529
11751
|
};
|
|
11530
11752
|
} & {
|
|
@@ -11548,7 +11770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11548
11770
|
$delete: {
|
|
11549
11771
|
input: {
|
|
11550
11772
|
param: {
|
|
11551
|
-
prompt: "
|
|
11773
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11774
|
language: string;
|
|
11553
11775
|
};
|
|
11554
11776
|
} & {
|
|
@@ -13158,9 +13380,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13158
13380
|
tenant_id: string;
|
|
13159
13381
|
event_type: string;
|
|
13160
13382
|
log_type: string;
|
|
13161
|
-
category: "
|
|
13383
|
+
category: "system" | "user_action" | "admin_action" | "api";
|
|
13162
13384
|
actor: {
|
|
13163
|
-
type: "
|
|
13385
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
13164
13386
|
id?: string | undefined;
|
|
13165
13387
|
email?: string | undefined;
|
|
13166
13388
|
org_id?: string | undefined;
|
|
@@ -13661,7 +13883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13661
13883
|
[x: string]: hono_utils_types.JSONValue;
|
|
13662
13884
|
};
|
|
13663
13885
|
id: string;
|
|
13664
|
-
status: "
|
|
13886
|
+
status: "active" | "suspended" | "paused";
|
|
13665
13887
|
filters?: {
|
|
13666
13888
|
type: string;
|
|
13667
13889
|
name: string;
|
|
@@ -13693,7 +13915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13693
13915
|
[x: string]: hono_utils_types.JSONValue;
|
|
13694
13916
|
};
|
|
13695
13917
|
id: string;
|
|
13696
|
-
status: "
|
|
13918
|
+
status: "active" | "suspended" | "paused";
|
|
13697
13919
|
filters?: {
|
|
13698
13920
|
type: string;
|
|
13699
13921
|
name: string;
|
|
@@ -13718,7 +13940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13718
13940
|
name: string;
|
|
13719
13941
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
13720
13942
|
sink: Record<string, unknown>;
|
|
13721
|
-
status?: "
|
|
13943
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
13722
13944
|
filters?: {
|
|
13723
13945
|
type: string;
|
|
13724
13946
|
name: string;
|
|
@@ -13733,7 +13955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13733
13955
|
[x: string]: hono_utils_types.JSONValue;
|
|
13734
13956
|
};
|
|
13735
13957
|
id: string;
|
|
13736
|
-
status: "
|
|
13958
|
+
status: "active" | "suspended" | "paused";
|
|
13737
13959
|
filters?: {
|
|
13738
13960
|
type: string;
|
|
13739
13961
|
name: string;
|
|
@@ -13768,7 +13990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13768
13990
|
}[] | undefined;
|
|
13769
13991
|
isPriority?: boolean | undefined;
|
|
13770
13992
|
id?: string | undefined;
|
|
13771
|
-
status?: "
|
|
13993
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
13772
13994
|
created_at?: string | undefined;
|
|
13773
13995
|
updated_at?: string | undefined;
|
|
13774
13996
|
};
|
|
@@ -13780,7 +14002,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13780
14002
|
[x: string]: hono_utils_types.JSONValue;
|
|
13781
14003
|
};
|
|
13782
14004
|
id: string;
|
|
13783
|
-
status: "
|
|
14005
|
+
status: "active" | "suspended" | "paused";
|
|
13784
14006
|
filters?: {
|
|
13785
14007
|
type: string;
|
|
13786
14008
|
name: string;
|
|
@@ -13831,7 +14053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13831
14053
|
};
|
|
13832
14054
|
};
|
|
13833
14055
|
output: {
|
|
13834
|
-
type: "fn" | "
|
|
14056
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13835
14057
|
date: string;
|
|
13836
14058
|
isMobile: boolean;
|
|
13837
14059
|
log_id: string;
|
|
@@ -13870,7 +14092,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13870
14092
|
limit: number;
|
|
13871
14093
|
length: number;
|
|
13872
14094
|
logs: {
|
|
13873
|
-
type: "fn" | "
|
|
14095
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13874
14096
|
date: string;
|
|
13875
14097
|
isMobile: boolean;
|
|
13876
14098
|
log_id: string;
|
|
@@ -13909,7 +14131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13909
14131
|
next?: string | undefined;
|
|
13910
14132
|
} | {
|
|
13911
14133
|
logs: {
|
|
13912
|
-
type: "fn" | "
|
|
14134
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13913
14135
|
date: string;
|
|
13914
14136
|
isMobile: boolean;
|
|
13915
14137
|
log_id: string;
|
|
@@ -13963,7 +14185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13963
14185
|
};
|
|
13964
14186
|
};
|
|
13965
14187
|
output: {
|
|
13966
|
-
type: "fn" | "
|
|
14188
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13967
14189
|
date: string;
|
|
13968
14190
|
isMobile: boolean;
|
|
13969
14191
|
log_id: string;
|
|
@@ -14374,7 +14596,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14374
14596
|
addons?: {
|
|
14375
14597
|
[x: string]: any;
|
|
14376
14598
|
} | undefined;
|
|
14377
|
-
token_endpoint_auth_method?: "
|
|
14599
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14378
14600
|
client_metadata?: {
|
|
14379
14601
|
[x: string]: string;
|
|
14380
14602
|
} | undefined;
|
|
@@ -14476,7 +14698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14476
14698
|
addons?: {
|
|
14477
14699
|
[x: string]: any;
|
|
14478
14700
|
} | undefined;
|
|
14479
|
-
token_endpoint_auth_method?: "
|
|
14701
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14480
14702
|
client_metadata?: {
|
|
14481
14703
|
[x: string]: string;
|
|
14482
14704
|
} | undefined;
|
|
@@ -14578,7 +14800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14578
14800
|
addons?: {
|
|
14579
14801
|
[x: string]: any;
|
|
14580
14802
|
} | undefined;
|
|
14581
|
-
token_endpoint_auth_method?: "
|
|
14803
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14582
14804
|
client_metadata?: {
|
|
14583
14805
|
[x: string]: string;
|
|
14584
14806
|
} | undefined;
|
|
@@ -14695,7 +14917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14695
14917
|
addons?: {
|
|
14696
14918
|
[x: string]: any;
|
|
14697
14919
|
} | undefined;
|
|
14698
|
-
token_endpoint_auth_method?: "
|
|
14920
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14699
14921
|
client_metadata?: {
|
|
14700
14922
|
[x: string]: string;
|
|
14701
14923
|
} | undefined;
|
|
@@ -14813,7 +15035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14813
15035
|
custom_login_page_preview?: string | undefined;
|
|
14814
15036
|
form_template?: string | undefined;
|
|
14815
15037
|
addons?: Record<string, any> | undefined;
|
|
14816
|
-
token_endpoint_auth_method?: "
|
|
15038
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14817
15039
|
client_metadata?: Record<string, string> | undefined;
|
|
14818
15040
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14819
15041
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14899,7 +15121,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14899
15121
|
addons?: {
|
|
14900
15122
|
[x: string]: any;
|
|
14901
15123
|
} | undefined;
|
|
14902
|
-
token_endpoint_auth_method?: "
|
|
15124
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14903
15125
|
client_metadata?: {
|
|
14904
15126
|
[x: string]: string;
|
|
14905
15127
|
} | undefined;
|
|
@@ -14996,7 +15218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14996
15218
|
custom_login_page_preview?: string | undefined;
|
|
14997
15219
|
form_template?: string | undefined;
|
|
14998
15220
|
addons?: Record<string, any> | undefined;
|
|
14999
|
-
token_endpoint_auth_method?: "
|
|
15221
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15000
15222
|
client_metadata?: Record<string, string> | undefined;
|
|
15001
15223
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
15002
15224
|
mobile?: Record<string, any> | undefined;
|
|
@@ -15082,7 +15304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15082
15304
|
addons?: {
|
|
15083
15305
|
[x: string]: any;
|
|
15084
15306
|
} | undefined;
|
|
15085
|
-
token_endpoint_auth_method?: "
|
|
15307
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15086
15308
|
client_metadata?: {
|
|
15087
15309
|
[x: string]: string;
|
|
15088
15310
|
} | undefined;
|
|
@@ -15547,8 +15769,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15547
15769
|
cert: string;
|
|
15548
15770
|
fingerprint: string;
|
|
15549
15771
|
thumbprint: string;
|
|
15550
|
-
tenant_id?: string | undefined;
|
|
15551
15772
|
connection?: string | undefined;
|
|
15773
|
+
tenant_id?: string | undefined;
|
|
15552
15774
|
next?: boolean | undefined;
|
|
15553
15775
|
revoked_at?: string | undefined;
|
|
15554
15776
|
current?: boolean | undefined;
|
|
@@ -15586,8 +15808,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15586
15808
|
cert: string;
|
|
15587
15809
|
fingerprint: string;
|
|
15588
15810
|
thumbprint: string;
|
|
15589
|
-
tenant_id?: string | undefined;
|
|
15590
15811
|
connection?: string | undefined;
|
|
15812
|
+
tenant_id?: string | undefined;
|
|
15591
15813
|
next?: boolean | undefined;
|
|
15592
15814
|
revoked_at?: string | undefined;
|
|
15593
15815
|
current?: boolean | undefined;
|
|
@@ -15624,8 +15846,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15624
15846
|
cert: string;
|
|
15625
15847
|
fingerprint: string;
|
|
15626
15848
|
thumbprint: string;
|
|
15627
|
-
tenant_id?: string | undefined;
|
|
15628
15849
|
connection?: string | undefined;
|
|
15850
|
+
tenant_id?: string | undefined;
|
|
15629
15851
|
next?: boolean | undefined;
|
|
15630
15852
|
revoked_at?: string | undefined;
|
|
15631
15853
|
current?: boolean | undefined;
|
|
@@ -15664,8 +15886,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15664
15886
|
cert: string;
|
|
15665
15887
|
fingerprint: string;
|
|
15666
15888
|
thumbprint: string;
|
|
15667
|
-
tenant_id?: string | undefined;
|
|
15668
15889
|
connection?: string | undefined;
|
|
15890
|
+
tenant_id?: string | undefined;
|
|
15669
15891
|
next?: boolean | undefined;
|
|
15670
15892
|
revoked_at?: string | undefined;
|
|
15671
15893
|
current?: boolean | undefined;
|
|
@@ -16518,9 +16740,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16518
16740
|
};
|
|
16519
16741
|
output: {
|
|
16520
16742
|
id: string;
|
|
16743
|
+
user_id: string;
|
|
16521
16744
|
created_at: string;
|
|
16522
16745
|
client_id: string;
|
|
16523
|
-
user_id: string;
|
|
16524
16746
|
rotating: boolean;
|
|
16525
16747
|
device: {
|
|
16526
16748
|
initial_user_agent: string;
|
|
@@ -16549,9 +16771,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16549
16771
|
}[] | {
|
|
16550
16772
|
tokens: {
|
|
16551
16773
|
id: string;
|
|
16774
|
+
user_id: string;
|
|
16552
16775
|
created_at: string;
|
|
16553
16776
|
client_id: string;
|
|
16554
|
-
user_id: string;
|
|
16555
16777
|
rotating: boolean;
|
|
16556
16778
|
device: {
|
|
16557
16779
|
initial_user_agent: string;
|
|
@@ -16585,9 +16807,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16585
16807
|
length: number;
|
|
16586
16808
|
tokens: {
|
|
16587
16809
|
id: string;
|
|
16810
|
+
user_id: string;
|
|
16588
16811
|
created_at: string;
|
|
16589
16812
|
client_id: string;
|
|
16590
|
-
user_id: string;
|
|
16591
16813
|
rotating: boolean;
|
|
16592
16814
|
device: {
|
|
16593
16815
|
initial_user_agent: string;
|
|
@@ -16663,7 +16885,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16663
16885
|
};
|
|
16664
16886
|
};
|
|
16665
16887
|
output: {
|
|
16666
|
-
type: "fn" | "
|
|
16888
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16667
16889
|
date: string;
|
|
16668
16890
|
isMobile: boolean;
|
|
16669
16891
|
log_id: string;
|
|
@@ -16702,7 +16924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16702
16924
|
limit: number;
|
|
16703
16925
|
length: number;
|
|
16704
16926
|
logs: {
|
|
16705
|
-
type: "fn" | "
|
|
16927
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16706
16928
|
date: string;
|
|
16707
16929
|
isMobile: boolean;
|
|
16708
16930
|
log_id: string;
|
|
@@ -17021,7 +17243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17021
17243
|
};
|
|
17022
17244
|
} & {
|
|
17023
17245
|
json: {
|
|
17024
|
-
template: "
|
|
17246
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17025
17247
|
body: string;
|
|
17026
17248
|
from: string;
|
|
17027
17249
|
subject: string;
|
|
@@ -17042,7 +17264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17042
17264
|
};
|
|
17043
17265
|
} & {
|
|
17044
17266
|
json: {
|
|
17045
|
-
template: "
|
|
17267
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17046
17268
|
body: string;
|
|
17047
17269
|
from: string;
|
|
17048
17270
|
subject: string;
|
|
@@ -17054,7 +17276,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17054
17276
|
};
|
|
17055
17277
|
};
|
|
17056
17278
|
output: {
|
|
17057
|
-
template: "
|
|
17279
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17058
17280
|
body: string;
|
|
17059
17281
|
from: string;
|
|
17060
17282
|
subject: string;
|
|
@@ -17077,7 +17299,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17077
17299
|
};
|
|
17078
17300
|
};
|
|
17079
17301
|
output: {
|
|
17080
|
-
name: "
|
|
17302
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17081
17303
|
body: string;
|
|
17082
17304
|
subject: string;
|
|
17083
17305
|
}[];
|
|
@@ -17090,7 +17312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17090
17312
|
$get: {
|
|
17091
17313
|
input: {
|
|
17092
17314
|
param: {
|
|
17093
|
-
templateName: "
|
|
17315
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17094
17316
|
};
|
|
17095
17317
|
} & {
|
|
17096
17318
|
header: {
|
|
@@ -17103,7 +17325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17103
17325
|
} | {
|
|
17104
17326
|
input: {
|
|
17105
17327
|
param: {
|
|
17106
|
-
templateName: "
|
|
17328
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17107
17329
|
};
|
|
17108
17330
|
} & {
|
|
17109
17331
|
header: {
|
|
@@ -17111,7 +17333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17111
17333
|
};
|
|
17112
17334
|
};
|
|
17113
17335
|
output: {
|
|
17114
|
-
template: "
|
|
17336
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17115
17337
|
body: string;
|
|
17116
17338
|
from: string;
|
|
17117
17339
|
subject: string;
|
|
@@ -17130,7 +17352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17130
17352
|
$put: {
|
|
17131
17353
|
input: {
|
|
17132
17354
|
param: {
|
|
17133
|
-
templateName: "
|
|
17355
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17134
17356
|
};
|
|
17135
17357
|
} & {
|
|
17136
17358
|
header: {
|
|
@@ -17138,7 +17360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17138
17360
|
};
|
|
17139
17361
|
} & {
|
|
17140
17362
|
json: {
|
|
17141
|
-
template: "
|
|
17363
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17142
17364
|
body: string;
|
|
17143
17365
|
subject: string;
|
|
17144
17366
|
syntax?: "liquid" | undefined;
|
|
@@ -17150,7 +17372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17150
17372
|
};
|
|
17151
17373
|
};
|
|
17152
17374
|
output: {
|
|
17153
|
-
template: "
|
|
17375
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17154
17376
|
body: string;
|
|
17155
17377
|
from: string;
|
|
17156
17378
|
subject: string;
|
|
@@ -17169,7 +17391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17169
17391
|
$patch: {
|
|
17170
17392
|
input: {
|
|
17171
17393
|
param: {
|
|
17172
|
-
templateName: "
|
|
17394
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17173
17395
|
};
|
|
17174
17396
|
} & {
|
|
17175
17397
|
header: {
|
|
@@ -17177,7 +17399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17177
17399
|
};
|
|
17178
17400
|
} & {
|
|
17179
17401
|
json: {
|
|
17180
|
-
template?: "
|
|
17402
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17181
17403
|
body?: string | undefined;
|
|
17182
17404
|
from?: string | undefined;
|
|
17183
17405
|
subject?: string | undefined;
|
|
@@ -17194,7 +17416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17194
17416
|
} | {
|
|
17195
17417
|
input: {
|
|
17196
17418
|
param: {
|
|
17197
|
-
templateName: "
|
|
17419
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17198
17420
|
};
|
|
17199
17421
|
} & {
|
|
17200
17422
|
header: {
|
|
@@ -17202,7 +17424,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17202
17424
|
};
|
|
17203
17425
|
} & {
|
|
17204
17426
|
json: {
|
|
17205
|
-
template?: "
|
|
17427
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17206
17428
|
body?: string | undefined;
|
|
17207
17429
|
from?: string | undefined;
|
|
17208
17430
|
subject?: string | undefined;
|
|
@@ -17214,7 +17436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17214
17436
|
};
|
|
17215
17437
|
};
|
|
17216
17438
|
output: {
|
|
17217
|
-
template: "
|
|
17439
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17218
17440
|
body: string;
|
|
17219
17441
|
from: string;
|
|
17220
17442
|
subject: string;
|
|
@@ -17233,7 +17455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17233
17455
|
$delete: {
|
|
17234
17456
|
input: {
|
|
17235
17457
|
param: {
|
|
17236
|
-
templateName: "
|
|
17458
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17237
17459
|
};
|
|
17238
17460
|
} & {
|
|
17239
17461
|
header: {
|
|
@@ -17246,7 +17468,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17246
17468
|
} | {
|
|
17247
17469
|
input: {
|
|
17248
17470
|
param: {
|
|
17249
|
-
templateName: "
|
|
17471
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17250
17472
|
};
|
|
17251
17473
|
} & {
|
|
17252
17474
|
header: {
|
|
@@ -17263,7 +17485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17263
17485
|
$post: {
|
|
17264
17486
|
input: {
|
|
17265
17487
|
param: {
|
|
17266
|
-
templateName: "
|
|
17488
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17267
17489
|
};
|
|
17268
17490
|
} & {
|
|
17269
17491
|
header: {
|
|
@@ -17546,7 +17768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17546
17768
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17547
17769
|
custom_domain_id: string;
|
|
17548
17770
|
primary: boolean;
|
|
17549
|
-
status: "pending" | "
|
|
17771
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17550
17772
|
verification_method?: "txt" | undefined;
|
|
17551
17773
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17552
17774
|
domain_metadata?: {
|
|
@@ -17587,7 +17809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17587
17809
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17588
17810
|
custom_domain_id: string;
|
|
17589
17811
|
primary: boolean;
|
|
17590
|
-
status: "pending" | "
|
|
17812
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17591
17813
|
verification_method?: "txt" | undefined;
|
|
17592
17814
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17593
17815
|
domain_metadata?: {
|
|
@@ -17651,7 +17873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17651
17873
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17652
17874
|
custom_domain_id: string;
|
|
17653
17875
|
primary: boolean;
|
|
17654
|
-
status: "pending" | "
|
|
17876
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17655
17877
|
verification_method?: "txt" | undefined;
|
|
17656
17878
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17657
17879
|
domain_metadata?: {
|
|
@@ -17698,7 +17920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17698
17920
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17699
17921
|
custom_domain_id: string;
|
|
17700
17922
|
primary: boolean;
|
|
17701
|
-
status: "pending" | "
|
|
17923
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17702
17924
|
verification_method?: "txt" | undefined;
|
|
17703
17925
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17704
17926
|
domain_metadata?: {
|
|
@@ -17744,7 +17966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17744
17966
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17745
17967
|
custom_domain_id: string;
|
|
17746
17968
|
primary: boolean;
|
|
17747
|
-
status: "pending" | "
|
|
17969
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17748
17970
|
verification_method?: "txt" | undefined;
|
|
17749
17971
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17750
17972
|
domain_metadata?: {
|
|
@@ -17785,7 +18007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17785
18007
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17786
18008
|
custom_domain_id: string;
|
|
17787
18009
|
primary: boolean;
|
|
17788
|
-
status: "pending" | "
|
|
18010
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17789
18011
|
verification_method?: "txt" | undefined;
|
|
17790
18012
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17791
18013
|
domain_metadata?: {
|
|
@@ -17884,12 +18106,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17884
18106
|
background_color: string;
|
|
17885
18107
|
background_image_url: string;
|
|
17886
18108
|
page_layout: "center" | "left" | "right";
|
|
17887
|
-
logo_placement?: "
|
|
18109
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
17888
18110
|
};
|
|
17889
18111
|
widget: {
|
|
17890
18112
|
header_text_alignment: "center" | "left" | "right";
|
|
17891
18113
|
logo_height: number;
|
|
17892
|
-
logo_position: "
|
|
18114
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
17893
18115
|
logo_url: string;
|
|
17894
18116
|
social_buttons_layout: "bottom" | "top";
|
|
17895
18117
|
};
|
|
@@ -17974,12 +18196,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17974
18196
|
background_color: string;
|
|
17975
18197
|
background_image_url: string;
|
|
17976
18198
|
page_layout: "center" | "left" | "right";
|
|
17977
|
-
logo_placement?: "
|
|
18199
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
17978
18200
|
};
|
|
17979
18201
|
widget: {
|
|
17980
18202
|
header_text_alignment: "center" | "left" | "right";
|
|
17981
18203
|
logo_height: number;
|
|
17982
|
-
logo_position: "
|
|
18204
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
17983
18205
|
logo_url: string;
|
|
17984
18206
|
social_buttons_layout: "bottom" | "top";
|
|
17985
18207
|
};
|
|
@@ -18053,12 +18275,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18053
18275
|
background_color: string;
|
|
18054
18276
|
background_image_url: string;
|
|
18055
18277
|
page_layout: "center" | "left" | "right";
|
|
18056
|
-
logo_placement?: "
|
|
18278
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
18057
18279
|
};
|
|
18058
18280
|
widget: {
|
|
18059
18281
|
header_text_alignment: "center" | "left" | "right";
|
|
18060
18282
|
logo_height: number;
|
|
18061
|
-
logo_position: "
|
|
18283
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
18062
18284
|
logo_url: string;
|
|
18063
18285
|
social_buttons_layout: "bottom" | "top";
|
|
18064
18286
|
};
|
|
@@ -18215,7 +18437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18215
18437
|
} & {
|
|
18216
18438
|
json: {
|
|
18217
18439
|
body?: string | undefined;
|
|
18218
|
-
screen?: "password" | "
|
|
18440
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
18219
18441
|
branding?: {
|
|
18220
18442
|
colors?: {
|
|
18221
18443
|
primary: string;
|
|
@@ -18301,12 +18523,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18301
18523
|
background_color: string;
|
|
18302
18524
|
background_image_url: string;
|
|
18303
18525
|
page_layout: "center" | "left" | "right";
|
|
18304
|
-
logo_placement?: "
|
|
18526
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
18305
18527
|
} | undefined;
|
|
18306
18528
|
widget?: {
|
|
18307
18529
|
header_text_alignment: "center" | "left" | "right";
|
|
18308
18530
|
logo_height: number;
|
|
18309
|
-
logo_position: "
|
|
18531
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
18310
18532
|
logo_url: string;
|
|
18311
18533
|
social_buttons_layout: "bottom" | "top";
|
|
18312
18534
|
} | undefined;
|
|
@@ -19227,7 +19449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19227
19449
|
message: string;
|
|
19228
19450
|
};
|
|
19229
19451
|
outputFormat: "json";
|
|
19230
|
-
status:
|
|
19452
|
+
status: 500;
|
|
19231
19453
|
} | {
|
|
19232
19454
|
input: {
|
|
19233
19455
|
query: {
|
|
@@ -19245,7 +19467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19245
19467
|
message: string;
|
|
19246
19468
|
};
|
|
19247
19469
|
outputFormat: "json";
|
|
19248
|
-
status:
|
|
19470
|
+
status: 400;
|
|
19249
19471
|
};
|
|
19250
19472
|
};
|
|
19251
19473
|
} & {
|
|
@@ -19283,7 +19505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19283
19505
|
message: string;
|
|
19284
19506
|
};
|
|
19285
19507
|
outputFormat: "json";
|
|
19286
|
-
status:
|
|
19508
|
+
status: 500;
|
|
19287
19509
|
} | {
|
|
19288
19510
|
input: {
|
|
19289
19511
|
form: {
|
|
@@ -19301,7 +19523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19301
19523
|
message: string;
|
|
19302
19524
|
};
|
|
19303
19525
|
outputFormat: "json";
|
|
19304
|
-
status:
|
|
19526
|
+
status: 400;
|
|
19305
19527
|
};
|
|
19306
19528
|
};
|
|
19307
19529
|
}, "/login/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -19339,7 +19561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19339
19561
|
message: string;
|
|
19340
19562
|
};
|
|
19341
19563
|
outputFormat: "json";
|
|
19342
|
-
status:
|
|
19564
|
+
status: 500;
|
|
19343
19565
|
} | {
|
|
19344
19566
|
input: {
|
|
19345
19567
|
query: {
|
|
@@ -19357,7 +19579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19357
19579
|
message: string;
|
|
19358
19580
|
};
|
|
19359
19581
|
outputFormat: "json";
|
|
19360
|
-
status:
|
|
19582
|
+
status: 400;
|
|
19361
19583
|
};
|
|
19362
19584
|
};
|
|
19363
19585
|
} & {
|
|
@@ -19395,7 +19617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19395
19617
|
message: string;
|
|
19396
19618
|
};
|
|
19397
19619
|
outputFormat: "json";
|
|
19398
|
-
status:
|
|
19620
|
+
status: 500;
|
|
19399
19621
|
} | {
|
|
19400
19622
|
input: {
|
|
19401
19623
|
form: {
|
|
@@ -19413,7 +19635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19413
19635
|
message: string;
|
|
19414
19636
|
};
|
|
19415
19637
|
outputFormat: "json";
|
|
19416
|
-
status:
|
|
19638
|
+
status: 400;
|
|
19417
19639
|
};
|
|
19418
19640
|
};
|
|
19419
19641
|
}, "/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -19477,7 +19699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19477
19699
|
scope?: string | undefined;
|
|
19478
19700
|
grant_types?: string[] | undefined;
|
|
19479
19701
|
response_types?: string[] | undefined;
|
|
19480
|
-
token_endpoint_auth_method?: "
|
|
19702
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19481
19703
|
jwks_uri?: string | undefined;
|
|
19482
19704
|
jwks?: Record<string, unknown> | undefined;
|
|
19483
19705
|
software_id?: string | undefined;
|
|
@@ -19566,7 +19788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19566
19788
|
scope?: string | undefined;
|
|
19567
19789
|
grant_types?: string[] | undefined;
|
|
19568
19790
|
response_types?: string[] | undefined;
|
|
19569
|
-
token_endpoint_auth_method?: "
|
|
19791
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19570
19792
|
jwks_uri?: string | undefined;
|
|
19571
19793
|
jwks?: Record<string, unknown> | undefined;
|
|
19572
19794
|
software_id?: string | undefined;
|
|
@@ -19912,15 +20134,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19912
20134
|
email: string;
|
|
19913
20135
|
send: "code" | "link";
|
|
19914
20136
|
authParams: {
|
|
19915
|
-
audience?: string | undefined;
|
|
19916
20137
|
username?: string | undefined;
|
|
19917
|
-
prompt?: string | undefined;
|
|
19918
|
-
scope?: string | undefined;
|
|
19919
|
-
organization?: string | undefined;
|
|
19920
20138
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19921
20139
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
20140
|
+
scope?: string | undefined;
|
|
20141
|
+
audience?: string | undefined;
|
|
20142
|
+
organization?: string | undefined;
|
|
19922
20143
|
state?: string | undefined;
|
|
19923
20144
|
redirect_uri?: string | undefined;
|
|
20145
|
+
prompt?: string | undefined;
|
|
19924
20146
|
act_as?: string | undefined;
|
|
19925
20147
|
nonce?: string | undefined;
|
|
19926
20148
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
@@ -19948,15 +20170,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19948
20170
|
phone_number: string;
|
|
19949
20171
|
send: "code" | "link";
|
|
19950
20172
|
authParams: {
|
|
19951
|
-
audience?: string | undefined;
|
|
19952
20173
|
username?: string | undefined;
|
|
19953
|
-
prompt?: string | undefined;
|
|
19954
|
-
scope?: string | undefined;
|
|
19955
|
-
organization?: string | undefined;
|
|
19956
20174
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19957
20175
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
20176
|
+
scope?: string | undefined;
|
|
20177
|
+
audience?: string | undefined;
|
|
20178
|
+
organization?: string | undefined;
|
|
19958
20179
|
state?: string | undefined;
|
|
19959
20180
|
redirect_uri?: string | undefined;
|
|
20181
|
+
prompt?: string | undefined;
|
|
19960
20182
|
act_as?: string | undefined;
|
|
19961
20183
|
nonce?: string | undefined;
|
|
19962
20184
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
@@ -20025,7 +20247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20025
20247
|
error_description?: string | undefined;
|
|
20026
20248
|
};
|
|
20027
20249
|
outputFormat: "json";
|
|
20028
|
-
status:
|
|
20250
|
+
status: 500;
|
|
20029
20251
|
} | {
|
|
20030
20252
|
input: {
|
|
20031
20253
|
query: {
|
|
@@ -20046,7 +20268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20046
20268
|
error_description?: string | undefined;
|
|
20047
20269
|
};
|
|
20048
20270
|
outputFormat: "json";
|
|
20049
|
-
status:
|
|
20271
|
+
status: 400;
|
|
20050
20272
|
};
|
|
20051
20273
|
};
|
|
20052
20274
|
}, "/passwordless"> & hono_types.MergeSchemaPath<{
|
|
@@ -20190,7 +20412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20190
20412
|
client_id: string;
|
|
20191
20413
|
username: string;
|
|
20192
20414
|
otp: string;
|
|
20193
|
-
realm: "
|
|
20415
|
+
realm: "email" | "sms";
|
|
20194
20416
|
scope?: string | undefined;
|
|
20195
20417
|
audience?: string | undefined;
|
|
20196
20418
|
} | {
|
|
@@ -20239,7 +20461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20239
20461
|
client_id: string;
|
|
20240
20462
|
username: string;
|
|
20241
20463
|
otp: string;
|
|
20242
|
-
realm: "
|
|
20464
|
+
realm: "email" | "sms";
|
|
20243
20465
|
scope?: string | undefined;
|
|
20244
20466
|
audience?: string | undefined;
|
|
20245
20467
|
} | {
|
|
@@ -20293,7 +20515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20293
20515
|
client_id: string;
|
|
20294
20516
|
username: string;
|
|
20295
20517
|
otp: string;
|
|
20296
|
-
realm: "
|
|
20518
|
+
realm: "email" | "sms";
|
|
20297
20519
|
scope?: string | undefined;
|
|
20298
20520
|
audience?: string | undefined;
|
|
20299
20521
|
} | {
|
|
@@ -20342,7 +20564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20342
20564
|
client_id: string;
|
|
20343
20565
|
username: string;
|
|
20344
20566
|
otp: string;
|
|
20345
|
-
realm: "
|
|
20567
|
+
realm: "email" | "sms";
|
|
20346
20568
|
scope?: string | undefined;
|
|
20347
20569
|
audience?: string | undefined;
|
|
20348
20570
|
} | {
|
|
@@ -20404,7 +20626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20404
20626
|
client_id: string;
|
|
20405
20627
|
username: string;
|
|
20406
20628
|
otp: string;
|
|
20407
|
-
realm: "
|
|
20629
|
+
realm: "email" | "sms";
|
|
20408
20630
|
scope?: string | undefined;
|
|
20409
20631
|
audience?: string | undefined;
|
|
20410
20632
|
} | {
|
|
@@ -20453,7 +20675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20453
20675
|
client_id: string;
|
|
20454
20676
|
username: string;
|
|
20455
20677
|
otp: string;
|
|
20456
|
-
realm: "
|
|
20678
|
+
realm: "email" | "sms";
|
|
20457
20679
|
scope?: string | undefined;
|
|
20458
20680
|
audience?: string | undefined;
|
|
20459
20681
|
} | {
|
|
@@ -20510,7 +20732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20510
20732
|
client_id: string;
|
|
20511
20733
|
username: string;
|
|
20512
20734
|
otp: string;
|
|
20513
|
-
realm: "
|
|
20735
|
+
realm: "email" | "sms";
|
|
20514
20736
|
scope?: string | undefined;
|
|
20515
20737
|
audience?: string | undefined;
|
|
20516
20738
|
} | {
|
|
@@ -20559,7 +20781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20559
20781
|
client_id: string;
|
|
20560
20782
|
username: string;
|
|
20561
20783
|
otp: string;
|
|
20562
|
-
realm: "
|
|
20784
|
+
realm: "email" | "sms";
|
|
20563
20785
|
scope?: string | undefined;
|
|
20564
20786
|
audience?: string | undefined;
|
|
20565
20787
|
} | {
|
|
@@ -20616,7 +20838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20616
20838
|
client_id: string;
|
|
20617
20839
|
username: string;
|
|
20618
20840
|
otp: string;
|
|
20619
|
-
realm: "
|
|
20841
|
+
realm: "email" | "sms";
|
|
20620
20842
|
scope?: string | undefined;
|
|
20621
20843
|
audience?: string | undefined;
|
|
20622
20844
|
} | {
|
|
@@ -20665,7 +20887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20665
20887
|
client_id: string;
|
|
20666
20888
|
username: string;
|
|
20667
20889
|
otp: string;
|
|
20668
|
-
realm: "
|
|
20890
|
+
realm: "email" | "sms";
|
|
20669
20891
|
scope?: string | undefined;
|
|
20670
20892
|
audience?: string | undefined;
|
|
20671
20893
|
} | {
|
|
@@ -21024,7 +21246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21024
21246
|
};
|
|
21025
21247
|
output: {};
|
|
21026
21248
|
outputFormat: string;
|
|
21027
|
-
status:
|
|
21249
|
+
status: 500;
|
|
21028
21250
|
} | {
|
|
21029
21251
|
input: {
|
|
21030
21252
|
query: {
|
|
@@ -21033,7 +21255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21033
21255
|
};
|
|
21034
21256
|
output: {};
|
|
21035
21257
|
outputFormat: string;
|
|
21036
|
-
status:
|
|
21258
|
+
status: 302;
|
|
21037
21259
|
} | {
|
|
21038
21260
|
input: {
|
|
21039
21261
|
query: {
|
|
@@ -21042,7 +21264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21042
21264
|
};
|
|
21043
21265
|
output: {};
|
|
21044
21266
|
outputFormat: string;
|
|
21045
|
-
status:
|
|
21267
|
+
status: 400;
|
|
21046
21268
|
};
|
|
21047
21269
|
};
|
|
21048
21270
|
}, "/continue"> & hono_types.MergeSchemaPath<{
|
|
@@ -21512,7 +21734,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21512
21734
|
} & {
|
|
21513
21735
|
form: {
|
|
21514
21736
|
username: string;
|
|
21515
|
-
login_selection?: "
|
|
21737
|
+
login_selection?: "password" | "code" | undefined;
|
|
21516
21738
|
};
|
|
21517
21739
|
};
|
|
21518
21740
|
output: {};
|
|
@@ -21526,7 +21748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21526
21748
|
} & {
|
|
21527
21749
|
form: {
|
|
21528
21750
|
username: string;
|
|
21529
|
-
login_selection?: "
|
|
21751
|
+
login_selection?: "password" | "code" | undefined;
|
|
21530
21752
|
};
|
|
21531
21753
|
};
|
|
21532
21754
|
output: {};
|
|
@@ -21891,7 +22113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21891
22113
|
$get: {
|
|
21892
22114
|
input: {
|
|
21893
22115
|
param: {
|
|
21894
|
-
screen: "login" | "
|
|
22116
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21895
22117
|
};
|
|
21896
22118
|
} & {
|
|
21897
22119
|
query: {
|
|
@@ -21907,7 +22129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21907
22129
|
} | {
|
|
21908
22130
|
input: {
|
|
21909
22131
|
param: {
|
|
21910
|
-
screen: "login" | "
|
|
22132
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21911
22133
|
};
|
|
21912
22134
|
} & {
|
|
21913
22135
|
query: {
|
|
@@ -21923,7 +22145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21923
22145
|
} | {
|
|
21924
22146
|
input: {
|
|
21925
22147
|
param: {
|
|
21926
|
-
screen: "login" | "
|
|
22148
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21927
22149
|
};
|
|
21928
22150
|
} & {
|
|
21929
22151
|
query: {
|
|
@@ -21943,7 +22165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21943
22165
|
$post: {
|
|
21944
22166
|
input: {
|
|
21945
22167
|
param: {
|
|
21946
|
-
screen: "login" | "
|
|
22168
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21947
22169
|
};
|
|
21948
22170
|
} & {
|
|
21949
22171
|
query: {
|
|
@@ -21961,7 +22183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21961
22183
|
} | {
|
|
21962
22184
|
input: {
|
|
21963
22185
|
param: {
|
|
21964
|
-
screen: "login" | "
|
|
22186
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21965
22187
|
};
|
|
21966
22188
|
} & {
|
|
21967
22189
|
query: {
|
|
@@ -22063,5 +22285,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
22063
22285
|
createX509Certificate: typeof createX509Certificate;
|
|
22064
22286
|
};
|
|
22065
22287
|
|
|
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 };
|
|
22288
|
+
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 };
|
|
22289
|
+
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 };
|