authhero 8.27.0 → 9.1.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/LICENSE +661 -21
- package/dist/assets/u/js/client.js +2 -2
- 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-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
- package/dist/assets/u/widget/{p-f6babd26.entry.js → p-eca60302.entry.js} +1 -1
- package/dist/authhero.cjs +268 -251
- package/dist/authhero.d.ts +186 -95
- package/dist/authhero.mjs +26150 -18257
- package/dist/client.js +2 -2
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -3
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/generated/locale-types.d.ts +2 -0
- package/dist/types/helpers/client.d.ts +2 -2
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/link-candidates.d.ts +28 -0
- package/dist/types/helpers/logging.d.ts +8 -0
- package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
- package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
- package/dist/types/helpers/scim/discovery.d.ts +49 -0
- package/dist/types/helpers/scim/filter.d.ts +58 -0
- package/dist/types/helpers/scim/mint-token.d.ts +11 -0
- package/dist/types/helpers/scim/patch.d.ts +23 -0
- package/dist/types/helpers/scim/responses.d.ts +36 -0
- package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
- package/dist/types/helpers/scopes-permissions.d.ts +18 -0
- package/dist/types/helpers/signing-keys.d.ts +36 -0
- package/dist/types/helpers/users.d.ts +116 -1
- package/dist/types/hooks/codehooks.d.ts +9 -1
- package/dist/types/hooks/helpers/post-login-account-linking.d.ts +52 -0
- package/dist/types/hooks/pre-defined/account-linking.d.ts +20 -0
- package/dist/types/hooks/user-registration.d.ts +1 -0
- package/dist/types/index.d.ts +121 -91
- package/dist/types/middlewares/scim-auth.d.ts +19 -0
- package/dist/types/routes/auth-api/index.d.ts +34 -34
- 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/auth-api/token.d.ts +10 -10
- 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/clients.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +2 -1
- package/dist/types/routes/management-api/forms.d.ts +14 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +76 -50
- 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 +6 -4
- package/dist/types/routes/management-api/scim.d.ts +187 -0
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +13 -5
- package/dist/types/routes/scim/index.d.ts +6 -0
- package/dist/types/routes/universal-login/common.d.ts +3 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthError.d.ts +1 -1
- package/dist/types/types/Hooks.d.ts +8 -1
- package/dist/types/utils/cookies.d.ts +11 -0
- package/package.json +7 -6
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, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams,
|
|
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';
|
|
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';
|
|
@@ -10,7 +10,7 @@ import { SamlSigner } from '@authhero/saml/core';
|
|
|
10
10
|
export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
|
|
11
11
|
import { Context, Hono, Next, Handler, MiddlewareHandler } from 'hono';
|
|
12
12
|
import * as _authhero_proxy from '@authhero/proxy';
|
|
13
|
-
import {
|
|
13
|
+
import { KvNamespaceWriter, ResolvedHost } from '@authhero/proxy';
|
|
14
14
|
export { PROXY_RESOLVE_HOST_SCOPE, ServiceBindingFetcher, createServiceBindingFetch } from '@authhero/proxy';
|
|
15
15
|
import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
|
|
16
16
|
import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
|
|
@@ -568,8 +568,8 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
568
568
|
}>>;
|
|
569
569
|
}, z.core.$strip>>>;
|
|
570
570
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
571
|
-
response_type: z.ZodOptional<z.
|
|
572
|
-
response_mode: z.ZodOptional<z.
|
|
571
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof _authhero_adapter_interfaces.AuthorizationResponseType>>;
|
|
572
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof _authhero_adapter_interfaces.AuthorizationResponseMode>>;
|
|
573
573
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
574
574
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
575
575
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -691,6 +691,13 @@ type HookEvent = {
|
|
|
691
691
|
ja3?: string;
|
|
692
692
|
ja4?: string;
|
|
693
693
|
};
|
|
694
|
+
/**
|
|
695
|
+
* Candidate primary accounts the built-in email-linking policy would consider,
|
|
696
|
+
* exposed only to `post-user-login` code hooks that opt in via
|
|
697
|
+
* `metadata.resolve_link_candidates`. Absent on the event for every other hook
|
|
698
|
+
* (and trigger).
|
|
699
|
+
*/
|
|
700
|
+
link_candidates?: LinkCandidate[];
|
|
694
701
|
};
|
|
695
702
|
type TokenAPI = {
|
|
696
703
|
createServiceToken: (params: {
|
|
@@ -3941,6 +3948,40 @@ interface ResolveSigningKeysOptions {
|
|
|
3941
3948
|
type?: string;
|
|
3942
3949
|
}
|
|
3943
3950
|
declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
|
|
3951
|
+
interface EnsureSigningKeyOptions {
|
|
3952
|
+
/**
|
|
3953
|
+
* When set, the key is created tenant-scoped (`tenant_id` stamped) and the
|
|
3954
|
+
* existence check is scoped to that tenant. Omit for a control-plane key
|
|
3955
|
+
* (no `tenant_id`), which `resolveSigningKeys` resolves in both modes — as
|
|
3956
|
+
* the primary key in `"control-plane"` mode and as the fallback in
|
|
3957
|
+
* `"tenant"` mode. Control-plane scope is the right default for a freshly
|
|
3958
|
+
* provisioned WFP tenant.
|
|
3959
|
+
*/
|
|
3960
|
+
tenantId?: string;
|
|
3961
|
+
/** Cert CN. Falls back to the tenant id, then to `"authhero"`. */
|
|
3962
|
+
name?: string;
|
|
3963
|
+
/** Defaults to `"jwt_signing"`. */
|
|
3964
|
+
type?: SigningKey["type"];
|
|
3965
|
+
}
|
|
3966
|
+
interface EnsureSigningKeyResult {
|
|
3967
|
+
/** True when a new key was minted; false when a signable key already existed. */
|
|
3968
|
+
created: boolean;
|
|
3969
|
+
key: SigningKey;
|
|
3970
|
+
}
|
|
3971
|
+
/**
|
|
3972
|
+
* Guarantees the target scope holds at least one *signable* key — one carrying
|
|
3973
|
+
* private material (`pkcs7` + `cert`), not merely a projected public verify key.
|
|
3974
|
+
*
|
|
3975
|
+
* A freshly provisioned WFP tenant inherits only the control plane's public
|
|
3976
|
+
* keys (private material stripped at the boundary), so it can serve JWKS and
|
|
3977
|
+
* `/authorize` but 500s at `/oauth/token` with nothing to sign — issue #1181.
|
|
3978
|
+
* Calling this at provision time closes that gap by minting the tenant's own
|
|
3979
|
+
* RS256 key locally (private material never crosses the control-plane boundary).
|
|
3980
|
+
*
|
|
3981
|
+
* Create-if-missing and idempotent: a scope that already has a signable key is
|
|
3982
|
+
* left untouched, so it is safe to call on every provision and re-sync.
|
|
3983
|
+
*/
|
|
3984
|
+
declare function ensureSigningKey(keys: KeysAdapter, opts?: EnsureSigningKeyOptions): Promise<EnsureSigningKeyResult>;
|
|
3944
3985
|
|
|
3945
3986
|
declare const USERNAME_PASSWORD_PROVIDER = "auth0";
|
|
3946
3987
|
|
|
@@ -4050,6 +4091,26 @@ interface AccountLinkingOptions {
|
|
|
4050
4091
|
* @default false
|
|
4051
4092
|
*/
|
|
4052
4093
|
copyUserMetadata?: boolean;
|
|
4094
|
+
/**
|
|
4095
|
+
* When the link is performed, fill in *absent* root profile fields on the
|
|
4096
|
+
* primary from the secondary — e.g. a secondary that has a `birthdate` the
|
|
4097
|
+
* primary lacks, or a phone number an email primary doesn't carry.
|
|
4098
|
+
*
|
|
4099
|
+
* Fill-if-absent only: a field already set on the primary is never
|
|
4100
|
+
* overwritten (primary stays authoritative), matching `copyUserMetadata`.
|
|
4101
|
+
* Identifier and verification fields are never touched — `email`,
|
|
4102
|
+
* `email_verified`, `phone_verified`, `username`, `provider`, `connection`
|
|
4103
|
+
* are excluded — so this can't rewrite a login identifier. In particular an
|
|
4104
|
+
* sms primary already carries a `phone_number`, so its identifier is never
|
|
4105
|
+
* filled over; the promotion only reaches a primary that has no phone yet.
|
|
4106
|
+
*
|
|
4107
|
+
* Off by default to match Auth0, which keeps a linked identity's own
|
|
4108
|
+
* attributes under `identities[].profileData` rather than promoting them to
|
|
4109
|
+
* the merged user's root profile.
|
|
4110
|
+
*
|
|
4111
|
+
* @default false
|
|
4112
|
+
*/
|
|
4113
|
+
copyProfileFields?: boolean;
|
|
4053
4114
|
}
|
|
4054
4115
|
/**
|
|
4055
4116
|
* Trigger-agnostic event handler used by all `account-linking` template
|
|
@@ -4245,7 +4306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4245
4306
|
};
|
|
4246
4307
|
} & {
|
|
4247
4308
|
json: {
|
|
4248
|
-
type: "
|
|
4309
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4249
4310
|
phone_number?: string | undefined;
|
|
4250
4311
|
totp_secret?: string | undefined;
|
|
4251
4312
|
credential_id?: string | undefined;
|
|
@@ -4385,7 +4446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4385
4446
|
};
|
|
4386
4447
|
};
|
|
4387
4448
|
output: {
|
|
4388
|
-
name: "
|
|
4449
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4389
4450
|
enabled: boolean;
|
|
4390
4451
|
trial_expired?: boolean | undefined;
|
|
4391
4452
|
}[];
|
|
@@ -4540,7 +4601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4540
4601
|
$get: {
|
|
4541
4602
|
input: {
|
|
4542
4603
|
param: {
|
|
4543
|
-
factor_name: "
|
|
4604
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4544
4605
|
};
|
|
4545
4606
|
} & {
|
|
4546
4607
|
header: {
|
|
@@ -4548,7 +4609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4548
4609
|
};
|
|
4549
4610
|
};
|
|
4550
4611
|
output: {
|
|
4551
|
-
name: "
|
|
4612
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4552
4613
|
enabled: boolean;
|
|
4553
4614
|
trial_expired?: boolean | undefined;
|
|
4554
4615
|
};
|
|
@@ -4561,7 +4622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4561
4622
|
$put: {
|
|
4562
4623
|
input: {
|
|
4563
4624
|
param: {
|
|
4564
|
-
factor_name: "
|
|
4625
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4565
4626
|
};
|
|
4566
4627
|
} & {
|
|
4567
4628
|
header: {
|
|
@@ -4573,7 +4634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4573
4634
|
};
|
|
4574
4635
|
};
|
|
4575
4636
|
output: {
|
|
4576
|
-
name: "
|
|
4637
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4577
4638
|
enabled: boolean;
|
|
4578
4639
|
trial_expired?: boolean | undefined;
|
|
4579
4640
|
};
|
|
@@ -5351,10 +5412,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5351
5412
|
inviter: {
|
|
5352
5413
|
name?: string | undefined;
|
|
5353
5414
|
};
|
|
5415
|
+
connection_id?: string | undefined;
|
|
5354
5416
|
id?: string | undefined;
|
|
5355
5417
|
app_metadata?: Record<string, any> | undefined;
|
|
5356
5418
|
user_metadata?: Record<string, any> | undefined;
|
|
5357
|
-
connection_id?: string | undefined;
|
|
5358
5419
|
roles?: string[] | undefined;
|
|
5359
5420
|
send_invitation_email?: boolean | undefined;
|
|
5360
5421
|
ttl_sec?: number | undefined;
|
|
@@ -7151,6 +7212,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7151
7212
|
display_name?: string | undefined;
|
|
7152
7213
|
icon_url?: string | undefined;
|
|
7153
7214
|
href?: string | undefined;
|
|
7215
|
+
last_used?: boolean | undefined;
|
|
7216
|
+
last_used_label?: string | undefined;
|
|
7154
7217
|
}[] | undefined;
|
|
7155
7218
|
} | undefined;
|
|
7156
7219
|
} | {
|
|
@@ -7752,6 +7815,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7752
7815
|
display_name?: string | undefined;
|
|
7753
7816
|
icon_url?: string | undefined;
|
|
7754
7817
|
href?: string | undefined;
|
|
7818
|
+
last_used?: boolean | undefined;
|
|
7819
|
+
last_used_label?: string | undefined;
|
|
7755
7820
|
}[] | undefined;
|
|
7756
7821
|
} | undefined;
|
|
7757
7822
|
} | {
|
|
@@ -8369,6 +8434,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8369
8434
|
display_name?: string | undefined;
|
|
8370
8435
|
icon_url?: string | undefined;
|
|
8371
8436
|
href?: string | undefined;
|
|
8437
|
+
last_used?: boolean | undefined;
|
|
8438
|
+
last_used_label?: string | undefined;
|
|
8372
8439
|
}[] | undefined;
|
|
8373
8440
|
} | undefined;
|
|
8374
8441
|
} | {
|
|
@@ -8987,6 +9054,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8987
9054
|
display_name?: string | undefined;
|
|
8988
9055
|
icon_url?: string | undefined;
|
|
8989
9056
|
href?: string | undefined;
|
|
9057
|
+
last_used?: boolean | undefined;
|
|
9058
|
+
last_used_label?: string | undefined;
|
|
8990
9059
|
}[] | undefined;
|
|
8991
9060
|
} | undefined;
|
|
8992
9061
|
} | {
|
|
@@ -9586,6 +9655,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9586
9655
|
display_name?: string | undefined;
|
|
9587
9656
|
icon_url?: string | undefined;
|
|
9588
9657
|
href?: string | undefined;
|
|
9658
|
+
last_used?: boolean | undefined;
|
|
9659
|
+
last_used_label?: string | undefined;
|
|
9589
9660
|
}[] | undefined;
|
|
9590
9661
|
} | undefined;
|
|
9591
9662
|
} | {
|
|
@@ -10183,6 +10254,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10183
10254
|
display_name?: string | undefined;
|
|
10184
10255
|
icon_url?: string | undefined;
|
|
10185
10256
|
href?: string | undefined;
|
|
10257
|
+
last_used?: boolean | undefined;
|
|
10258
|
+
last_used_label?: string | undefined;
|
|
10186
10259
|
}[] | undefined;
|
|
10187
10260
|
} | undefined;
|
|
10188
10261
|
} | {
|
|
@@ -10782,6 +10855,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10782
10855
|
display_name?: string | undefined;
|
|
10783
10856
|
icon_url?: string | undefined;
|
|
10784
10857
|
href?: string | undefined;
|
|
10858
|
+
last_used?: boolean | undefined;
|
|
10859
|
+
last_used_label?: string | undefined;
|
|
10785
10860
|
}[] | undefined;
|
|
10786
10861
|
} | undefined;
|
|
10787
10862
|
} | {
|
|
@@ -11031,6 +11106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11031
11106
|
universal_login_experience: "new" | "classic";
|
|
11032
11107
|
identifier_first: boolean;
|
|
11033
11108
|
password_first: boolean;
|
|
11109
|
+
show_last_used_connection: boolean;
|
|
11034
11110
|
webauthn_platform_first_factor: boolean;
|
|
11035
11111
|
};
|
|
11036
11112
|
outputFormat: "json";
|
|
@@ -11049,6 +11125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11049
11125
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
11050
11126
|
identifier_first?: boolean | undefined;
|
|
11051
11127
|
password_first?: boolean | undefined;
|
|
11128
|
+
show_last_used_connection?: boolean | undefined;
|
|
11052
11129
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
11053
11130
|
};
|
|
11054
11131
|
};
|
|
@@ -11066,7 +11143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11066
11143
|
};
|
|
11067
11144
|
};
|
|
11068
11145
|
output: {
|
|
11069
|
-
prompt: "
|
|
11146
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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";
|
|
11070
11147
|
language: string;
|
|
11071
11148
|
}[];
|
|
11072
11149
|
outputFormat: "json";
|
|
@@ -11104,7 +11181,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11104
11181
|
$get: {
|
|
11105
11182
|
input: {
|
|
11106
11183
|
param: {
|
|
11107
|
-
prompt: "
|
|
11184
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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";
|
|
11108
11185
|
language: string;
|
|
11109
11186
|
};
|
|
11110
11187
|
} & {
|
|
@@ -11126,7 +11203,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11126
11203
|
$put: {
|
|
11127
11204
|
input: {
|
|
11128
11205
|
param: {
|
|
11129
|
-
prompt: "
|
|
11206
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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";
|
|
11130
11207
|
language: string;
|
|
11131
11208
|
};
|
|
11132
11209
|
} & {
|
|
@@ -11150,7 +11227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11150
11227
|
$delete: {
|
|
11151
11228
|
input: {
|
|
11152
11229
|
param: {
|
|
11153
|
-
prompt: "
|
|
11230
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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";
|
|
11154
11231
|
language: string;
|
|
11155
11232
|
};
|
|
11156
11233
|
} & {
|
|
@@ -12653,7 +12730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12653
12730
|
log_type: string;
|
|
12654
12731
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12655
12732
|
actor: {
|
|
12656
|
-
type: "user" | "client_credentials" | "
|
|
12733
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
12657
12734
|
id?: string | undefined;
|
|
12658
12735
|
email?: string | undefined;
|
|
12659
12736
|
org_id?: string | undefined;
|
|
@@ -12687,6 +12764,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12687
12764
|
body?: hono_utils_types.JSONValue | undefined;
|
|
12688
12765
|
user_agent?: string | undefined;
|
|
12689
12766
|
correlation_id?: string | undefined;
|
|
12767
|
+
redirect_uri?: string | undefined;
|
|
12690
12768
|
};
|
|
12691
12769
|
hostname: string;
|
|
12692
12770
|
timestamp: string;
|
|
@@ -13303,7 +13381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13303
13381
|
};
|
|
13304
13382
|
};
|
|
13305
13383
|
output: {
|
|
13306
|
-
type: "
|
|
13384
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13307
13385
|
date: string;
|
|
13308
13386
|
isMobile: boolean;
|
|
13309
13387
|
log_id: string;
|
|
@@ -13342,7 +13420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13342
13420
|
limit: number;
|
|
13343
13421
|
length: number;
|
|
13344
13422
|
logs: {
|
|
13345
|
-
type: "
|
|
13423
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13346
13424
|
date: string;
|
|
13347
13425
|
isMobile: boolean;
|
|
13348
13426
|
log_id: string;
|
|
@@ -13381,7 +13459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13381
13459
|
next?: string | undefined;
|
|
13382
13460
|
} | {
|
|
13383
13461
|
logs: {
|
|
13384
|
-
type: "
|
|
13462
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13385
13463
|
date: string;
|
|
13386
13464
|
isMobile: boolean;
|
|
13387
13465
|
log_id: string;
|
|
@@ -13435,7 +13513,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13435
13513
|
};
|
|
13436
13514
|
};
|
|
13437
13515
|
output: {
|
|
13438
|
-
type: "
|
|
13516
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13439
13517
|
date: string;
|
|
13440
13518
|
isMobile: boolean;
|
|
13441
13519
|
log_id: string;
|
|
@@ -13846,7 +13924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13846
13924
|
addons?: {
|
|
13847
13925
|
[x: string]: any;
|
|
13848
13926
|
} | undefined;
|
|
13849
|
-
token_endpoint_auth_method?: "none" | "
|
|
13927
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13850
13928
|
client_metadata?: {
|
|
13851
13929
|
[x: string]: string;
|
|
13852
13930
|
} | undefined;
|
|
@@ -13948,7 +14026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13948
14026
|
addons?: {
|
|
13949
14027
|
[x: string]: any;
|
|
13950
14028
|
} | undefined;
|
|
13951
|
-
token_endpoint_auth_method?: "none" | "
|
|
14029
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13952
14030
|
client_metadata?: {
|
|
13953
14031
|
[x: string]: string;
|
|
13954
14032
|
} | undefined;
|
|
@@ -14050,7 +14128,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14050
14128
|
addons?: {
|
|
14051
14129
|
[x: string]: any;
|
|
14052
14130
|
} | undefined;
|
|
14053
|
-
token_endpoint_auth_method?: "none" | "
|
|
14131
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14054
14132
|
client_metadata?: {
|
|
14055
14133
|
[x: string]: string;
|
|
14056
14134
|
} | undefined;
|
|
@@ -14167,7 +14245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14167
14245
|
addons?: {
|
|
14168
14246
|
[x: string]: any;
|
|
14169
14247
|
} | undefined;
|
|
14170
|
-
token_endpoint_auth_method?: "none" | "
|
|
14248
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14171
14249
|
client_metadata?: {
|
|
14172
14250
|
[x: string]: string;
|
|
14173
14251
|
} | undefined;
|
|
@@ -14285,7 +14363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14285
14363
|
custom_login_page_preview?: string | undefined;
|
|
14286
14364
|
form_template?: string | undefined;
|
|
14287
14365
|
addons?: Record<string, any> | undefined;
|
|
14288
|
-
token_endpoint_auth_method?: "none" | "
|
|
14366
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14289
14367
|
client_metadata?: Record<string, string> | undefined;
|
|
14290
14368
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14291
14369
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14371,7 +14449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14371
14449
|
addons?: {
|
|
14372
14450
|
[x: string]: any;
|
|
14373
14451
|
} | undefined;
|
|
14374
|
-
token_endpoint_auth_method?: "none" | "
|
|
14452
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14375
14453
|
client_metadata?: {
|
|
14376
14454
|
[x: string]: string;
|
|
14377
14455
|
} | undefined;
|
|
@@ -14468,7 +14546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14468
14546
|
custom_login_page_preview?: string | undefined;
|
|
14469
14547
|
form_template?: string | undefined;
|
|
14470
14548
|
addons?: Record<string, any> | undefined;
|
|
14471
|
-
token_endpoint_auth_method?: "none" | "
|
|
14549
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14472
14550
|
client_metadata?: Record<string, string> | undefined;
|
|
14473
14551
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14474
14552
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14554,7 +14632,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14554
14632
|
addons?: {
|
|
14555
14633
|
[x: string]: any;
|
|
14556
14634
|
} | undefined;
|
|
14557
|
-
token_endpoint_auth_method?: "none" | "
|
|
14635
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14558
14636
|
client_metadata?: {
|
|
14559
14637
|
[x: string]: string;
|
|
14560
14638
|
} | undefined;
|
|
@@ -14960,6 +15038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14960
15038
|
verify_email?: boolean | undefined;
|
|
14961
15039
|
last_ip?: string | undefined;
|
|
14962
15040
|
last_login?: string | undefined;
|
|
15041
|
+
blocked?: boolean | undefined;
|
|
14963
15042
|
registration_completed_at?: string | undefined;
|
|
14964
15043
|
email?: string | undefined;
|
|
14965
15044
|
identities?: {
|
|
@@ -15145,6 +15224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15145
15224
|
verify_email?: boolean | undefined;
|
|
15146
15225
|
last_ip?: string | undefined;
|
|
15147
15226
|
last_login?: string | undefined;
|
|
15227
|
+
blocked?: boolean | undefined;
|
|
15148
15228
|
identities?: {
|
|
15149
15229
|
connection: string;
|
|
15150
15230
|
user_id: string;
|
|
@@ -15215,6 +15295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15215
15295
|
verify_email?: boolean | undefined;
|
|
15216
15296
|
last_ip?: string | undefined;
|
|
15217
15297
|
last_login?: string | undefined;
|
|
15298
|
+
blocked?: boolean | undefined;
|
|
15218
15299
|
identities?: {
|
|
15219
15300
|
connection: string;
|
|
15220
15301
|
user_id: string;
|
|
@@ -15285,6 +15366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15285
15366
|
verify_email?: boolean | undefined;
|
|
15286
15367
|
last_ip?: string | undefined;
|
|
15287
15368
|
last_login?: string | undefined;
|
|
15369
|
+
blocked?: boolean | undefined;
|
|
15288
15370
|
identities?: {
|
|
15289
15371
|
connection: string;
|
|
15290
15372
|
user_id: string;
|
|
@@ -15370,6 +15452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15370
15452
|
verify_email?: boolean | undefined;
|
|
15371
15453
|
last_ip?: string | undefined;
|
|
15372
15454
|
last_login?: string | undefined;
|
|
15455
|
+
blocked?: boolean | undefined;
|
|
15373
15456
|
identities?: {
|
|
15374
15457
|
connection: string;
|
|
15375
15458
|
user_id: string;
|
|
@@ -15463,6 +15546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15463
15546
|
user_id?: string | undefined;
|
|
15464
15547
|
provider?: string | undefined;
|
|
15465
15548
|
is_social?: boolean | undefined;
|
|
15549
|
+
blocked?: boolean | undefined;
|
|
15466
15550
|
registration_completed_at?: string | undefined;
|
|
15467
15551
|
password?: string | undefined;
|
|
15468
15552
|
};
|
|
@@ -15508,6 +15592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15508
15592
|
verify_email?: boolean | undefined;
|
|
15509
15593
|
last_ip?: string | undefined;
|
|
15510
15594
|
last_login?: string | undefined;
|
|
15595
|
+
blocked?: boolean | undefined;
|
|
15511
15596
|
identities?: {
|
|
15512
15597
|
connection: string;
|
|
15513
15598
|
user_id: string;
|
|
@@ -15563,8 +15648,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15563
15648
|
locale?: string | undefined;
|
|
15564
15649
|
linked_to?: string | undefined;
|
|
15565
15650
|
profileData?: string | undefined;
|
|
15566
|
-
app_metadata?: any;
|
|
15567
|
-
user_metadata?: any;
|
|
15568
15651
|
middle_name?: string | undefined;
|
|
15569
15652
|
preferred_username?: string | undefined;
|
|
15570
15653
|
profile?: string | undefined;
|
|
@@ -15580,16 +15663,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15580
15663
|
postal_code?: string | undefined;
|
|
15581
15664
|
country?: string | undefined;
|
|
15582
15665
|
} | undefined;
|
|
15583
|
-
email_verified?: boolean | undefined;
|
|
15584
15666
|
last_ip?: string | undefined;
|
|
15585
15667
|
last_login?: string | undefined;
|
|
15586
15668
|
user_id?: string | undefined;
|
|
15587
15669
|
provider?: string | undefined;
|
|
15588
15670
|
connection?: string | undefined;
|
|
15589
15671
|
is_social?: boolean | undefined;
|
|
15672
|
+
blocked?: boolean | undefined;
|
|
15590
15673
|
registration_completed_at?: string | undefined;
|
|
15591
15674
|
verify_email?: boolean | undefined;
|
|
15592
15675
|
password?: string | undefined;
|
|
15676
|
+
email_verified?: boolean | undefined;
|
|
15677
|
+
app_metadata?: any;
|
|
15678
|
+
user_metadata?: any;
|
|
15593
15679
|
};
|
|
15594
15680
|
};
|
|
15595
15681
|
output: {};
|
|
@@ -15701,6 +15787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15701
15787
|
verify_email?: boolean | undefined;
|
|
15702
15788
|
last_ip?: string | undefined;
|
|
15703
15789
|
last_login?: string | undefined;
|
|
15790
|
+
blocked?: boolean | undefined;
|
|
15704
15791
|
identities?: {
|
|
15705
15792
|
connection: string;
|
|
15706
15793
|
user_id: string;
|
|
@@ -15890,7 +15977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15890
15977
|
};
|
|
15891
15978
|
};
|
|
15892
15979
|
output: {
|
|
15893
|
-
type: "
|
|
15980
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15894
15981
|
date: string;
|
|
15895
15982
|
isMobile: boolean;
|
|
15896
15983
|
log_id: string;
|
|
@@ -15929,7 +16016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15929
16016
|
limit: number;
|
|
15930
16017
|
length: number;
|
|
15931
16018
|
logs: {
|
|
15932
|
-
type: "
|
|
16019
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15933
16020
|
date: string;
|
|
15934
16021
|
isMobile: boolean;
|
|
15935
16022
|
log_id: string;
|
|
@@ -16248,7 +16335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16248
16335
|
};
|
|
16249
16336
|
} & {
|
|
16250
16337
|
json: {
|
|
16251
|
-
template: "
|
|
16338
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16252
16339
|
body: string;
|
|
16253
16340
|
from: string;
|
|
16254
16341
|
subject: string;
|
|
@@ -16269,7 +16356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16269
16356
|
};
|
|
16270
16357
|
} & {
|
|
16271
16358
|
json: {
|
|
16272
|
-
template: "
|
|
16359
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16273
16360
|
body: string;
|
|
16274
16361
|
from: string;
|
|
16275
16362
|
subject: string;
|
|
@@ -16281,7 +16368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16281
16368
|
};
|
|
16282
16369
|
};
|
|
16283
16370
|
output: {
|
|
16284
|
-
template: "
|
|
16371
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16285
16372
|
body: string;
|
|
16286
16373
|
from: string;
|
|
16287
16374
|
subject: string;
|
|
@@ -16304,7 +16391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16304
16391
|
};
|
|
16305
16392
|
};
|
|
16306
16393
|
output: {
|
|
16307
|
-
name: "
|
|
16394
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16308
16395
|
body: string;
|
|
16309
16396
|
subject: string;
|
|
16310
16397
|
}[];
|
|
@@ -16317,7 +16404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16317
16404
|
$get: {
|
|
16318
16405
|
input: {
|
|
16319
16406
|
param: {
|
|
16320
|
-
templateName: "
|
|
16407
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16321
16408
|
};
|
|
16322
16409
|
} & {
|
|
16323
16410
|
header: {
|
|
@@ -16330,7 +16417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16330
16417
|
} | {
|
|
16331
16418
|
input: {
|
|
16332
16419
|
param: {
|
|
16333
|
-
templateName: "
|
|
16420
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16334
16421
|
};
|
|
16335
16422
|
} & {
|
|
16336
16423
|
header: {
|
|
@@ -16338,7 +16425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16338
16425
|
};
|
|
16339
16426
|
};
|
|
16340
16427
|
output: {
|
|
16341
|
-
template: "
|
|
16428
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16342
16429
|
body: string;
|
|
16343
16430
|
from: string;
|
|
16344
16431
|
subject: string;
|
|
@@ -16357,7 +16444,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16357
16444
|
$put: {
|
|
16358
16445
|
input: {
|
|
16359
16446
|
param: {
|
|
16360
|
-
templateName: "
|
|
16447
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16361
16448
|
};
|
|
16362
16449
|
} & {
|
|
16363
16450
|
header: {
|
|
@@ -16365,7 +16452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16365
16452
|
};
|
|
16366
16453
|
} & {
|
|
16367
16454
|
json: {
|
|
16368
|
-
template: "
|
|
16455
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16369
16456
|
body: string;
|
|
16370
16457
|
subject: string;
|
|
16371
16458
|
syntax?: "liquid" | undefined;
|
|
@@ -16377,7 +16464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16377
16464
|
};
|
|
16378
16465
|
};
|
|
16379
16466
|
output: {
|
|
16380
|
-
template: "
|
|
16467
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16381
16468
|
body: string;
|
|
16382
16469
|
from: string;
|
|
16383
16470
|
subject: string;
|
|
@@ -16396,7 +16483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16396
16483
|
$patch: {
|
|
16397
16484
|
input: {
|
|
16398
16485
|
param: {
|
|
16399
|
-
templateName: "
|
|
16486
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16400
16487
|
};
|
|
16401
16488
|
} & {
|
|
16402
16489
|
header: {
|
|
@@ -16404,7 +16491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16404
16491
|
};
|
|
16405
16492
|
} & {
|
|
16406
16493
|
json: {
|
|
16407
|
-
template?: "
|
|
16494
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16408
16495
|
body?: string | undefined;
|
|
16409
16496
|
from?: string | undefined;
|
|
16410
16497
|
subject?: string | undefined;
|
|
@@ -16421,7 +16508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16421
16508
|
} | {
|
|
16422
16509
|
input: {
|
|
16423
16510
|
param: {
|
|
16424
|
-
templateName: "
|
|
16511
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16425
16512
|
};
|
|
16426
16513
|
} & {
|
|
16427
16514
|
header: {
|
|
@@ -16429,7 +16516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16429
16516
|
};
|
|
16430
16517
|
} & {
|
|
16431
16518
|
json: {
|
|
16432
|
-
template?: "
|
|
16519
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16433
16520
|
body?: string | undefined;
|
|
16434
16521
|
from?: string | undefined;
|
|
16435
16522
|
subject?: string | undefined;
|
|
@@ -16441,7 +16528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16441
16528
|
};
|
|
16442
16529
|
};
|
|
16443
16530
|
output: {
|
|
16444
|
-
template: "
|
|
16531
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16445
16532
|
body: string;
|
|
16446
16533
|
from: string;
|
|
16447
16534
|
subject: string;
|
|
@@ -16460,7 +16547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16460
16547
|
$delete: {
|
|
16461
16548
|
input: {
|
|
16462
16549
|
param: {
|
|
16463
|
-
templateName: "
|
|
16550
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16464
16551
|
};
|
|
16465
16552
|
} & {
|
|
16466
16553
|
header: {
|
|
@@ -16473,7 +16560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16473
16560
|
} | {
|
|
16474
16561
|
input: {
|
|
16475
16562
|
param: {
|
|
16476
|
-
templateName: "
|
|
16563
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16477
16564
|
};
|
|
16478
16565
|
} & {
|
|
16479
16566
|
header: {
|
|
@@ -16490,7 +16577,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16490
16577
|
$post: {
|
|
16491
16578
|
input: {
|
|
16492
16579
|
param: {
|
|
16493
|
-
templateName: "
|
|
16580
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16494
16581
|
};
|
|
16495
16582
|
} & {
|
|
16496
16583
|
header: {
|
|
@@ -17442,7 +17529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17442
17529
|
} & {
|
|
17443
17530
|
json: {
|
|
17444
17531
|
body?: string | undefined;
|
|
17445
|
-
screen?: "
|
|
17532
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
17446
17533
|
branding?: {
|
|
17447
17534
|
colors?: {
|
|
17448
17535
|
primary: string;
|
|
@@ -17733,7 +17820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17733
17820
|
logs: {
|
|
17734
17821
|
action_name: string;
|
|
17735
17822
|
lines: {
|
|
17736
|
-
level: "
|
|
17823
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
17737
17824
|
message: string;
|
|
17738
17825
|
}[];
|
|
17739
17826
|
}[];
|
|
@@ -18402,7 +18489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18402
18489
|
args: hono_utils_types.JSONValue[];
|
|
18403
18490
|
}[];
|
|
18404
18491
|
logs: {
|
|
18405
|
-
level: "
|
|
18492
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
18406
18493
|
message: string;
|
|
18407
18494
|
}[];
|
|
18408
18495
|
error?: string | undefined;
|
|
@@ -18713,7 +18800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18713
18800
|
scope?: string | undefined;
|
|
18714
18801
|
grant_types?: string[] | undefined;
|
|
18715
18802
|
response_types?: string[] | undefined;
|
|
18716
|
-
token_endpoint_auth_method?: "none" | "
|
|
18803
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18717
18804
|
jwks_uri?: string | undefined;
|
|
18718
18805
|
jwks?: Record<string, unknown> | undefined;
|
|
18719
18806
|
software_id?: string | undefined;
|
|
@@ -18802,7 +18889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18802
18889
|
scope?: string | undefined;
|
|
18803
18890
|
grant_types?: string[] | undefined;
|
|
18804
18891
|
response_types?: string[] | undefined;
|
|
18805
|
-
token_endpoint_auth_method?: "none" | "
|
|
18892
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18806
18893
|
jwks_uri?: string | undefined;
|
|
18807
18894
|
jwks?: Record<string, unknown> | undefined;
|
|
18808
18895
|
software_id?: string | undefined;
|
|
@@ -19148,19 +19235,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19148
19235
|
email: string;
|
|
19149
19236
|
send: "code" | "link";
|
|
19150
19237
|
authParams: {
|
|
19151
|
-
|
|
19238
|
+
code_challenge?: string | undefined;
|
|
19239
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19240
|
+
redirect_uri?: string | undefined;
|
|
19241
|
+
nonce?: string | undefined;
|
|
19152
19242
|
state?: string | undefined;
|
|
19153
|
-
|
|
19243
|
+
act_as?: string | undefined;
|
|
19154
19244
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19155
19245
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19156
|
-
|
|
19246
|
+
audience?: string | undefined;
|
|
19157
19247
|
organization?: string | undefined;
|
|
19158
|
-
|
|
19159
|
-
redirect_uri?: string | undefined;
|
|
19160
|
-
act_as?: string | undefined;
|
|
19248
|
+
scope?: string | undefined;
|
|
19161
19249
|
prompt?: string | undefined;
|
|
19162
|
-
|
|
19163
|
-
code_challenge?: string | undefined;
|
|
19250
|
+
username?: string | undefined;
|
|
19164
19251
|
ui_locales?: string | undefined;
|
|
19165
19252
|
max_age?: number | undefined;
|
|
19166
19253
|
acr_values?: string | undefined;
|
|
@@ -19184,19 +19271,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19184
19271
|
phone_number: string;
|
|
19185
19272
|
send: "code" | "link";
|
|
19186
19273
|
authParams: {
|
|
19187
|
-
|
|
19274
|
+
code_challenge?: string | undefined;
|
|
19275
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19276
|
+
redirect_uri?: string | undefined;
|
|
19277
|
+
nonce?: string | undefined;
|
|
19188
19278
|
state?: string | undefined;
|
|
19189
|
-
|
|
19279
|
+
act_as?: string | undefined;
|
|
19190
19280
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19191
19281
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19192
|
-
|
|
19282
|
+
audience?: string | undefined;
|
|
19193
19283
|
organization?: string | undefined;
|
|
19194
|
-
|
|
19195
|
-
redirect_uri?: string | undefined;
|
|
19196
|
-
act_as?: string | undefined;
|
|
19284
|
+
scope?: string | undefined;
|
|
19197
19285
|
prompt?: string | undefined;
|
|
19198
|
-
|
|
19199
|
-
code_challenge?: string | undefined;
|
|
19286
|
+
username?: string | undefined;
|
|
19200
19287
|
ui_locales?: string | undefined;
|
|
19201
19288
|
max_age?: number | undefined;
|
|
19202
19289
|
acr_values?: string | undefined;
|
|
@@ -19328,14 +19415,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19328
19415
|
input: {
|
|
19329
19416
|
form: {
|
|
19330
19417
|
token: string;
|
|
19331
|
-
token_type_hint?: "
|
|
19418
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19332
19419
|
client_id?: string | undefined;
|
|
19333
19420
|
client_secret?: string | undefined;
|
|
19334
19421
|
};
|
|
19335
19422
|
} & {
|
|
19336
19423
|
json: {
|
|
19337
19424
|
token: string;
|
|
19338
|
-
token_type_hint?: "
|
|
19425
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19339
19426
|
client_id?: string | undefined;
|
|
19340
19427
|
client_secret?: string | undefined;
|
|
19341
19428
|
};
|
|
@@ -19347,14 +19434,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19347
19434
|
input: {
|
|
19348
19435
|
form: {
|
|
19349
19436
|
token: string;
|
|
19350
|
-
token_type_hint?: "
|
|
19437
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19351
19438
|
client_id?: string | undefined;
|
|
19352
19439
|
client_secret?: string | undefined;
|
|
19353
19440
|
};
|
|
19354
19441
|
} & {
|
|
19355
19442
|
json: {
|
|
19356
19443
|
token: string;
|
|
19357
|
-
token_type_hint?: "
|
|
19444
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19358
19445
|
client_id?: string | undefined;
|
|
19359
19446
|
client_secret?: string | undefined;
|
|
19360
19447
|
};
|
|
@@ -19369,14 +19456,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19369
19456
|
input: {
|
|
19370
19457
|
form: {
|
|
19371
19458
|
token: string;
|
|
19372
|
-
token_type_hint?: "
|
|
19459
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19373
19460
|
client_id?: string | undefined;
|
|
19374
19461
|
client_secret?: string | undefined;
|
|
19375
19462
|
};
|
|
19376
19463
|
} & {
|
|
19377
19464
|
json: {
|
|
19378
19465
|
token: string;
|
|
19379
|
-
token_type_hint?: "
|
|
19466
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19380
19467
|
client_id?: string | undefined;
|
|
19381
19468
|
client_secret?: string | undefined;
|
|
19382
19469
|
};
|
|
@@ -19426,7 +19513,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19426
19513
|
client_id: string;
|
|
19427
19514
|
username: string;
|
|
19428
19515
|
otp: string;
|
|
19429
|
-
realm: "
|
|
19516
|
+
realm: "email" | "sms";
|
|
19430
19517
|
} | {
|
|
19431
19518
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19432
19519
|
subject_token: string;
|
|
@@ -19473,7 +19560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19473
19560
|
client_id: string;
|
|
19474
19561
|
username: string;
|
|
19475
19562
|
otp: string;
|
|
19476
|
-
realm: "
|
|
19563
|
+
realm: "email" | "sms";
|
|
19477
19564
|
} | {
|
|
19478
19565
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19479
19566
|
subject_token: string;
|
|
@@ -19525,7 +19612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19525
19612
|
client_id: string;
|
|
19526
19613
|
username: string;
|
|
19527
19614
|
otp: string;
|
|
19528
|
-
realm: "
|
|
19615
|
+
realm: "email" | "sms";
|
|
19529
19616
|
} | {
|
|
19530
19617
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19531
19618
|
subject_token: string;
|
|
@@ -19572,7 +19659,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19572
19659
|
client_id: string;
|
|
19573
19660
|
username: string;
|
|
19574
19661
|
otp: string;
|
|
19575
|
-
realm: "
|
|
19662
|
+
realm: "email" | "sms";
|
|
19576
19663
|
} | {
|
|
19577
19664
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19578
19665
|
subject_token: string;
|
|
@@ -19632,7 +19719,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19632
19719
|
client_id: string;
|
|
19633
19720
|
username: string;
|
|
19634
19721
|
otp: string;
|
|
19635
|
-
realm: "
|
|
19722
|
+
realm: "email" | "sms";
|
|
19636
19723
|
} | {
|
|
19637
19724
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19638
19725
|
subject_token: string;
|
|
@@ -19679,7 +19766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19679
19766
|
client_id: string;
|
|
19680
19767
|
username: string;
|
|
19681
19768
|
otp: string;
|
|
19682
|
-
realm: "
|
|
19769
|
+
realm: "email" | "sms";
|
|
19683
19770
|
} | {
|
|
19684
19771
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19685
19772
|
subject_token: string;
|
|
@@ -19734,7 +19821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19734
19821
|
client_id: string;
|
|
19735
19822
|
username: string;
|
|
19736
19823
|
otp: string;
|
|
19737
|
-
realm: "
|
|
19824
|
+
realm: "email" | "sms";
|
|
19738
19825
|
} | {
|
|
19739
19826
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19740
19827
|
subject_token: string;
|
|
@@ -19781,7 +19868,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19781
19868
|
client_id: string;
|
|
19782
19869
|
username: string;
|
|
19783
19870
|
otp: string;
|
|
19784
|
-
realm: "
|
|
19871
|
+
realm: "email" | "sms";
|
|
19785
19872
|
} | {
|
|
19786
19873
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19787
19874
|
subject_token: string;
|
|
@@ -19836,7 +19923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19836
19923
|
client_id: string;
|
|
19837
19924
|
username: string;
|
|
19838
19925
|
otp: string;
|
|
19839
|
-
realm: "
|
|
19926
|
+
realm: "email" | "sms";
|
|
19840
19927
|
} | {
|
|
19841
19928
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19842
19929
|
subject_token: string;
|
|
@@ -19883,7 +19970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19883
19970
|
client_id: string;
|
|
19884
19971
|
username: string;
|
|
19885
19972
|
otp: string;
|
|
19886
|
-
realm: "
|
|
19973
|
+
realm: "email" | "sms";
|
|
19887
19974
|
} | {
|
|
19888
19975
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19889
19976
|
subject_token: string;
|
|
@@ -21107,7 +21194,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21107
21194
|
$get: {
|
|
21108
21195
|
input: {
|
|
21109
21196
|
param: {
|
|
21110
|
-
screen: "
|
|
21197
|
+
screen: "login" | "signup" | "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";
|
|
21111
21198
|
};
|
|
21112
21199
|
} & {
|
|
21113
21200
|
query: {
|
|
@@ -21123,7 +21210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21123
21210
|
} | {
|
|
21124
21211
|
input: {
|
|
21125
21212
|
param: {
|
|
21126
|
-
screen: "
|
|
21213
|
+
screen: "login" | "signup" | "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";
|
|
21127
21214
|
};
|
|
21128
21215
|
} & {
|
|
21129
21216
|
query: {
|
|
@@ -21139,7 +21226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21139
21226
|
} | {
|
|
21140
21227
|
input: {
|
|
21141
21228
|
param: {
|
|
21142
|
-
screen: "
|
|
21229
|
+
screen: "login" | "signup" | "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";
|
|
21143
21230
|
};
|
|
21144
21231
|
} & {
|
|
21145
21232
|
query: {
|
|
@@ -21159,7 +21246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21159
21246
|
$post: {
|
|
21160
21247
|
input: {
|
|
21161
21248
|
param: {
|
|
21162
|
-
screen: "
|
|
21249
|
+
screen: "login" | "signup" | "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";
|
|
21163
21250
|
};
|
|
21164
21251
|
} & {
|
|
21165
21252
|
query: {
|
|
@@ -21177,7 +21264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21177
21264
|
} | {
|
|
21178
21265
|
input: {
|
|
21179
21266
|
param: {
|
|
21180
|
-
screen: "
|
|
21267
|
+
screen: "login" | "signup" | "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";
|
|
21181
21268
|
};
|
|
21182
21269
|
} & {
|
|
21183
21270
|
query: {
|
|
@@ -21272,8 +21359,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21272
21359
|
};
|
|
21273
21360
|
};
|
|
21274
21361
|
}, "/forms"> & hono_types.MergeSchemaPath<{}, "/screen">, "/">;
|
|
21362
|
+
scimApp: OpenAPIHono<{
|
|
21363
|
+
Bindings: Bindings;
|
|
21364
|
+
Variables: Variables;
|
|
21365
|
+
}, {}, "/"> | undefined;
|
|
21275
21366
|
createX509Certificate: typeof createX509Certificate;
|
|
21276
21367
|
};
|
|
21277
21368
|
|
|
21278
|
-
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, 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 };
|
|
21279
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, 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 };
|
|
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 };
|