authhero 9.1.0 → 9.2.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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +1 -0
- package/dist/authhero.cjs +211 -211
- package/dist/authhero.d.ts +168 -97
- package/dist/authhero.mjs +25619 -25625
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +6 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +4 -1
- package/dist/types/helpers/service-token.d.ts +16 -5
- package/dist/types/hooks/post-user-login.d.ts +6 -0
- package/dist/types/index.d.ts +123 -93
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +28 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +90 -62
- 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/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +6 -6
- package/dist/assets/u/widget/p-eca60302.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_utils_types from 'hono/utils/types';
|
|
2
2
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
|
-
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, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
3
|
+
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, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
4
|
export * from '@authhero/adapter-interfaces';
|
|
5
5
|
import * as hono_types from 'hono/types';
|
|
6
6
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
@@ -2745,6 +2745,40 @@ interface CodesCleanupParams {
|
|
|
2745
2745
|
*/
|
|
2746
2746
|
declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams): Promise<number>;
|
|
2747
2747
|
|
|
2748
|
+
interface ActionExecutionsCleanupParams {
|
|
2749
|
+
/**
|
|
2750
|
+
* Days of execution history to keep. Defaults to 30.
|
|
2751
|
+
*
|
|
2752
|
+
* Unlike `codes`, these rows have no expiry — they are diagnostic history,
|
|
2753
|
+
* referenced from logs when debugging an action. The window is a genuine
|
|
2754
|
+
* retention policy: long enough to investigate a report that arrives late,
|
|
2755
|
+
* short enough that the table stops growing without bound.
|
|
2756
|
+
*/
|
|
2757
|
+
retentionDays?: number;
|
|
2758
|
+
}
|
|
2759
|
+
/**
|
|
2760
|
+
* Delete action executions created more than the retention window ago.
|
|
2761
|
+
*
|
|
2762
|
+
* Prefer `runRetention`, which calls this along with every other prunable
|
|
2763
|
+
* table — scheduling one call means a future prunable table is covered
|
|
2764
|
+
* without editing your handler. Use this directly only when you want to sweep
|
|
2765
|
+
* `action_executions` on its own schedule.
|
|
2766
|
+
*
|
|
2767
|
+
* Returns `null` when the adapter does not support cleanup (backends like
|
|
2768
|
+
* DynamoDB TTL or Analytics Engine expire rows themselves).
|
|
2769
|
+
*
|
|
2770
|
+
* @example
|
|
2771
|
+
* ```ts
|
|
2772
|
+
* // Cloudflare Workers scheduled handler
|
|
2773
|
+
* async scheduled(_event, env) {
|
|
2774
|
+
* await cleanupActionExecutions(dataAdapter.actionExecutions, {
|
|
2775
|
+
* retentionDays: 30,
|
|
2776
|
+
* });
|
|
2777
|
+
* }
|
|
2778
|
+
* ```
|
|
2779
|
+
*/
|
|
2780
|
+
declare function cleanupActionExecutions(actionExecutions: ActionExecutionsAdapter, params?: ActionExecutionsCleanupParams): Promise<number | null>;
|
|
2781
|
+
|
|
2748
2782
|
/**
|
|
2749
2783
|
* Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
|
|
2750
2784
|
* `webhookInvoker` can request a non-default scope for its outbound call.
|
|
@@ -3008,6 +3042,8 @@ interface RunRetentionConfig {
|
|
|
3008
3042
|
codesRetentionDays?: number;
|
|
3009
3043
|
/** Days to keep processed/dead-lettered outbox events. Default 7. */
|
|
3010
3044
|
outboxRetentionDays?: number;
|
|
3045
|
+
/** Days of action execution history to keep. Default 30. */
|
|
3046
|
+
actionExecutionsRetentionDays?: number;
|
|
3011
3047
|
/**
|
|
3012
3048
|
* Scope the session sweep to a single tenant. Codes and outbox events are
|
|
3013
3049
|
* always swept globally — an expired row is dead regardless of who owns it.
|
|
@@ -3061,7 +3097,8 @@ declare class RetentionSweepError extends Error {
|
|
|
3061
3097
|
* without editing its handler.
|
|
3062
3098
|
*
|
|
3063
3099
|
* Covers `codes`, `outbox_events`, and (where the adapter supports it)
|
|
3064
|
-
* `sessions` / `refresh_tokens` / `login_sessions`.
|
|
3100
|
+
* `action_executions` and `sessions` / `refresh_tokens` / `login_sessions`.
|
|
3101
|
+
* It does **not** drain the
|
|
3065
3102
|
* outbox: delivery is `runOutboxRelay`'s job, and the two are scheduled
|
|
3066
3103
|
* independently. Running both is safe — the relay's own cleanup pass and this
|
|
3067
3104
|
* one are idempotent.
|
|
@@ -3423,6 +3460,12 @@ interface CreateServiceTokenCoreParams {
|
|
|
3423
3460
|
tenantId: string;
|
|
3424
3461
|
scope: string;
|
|
3425
3462
|
issuer: string;
|
|
3463
|
+
/**
|
|
3464
|
+
* Explicit audience override. When unset the tenant's `audience` is
|
|
3465
|
+
* required — callers that want a fallback chain (e.g. `default_audience`)
|
|
3466
|
+
* resolve it themselves and pass the result here.
|
|
3467
|
+
*/
|
|
3468
|
+
audience?: string;
|
|
3426
3469
|
expiresInSeconds?: number;
|
|
3427
3470
|
customClaims?: Record<string, unknown>;
|
|
3428
3471
|
/**
|
|
@@ -4306,7 +4349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4306
4349
|
};
|
|
4307
4350
|
} & {
|
|
4308
4351
|
json: {
|
|
4309
|
-
type: "email" | "
|
|
4352
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4310
4353
|
phone_number?: string | undefined;
|
|
4311
4354
|
totp_secret?: string | undefined;
|
|
4312
4355
|
credential_id?: string | undefined;
|
|
@@ -4446,7 +4489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4446
4489
|
};
|
|
4447
4490
|
};
|
|
4448
4491
|
output: {
|
|
4449
|
-
name: "
|
|
4492
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4450
4493
|
enabled: boolean;
|
|
4451
4494
|
trial_expired?: boolean | undefined;
|
|
4452
4495
|
}[];
|
|
@@ -4601,7 +4644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4601
4644
|
$get: {
|
|
4602
4645
|
input: {
|
|
4603
4646
|
param: {
|
|
4604
|
-
factor_name: "
|
|
4647
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4605
4648
|
};
|
|
4606
4649
|
} & {
|
|
4607
4650
|
header: {
|
|
@@ -4609,7 +4652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4609
4652
|
};
|
|
4610
4653
|
};
|
|
4611
4654
|
output: {
|
|
4612
|
-
name: "
|
|
4655
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4613
4656
|
enabled: boolean;
|
|
4614
4657
|
trial_expired?: boolean | undefined;
|
|
4615
4658
|
};
|
|
@@ -4622,7 +4665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4622
4665
|
$put: {
|
|
4623
4666
|
input: {
|
|
4624
4667
|
param: {
|
|
4625
|
-
factor_name: "
|
|
4668
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4626
4669
|
};
|
|
4627
4670
|
} & {
|
|
4628
4671
|
header: {
|
|
@@ -4634,7 +4677,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4634
4677
|
};
|
|
4635
4678
|
};
|
|
4636
4679
|
output: {
|
|
4637
|
-
name: "
|
|
4680
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4638
4681
|
enabled: boolean;
|
|
4639
4682
|
trial_expired?: boolean | undefined;
|
|
4640
4683
|
};
|
|
@@ -5412,10 +5455,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5412
5455
|
inviter: {
|
|
5413
5456
|
name?: string | undefined;
|
|
5414
5457
|
};
|
|
5415
|
-
connection_id?: string | undefined;
|
|
5416
5458
|
id?: string | undefined;
|
|
5417
5459
|
app_metadata?: Record<string, any> | undefined;
|
|
5418
5460
|
user_metadata?: Record<string, any> | undefined;
|
|
5461
|
+
connection_id?: string | undefined;
|
|
5419
5462
|
roles?: string[] | undefined;
|
|
5420
5463
|
send_invitation_email?: boolean | undefined;
|
|
5421
5464
|
ttl_sec?: number | undefined;
|
|
@@ -7086,6 +7129,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7086
7129
|
config?: {
|
|
7087
7130
|
placeholder?: string | undefined;
|
|
7088
7131
|
default_value?: string | undefined;
|
|
7132
|
+
last_used?: boolean | undefined;
|
|
7133
|
+
last_used_label?: string | undefined;
|
|
7089
7134
|
} | undefined;
|
|
7090
7135
|
} | {
|
|
7091
7136
|
id: string;
|
|
@@ -7257,6 +7302,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7257
7302
|
multiline?: boolean | undefined;
|
|
7258
7303
|
max_length?: number | undefined;
|
|
7259
7304
|
default_value?: string | undefined;
|
|
7305
|
+
last_used?: boolean | undefined;
|
|
7306
|
+
last_used_label?: string | undefined;
|
|
7260
7307
|
} | undefined;
|
|
7261
7308
|
} | {
|
|
7262
7309
|
id: string;
|
|
@@ -7689,6 +7736,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7689
7736
|
config?: {
|
|
7690
7737
|
placeholder?: string | undefined;
|
|
7691
7738
|
default_value?: string | undefined;
|
|
7739
|
+
last_used?: boolean | undefined;
|
|
7740
|
+
last_used_label?: string | undefined;
|
|
7692
7741
|
} | undefined;
|
|
7693
7742
|
} | {
|
|
7694
7743
|
id: string;
|
|
@@ -7860,6 +7909,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7860
7909
|
multiline?: boolean | undefined;
|
|
7861
7910
|
max_length?: number | undefined;
|
|
7862
7911
|
default_value?: string | undefined;
|
|
7912
|
+
last_used?: boolean | undefined;
|
|
7913
|
+
last_used_label?: string | undefined;
|
|
7863
7914
|
} | undefined;
|
|
7864
7915
|
} | {
|
|
7865
7916
|
id: string;
|
|
@@ -8308,6 +8359,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8308
8359
|
config?: {
|
|
8309
8360
|
placeholder?: string | undefined;
|
|
8310
8361
|
default_value?: string | undefined;
|
|
8362
|
+
last_used?: boolean | undefined;
|
|
8363
|
+
last_used_label?: string | undefined;
|
|
8311
8364
|
} | undefined;
|
|
8312
8365
|
} | {
|
|
8313
8366
|
id: string;
|
|
@@ -8479,6 +8532,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8479
8532
|
multiline?: boolean | undefined;
|
|
8480
8533
|
max_length?: number | undefined;
|
|
8481
8534
|
default_value?: string | undefined;
|
|
8535
|
+
last_used?: boolean | undefined;
|
|
8536
|
+
last_used_label?: string | undefined;
|
|
8482
8537
|
} | undefined;
|
|
8483
8538
|
} | {
|
|
8484
8539
|
id: string;
|
|
@@ -8928,6 +8983,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8928
8983
|
config?: {
|
|
8929
8984
|
placeholder?: string | undefined;
|
|
8930
8985
|
default_value?: string | undefined;
|
|
8986
|
+
last_used?: boolean | undefined;
|
|
8987
|
+
last_used_label?: string | undefined;
|
|
8931
8988
|
} | undefined;
|
|
8932
8989
|
} | {
|
|
8933
8990
|
id: string;
|
|
@@ -9099,6 +9156,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9099
9156
|
multiline?: boolean | undefined;
|
|
9100
9157
|
max_length?: number | undefined;
|
|
9101
9158
|
default_value?: string | undefined;
|
|
9159
|
+
last_used?: boolean | undefined;
|
|
9160
|
+
last_used_label?: string | undefined;
|
|
9102
9161
|
} | undefined;
|
|
9103
9162
|
} | {
|
|
9104
9163
|
id: string;
|
|
@@ -9529,6 +9588,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9529
9588
|
config?: {
|
|
9530
9589
|
placeholder?: string | undefined;
|
|
9531
9590
|
default_value?: string | undefined;
|
|
9591
|
+
last_used?: boolean | undefined;
|
|
9592
|
+
last_used_label?: string | undefined;
|
|
9532
9593
|
} | undefined;
|
|
9533
9594
|
} | {
|
|
9534
9595
|
id: string;
|
|
@@ -9700,6 +9761,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9700
9761
|
multiline?: boolean | undefined;
|
|
9701
9762
|
max_length?: number | undefined;
|
|
9702
9763
|
default_value?: string | undefined;
|
|
9764
|
+
last_used?: boolean | undefined;
|
|
9765
|
+
last_used_label?: string | undefined;
|
|
9703
9766
|
} | undefined;
|
|
9704
9767
|
} | {
|
|
9705
9768
|
id: string;
|
|
@@ -10128,6 +10191,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10128
10191
|
config?: {
|
|
10129
10192
|
placeholder?: string | undefined;
|
|
10130
10193
|
default_value?: string | undefined;
|
|
10194
|
+
last_used?: boolean | undefined;
|
|
10195
|
+
last_used_label?: string | undefined;
|
|
10131
10196
|
} | undefined;
|
|
10132
10197
|
} | {
|
|
10133
10198
|
id: string;
|
|
@@ -10299,6 +10364,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10299
10364
|
multiline?: boolean | undefined;
|
|
10300
10365
|
max_length?: number | undefined;
|
|
10301
10366
|
default_value?: string | undefined;
|
|
10367
|
+
last_used?: boolean | undefined;
|
|
10368
|
+
last_used_label?: string | undefined;
|
|
10302
10369
|
} | undefined;
|
|
10303
10370
|
} | {
|
|
10304
10371
|
id: string;
|
|
@@ -10729,6 +10796,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10729
10796
|
config?: {
|
|
10730
10797
|
placeholder?: string | undefined;
|
|
10731
10798
|
default_value?: string | undefined;
|
|
10799
|
+
last_used?: boolean | undefined;
|
|
10800
|
+
last_used_label?: string | undefined;
|
|
10732
10801
|
} | undefined;
|
|
10733
10802
|
} | {
|
|
10734
10803
|
id: string;
|
|
@@ -10900,6 +10969,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10900
10969
|
multiline?: boolean | undefined;
|
|
10901
10970
|
max_length?: number | undefined;
|
|
10902
10971
|
default_value?: string | undefined;
|
|
10972
|
+
last_used?: boolean | undefined;
|
|
10973
|
+
last_used_label?: string | undefined;
|
|
10903
10974
|
} | undefined;
|
|
10904
10975
|
} | {
|
|
10905
10976
|
id: string;
|
|
@@ -11143,7 +11214,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11143
11214
|
};
|
|
11144
11215
|
};
|
|
11145
11216
|
output: {
|
|
11146
|
-
prompt: "
|
|
11217
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11147
11218
|
language: string;
|
|
11148
11219
|
}[];
|
|
11149
11220
|
outputFormat: "json";
|
|
@@ -11181,7 +11252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11181
11252
|
$get: {
|
|
11182
11253
|
input: {
|
|
11183
11254
|
param: {
|
|
11184
|
-
prompt: "
|
|
11255
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11185
11256
|
language: string;
|
|
11186
11257
|
};
|
|
11187
11258
|
} & {
|
|
@@ -11203,7 +11274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11203
11274
|
$put: {
|
|
11204
11275
|
input: {
|
|
11205
11276
|
param: {
|
|
11206
|
-
prompt: "
|
|
11277
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11207
11278
|
language: string;
|
|
11208
11279
|
};
|
|
11209
11280
|
} & {
|
|
@@ -11227,7 +11298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11227
11298
|
$delete: {
|
|
11228
11299
|
input: {
|
|
11229
11300
|
param: {
|
|
11230
|
-
prompt: "
|
|
11301
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
11231
11302
|
language: string;
|
|
11232
11303
|
};
|
|
11233
11304
|
} & {
|
|
@@ -12730,7 +12801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12730
12801
|
log_type: string;
|
|
12731
12802
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12732
12803
|
actor: {
|
|
12733
|
-
type: "
|
|
12804
|
+
type: "api_key" | "user" | "client_credentials" | "system" | "admin";
|
|
12734
12805
|
id?: string | undefined;
|
|
12735
12806
|
email?: string | undefined;
|
|
12736
12807
|
org_id?: string | undefined;
|
|
@@ -13381,7 +13452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13381
13452
|
};
|
|
13382
13453
|
};
|
|
13383
13454
|
output: {
|
|
13384
|
-
type: "
|
|
13455
|
+
type: "fn" | "sapi" | "i" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13385
13456
|
date: string;
|
|
13386
13457
|
isMobile: boolean;
|
|
13387
13458
|
log_id: string;
|
|
@@ -13420,7 +13491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13420
13491
|
limit: number;
|
|
13421
13492
|
length: number;
|
|
13422
13493
|
logs: {
|
|
13423
|
-
type: "
|
|
13494
|
+
type: "fn" | "sapi" | "i" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13424
13495
|
date: string;
|
|
13425
13496
|
isMobile: boolean;
|
|
13426
13497
|
log_id: string;
|
|
@@ -13459,7 +13530,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13459
13530
|
next?: string | undefined;
|
|
13460
13531
|
} | {
|
|
13461
13532
|
logs: {
|
|
13462
|
-
type: "
|
|
13533
|
+
type: "fn" | "sapi" | "i" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13463
13534
|
date: string;
|
|
13464
13535
|
isMobile: boolean;
|
|
13465
13536
|
log_id: string;
|
|
@@ -13513,7 +13584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13513
13584
|
};
|
|
13514
13585
|
};
|
|
13515
13586
|
output: {
|
|
13516
|
-
type: "
|
|
13587
|
+
type: "fn" | "sapi" | "i" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13517
13588
|
date: string;
|
|
13518
13589
|
isMobile: boolean;
|
|
13519
13590
|
log_id: string;
|
|
@@ -13669,7 +13740,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13669
13740
|
audience?: string | undefined;
|
|
13670
13741
|
client_id?: string | undefined;
|
|
13671
13742
|
allow_any_organization?: string | undefined;
|
|
13672
|
-
subject_type?: "
|
|
13743
|
+
subject_type?: "client" | "user" | undefined;
|
|
13673
13744
|
};
|
|
13674
13745
|
} & {
|
|
13675
13746
|
header: {
|
|
@@ -13684,7 +13755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13684
13755
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13685
13756
|
allow_any_organization?: boolean | undefined;
|
|
13686
13757
|
is_system?: boolean | undefined;
|
|
13687
|
-
subject_type?: "
|
|
13758
|
+
subject_type?: "client" | "user" | undefined;
|
|
13688
13759
|
authorization_details_types?: string[] | undefined;
|
|
13689
13760
|
created_at?: string | undefined;
|
|
13690
13761
|
updated_at?: string | undefined;
|
|
@@ -13700,7 +13771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13700
13771
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13701
13772
|
allow_any_organization?: boolean | undefined;
|
|
13702
13773
|
is_system?: boolean | undefined;
|
|
13703
|
-
subject_type?: "
|
|
13774
|
+
subject_type?: "client" | "user" | undefined;
|
|
13704
13775
|
authorization_details_types?: string[] | undefined;
|
|
13705
13776
|
created_at?: string | undefined;
|
|
13706
13777
|
updated_at?: string | undefined;
|
|
@@ -13716,7 +13787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13716
13787
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13717
13788
|
allow_any_organization?: boolean | undefined;
|
|
13718
13789
|
is_system?: boolean | undefined;
|
|
13719
|
-
subject_type?: "
|
|
13790
|
+
subject_type?: "client" | "user" | undefined;
|
|
13720
13791
|
authorization_details_types?: string[] | undefined;
|
|
13721
13792
|
created_at?: string | undefined;
|
|
13722
13793
|
updated_at?: string | undefined;
|
|
@@ -13747,7 +13818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13747
13818
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13748
13819
|
allow_any_organization?: boolean | undefined;
|
|
13749
13820
|
is_system?: boolean | undefined;
|
|
13750
|
-
subject_type?: "
|
|
13821
|
+
subject_type?: "client" | "user" | undefined;
|
|
13751
13822
|
authorization_details_types?: string[] | undefined;
|
|
13752
13823
|
created_at?: string | undefined;
|
|
13753
13824
|
updated_at?: string | undefined;
|
|
@@ -13792,7 +13863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13792
13863
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13793
13864
|
allow_any_organization?: boolean | undefined;
|
|
13794
13865
|
is_system?: boolean | undefined;
|
|
13795
|
-
subject_type?: "
|
|
13866
|
+
subject_type?: "client" | "user" | undefined;
|
|
13796
13867
|
authorization_details_types?: string[] | undefined;
|
|
13797
13868
|
};
|
|
13798
13869
|
};
|
|
@@ -13804,7 +13875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13804
13875
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13805
13876
|
allow_any_organization?: boolean | undefined;
|
|
13806
13877
|
is_system?: boolean | undefined;
|
|
13807
|
-
subject_type?: "
|
|
13878
|
+
subject_type?: "client" | "user" | undefined;
|
|
13808
13879
|
authorization_details_types?: string[] | undefined;
|
|
13809
13880
|
created_at?: string | undefined;
|
|
13810
13881
|
updated_at?: string | undefined;
|
|
@@ -13828,7 +13899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13828
13899
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13829
13900
|
allow_any_organization?: boolean | undefined;
|
|
13830
13901
|
is_system?: boolean | undefined;
|
|
13831
|
-
subject_type?: "
|
|
13902
|
+
subject_type?: "client" | "user" | undefined;
|
|
13832
13903
|
authorization_details_types?: string[] | undefined;
|
|
13833
13904
|
};
|
|
13834
13905
|
};
|
|
@@ -13840,7 +13911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13840
13911
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13841
13912
|
allow_any_organization?: boolean | undefined;
|
|
13842
13913
|
is_system?: boolean | undefined;
|
|
13843
|
-
subject_type?: "
|
|
13914
|
+
subject_type?: "client" | "user" | undefined;
|
|
13844
13915
|
authorization_details_types?: string[] | undefined;
|
|
13845
13916
|
created_at?: string | undefined;
|
|
13846
13917
|
updated_at?: string | undefined;
|
|
@@ -13924,7 +13995,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13924
13995
|
addons?: {
|
|
13925
13996
|
[x: string]: any;
|
|
13926
13997
|
} | undefined;
|
|
13927
|
-
token_endpoint_auth_method?: "
|
|
13998
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13928
13999
|
client_metadata?: {
|
|
13929
14000
|
[x: string]: string;
|
|
13930
14001
|
} | undefined;
|
|
@@ -14026,7 +14097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14026
14097
|
addons?: {
|
|
14027
14098
|
[x: string]: any;
|
|
14028
14099
|
} | undefined;
|
|
14029
|
-
token_endpoint_auth_method?: "
|
|
14100
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14030
14101
|
client_metadata?: {
|
|
14031
14102
|
[x: string]: string;
|
|
14032
14103
|
} | undefined;
|
|
@@ -14128,7 +14199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14128
14199
|
addons?: {
|
|
14129
14200
|
[x: string]: any;
|
|
14130
14201
|
} | undefined;
|
|
14131
|
-
token_endpoint_auth_method?: "
|
|
14202
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14132
14203
|
client_metadata?: {
|
|
14133
14204
|
[x: string]: string;
|
|
14134
14205
|
} | undefined;
|
|
@@ -14245,7 +14316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14245
14316
|
addons?: {
|
|
14246
14317
|
[x: string]: any;
|
|
14247
14318
|
} | undefined;
|
|
14248
|
-
token_endpoint_auth_method?: "
|
|
14319
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14249
14320
|
client_metadata?: {
|
|
14250
14321
|
[x: string]: string;
|
|
14251
14322
|
} | undefined;
|
|
@@ -14363,7 +14434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14363
14434
|
custom_login_page_preview?: string | undefined;
|
|
14364
14435
|
form_template?: string | undefined;
|
|
14365
14436
|
addons?: Record<string, any> | undefined;
|
|
14366
|
-
token_endpoint_auth_method?: "
|
|
14437
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14367
14438
|
client_metadata?: Record<string, string> | undefined;
|
|
14368
14439
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14369
14440
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14449,7 +14520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14449
14520
|
addons?: {
|
|
14450
14521
|
[x: string]: any;
|
|
14451
14522
|
} | undefined;
|
|
14452
|
-
token_endpoint_auth_method?: "
|
|
14523
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14453
14524
|
client_metadata?: {
|
|
14454
14525
|
[x: string]: string;
|
|
14455
14526
|
} | undefined;
|
|
@@ -14546,7 +14617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14546
14617
|
custom_login_page_preview?: string | undefined;
|
|
14547
14618
|
form_template?: string | undefined;
|
|
14548
14619
|
addons?: Record<string, any> | undefined;
|
|
14549
|
-
token_endpoint_auth_method?: "
|
|
14620
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14550
14621
|
client_metadata?: Record<string, string> | undefined;
|
|
14551
14622
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14552
14623
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14632,7 +14703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14632
14703
|
addons?: {
|
|
14633
14704
|
[x: string]: any;
|
|
14634
14705
|
} | undefined;
|
|
14635
|
-
token_endpoint_auth_method?: "
|
|
14706
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14636
14707
|
client_metadata?: {
|
|
14637
14708
|
[x: string]: string;
|
|
14638
14709
|
} | undefined;
|
|
@@ -15977,7 +16048,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15977
16048
|
};
|
|
15978
16049
|
};
|
|
15979
16050
|
output: {
|
|
15980
|
-
type: "
|
|
16051
|
+
type: "fn" | "sapi" | "i" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15981
16052
|
date: string;
|
|
15982
16053
|
isMobile: boolean;
|
|
15983
16054
|
log_id: string;
|
|
@@ -16016,7 +16087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16016
16087
|
limit: number;
|
|
16017
16088
|
length: number;
|
|
16018
16089
|
logs: {
|
|
16019
|
-
type: "
|
|
16090
|
+
type: "fn" | "sapi" | "i" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16020
16091
|
date: string;
|
|
16021
16092
|
isMobile: boolean;
|
|
16022
16093
|
log_id: string;
|
|
@@ -16335,7 +16406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16335
16406
|
};
|
|
16336
16407
|
} & {
|
|
16337
16408
|
json: {
|
|
16338
|
-
template: "
|
|
16409
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16339
16410
|
body: string;
|
|
16340
16411
|
from: string;
|
|
16341
16412
|
subject: string;
|
|
@@ -16356,7 +16427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16356
16427
|
};
|
|
16357
16428
|
} & {
|
|
16358
16429
|
json: {
|
|
16359
|
-
template: "
|
|
16430
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16360
16431
|
body: string;
|
|
16361
16432
|
from: string;
|
|
16362
16433
|
subject: string;
|
|
@@ -16368,7 +16439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16368
16439
|
};
|
|
16369
16440
|
};
|
|
16370
16441
|
output: {
|
|
16371
|
-
template: "
|
|
16442
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16372
16443
|
body: string;
|
|
16373
16444
|
from: string;
|
|
16374
16445
|
subject: string;
|
|
@@ -16391,7 +16462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16391
16462
|
};
|
|
16392
16463
|
};
|
|
16393
16464
|
output: {
|
|
16394
|
-
name: "
|
|
16465
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16395
16466
|
body: string;
|
|
16396
16467
|
subject: string;
|
|
16397
16468
|
}[];
|
|
@@ -16404,7 +16475,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16404
16475
|
$get: {
|
|
16405
16476
|
input: {
|
|
16406
16477
|
param: {
|
|
16407
|
-
templateName: "
|
|
16478
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16408
16479
|
};
|
|
16409
16480
|
} & {
|
|
16410
16481
|
header: {
|
|
@@ -16417,7 +16488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16417
16488
|
} | {
|
|
16418
16489
|
input: {
|
|
16419
16490
|
param: {
|
|
16420
|
-
templateName: "
|
|
16491
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16421
16492
|
};
|
|
16422
16493
|
} & {
|
|
16423
16494
|
header: {
|
|
@@ -16425,7 +16496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16425
16496
|
};
|
|
16426
16497
|
};
|
|
16427
16498
|
output: {
|
|
16428
|
-
template: "
|
|
16499
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16429
16500
|
body: string;
|
|
16430
16501
|
from: string;
|
|
16431
16502
|
subject: string;
|
|
@@ -16444,7 +16515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16444
16515
|
$put: {
|
|
16445
16516
|
input: {
|
|
16446
16517
|
param: {
|
|
16447
|
-
templateName: "
|
|
16518
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16448
16519
|
};
|
|
16449
16520
|
} & {
|
|
16450
16521
|
header: {
|
|
@@ -16452,7 +16523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16452
16523
|
};
|
|
16453
16524
|
} & {
|
|
16454
16525
|
json: {
|
|
16455
|
-
template: "
|
|
16526
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16456
16527
|
body: string;
|
|
16457
16528
|
subject: string;
|
|
16458
16529
|
syntax?: "liquid" | undefined;
|
|
@@ -16464,7 +16535,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16464
16535
|
};
|
|
16465
16536
|
};
|
|
16466
16537
|
output: {
|
|
16467
|
-
template: "
|
|
16538
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16468
16539
|
body: string;
|
|
16469
16540
|
from: string;
|
|
16470
16541
|
subject: string;
|
|
@@ -16483,7 +16554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16483
16554
|
$patch: {
|
|
16484
16555
|
input: {
|
|
16485
16556
|
param: {
|
|
16486
|
-
templateName: "
|
|
16557
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16487
16558
|
};
|
|
16488
16559
|
} & {
|
|
16489
16560
|
header: {
|
|
@@ -16491,7 +16562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16491
16562
|
};
|
|
16492
16563
|
} & {
|
|
16493
16564
|
json: {
|
|
16494
|
-
template?: "
|
|
16565
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16495
16566
|
body?: string | undefined;
|
|
16496
16567
|
from?: string | undefined;
|
|
16497
16568
|
subject?: string | undefined;
|
|
@@ -16508,7 +16579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16508
16579
|
} | {
|
|
16509
16580
|
input: {
|
|
16510
16581
|
param: {
|
|
16511
|
-
templateName: "
|
|
16582
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16512
16583
|
};
|
|
16513
16584
|
} & {
|
|
16514
16585
|
header: {
|
|
@@ -16516,7 +16587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16516
16587
|
};
|
|
16517
16588
|
} & {
|
|
16518
16589
|
json: {
|
|
16519
|
-
template?: "
|
|
16590
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16520
16591
|
body?: string | undefined;
|
|
16521
16592
|
from?: string | undefined;
|
|
16522
16593
|
subject?: string | undefined;
|
|
@@ -16528,7 +16599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16528
16599
|
};
|
|
16529
16600
|
};
|
|
16530
16601
|
output: {
|
|
16531
|
-
template: "
|
|
16602
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16532
16603
|
body: string;
|
|
16533
16604
|
from: string;
|
|
16534
16605
|
subject: string;
|
|
@@ -16547,7 +16618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16547
16618
|
$delete: {
|
|
16548
16619
|
input: {
|
|
16549
16620
|
param: {
|
|
16550
|
-
templateName: "
|
|
16621
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16551
16622
|
};
|
|
16552
16623
|
} & {
|
|
16553
16624
|
header: {
|
|
@@ -16560,7 +16631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16560
16631
|
} | {
|
|
16561
16632
|
input: {
|
|
16562
16633
|
param: {
|
|
16563
|
-
templateName: "
|
|
16634
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16564
16635
|
};
|
|
16565
16636
|
} & {
|
|
16566
16637
|
header: {
|
|
@@ -16577,7 +16648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16577
16648
|
$post: {
|
|
16578
16649
|
input: {
|
|
16579
16650
|
param: {
|
|
16580
|
-
templateName: "
|
|
16651
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16581
16652
|
};
|
|
16582
16653
|
} & {
|
|
16583
16654
|
header: {
|
|
@@ -16860,7 +16931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16860
16931
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16861
16932
|
custom_domain_id: string;
|
|
16862
16933
|
primary: boolean;
|
|
16863
|
-
status: "
|
|
16934
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16864
16935
|
verification_method?: "txt" | undefined;
|
|
16865
16936
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16866
16937
|
domain_metadata?: {
|
|
@@ -16901,7 +16972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16901
16972
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16902
16973
|
custom_domain_id: string;
|
|
16903
16974
|
primary: boolean;
|
|
16904
|
-
status: "
|
|
16975
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16905
16976
|
verification_method?: "txt" | undefined;
|
|
16906
16977
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16907
16978
|
domain_metadata?: {
|
|
@@ -16965,7 +17036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16965
17036
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16966
17037
|
custom_domain_id: string;
|
|
16967
17038
|
primary: boolean;
|
|
16968
|
-
status: "
|
|
17039
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
16969
17040
|
verification_method?: "txt" | undefined;
|
|
16970
17041
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16971
17042
|
domain_metadata?: {
|
|
@@ -17012,7 +17083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17012
17083
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17013
17084
|
custom_domain_id: string;
|
|
17014
17085
|
primary: boolean;
|
|
17015
|
-
status: "
|
|
17086
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17016
17087
|
verification_method?: "txt" | undefined;
|
|
17017
17088
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17018
17089
|
domain_metadata?: {
|
|
@@ -17058,7 +17129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17058
17129
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17059
17130
|
custom_domain_id: string;
|
|
17060
17131
|
primary: boolean;
|
|
17061
|
-
status: "
|
|
17132
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17062
17133
|
verification_method?: "txt" | undefined;
|
|
17063
17134
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17064
17135
|
domain_metadata?: {
|
|
@@ -17099,7 +17170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17099
17170
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17100
17171
|
custom_domain_id: string;
|
|
17101
17172
|
primary: boolean;
|
|
17102
|
-
status: "
|
|
17173
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
17103
17174
|
verification_method?: "txt" | undefined;
|
|
17104
17175
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17105
17176
|
domain_metadata?: {
|
|
@@ -17529,7 +17600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17529
17600
|
} & {
|
|
17530
17601
|
json: {
|
|
17531
17602
|
body?: string | undefined;
|
|
17532
|
-
screen?: "
|
|
17603
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
17533
17604
|
branding?: {
|
|
17534
17605
|
colors?: {
|
|
17535
17606
|
primary: string;
|
|
@@ -17820,7 +17891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17820
17891
|
logs: {
|
|
17821
17892
|
action_name: string;
|
|
17822
17893
|
lines: {
|
|
17823
|
-
level: "error" | "
|
|
17894
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
17824
17895
|
message: string;
|
|
17825
17896
|
}[];
|
|
17826
17897
|
}[];
|
|
@@ -18489,7 +18560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18489
18560
|
args: hono_utils_types.JSONValue[];
|
|
18490
18561
|
}[];
|
|
18491
18562
|
logs: {
|
|
18492
|
-
level: "error" | "
|
|
18563
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
18493
18564
|
message: string;
|
|
18494
18565
|
}[];
|
|
18495
18566
|
error?: string | undefined;
|
|
@@ -18800,7 +18871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18800
18871
|
scope?: string | undefined;
|
|
18801
18872
|
grant_types?: string[] | undefined;
|
|
18802
18873
|
response_types?: string[] | undefined;
|
|
18803
|
-
token_endpoint_auth_method?: "
|
|
18874
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18804
18875
|
jwks_uri?: string | undefined;
|
|
18805
18876
|
jwks?: Record<string, unknown> | undefined;
|
|
18806
18877
|
software_id?: string | undefined;
|
|
@@ -18889,7 +18960,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18889
18960
|
scope?: string | undefined;
|
|
18890
18961
|
grant_types?: string[] | undefined;
|
|
18891
18962
|
response_types?: string[] | undefined;
|
|
18892
|
-
token_endpoint_auth_method?: "
|
|
18963
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18893
18964
|
jwks_uri?: string | undefined;
|
|
18894
18965
|
jwks?: Record<string, unknown> | undefined;
|
|
18895
18966
|
software_id?: string | undefined;
|
|
@@ -19235,19 +19306,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19235
19306
|
email: string;
|
|
19236
19307
|
send: "code" | "link";
|
|
19237
19308
|
authParams: {
|
|
19238
|
-
code_challenge?: string | undefined;
|
|
19239
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19240
|
-
redirect_uri?: string | undefined;
|
|
19241
|
-
nonce?: string | undefined;
|
|
19242
|
-
state?: string | undefined;
|
|
19243
|
-
act_as?: string | undefined;
|
|
19244
19309
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19245
19310
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19311
|
+
scope?: string | undefined;
|
|
19312
|
+
username?: string | undefined;
|
|
19313
|
+
state?: string | undefined;
|
|
19246
19314
|
audience?: string | undefined;
|
|
19315
|
+
act_as?: string | undefined;
|
|
19316
|
+
redirect_uri?: string | undefined;
|
|
19247
19317
|
organization?: string | undefined;
|
|
19248
|
-
|
|
19318
|
+
nonce?: string | undefined;
|
|
19249
19319
|
prompt?: string | undefined;
|
|
19250
|
-
|
|
19320
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19321
|
+
code_challenge?: string | undefined;
|
|
19251
19322
|
ui_locales?: string | undefined;
|
|
19252
19323
|
max_age?: number | undefined;
|
|
19253
19324
|
acr_values?: string | undefined;
|
|
@@ -19271,19 +19342,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19271
19342
|
phone_number: string;
|
|
19272
19343
|
send: "code" | "link";
|
|
19273
19344
|
authParams: {
|
|
19274
|
-
code_challenge?: string | undefined;
|
|
19275
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19276
|
-
redirect_uri?: string | undefined;
|
|
19277
|
-
nonce?: string | undefined;
|
|
19278
|
-
state?: string | undefined;
|
|
19279
|
-
act_as?: string | undefined;
|
|
19280
19345
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19281
19346
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19347
|
+
scope?: string | undefined;
|
|
19348
|
+
username?: string | undefined;
|
|
19349
|
+
state?: string | undefined;
|
|
19282
19350
|
audience?: string | undefined;
|
|
19351
|
+
act_as?: string | undefined;
|
|
19352
|
+
redirect_uri?: string | undefined;
|
|
19283
19353
|
organization?: string | undefined;
|
|
19284
|
-
|
|
19354
|
+
nonce?: string | undefined;
|
|
19285
19355
|
prompt?: string | undefined;
|
|
19286
|
-
|
|
19356
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19357
|
+
code_challenge?: string | undefined;
|
|
19287
19358
|
ui_locales?: string | undefined;
|
|
19288
19359
|
max_age?: number | undefined;
|
|
19289
19360
|
acr_values?: string | undefined;
|
|
@@ -19415,14 +19486,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19415
19486
|
input: {
|
|
19416
19487
|
form: {
|
|
19417
19488
|
token: string;
|
|
19418
|
-
token_type_hint?: "
|
|
19489
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19419
19490
|
client_id?: string | undefined;
|
|
19420
19491
|
client_secret?: string | undefined;
|
|
19421
19492
|
};
|
|
19422
19493
|
} & {
|
|
19423
19494
|
json: {
|
|
19424
19495
|
token: string;
|
|
19425
|
-
token_type_hint?: "
|
|
19496
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19426
19497
|
client_id?: string | undefined;
|
|
19427
19498
|
client_secret?: string | undefined;
|
|
19428
19499
|
};
|
|
@@ -19434,14 +19505,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19434
19505
|
input: {
|
|
19435
19506
|
form: {
|
|
19436
19507
|
token: string;
|
|
19437
|
-
token_type_hint?: "
|
|
19508
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19438
19509
|
client_id?: string | undefined;
|
|
19439
19510
|
client_secret?: string | undefined;
|
|
19440
19511
|
};
|
|
19441
19512
|
} & {
|
|
19442
19513
|
json: {
|
|
19443
19514
|
token: string;
|
|
19444
|
-
token_type_hint?: "
|
|
19515
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19445
19516
|
client_id?: string | undefined;
|
|
19446
19517
|
client_secret?: string | undefined;
|
|
19447
19518
|
};
|
|
@@ -19456,14 +19527,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19456
19527
|
input: {
|
|
19457
19528
|
form: {
|
|
19458
19529
|
token: string;
|
|
19459
|
-
token_type_hint?: "
|
|
19530
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19460
19531
|
client_id?: string | undefined;
|
|
19461
19532
|
client_secret?: string | undefined;
|
|
19462
19533
|
};
|
|
19463
19534
|
} & {
|
|
19464
19535
|
json: {
|
|
19465
19536
|
token: string;
|
|
19466
|
-
token_type_hint?: "
|
|
19537
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
19467
19538
|
client_id?: string | undefined;
|
|
19468
19539
|
client_secret?: string | undefined;
|
|
19469
19540
|
};
|
|
@@ -20192,7 +20263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20192
20263
|
};
|
|
20193
20264
|
output: {};
|
|
20194
20265
|
outputFormat: string;
|
|
20195
|
-
status:
|
|
20266
|
+
status: 302;
|
|
20196
20267
|
} | {
|
|
20197
20268
|
input: {
|
|
20198
20269
|
query: {
|
|
@@ -20206,7 +20277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20206
20277
|
};
|
|
20207
20278
|
output: {};
|
|
20208
20279
|
outputFormat: string;
|
|
20209
|
-
status:
|
|
20280
|
+
status: 200;
|
|
20210
20281
|
} | {
|
|
20211
20282
|
input: {
|
|
20212
20283
|
query: {
|
|
@@ -21194,7 +21265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21194
21265
|
$get: {
|
|
21195
21266
|
input: {
|
|
21196
21267
|
param: {
|
|
21197
|
-
screen: "
|
|
21268
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21198
21269
|
};
|
|
21199
21270
|
} & {
|
|
21200
21271
|
query: {
|
|
@@ -21210,7 +21281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21210
21281
|
} | {
|
|
21211
21282
|
input: {
|
|
21212
21283
|
param: {
|
|
21213
|
-
screen: "
|
|
21284
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21214
21285
|
};
|
|
21215
21286
|
} & {
|
|
21216
21287
|
query: {
|
|
@@ -21226,7 +21297,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21226
21297
|
} | {
|
|
21227
21298
|
input: {
|
|
21228
21299
|
param: {
|
|
21229
|
-
screen: "
|
|
21300
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21230
21301
|
};
|
|
21231
21302
|
} & {
|
|
21232
21303
|
query: {
|
|
@@ -21246,7 +21317,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21246
21317
|
$post: {
|
|
21247
21318
|
input: {
|
|
21248
21319
|
param: {
|
|
21249
|
-
screen: "
|
|
21320
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21250
21321
|
};
|
|
21251
21322
|
} & {
|
|
21252
21323
|
query: {
|
|
@@ -21264,7 +21335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21264
21335
|
} | {
|
|
21265
21336
|
input: {
|
|
21266
21337
|
param: {
|
|
21267
|
-
screen: "
|
|
21338
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21268
21339
|
};
|
|
21269
21340
|
} & {
|
|
21270
21341
|
query: {
|
|
@@ -21366,5 +21437,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21366
21437
|
createX509Certificate: typeof createX509Certificate;
|
|
21367
21438
|
};
|
|
21368
21439
|
|
|
21369
|
-
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, 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, 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 };
|
|
21370
|
-
export type { 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, 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 };
|
|
21440
|
+
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, 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 };
|
|
21441
|
+
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, 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 };
|