@workos-inc/node 10.3.0 → 10.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/{factory-CPZuUFi2.d.cts → factory-B85kMVYe.d.cts} +46 -6
- package/lib/{factory-CPZuUFi2.d.mts → factory-B85kMVYe.d.mts} +46 -6
- package/lib/{factory-Bh2PZgM6.mjs → factory-CRqtXIIK.mjs} +85 -13
- package/lib/factory-CRqtXIIK.mjs.map +1 -0
- package/lib/{factory-QsnbLZsB.cjs → factory-CYqsa7gY.cjs} +86 -14
- package/lib/factory-CYqsa7gY.cjs.map +1 -0
- package/lib/index.cjs +1 -1
- package/lib/index.d.cts +2 -2
- package/lib/index.d.mts +2 -2
- package/lib/index.mjs +1 -1
- package/lib/index.worker.cjs +1 -1
- package/lib/index.worker.d.cts +1 -1
- package/lib/index.worker.d.mts +1 -1
- package/lib/index.worker.mjs +1 -1
- package/package.json +1 -4
- package/lib/factory-Bh2PZgM6.mjs.map +0 -1
- package/lib/factory-QsnbLZsB.cjs.map +0 -1
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { EventEmitter } from "eventemitter3";
|
|
2
|
-
|
|
3
1
|
//#region src/common/crypto/crypto-provider.d.ts
|
|
4
2
|
/**
|
|
5
3
|
* Interface encapsulating the various crypto computations used by the library,
|
|
@@ -1665,6 +1663,7 @@ interface UserManagementAuthorizationURLBaseOptions {
|
|
|
1665
1663
|
connectionId?: string;
|
|
1666
1664
|
organizationId?: string;
|
|
1667
1665
|
domainHint?: string;
|
|
1666
|
+
invitationToken?: string;
|
|
1668
1667
|
loginHint?: string;
|
|
1669
1668
|
provider?: string;
|
|
1670
1669
|
providerQueryParams?: Record<string, string | boolean | number>;
|
|
@@ -2533,6 +2532,13 @@ interface FlagPollEntry {
|
|
|
2533
2532
|
}
|
|
2534
2533
|
type FlagPollResponse = Record<string, FlagPollEntry>;
|
|
2535
2534
|
//#endregion
|
|
2535
|
+
//#region src/feature-flags/interfaces/flag-change.interface.d.ts
|
|
2536
|
+
interface FlagChange {
|
|
2537
|
+
key: string;
|
|
2538
|
+
previous: FlagPollEntry | null;
|
|
2539
|
+
current: FlagPollEntry | null;
|
|
2540
|
+
}
|
|
2541
|
+
//#endregion
|
|
2536
2542
|
//#region src/feature-flags/interfaces/list-feature-flags-options.interface.d.ts
|
|
2537
2543
|
type ListFeatureFlagsOptions = PaginationOptions;
|
|
2538
2544
|
//#endregion
|
|
@@ -6359,8 +6365,43 @@ declare class UserManagement {
|
|
|
6359
6365
|
getJwksUrl(clientId: string): string;
|
|
6360
6366
|
}
|
|
6361
6367
|
//#endregion
|
|
6368
|
+
//#region src/feature-flags/event-emitter.d.ts
|
|
6369
|
+
type Listener<Args extends unknown[]> = (...args: Args) => void;
|
|
6370
|
+
/**
|
|
6371
|
+
* Minimal, runtime-agnostic, typed event emitter.
|
|
6372
|
+
*
|
|
6373
|
+
* Replaces eventemitter3 so the SDK carries no event dependency and works in
|
|
6374
|
+
* edge runtimes where `node:events` is not available. Generic over an event
|
|
6375
|
+
* map (`{ eventName: [arg1, arg2, ...] }`) for compile-time-checked event
|
|
6376
|
+
* names and payloads.
|
|
6377
|
+
*
|
|
6378
|
+
* Unlike eventemitter3, an unhandled `'error'` event throws instead of being
|
|
6379
|
+
* silently dropped — matching Node's `EventEmitter` so failures are never
|
|
6380
|
+
* swallowed.
|
|
6381
|
+
*/
|
|
6382
|
+
declare class EventEmitter<Events extends Record<keyof Events, unknown[]>> {
|
|
6383
|
+
private handlers;
|
|
6384
|
+
on<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6385
|
+
once<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6386
|
+
off<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6387
|
+
emit<E extends keyof Events>(event: E, ...args: Events[E]): boolean;
|
|
6388
|
+
listenerCount(event: keyof Events): number;
|
|
6389
|
+
removeAllListeners(event?: keyof Events): this;
|
|
6390
|
+
addListener<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6391
|
+
removeListener<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6392
|
+
listeners<E extends keyof Events>(event: E): Array<Listener<Events[E]>>;
|
|
6393
|
+
eventNames(): Array<keyof Events>;
|
|
6394
|
+
private add;
|
|
6395
|
+
private remove;
|
|
6396
|
+
}
|
|
6397
|
+
//#endregion
|
|
6362
6398
|
//#region src/feature-flags/runtime-client.d.ts
|
|
6363
|
-
|
|
6399
|
+
interface RuntimeClientEvents {
|
|
6400
|
+
change: [FlagChange];
|
|
6401
|
+
error: [Error];
|
|
6402
|
+
failed: [Error];
|
|
6403
|
+
}
|
|
6404
|
+
declare class FeatureFlagsRuntimeClient extends EventEmitter<RuntimeClientEvents> {
|
|
6364
6405
|
private readonly workos;
|
|
6365
6406
|
private readonly store;
|
|
6366
6407
|
private readonly evaluator;
|
|
@@ -6380,7 +6421,6 @@ declare class FeatureFlagsRuntimeClient extends EventEmitter {
|
|
|
6380
6421
|
waitUntilReady(options?: {
|
|
6381
6422
|
timeoutMs?: number;
|
|
6382
6423
|
}): Promise<void>;
|
|
6383
|
-
emit(event: string | symbol, ...args: unknown[]): boolean;
|
|
6384
6424
|
close(): void;
|
|
6385
6425
|
isEnabled(flagKey: string, context?: EvaluationContext, defaultValue?: boolean): boolean;
|
|
6386
6426
|
getAllFlags(context?: EvaluationContext): Record<string, boolean>;
|
|
@@ -8523,5 +8563,5 @@ interface ConfidentialClientOptions extends WorkOSOptions {
|
|
|
8523
8563
|
declare function createWorkOS(options: PublicClientOptions): PublicWorkOS;
|
|
8524
8564
|
declare function createWorkOS(options: ConfidentialClientOptions): WorkOS;
|
|
8525
8565
|
//#endregion
|
|
8526
|
-
export { ReadObjectMetadataResponse as $, PermissionUpdatedEventResponse as $a, PKCEAuthorizationURLResult as $c, AuthorizationResourceResponse as $d, GroupMemberAddedEventResponse as $i, AuthenticateWithEmailVerificationOptions as $l, AutoPaginatable as $n, RuntimeClientStats as $o, AuthenticationPasswordFailedEventResponse as $r, SerializedResetPasswordOptions as $s, RadarStandaloneAssessRequestAction as $t, RemoveGroupRoleAssignmentsOptionsForOrganization as $u, ApiKeyRequiredException as A, OrganizationMembershipCreated as Aa, ListInvitationsOptions as Ac, RoleAssignment as Ad, EnvironmentRoleResponse as Af, DsyncUserDeletedEvent as Ai, Impersonator as Al, ExternalAuthCompleteResponse as An, VaultDekReadEventResponse as Ao, GetOptions as Ar, SerializedVerifyEmailOptions as As, SerializedAuditLogExportOptions as At, DirectoryUserWithGroups as Au, ObjectSummaryResponse as B, OrganizationRoleUpdatedEvent as Ba, SerializedEnrollUserInMfaFactorOptions as Bc, SerializedListResourcesForMembershipOptions as Bd, DirectoryState as Bf, FlagCreatedEvent as Bi, AuthenticateUserWithOrganizationSelectionCredentials as Bl, CreateM2MApplicationResponse as Bn, SerializedUpdateGroupOptions as Bo, AuthenticationMagicAuthSucceededEvent as Br, SessionResponse as Bs, EnrollFactorOptions as Bt, RoleResponse as Bu, BadRequestException as C, OrganizationDomainDeletedEventResponse as Ca, AuthorizationOrganizationMembership as Cc, BaseAssignRoleOptions as Cd, SerializedUpdateEnvironmentRoleOptions as Cf, DsyncGroupUpdatedEventResponse as Ci, UserManagementAccessToken as Cl, ConnectApplicationM2M as Cn, VaultDataReadEvent as Co, WorkOSOptions as Cr, OrganizationDomainVerificationFailedResponse as Cs, AuditLogSchema as Ct, ConnectionResponse as Cu, isAuthenticationErrorData as D, OrganizationDomainVerificationFailedEventResponse as Da, OrganizationMembership as Dc, SerializedListRoleAssignmentsForResourceOptions as Dd, EnvironmentRole as Df, DsyncGroupUserRemovedEventResponse as Di, CreateUserResponseResponse as Dl, ConnectApplicationResponse as Dn, VaultDekDecryptedEvent as Do, PatchOptions as Dr, OrganizationDomainVerificationStrategy as Ds, AuditLogExport as Dt, DefaultCustomAttributes as Du, AuthenticationException as E, OrganizationDomainVerificationFailedEvent as Ea, BaseOrganizationMembershipResponse as Ec, ListRoleAssignmentsForResourceOptions as Ed, SerializedCreateEnvironmentRoleOptions as Ef, DsyncGroupUserRemovedEvent as Ei, CreateUserResponse as El, ConnectApplicationOAuthResponse as En, VaultDataUpdatedEventResponse as Eo, PostOptions as Er, OrganizationDomainState as Es, AuditLogTargetSchema as Et, SSOPKCEAuthorizationURLResult as Eu, UpdateWebhookEndpointEvents as F, OrganizationMembershipUpdatedResponse as Fa, InvitationEvent as Fc, ListMembershipsForResourceByExternalIdOptions as Fd, PaginationOptions as Ff, EmailVerificationCreatedEventResponse as Fi, AuthenticateWithRefreshTokenOptions as Fl, DeleteApplicationOptions as Fn, VaultNamesListedEvent as Fo, ApiKeyRevokedEventResponse as Fr, UpdateUserOptions as Fs, FactorResponse as Ft, OrganizationRoleResponse as Fu, ObjectMetadata as G, PasswordResetCreatedEventResponse as Ga, CreateUserOptions as Gc, SerializedAuthorizationCheckOptions as Gd, HttpClient as Gf, FlagRuleUpdatedEventResponse as Gi, SerializedAuthenticateWithRadarSmsChallengeOptions as Gl, ListApplicationsOptions as Gn, Group as Go, AuthenticationOAuthFailedEventResponse as Gr, SendRadarSmsChallengeResponseResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, GroupRoleAssignmentEntryForOrganization as Gu, ObjectVersionResponse as H, OrganizationUpdatedEvent as Ha, EmailVerificationEvent as Hc, AuthorizationCheckOptionsWithResourceExternalId as Hd, DirectoryType as Hf, FlagDeletedEvent as Hi, SerializedAuthenticateWithOrganizationSelectionOptions as Hl, CreateOAuthApplicationResponse as Hn, RemoveGroupOrganizationMembershipOptions as Ho, AuthenticationMfaSucceededEvent as Hr, SendVerificationEmailOptions as Hs, ChallengeResponse as Ht, ListEffectivePermissionsOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationRoleCreatedEvent as Ia, InvitationEventResponse as Ic, ListMembershipsForResourceOptions as Id, DirectoryGroup as If, Event as Ii, SerializedAuthenticateWithRefreshTokenOptions as Il, UpdateApplicationOptions as In, VaultNamesListedEventResponse as Io, AuthenticationEmailVerificationSucceededEvent as Ir, SerializedUpdateOrganizationMembershipOptions as Is, FactorWithSecrets as It, Role as Iu, ActorResponse as J, PermissionCreatedEvent as Ja, SerializedCreatePasswordResetOptions as Jc, UpdateAuthorizationResourceByExternalIdOptions as Jd, RequestHeaders as Jf, GroupCreatedEvent as Ji, SerializedAuthenticateWithRadarEmailChallengeOptions as Jl, UserConsentOptionResponse as Jn, DeleteGroupOptions as Jo, AuthenticationPasskeyFailedEvent as Jr, SerializedSendInvitationOptions as Js, RadarStandaloneResponseBlocklistType as Jt, ReplaceGroupRoleAssignmentsOptions as Ju, ObjectMetadataResponse as K, PasswordResetSucceededEvent as Ka, SerializedCreateUserOptions as Kc, DeleteAuthorizationResourceOptions as Kd, HttpClientInterface as Kf, FlagUpdatedEvent as Ki, AuthenticateUserWithRadarEmailChallengeCredentials as Kl, CompleteOAuth2Options as Kn, GroupResponse as Ko, AuthenticationOAuthSucceededEvent as Kr, SerializedSendRadarSmsChallengeOptions as Ks, RadarStandaloneResponse as Kt, GroupRoleAssignmentEntryWithResourceExternalId as Ku, CreateWebhookEndpointEvents as L, OrganizationRoleCreatedEventResponse as La, InvitationResponse as Lc, ListResourcesForMembershipOptions as Ld, DirectoryGroupResponse as Lf, EventBase as Li, AuthenticateUserWithPasswordCredentials as Ll, GetApplicationOptions as Ln, DataKey as Lo, AuthenticationEmailVerificationSucceededEventResponse as Lr, UpdateOrganizationMembershipOptions as Ls, FactorWithSecretsResponse as Lt, RoleEvent as Lu, WebhookEndpoint as M, OrganizationMembershipDeleted as Ma, ListGroupsForOrganizationMembershipOptions as Mc, RoleAssignmentResourceResponse as Md, ListDirectoryGroupsOptions as Mf, DsyncUserUpdatedEvent as Mi, AuthenticateWithRefreshTokenPublicClientOptions as Ml, DeleteClientSecretOptions as Mn, VaultKekCreatedEventResponse as Mo, ApiKeyCreatedEvent as Mr, SerializedUpdateUserPasswordOptions as Ms, VerifyResponseResponse as Mt, ListOrganizationRolesResponse as Mu, WebhookEndpointResponse as N, OrganizationMembershipDeletedResponse as Na, ListAuthFactorsOptions as Nc, RoleAssignmentResponse as Nd, ListDirectoriesOptions as Nf, DsyncUserUpdatedEventResponse as Ni, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Nl, CreateApplicationClientSecretOptions as Nn, VaultMetadataReadEvent as No, ApiKeyCreatedEventResponse as Nr, UpdateUserPasswordOptions as Ns, VerifyChallengeOptions as Nt, OrganizationRoleEvent as Nu, GenericServerException as O, OrganizationDomainVerifiedEvent as Oa, OrganizationMembershipResponse as Oc, ListRoleAssignmentsOptions as Od, EnvironmentRoleList as Of, DsyncUserCreatedEvent as Oi, User as Ol, ConnectApplicationRedirectUri as On, VaultDekDecryptedEventResponse as Oo, List as Or, CreateOrganizationDomainOptions as Os, AuditLogExportResponse as Ot, DirectoryUser as Ou, WebhookEndpointStatus as P, OrganizationMembershipUpdated as Pa, Invitation as Pc, RoleAssignmentRole as Pd, SerializedListDirectoriesOptions as Pf, EmailVerificationCreatedEvent as Pi, AuthenticateUserWithRefreshTokenCredentials as Pl, ListApplicationClientSecretsOptions as Pn, VaultMetadataReadEventResponse as Po, ApiKeyRevokedEvent as Pr, SerializedUpdateUserOptions as Ps, Factor as Pt, OrganizationRoleEventResponse as Pu, UpdateObjectOptions as Q, PermissionUpdatedEvent as Qa, SerializedCreateMagicAuthOptions as Qc, AuthorizationResource as Qd, CryptoProvider as Qf, GroupMemberAddedEvent as Qi, AuthenticateUserWithEmailVerificationCredentials as Ql, UserObjectResponse as Qn, SerializedAddGroupOrganizationMembershipOptions as Qo, AuthenticationPasswordFailedEvent as Qr, ResetPasswordOptions as Qs, RadarListType as Qt, RemoveGroupRoleAssignmentsOptions as Qu, WorkOS as R, OrganizationRoleDeletedEvent as Ra, Identity as Rc, ListResourcesForMembershipOptionsWithParentExternalId as Rd, Directory as Rf, EventName as Ri, AuthenticateWithPasswordOptions as Rl, CreateApplicationOptions as Rn, DataKeyPair as Ro, AuthenticationMagicAuthFailedEvent as Rr, AuthMethod as Rs, Sms as Rt, RoleEventResponse as Ru, ConflictException as S, OrganizationDomainDeletedEvent as Sa, SerializedListOrganizationMembershipsOptions as Sc, AssignRoleOptionsWithResourceId as Sd, SetEnvironmentRolePermissionsOptions as Sf, DsyncGroupUpdatedEvent as Si, SessionCookieData as Sl, ConnectApplication as Sn, VaultDataDeletedEventResponse as So, WorkOSResponseError as Sr, OrganizationDomainVerificationFailed as Ss, AuditLogActorSchema as St, ConnectionDomain as Su, AuthenticationErrorData as T, OrganizationDomainUpdatedEventResponse as Ta, BaseOrganizationMembership as Tc, ListRoleAssignmentsForResourceByExternalIdOptions as Td, CreateEnvironmentRoleOptions as Tf, DsyncGroupUserAddedEventResponse as Ti, AuthenticationResponseResponse as Tl, ConnectApplicationOAuth as Tn, VaultDataUpdatedEvent as To, PutOptions as Tr, OrganizationDomainResponse as Ts, AuditLogSchemaResponse as Tt, SSOAuthorizationURLOptions as Tu, VaultObject as U, OrganizationUpdatedResponse as Ua, EmailVerificationEventResponse as Uc, AuthorizationCheckOptionsWithResourceId as Ud, EventDirectory as Uf, FlagDeletedEventResponse as Ui, AuthenticateUserWithRadarSmsChallengeCredentials as Ul, RedirectUriInput as Un, ListGroupsOptions as Uo, AuthenticationMfaSucceededEventResponse as Ur, SendRadarSmsChallengeOptions as Us, ChallengeFactorOptions as Ut, BaseGroupRoleAssignmentEntry as Uu, ObjectVersion as V, OrganizationRoleUpdatedEventResponse as Va, EmailVerification as Vc, AuthorizationCheckOptions as Vd, DirectoryStateResponse as Vf, FlagCreatedEventResponse as Vi, AuthenticateWithOrganizationSelectionOptions as Vl, CreateOAuthApplication as Vn, UpdateGroupOptions as Vo, AuthenticationMagicAuthSucceededEventResponse as Vr, SessionStatus as Vs, Challenge as Vt, ListEffectivePermissionsByExternalIdOptions as Vu, VaultObjectResponse as W, PasswordResetCreatedEvent as Wa, EmailVerificationResponse as Wc, AuthorizationCheckResult as Wd, EventDirectoryResponse as Wf, FlagRuleUpdatedEvent as Wi, AuthenticateWithRadarSmsChallengeOptions as Wl, RedirectUriInputResponse as Wn, ListGroupOrganizationMembershipsOptions as Wo, AuthenticationOAuthFailedEvent as Wr, SendRadarSmsChallengeResponse as Ws, RadarListEntryAlreadyPresentResponse as Wt, GroupRoleAssignmentEntry as Wu, CreateDataKeyResponseWire as X, PermissionDeletedEvent as Xa, SerializedCreateOrganizationMembershipOptions as Xc, ListAuthorizationResourcesOptions as Xd, ResponseHeaderValue as Xf, GroupDeletedEvent as Xi, AuthenticateWithMagicAuthOptions as Xl, UserConsentOptionChoiceResponse as Xn, SerializedCreateGroupOptions as Xo, AuthenticationPasskeySucceededEvent as Xr, SerializedRevokeSessionOptions as Xs, RadarStandaloneResponseVerdict as Xt, SerializedReplaceGroupRoleAssignmentsOptions as Xu, CreateDataKeyResponse as Y, PermissionCreatedEventResponse as Ya, CreateOrganizationMembershipOptions as Yc, GetAuthorizationResourceByExternalIdOptions as Yd, RequestOptions as Yf, GroupCreatedEventResponse as Yi, AuthenticateUserWithMagicAuthCredentials as Yl, UserConsentOptionChoice as Yn, CreateGroupOptions as Yo, AuthenticationPasskeyFailedEventResponse as Yr, RevokeSessionOptions as Ys, RadarStandaloneResponseControl as Yt, SerializedGroupRoleAssignmentEntry as Yu, UpdateObjectEntity as Z, PermissionDeletedEventResponse as Za, CreateMagicAuthOptions as Zc, SerializedListAuthorizationResourcesOptions as Zd, ResponseHeaders as Zf, GroupDeletedEventResponse as Zi, SerializedAuthenticateWithMagicAuthOptions as Zl, UserObject as Zn, AddGroupOrganizationMembershipOptions as Zo, AuthenticationPasskeySucceededEventResponse as Zr, serializeRevokeSessionOptions as Zs, RadarListAction as Zt, BaseRemoveGroupRoleAssignmentsOptions as Zu, SignatureVerificationException as _, OrganizationCreatedResponse as _a, SerializedListUsersOptions as _c, RemoveRoleOptionsWithResourceExternalId as _d, UpdateOrganizationRoleOptions as _f, DsyncDeletedEventResponse as _i, SerializedAuthenticateWithTotpOptions as _l, SerializedListEventOptions as _n, VaultByokKeyVerificationCompletedEvent as _o, CreateOrganizationOptions as _r, CreateOrganizationApiKeyOptions as _s, AuditLogActor as _t, ListConnectionsOptions as _u, PublicWorkOS as a, GroupUpdatedEventResponse as aa, PasswordResetEvent as ac, CreateGroupRoleAssignmentOptions as ad, UpdateAuthorizationResourceOptions as af, AuthenticationSSOFailedEventResponse as ai, AuthenticationFactorWithSecrets as al, SerializedGetAccessTokenFailureResponse as an, RoleUpdatedEventResponse as ao, UserRegistrationActionResponseData as ar, FlagPollResponse as as, DecryptDataKeyResponse as at, SerializedAuthenticateWithCodeOptions as au, NotFoundException as b, OrganizationDomainCreatedEvent as ba, SerializedListSessionsOptions as bc, AssignRoleOptions as bd, OrganizationRole as bf, DsyncGroupDeletedEvent as bi, AuthenticateWithSessionCookieOptions as bl, ApplicationCredentialsListItem as bn, VaultDataCreatedEventResponse as bo, DomainData as br, ApiKey as bs, CreateAuditLogEventRequestOptions as bt, GetProfileOptions as bu, PortalLinkResponseWire as c, InvitationCreatedEvent as ca, CreateMagicAuthResponse as cc, CreateGroupRoleAssignmentOptionsWithResourceId as cd, UpdatePermissionOptions as cf, ConnectionActivatedEvent as ci, TotpResponse as cl, SerializedGetAccessTokenSuccessResponse as cn, SessionRevokedEvent as co, UserData as cr, FeatureFlagResponse as cs, WidgetSessionTokenResponseWire as ct, SerializedAuthenticatePublicClientBase as cu, IntentOptions as d, InvitationResentEventResponse as da, MagicAuthEvent as dc, ListGroupRoleAssignmentsOptions as dd, Permission as df, ConnectionDeactivatedEventResponse as di, AuthenticationEvent as dl, SendSessionResponse as dn, UserCreatedEvent as do, SerializedUpdateOrganizationOptions as dr, SerializedValidateApiKeyResponse as ds, FeatureFlagsRuntimeClient as dt, ProfileAndToken as du, GroupMemberEventData as ea, ResendInvitationOptions as ec, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as ed, CreateAuthorizationResourceOptions as ef, AuthenticationPasswordSucceededEvent as ei, UserManagementAuthorizationURLOptions as el, RadarStandaloneAssessRequestAuthMethod as en, RoleCreatedEvent as eo, PKCE as er, RuntimeClientLogger as es, ReadObjectOptions as et, SerializedAuthenticateWithEmailVerificationOptions as eu, IntentOptionsResponse as f, InvitationRevokedEvent as fa, MagicAuthEventResponse as fc, GroupRoleAssignment as fd, PermissionResponse as ff, ConnectionDeletedEvent as fi, AuthenticationEventResponse as fl, CreatePasswordlessSessionOptions as fn, UserCreatedEventResponse as fo, UpdateOrganizationOptions as fr, ValidateApiKeyOptions as fs, CookieSession as ft, ProfileAndTokenResponse as fu, UnauthorizedException as g, OrganizationCreatedEvent as ga, ListUsersOptions as gc, RemoveRoleOptions as gd, SerializedUpdateOrganizationRoleOptions as gf, DsyncDeletedEvent as gi, AuthenticateWithTotpOptions as gl, ListEventOptions as gn, UserUpdatedEventResponse as go, ListOrganizationFeatureFlagsOptions as gr, SerializedCreatedApiKey as gs, SerializedCreateAuditLogSchemaOptions as gt, OauthTokensResponse as gu, UnprocessableEntityException as h, MagicAuthCreatedEventResponse as ha, Locale as hc, BaseRemoveRoleOptions as hd, SetOrganizationRolePermissionsOptions as hf, DsyncActivatedEventResponse as hi, AuthenticateUserWithTotpCredentials as hl, PasswordlessSessionResponse as hn, UserUpdatedEvent as ho, ListOrganizationsOptions as hr, CreatedApiKey as hs, CreateAuditLogSchemaResponse as ht, OauthTokens as hu, PublicUserManagement as i, GroupUpdatedEvent as ia, PasswordReset as ic, BaseCreateGroupRoleAssignmentOptions as id, SerializedUpdateAuthorizationResourceOptions as if, AuthenticationSSOFailedEvent as ii, AuthenticationFactorResponse as il, GetAccessTokenSuccessResponse as in, RoleUpdatedEvent as io, ResponsePayload as ir, FlagPollEntry as is, DecryptDataKeyOptions as it, AuthenticateWithCodeOptions as iu, Webhooks as j, OrganizationMembershipCreatedResponse as ja, SerializedListInvitationsOptions as jc, RoleAssignmentResource as jd, ListDirectoryUsersOptions as jf, DsyncUserDeletedEventResponse as ji, ImpersonatorResponse as jl, ExternalAuthCompleteResponseWire as jn, VaultKekCreatedEvent as jo, GenerateLinkIntent as jr, VerifyEmailOptions as js, VerifyResponse as jt, DirectoryUserWithGroupsResponse as ju, WorkOSErrorData as k, OrganizationDomainVerifiedEventResponse as ka, OrganizationMembershipStatus as kc, SerializedListRoleAssignmentsOptions as kd, EnvironmentRoleListResponse as kf, DsyncUserCreatedEventResponse as ki, UserResponse as kl, ConnectApplicationRedirectUriResponse as kn, VaultDekReadEvent as ko, ListResponse as kr, SerializedCreateOrganizationDomainOptions as ks, AuditLogExportOptions as kt, DirectoryUserResponse as ku, GenerateLink as l, InvitationCreatedEventResponse as la, CreateMagicAuthResponseResponse as lc, SerializedCreateGroupRoleAssignmentOptions as ld, CreatePermissionOptions as lf, ConnectionActivatedEventResponse as li, TotpWithSecrets as ll, AccessToken as ln, SessionRevokedEventResponse as lo, UserDataPayload as lr, EvaluationContext as ls, CreateTokenOptions as lt, SerializedAuthenticateWithOptionsBase as lu, SSOIntentOptionsResponse as m, MagicAuthCreatedEvent as ma, LogoutURLOptions as mc, RemoveRoleAssignmentOptions as md, AddOrganizationRolePermissionOptions as mf, DsyncActivatedEvent as mi, AuthenticationEventSsoResponse as ml, PasswordlessSession as mn, UserDeletedEventResponse as mo, OrganizationResponse as mr, ListOrganizationApiKeysOptions as ms, CreateAuditLogSchemaRequestOptions as mt, ProfileResponse as mu, PublicClientOptions as n, GroupMemberRemovedEvent as na, RefreshSessionFailureReason as nc, SerializedRemoveGroupRoleAssignmentsOptions as nd, CreateOptionsWithParentResourceId as nf, AuthenticationRadarRiskDetectedEvent as ni, AuthenticationRadarRiskDetectedEventResponseData as nl, GetAccessTokenOptions as nn, RoleDeletedEvent as no, Actions as nr, RemoveFlagTargetOptions as ns, CreateObjectEntity as nt, SerializedAuthenticateWithCodeAndVerifierOptions as nu, createWorkOS as o, InvitationAcceptedEvent as oa, PasswordResetEventResponse as oc, CreateGroupRoleAssignmentOptionsForOrganization as od, ListPermissionsOptions as of, AuthenticationSSOSucceededEvent as oi, AuthenticationFactorWithSecretsResponse as ol, SerializedGetAccessTokenOptions as on, SessionCreatedEvent as oo, ActionContext as or, FlagTarget as os, CreateDataKeyOptions as ot, AuthenticateWithOptionsBase as ou, SSOIntentOptions as p, InvitationRevokedEventResponse as pa, MagicAuthResponse as pc, GroupRoleAssignmentResponse as pd, RemoveOrganizationRolePermissionOptions as pf, ConnectionDeletedEventResponse as pi, AuthenticationEventSso as pl, SerializedCreatePasswordlessSessionOptions as pn, UserDeletedEvent as po, Organization as pr, ValidateApiKeyResponse as ps, CreateAuditLogSchemaOptions as pt, Profile as pu, Actor as q, PasswordResetSucceededEventResponse as qa, CreatePasswordResetOptions as qc, DeleteAuthorizationResourceByExternalIdOptions as qd, HttpClientResponseInterface as qf, FlagUpdatedEventResponse as qi, AuthenticateWithRadarEmailChallengeOptions as ql, UserConsentOption as qn, GetGroupOptions as qo, AuthenticationOAuthSucceededEventResponse as qr, SendInvitationOptions as qs, RadarStandaloneResponseWire as qt, GroupRoleAssignmentEntryWithResourceId as qu, PublicSSO as r, GroupMemberRemovedEventResponse as ra, RefreshSessionResponse as rc, RemoveGroupRoleAssignmentOptions as rd, SerializedCreateAuthorizationResourceOptions as rf, AuthenticationRadarRiskDetectedEventResponse as ri, AuthenticationFactor as rl, GetAccessTokenResponse as rn, RoleDeletedEventResponse as ro, AuthenticationActionResponseData as rr, ListFeatureFlagsOptions as rs, CreateObjectOptions as rt, AuthenticateUserWithCodeCredentials as ru, PortalLinkResponse as s, InvitationAcceptedEventResponse as sa, PasswordResetResponse as sc, CreateGroupRoleAssignmentOptionsWithResourceExternalId as sd, SerializedUpdatePermissionOptions as sf, AuthenticationSSOSucceededEventResponse as si, Totp as sl, SerializedGetAccessTokenResponse as sn, SessionCreatedEventResponse as so, ActionPayload as sr, FeatureFlag as ss, WidgetSessionTokenResponse as st, AuthenticateWithSessionOptions as su, ConfidentialClientOptions as t, GroupMemberEventResponseData as ta, SerializedResendInvitationOptions as tc, RemoveGroupRoleAssignmentsOptionsWithResourceId as td, CreateOptionsWithParentExternalId as tf, AuthenticationPasswordSucceededEventResponse as ti, AuthenticationRadarRiskDetectedEventData as tl, GetAccessTokenFailureResponse as tn, RoleCreatedEventResponse as to, PKCEPair as tr, RuntimeClientOptions as ts, ReadObjectResponse as tt, AuthenticateWithCodeAndVerifierOptions as tu, GenerateLinkResponse as u, InvitationResentEvent as ua, MagicAuth as uc, GetGroupRoleAssignmentOptions as ud, SerializedCreatePermissionOptions as uf, ConnectionDeactivatedEvent as ui, TotpWithSecretsResponse as ul, SerializedAccessToken as un, UnknownEvent as uo, UserRegistrationActionPayload as ur, AddFlagTargetOptions as us, WidgetSessionTokenScopes as ut, WithResolvedClientId as uu, RateLimitExceededException as v, OrganizationDeletedEvent as va, ListUserFeatureFlagsOptions as vc, RemoveRoleOptionsWithResourceId as vd, CreateOrganizationRoleOptions as vf, DsyncGroupCreatedEvent as vi, AuthenticateWithSessionCookieFailedResponse as vl, NewConnectApplicationSecret as vn, VaultByokKeyVerificationCompletedEventResponse as vo, CreateOrganizationRequestOptions as vr, CreateOrganizationApiKeyRequestOptions as vs, AuditLogTarget as vt, SerializedListConnectionsOptions as vu, AuthenticationErrorCode as w, OrganizationDomainUpdatedEvent as wa, AuthorizationOrganizationMembershipResponse as wc, SerializedAssignRoleOptions as wd, UpdateEnvironmentRoleOptions as wf, DsyncGroupUserAddedEvent as wi, AuthenticationResponse as wl, ConnectApplicationM2MResponse as wn, VaultDataReadEventResponse as wo, UnprocessableEntityError as wr, OrganizationDomain as ws, AuditLogSchemaMetadata as wt, ConnectionType as wu, NoApiKeyProvidedException as x, OrganizationDomainCreatedEventResponse as xa, ListOrganizationMembershipsOptions as xc, AssignRoleOptionsWithResourceExternalId as xd, AddEnvironmentRolePermissionOptions as xf, DsyncGroupDeletedEventResponse as xi, AuthenticateWithSessionCookieSuccessResponse as xl, ApplicationCredentialsListItemResponse as xn, VaultDataDeletedEvent as xo, DomainDataState as xr, SerializedApiKey as xs, SerializedCreateAuditLogEventOptions as xt, Connection as xu, OauthException as y, OrganizationDeletedResponse as ya, ListSessionsOptions as yc, SerializedRemoveRoleOptions as yd, SerializedCreateOrganizationRoleOptions as yf, DsyncGroupCreatedEventResponse as yi, AuthenticateWithSessionCookieFailureReason as yl, NewConnectApplicationSecretResponse as yn, VaultDataCreatedEvent as yo, SerializedCreateOrganizationOptions as yr, SerializedCreateOrganizationApiKeyOptions as ys, CreateAuditLogEventOptions as yt, GetProfileAndTokenOptions as yu, ObjectSummary as z, OrganizationRoleDeletedEventResponse as za, EnrollAuthFactorOptions as zc, ListResourcesForMembershipOptionsWithParentId as zd, DirectoryResponse as zf, EventResponse as zi, SerializedAuthenticateWithPasswordOptions as zl, CreateM2MApplication as zn, KeyContext as zo, AuthenticationMagicAuthFailedEventResponse as zr, Session as zs, SmsResponse as zt, RoleList as zu };
|
|
8527
|
-
//# sourceMappingURL=factory-
|
|
8566
|
+
export { ReadObjectMetadataResponse as $, PermissionUpdatedEventResponse as $a, SerializedCreateMagicAuthOptions as $c, AuthorizationResource as $d, CryptoProvider as $f, GroupMemberAddedEventResponse as $i, AuthenticateUserWithEmailVerificationCredentials as $l, AutoPaginatable as $n, RuntimeClientStats as $o, AuthenticationPasswordFailedEventResponse as $r, ResetPasswordOptions as $s, RadarStandaloneAssessRequestAction as $t, RemoveGroupRoleAssignmentsOptions as $u, ApiKeyRequiredException as A, OrganizationMembershipCreated as Aa, OrganizationMembershipStatus as Ac, SerializedListRoleAssignmentsOptions as Ad, EnvironmentRoleListResponse as Af, DsyncUserDeletedEvent as Ai, UserResponse as Al, ExternalAuthCompleteResponse as An, VaultDekReadEventResponse as Ao, GetOptions as Ar, SerializedCreateOrganizationDomainOptions as As, SerializedAuditLogExportOptions as At, DirectoryUserResponse as Au, ObjectSummaryResponse as B, OrganizationRoleUpdatedEvent as Ba, EnrollAuthFactorOptions as Bc, ListResourcesForMembershipOptionsWithParentId as Bd, DirectoryResponse as Bf, FlagCreatedEvent as Bi, SerializedAuthenticateWithPasswordOptions as Bl, CreateM2MApplicationResponse as Bn, SerializedUpdateGroupOptions as Bo, AuthenticationMagicAuthSucceededEvent as Br, Session as Bs, EnrollFactorOptions as Bt, RoleList as Bu, BadRequestException as C, OrganizationDomainDeletedEventResponse as Ca, SerializedListOrganizationMembershipsOptions as Cc, AssignRoleOptionsWithResourceId as Cd, SetEnvironmentRolePermissionsOptions as Cf, DsyncGroupUpdatedEventResponse as Ci, SessionCookieData as Cl, ConnectApplicationM2M as Cn, VaultDataReadEvent as Co, WorkOSOptions as Cr, OrganizationDomainVerificationFailed as Cs, AuditLogSchema as Ct, ConnectionDomain as Cu, isAuthenticationErrorData as D, OrganizationDomainVerificationFailedEventResponse as Da, BaseOrganizationMembershipResponse as Dc, ListRoleAssignmentsForResourceOptions as Dd, SerializedCreateEnvironmentRoleOptions as Df, DsyncGroupUserRemovedEventResponse as Di, CreateUserResponse as Dl, ConnectApplicationResponse as Dn, VaultDekDecryptedEvent as Do, PatchOptions as Dr, OrganizationDomainState as Ds, AuditLogExport as Dt, SSOPKCEAuthorizationURLResult as Du, AuthenticationException as E, OrganizationDomainVerificationFailedEvent as Ea, BaseOrganizationMembership as Ec, ListRoleAssignmentsForResourceByExternalIdOptions as Ed, CreateEnvironmentRoleOptions as Ef, DsyncGroupUserRemovedEvent as Ei, AuthenticationResponseResponse as El, ConnectApplicationOAuthResponse as En, VaultDataUpdatedEventResponse as Eo, PostOptions as Er, OrganizationDomainResponse as Es, AuditLogTargetSchema as Et, SSOAuthorizationURLOptions as Eu, UpdateWebhookEndpointEvents as F, OrganizationMembershipUpdatedResponse as Fa, Invitation as Fc, RoleAssignmentRole as Fd, SerializedListDirectoriesOptions as Ff, EmailVerificationCreatedEventResponse as Fi, AuthenticateUserWithRefreshTokenCredentials as Fl, DeleteApplicationOptions as Fn, VaultNamesListedEvent as Fo, ApiKeyRevokedEventResponse as Fr, SerializedUpdateUserOptions as Fs, FactorResponse as Ft, OrganizationRoleEventResponse as Fu, ObjectMetadata as G, PasswordResetCreatedEventResponse as Ga, EmailVerificationResponse as Gc, AuthorizationCheckResult as Gd, EventDirectoryResponse as Gf, FlagRuleUpdatedEventResponse as Gi, AuthenticateWithRadarSmsChallengeOptions as Gl, ListApplicationsOptions as Gn, Group as Go, AuthenticationOAuthFailedEventResponse as Gr, SendRadarSmsChallengeResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, GroupRoleAssignmentEntry as Gu, ObjectVersionResponse as H, OrganizationUpdatedEvent as Ha, EmailVerification as Hc, AuthorizationCheckOptions as Hd, DirectoryStateResponse as Hf, FlagDeletedEvent as Hi, AuthenticateWithOrganizationSelectionOptions as Hl, CreateOAuthApplicationResponse as Hn, RemoveGroupOrganizationMembershipOptions as Ho, AuthenticationMfaSucceededEvent as Hr, SessionStatus as Hs, ChallengeResponse as Ht, ListEffectivePermissionsByExternalIdOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationRoleCreatedEvent as Ia, InvitationEvent as Ic, ListMembershipsForResourceByExternalIdOptions as Id, PaginationOptions as If, Event as Ii, AuthenticateWithRefreshTokenOptions as Il, UpdateApplicationOptions as In, VaultNamesListedEventResponse as Io, AuthenticationEmailVerificationSucceededEvent as Ir, UpdateUserOptions as Is, FactorWithSecrets as It, OrganizationRoleResponse as Iu, ActorResponse as J, PermissionCreatedEvent as Ja, CreatePasswordResetOptions as Jc, DeleteAuthorizationResourceByExternalIdOptions as Jd, HttpClientResponseInterface as Jf, GroupCreatedEvent as Ji, AuthenticateWithRadarEmailChallengeOptions as Jl, UserConsentOptionResponse as Jn, DeleteGroupOptions as Jo, AuthenticationPasskeyFailedEvent as Jr, SendInvitationOptions as Js, RadarStandaloneResponseBlocklistType as Jt, GroupRoleAssignmentEntryWithResourceId as Ju, ObjectMetadataResponse as K, PasswordResetSucceededEvent as Ka, CreateUserOptions as Kc, SerializedAuthorizationCheckOptions as Kd, HttpClient as Kf, FlagUpdatedEvent as Ki, SerializedAuthenticateWithRadarSmsChallengeOptions as Kl, CompleteOAuth2Options as Kn, GroupResponse as Ko, AuthenticationOAuthSucceededEvent as Kr, SendRadarSmsChallengeResponseResponse as Ks, RadarStandaloneResponse as Kt, GroupRoleAssignmentEntryForOrganization as Ku, CreateWebhookEndpointEvents as L, OrganizationRoleCreatedEventResponse as La, InvitationEventResponse as Lc, ListMembershipsForResourceOptions as Ld, DirectoryGroup as Lf, EventBase as Li, SerializedAuthenticateWithRefreshTokenOptions as Ll, GetApplicationOptions as Ln, DataKey as Lo, AuthenticationEmailVerificationSucceededEventResponse as Lr, SerializedUpdateOrganizationMembershipOptions as Ls, FactorWithSecretsResponse as Lt, Role as Lu, WebhookEndpoint as M, OrganizationMembershipDeleted as Ma, SerializedListInvitationsOptions as Mc, RoleAssignmentResource as Md, ListDirectoryUsersOptions as Mf, DsyncUserUpdatedEvent as Mi, ImpersonatorResponse as Ml, DeleteClientSecretOptions as Mn, VaultKekCreatedEventResponse as Mo, ApiKeyCreatedEvent as Mr, VerifyEmailOptions as Ms, VerifyResponseResponse as Mt, DirectoryUserWithGroupsResponse as Mu, WebhookEndpointResponse as N, OrganizationMembershipDeletedResponse as Na, ListGroupsForOrganizationMembershipOptions as Nc, RoleAssignmentResourceResponse as Nd, ListDirectoryGroupsOptions as Nf, DsyncUserUpdatedEventResponse as Ni, AuthenticateWithRefreshTokenPublicClientOptions as Nl, CreateApplicationClientSecretOptions as Nn, VaultMetadataReadEvent as No, ApiKeyCreatedEventResponse as Nr, SerializedUpdateUserPasswordOptions as Ns, VerifyChallengeOptions as Nt, ListOrganizationRolesResponse as Nu, GenericServerException as O, OrganizationDomainVerifiedEvent as Oa, OrganizationMembership as Oc, SerializedListRoleAssignmentsForResourceOptions as Od, EnvironmentRole as Of, DsyncUserCreatedEvent as Oi, CreateUserResponseResponse as Ol, ConnectApplicationRedirectUri as On, VaultDekDecryptedEventResponse as Oo, List as Or, OrganizationDomainVerificationStrategy as Os, AuditLogExportResponse as Ot, DefaultCustomAttributes as Ou, WebhookEndpointStatus as P, OrganizationMembershipUpdated as Pa, ListAuthFactorsOptions as Pc, RoleAssignmentResponse as Pd, ListDirectoriesOptions as Pf, EmailVerificationCreatedEvent as Pi, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Pl, ListApplicationClientSecretsOptions as Pn, VaultMetadataReadEventResponse as Po, ApiKeyRevokedEvent as Pr, UpdateUserPasswordOptions as Ps, Factor as Pt, OrganizationRoleEvent as Pu, UpdateObjectOptions as Q, PermissionUpdatedEvent as Qa, CreateMagicAuthOptions as Qc, SerializedListAuthorizationResourcesOptions as Qd, ResponseHeaders as Qf, GroupMemberAddedEvent as Qi, SerializedAuthenticateWithMagicAuthOptions as Ql, UserObjectResponse as Qn, SerializedAddGroupOrganizationMembershipOptions as Qo, AuthenticationPasswordFailedEvent as Qr, serializeRevokeSessionOptions as Qs, RadarListType as Qt, BaseRemoveGroupRoleAssignmentsOptions as Qu, WorkOS as R, OrganizationRoleDeletedEvent as Ra, InvitationResponse as Rc, ListResourcesForMembershipOptions as Rd, DirectoryGroupResponse as Rf, EventName as Ri, AuthenticateUserWithPasswordCredentials as Rl, CreateApplicationOptions as Rn, DataKeyPair as Ro, AuthenticationMagicAuthFailedEvent as Rr, UpdateOrganizationMembershipOptions as Rs, Sms as Rt, RoleEvent as Ru, ConflictException as S, OrganizationDomainDeletedEvent as Sa, ListOrganizationMembershipsOptions as Sc, AssignRoleOptionsWithResourceExternalId as Sd, AddEnvironmentRolePermissionOptions as Sf, DsyncGroupUpdatedEvent as Si, AuthenticateWithSessionCookieSuccessResponse as Sl, ConnectApplication as Sn, VaultDataDeletedEventResponse as So, WorkOSResponseError as Sr, SerializedApiKey as Ss, AuditLogActorSchema as St, Connection as Su, AuthenticationErrorData as T, OrganizationDomainUpdatedEventResponse as Ta, AuthorizationOrganizationMembershipResponse as Tc, SerializedAssignRoleOptions as Td, UpdateEnvironmentRoleOptions as Tf, DsyncGroupUserAddedEventResponse as Ti, AuthenticationResponse as Tl, ConnectApplicationOAuth as Tn, VaultDataUpdatedEvent as To, PutOptions as Tr, OrganizationDomain as Ts, AuditLogSchemaResponse as Tt, ConnectionType as Tu, VaultObject as U, OrganizationUpdatedResponse as Ua, EmailVerificationEvent as Uc, AuthorizationCheckOptionsWithResourceExternalId as Ud, DirectoryType as Uf, FlagDeletedEventResponse as Ui, SerializedAuthenticateWithOrganizationSelectionOptions as Ul, RedirectUriInput as Un, ListGroupsOptions as Uo, AuthenticationMfaSucceededEventResponse as Ur, SendVerificationEmailOptions as Us, ChallengeFactorOptions as Ut, ListEffectivePermissionsOptions as Uu, ObjectVersion as V, OrganizationRoleUpdatedEventResponse as Va, SerializedEnrollUserInMfaFactorOptions as Vc, SerializedListResourcesForMembershipOptions as Vd, DirectoryState as Vf, FlagCreatedEventResponse as Vi, AuthenticateUserWithOrganizationSelectionCredentials as Vl, CreateOAuthApplication as Vn, UpdateGroupOptions as Vo, AuthenticationMagicAuthSucceededEventResponse as Vr, SessionResponse as Vs, Challenge as Vt, RoleResponse as Vu, VaultObjectResponse as W, PasswordResetCreatedEvent as Wa, EmailVerificationEventResponse as Wc, AuthorizationCheckOptionsWithResourceId as Wd, EventDirectory as Wf, FlagRuleUpdatedEvent as Wi, AuthenticateUserWithRadarSmsChallengeCredentials as Wl, RedirectUriInputResponse as Wn, ListGroupOrganizationMembershipsOptions as Wo, AuthenticationOAuthFailedEvent as Wr, SendRadarSmsChallengeOptions as Ws, RadarListEntryAlreadyPresentResponse as Wt, BaseGroupRoleAssignmentEntry as Wu, CreateDataKeyResponseWire as X, PermissionDeletedEvent as Xa, CreateOrganizationMembershipOptions as Xc, GetAuthorizationResourceByExternalIdOptions as Xd, RequestOptions as Xf, GroupDeletedEvent as Xi, AuthenticateUserWithMagicAuthCredentials as Xl, UserConsentOptionChoiceResponse as Xn, SerializedCreateGroupOptions as Xo, AuthenticationPasskeySucceededEvent as Xr, RevokeSessionOptions as Xs, RadarStandaloneResponseVerdict as Xt, SerializedGroupRoleAssignmentEntry as Xu, CreateDataKeyResponse as Y, PermissionCreatedEventResponse as Ya, SerializedCreatePasswordResetOptions as Yc, UpdateAuthorizationResourceByExternalIdOptions as Yd, RequestHeaders as Yf, GroupCreatedEventResponse as Yi, SerializedAuthenticateWithRadarEmailChallengeOptions as Yl, UserConsentOptionChoice as Yn, CreateGroupOptions as Yo, AuthenticationPasskeyFailedEventResponse as Yr, SerializedSendInvitationOptions as Ys, RadarStandaloneResponseControl as Yt, ReplaceGroupRoleAssignmentsOptions as Yu, UpdateObjectEntity as Z, PermissionDeletedEventResponse as Za, SerializedCreateOrganizationMembershipOptions as Zc, ListAuthorizationResourcesOptions as Zd, ResponseHeaderValue as Zf, GroupDeletedEventResponse as Zi, AuthenticateWithMagicAuthOptions as Zl, UserObject as Zn, AddGroupOrganizationMembershipOptions as Zo, AuthenticationPasskeySucceededEventResponse as Zr, SerializedRevokeSessionOptions as Zs, RadarListAction as Zt, SerializedReplaceGroupRoleAssignmentsOptions as Zu, SignatureVerificationException as _, OrganizationCreatedResponse as _a, ListUsersOptions as _c, RemoveRoleOptions as _d, SerializedUpdateOrganizationRoleOptions as _f, DsyncDeletedEventResponse as _i, AuthenticateWithTotpOptions as _l, SerializedListEventOptions as _n, VaultByokKeyVerificationCompletedEvent as _o, CreateOrganizationOptions as _r, SerializedCreatedApiKey as _s, AuditLogActor as _t, OauthTokensResponse as _u, PublicWorkOS as a, GroupUpdatedEventResponse as aa, PasswordReset as ac, BaseCreateGroupRoleAssignmentOptions as ad, SerializedUpdateAuthorizationResourceOptions as af, AuthenticationSSOFailedEventResponse as ai, AuthenticationFactorResponse as al, SerializedGetAccessTokenFailureResponse as an, RoleUpdatedEventResponse as ao, UserRegistrationActionResponseData as ar, FlagPollEntry as as, DecryptDataKeyResponse as at, AuthenticateWithCodeOptions as au, NotFoundException as b, OrganizationDomainCreatedEvent as ba, ListSessionsOptions as bc, SerializedRemoveRoleOptions as bd, SerializedCreateOrganizationRoleOptions as bf, DsyncGroupDeletedEvent as bi, AuthenticateWithSessionCookieFailureReason as bl, ApplicationCredentialsListItem as bn, VaultDataCreatedEventResponse as bo, DomainData as br, SerializedCreateOrganizationApiKeyOptions as bs, CreateAuditLogEventRequestOptions as bt, GetProfileAndTokenOptions as bu, PortalLinkResponseWire as c, InvitationCreatedEvent as ca, PasswordResetResponse as cc, CreateGroupRoleAssignmentOptionsWithResourceExternalId as cd, SerializedUpdatePermissionOptions as cf, ConnectionActivatedEvent as ci, Totp as cl, SerializedGetAccessTokenSuccessResponse as cn, SessionRevokedEvent as co, UserData as cr, FeatureFlag as cs, WidgetSessionTokenResponseWire as ct, AuthenticateWithSessionOptions as cu, IntentOptions as d, InvitationResentEventResponse as da, MagicAuth as dc, GetGroupRoleAssignmentOptions as dd, SerializedCreatePermissionOptions as df, ConnectionDeactivatedEventResponse as di, TotpWithSecretsResponse as dl, SendSessionResponse as dn, UserCreatedEvent as do, SerializedUpdateOrganizationOptions as dr, AddFlagTargetOptions as ds, FeatureFlagsRuntimeClient as dt, WithResolvedClientId as du, GroupMemberEventData as ea, SerializedResetPasswordOptions as ec, RemoveGroupRoleAssignmentsOptionsForOrganization as ed, AuthorizationResourceResponse as ef, AuthenticationPasswordSucceededEvent as ei, PKCEAuthorizationURLResult as el, RadarStandaloneAssessRequestAuthMethod as en, RoleCreatedEvent as eo, PKCE as er, RuntimeClientLogger as es, ReadObjectOptions as et, AuthenticateWithEmailVerificationOptions as eu, IntentOptionsResponse as f, InvitationRevokedEvent as fa, MagicAuthEvent as fc, ListGroupRoleAssignmentsOptions as fd, Permission as ff, ConnectionDeletedEvent as fi, AuthenticationEvent as fl, CreatePasswordlessSessionOptions as fn, UserCreatedEventResponse as fo, UpdateOrganizationOptions as fr, SerializedValidateApiKeyResponse as fs, CookieSession as ft, ProfileAndToken as fu, UnauthorizedException as g, OrganizationCreatedEvent as ga, Locale as gc, BaseRemoveRoleOptions as gd, SetOrganizationRolePermissionsOptions as gf, DsyncDeletedEvent as gi, AuthenticateUserWithTotpCredentials as gl, ListEventOptions as gn, UserUpdatedEventResponse as go, ListOrganizationFeatureFlagsOptions as gr, CreatedApiKey as gs, SerializedCreateAuditLogSchemaOptions as gt, OauthTokens as gu, UnprocessableEntityException as h, MagicAuthCreatedEventResponse as ha, LogoutURLOptions as hc, RemoveRoleAssignmentOptions as hd, AddOrganizationRolePermissionOptions as hf, DsyncActivatedEventResponse as hi, AuthenticationEventSsoResponse as hl, PasswordlessSessionResponse as hn, UserUpdatedEvent as ho, ListOrganizationsOptions as hr, ListOrganizationApiKeysOptions as hs, CreateAuditLogSchemaResponse as ht, ProfileResponse as hu, PublicUserManagement as i, GroupUpdatedEvent as ia, RefreshSessionResponse as ic, RemoveGroupRoleAssignmentOptions as id, SerializedCreateAuthorizationResourceOptions as if, AuthenticationSSOFailedEvent as ii, AuthenticationFactor as il, GetAccessTokenSuccessResponse as in, RoleUpdatedEvent as io, ResponsePayload as ir, FlagChange as is, DecryptDataKeyOptions as it, AuthenticateUserWithCodeCredentials as iu, Webhooks as j, OrganizationMembershipCreatedResponse as ja, ListInvitationsOptions as jc, RoleAssignment as jd, EnvironmentRoleResponse as jf, DsyncUserDeletedEventResponse as ji, Impersonator as jl, ExternalAuthCompleteResponseWire as jn, VaultKekCreatedEvent as jo, GenerateLinkIntent as jr, SerializedVerifyEmailOptions as js, VerifyResponse as jt, DirectoryUserWithGroups as ju, WorkOSErrorData as k, OrganizationDomainVerifiedEventResponse as ka, OrganizationMembershipResponse as kc, ListRoleAssignmentsOptions as kd, EnvironmentRoleList as kf, DsyncUserCreatedEventResponse as ki, User as kl, ConnectApplicationRedirectUriResponse as kn, VaultDekReadEvent as ko, ListResponse as kr, CreateOrganizationDomainOptions as ks, AuditLogExportOptions as kt, DirectoryUser as ku, GenerateLink as l, InvitationCreatedEventResponse as la, CreateMagicAuthResponse as lc, CreateGroupRoleAssignmentOptionsWithResourceId as ld, UpdatePermissionOptions as lf, ConnectionActivatedEventResponse as li, TotpResponse as ll, AccessToken as ln, SessionRevokedEventResponse as lo, UserDataPayload as lr, FeatureFlagResponse as ls, CreateTokenOptions as lt, SerializedAuthenticatePublicClientBase as lu, SSOIntentOptionsResponse as m, MagicAuthCreatedEvent as ma, MagicAuthResponse as mc, GroupRoleAssignmentResponse as md, RemoveOrganizationRolePermissionOptions as mf, DsyncActivatedEvent as mi, AuthenticationEventSso as ml, PasswordlessSession as mn, UserDeletedEventResponse as mo, OrganizationResponse as mr, ValidateApiKeyResponse as ms, CreateAuditLogSchemaRequestOptions as mt, Profile as mu, PublicClientOptions as n, GroupMemberRemovedEvent as na, SerializedResendInvitationOptions as nc, RemoveGroupRoleAssignmentsOptionsWithResourceId as nd, CreateOptionsWithParentExternalId as nf, AuthenticationRadarRiskDetectedEvent as ni, AuthenticationRadarRiskDetectedEventData as nl, GetAccessTokenOptions as nn, RoleDeletedEvent as no, Actions as nr, RemoveFlagTargetOptions as ns, CreateObjectEntity as nt, AuthenticateWithCodeAndVerifierOptions as nu, createWorkOS as o, InvitationAcceptedEvent as oa, PasswordResetEvent as oc, CreateGroupRoleAssignmentOptions as od, UpdateAuthorizationResourceOptions as of, AuthenticationSSOSucceededEvent as oi, AuthenticationFactorWithSecrets as ol, SerializedGetAccessTokenOptions as on, SessionCreatedEvent as oo, ActionContext as or, FlagPollResponse as os, CreateDataKeyOptions as ot, SerializedAuthenticateWithCodeOptions as ou, SSOIntentOptions as p, InvitationRevokedEventResponse as pa, MagicAuthEventResponse as pc, GroupRoleAssignment as pd, PermissionResponse as pf, ConnectionDeletedEventResponse as pi, AuthenticationEventResponse as pl, SerializedCreatePasswordlessSessionOptions as pn, UserDeletedEvent as po, Organization as pr, ValidateApiKeyOptions as ps, CreateAuditLogSchemaOptions as pt, ProfileAndTokenResponse as pu, Actor as q, PasswordResetSucceededEventResponse as qa, SerializedCreateUserOptions as qc, DeleteAuthorizationResourceOptions as qd, HttpClientInterface as qf, FlagUpdatedEventResponse as qi, AuthenticateUserWithRadarEmailChallengeCredentials as ql, UserConsentOption as qn, GetGroupOptions as qo, AuthenticationOAuthSucceededEventResponse as qr, SerializedSendRadarSmsChallengeOptions as qs, RadarStandaloneResponseWire as qt, GroupRoleAssignmentEntryWithResourceExternalId as qu, PublicSSO as r, GroupMemberRemovedEventResponse as ra, RefreshSessionFailureReason as rc, SerializedRemoveGroupRoleAssignmentsOptions as rd, CreateOptionsWithParentResourceId as rf, AuthenticationRadarRiskDetectedEventResponse as ri, AuthenticationRadarRiskDetectedEventResponseData as rl, GetAccessTokenResponse as rn, RoleDeletedEventResponse as ro, AuthenticationActionResponseData as rr, ListFeatureFlagsOptions as rs, CreateObjectOptions as rt, SerializedAuthenticateWithCodeAndVerifierOptions as ru, PortalLinkResponse as s, InvitationAcceptedEventResponse as sa, PasswordResetEventResponse as sc, CreateGroupRoleAssignmentOptionsForOrganization as sd, ListPermissionsOptions as sf, AuthenticationSSOSucceededEventResponse as si, AuthenticationFactorWithSecretsResponse as sl, SerializedGetAccessTokenResponse as sn, SessionCreatedEventResponse as so, ActionPayload as sr, FlagTarget as ss, WidgetSessionTokenResponse as st, AuthenticateWithOptionsBase as su, ConfidentialClientOptions as t, GroupMemberEventResponseData as ta, ResendInvitationOptions as tc, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as td, CreateAuthorizationResourceOptions as tf, AuthenticationPasswordSucceededEventResponse as ti, UserManagementAuthorizationURLOptions as tl, GetAccessTokenFailureResponse as tn, RoleCreatedEventResponse as to, PKCEPair as tr, RuntimeClientOptions as ts, ReadObjectResponse as tt, SerializedAuthenticateWithEmailVerificationOptions as tu, GenerateLinkResponse as u, InvitationResentEvent as ua, CreateMagicAuthResponseResponse as uc, SerializedCreateGroupRoleAssignmentOptions as ud, CreatePermissionOptions as uf, ConnectionDeactivatedEvent as ui, TotpWithSecrets as ul, SerializedAccessToken as un, UnknownEvent as uo, UserRegistrationActionPayload as ur, EvaluationContext as us, WidgetSessionTokenScopes as ut, SerializedAuthenticateWithOptionsBase as uu, RateLimitExceededException as v, OrganizationDeletedEvent as va, SerializedListUsersOptions as vc, RemoveRoleOptionsWithResourceExternalId as vd, UpdateOrganizationRoleOptions as vf, DsyncGroupCreatedEvent as vi, SerializedAuthenticateWithTotpOptions as vl, NewConnectApplicationSecret as vn, VaultByokKeyVerificationCompletedEventResponse as vo, CreateOrganizationRequestOptions as vr, CreateOrganizationApiKeyOptions as vs, AuditLogTarget as vt, ListConnectionsOptions as vu, AuthenticationErrorCode as w, OrganizationDomainUpdatedEvent as wa, AuthorizationOrganizationMembership as wc, BaseAssignRoleOptions as wd, SerializedUpdateEnvironmentRoleOptions as wf, DsyncGroupUserAddedEvent as wi, UserManagementAccessToken as wl, ConnectApplicationM2MResponse as wn, VaultDataReadEventResponse as wo, UnprocessableEntityError as wr, OrganizationDomainVerificationFailedResponse as ws, AuditLogSchemaMetadata as wt, ConnectionResponse as wu, NoApiKeyProvidedException as x, OrganizationDomainCreatedEventResponse as xa, SerializedListSessionsOptions as xc, AssignRoleOptions as xd, OrganizationRole as xf, DsyncGroupDeletedEventResponse as xi, AuthenticateWithSessionCookieOptions as xl, ApplicationCredentialsListItemResponse as xn, VaultDataDeletedEvent as xo, DomainDataState as xr, ApiKey as xs, SerializedCreateAuditLogEventOptions as xt, GetProfileOptions as xu, OauthException as y, OrganizationDeletedResponse as ya, ListUserFeatureFlagsOptions as yc, RemoveRoleOptionsWithResourceId as yd, CreateOrganizationRoleOptions as yf, DsyncGroupCreatedEventResponse as yi, AuthenticateWithSessionCookieFailedResponse as yl, NewConnectApplicationSecretResponse as yn, VaultDataCreatedEvent as yo, SerializedCreateOrganizationOptions as yr, CreateOrganizationApiKeyRequestOptions as ys, CreateAuditLogEventOptions as yt, SerializedListConnectionsOptions as yu, ObjectSummary as z, OrganizationRoleDeletedEventResponse as za, Identity as zc, ListResourcesForMembershipOptionsWithParentExternalId as zd, Directory as zf, EventResponse as zi, AuthenticateWithPasswordOptions as zl, CreateM2MApplication as zn, KeyContext as zo, AuthenticationMagicAuthFailedEventResponse as zr, AuthMethod as zs, SmsResponse as zt, RoleEventResponse as zu };
|
|
8567
|
+
//# sourceMappingURL=factory-B85kMVYe.d.cts.map
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { EventEmitter } from "eventemitter3";
|
|
2
|
-
|
|
3
1
|
//#region src/common/crypto/crypto-provider.d.ts
|
|
4
2
|
/**
|
|
5
3
|
* Interface encapsulating the various crypto computations used by the library,
|
|
@@ -1665,6 +1663,7 @@ interface UserManagementAuthorizationURLBaseOptions {
|
|
|
1665
1663
|
connectionId?: string;
|
|
1666
1664
|
organizationId?: string;
|
|
1667
1665
|
domainHint?: string;
|
|
1666
|
+
invitationToken?: string;
|
|
1668
1667
|
loginHint?: string;
|
|
1669
1668
|
provider?: string;
|
|
1670
1669
|
providerQueryParams?: Record<string, string | boolean | number>;
|
|
@@ -2533,6 +2532,13 @@ interface FlagPollEntry {
|
|
|
2533
2532
|
}
|
|
2534
2533
|
type FlagPollResponse = Record<string, FlagPollEntry>;
|
|
2535
2534
|
//#endregion
|
|
2535
|
+
//#region src/feature-flags/interfaces/flag-change.interface.d.ts
|
|
2536
|
+
interface FlagChange {
|
|
2537
|
+
key: string;
|
|
2538
|
+
previous: FlagPollEntry | null;
|
|
2539
|
+
current: FlagPollEntry | null;
|
|
2540
|
+
}
|
|
2541
|
+
//#endregion
|
|
2536
2542
|
//#region src/feature-flags/interfaces/list-feature-flags-options.interface.d.ts
|
|
2537
2543
|
type ListFeatureFlagsOptions = PaginationOptions;
|
|
2538
2544
|
//#endregion
|
|
@@ -6359,8 +6365,43 @@ declare class UserManagement {
|
|
|
6359
6365
|
getJwksUrl(clientId: string): string;
|
|
6360
6366
|
}
|
|
6361
6367
|
//#endregion
|
|
6368
|
+
//#region src/feature-flags/event-emitter.d.ts
|
|
6369
|
+
type Listener<Args extends unknown[]> = (...args: Args) => void;
|
|
6370
|
+
/**
|
|
6371
|
+
* Minimal, runtime-agnostic, typed event emitter.
|
|
6372
|
+
*
|
|
6373
|
+
* Replaces eventemitter3 so the SDK carries no event dependency and works in
|
|
6374
|
+
* edge runtimes where `node:events` is not available. Generic over an event
|
|
6375
|
+
* map (`{ eventName: [arg1, arg2, ...] }`) for compile-time-checked event
|
|
6376
|
+
* names and payloads.
|
|
6377
|
+
*
|
|
6378
|
+
* Unlike eventemitter3, an unhandled `'error'` event throws instead of being
|
|
6379
|
+
* silently dropped — matching Node's `EventEmitter` so failures are never
|
|
6380
|
+
* swallowed.
|
|
6381
|
+
*/
|
|
6382
|
+
declare class EventEmitter<Events extends Record<keyof Events, unknown[]>> {
|
|
6383
|
+
private handlers;
|
|
6384
|
+
on<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6385
|
+
once<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6386
|
+
off<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6387
|
+
emit<E extends keyof Events>(event: E, ...args: Events[E]): boolean;
|
|
6388
|
+
listenerCount(event: keyof Events): number;
|
|
6389
|
+
removeAllListeners(event?: keyof Events): this;
|
|
6390
|
+
addListener<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6391
|
+
removeListener<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6392
|
+
listeners<E extends keyof Events>(event: E): Array<Listener<Events[E]>>;
|
|
6393
|
+
eventNames(): Array<keyof Events>;
|
|
6394
|
+
private add;
|
|
6395
|
+
private remove;
|
|
6396
|
+
}
|
|
6397
|
+
//#endregion
|
|
6362
6398
|
//#region src/feature-flags/runtime-client.d.ts
|
|
6363
|
-
|
|
6399
|
+
interface RuntimeClientEvents {
|
|
6400
|
+
change: [FlagChange];
|
|
6401
|
+
error: [Error];
|
|
6402
|
+
failed: [Error];
|
|
6403
|
+
}
|
|
6404
|
+
declare class FeatureFlagsRuntimeClient extends EventEmitter<RuntimeClientEvents> {
|
|
6364
6405
|
private readonly workos;
|
|
6365
6406
|
private readonly store;
|
|
6366
6407
|
private readonly evaluator;
|
|
@@ -6380,7 +6421,6 @@ declare class FeatureFlagsRuntimeClient extends EventEmitter {
|
|
|
6380
6421
|
waitUntilReady(options?: {
|
|
6381
6422
|
timeoutMs?: number;
|
|
6382
6423
|
}): Promise<void>;
|
|
6383
|
-
emit(event: string | symbol, ...args: unknown[]): boolean;
|
|
6384
6424
|
close(): void;
|
|
6385
6425
|
isEnabled(flagKey: string, context?: EvaluationContext, defaultValue?: boolean): boolean;
|
|
6386
6426
|
getAllFlags(context?: EvaluationContext): Record<string, boolean>;
|
|
@@ -8523,5 +8563,5 @@ interface ConfidentialClientOptions extends WorkOSOptions {
|
|
|
8523
8563
|
declare function createWorkOS(options: PublicClientOptions): PublicWorkOS;
|
|
8524
8564
|
declare function createWorkOS(options: ConfidentialClientOptions): WorkOS;
|
|
8525
8565
|
//#endregion
|
|
8526
|
-
export { ReadObjectMetadataResponse as $, PermissionUpdatedEventResponse as $a, PKCEAuthorizationURLResult as $c, AuthorizationResourceResponse as $d, GroupMemberAddedEventResponse as $i, AuthenticateWithEmailVerificationOptions as $l, AutoPaginatable as $n, RuntimeClientStats as $o, AuthenticationPasswordFailedEventResponse as $r, SerializedResetPasswordOptions as $s, RadarStandaloneAssessRequestAction as $t, RemoveGroupRoleAssignmentsOptionsForOrganization as $u, ApiKeyRequiredException as A, OrganizationMembershipCreated as Aa, ListInvitationsOptions as Ac, RoleAssignment as Ad, EnvironmentRoleResponse as Af, DsyncUserDeletedEvent as Ai, Impersonator as Al, ExternalAuthCompleteResponse as An, VaultDekReadEventResponse as Ao, GetOptions as Ar, SerializedVerifyEmailOptions as As, SerializedAuditLogExportOptions as At, DirectoryUserWithGroups as Au, ObjectSummaryResponse as B, OrganizationRoleUpdatedEvent as Ba, SerializedEnrollUserInMfaFactorOptions as Bc, SerializedListResourcesForMembershipOptions as Bd, DirectoryState as Bf, FlagCreatedEvent as Bi, AuthenticateUserWithOrganizationSelectionCredentials as Bl, CreateM2MApplicationResponse as Bn, SerializedUpdateGroupOptions as Bo, AuthenticationMagicAuthSucceededEvent as Br, SessionResponse as Bs, EnrollFactorOptions as Bt, RoleResponse as Bu, BadRequestException as C, OrganizationDomainDeletedEventResponse as Ca, AuthorizationOrganizationMembership as Cc, BaseAssignRoleOptions as Cd, SerializedUpdateEnvironmentRoleOptions as Cf, DsyncGroupUpdatedEventResponse as Ci, UserManagementAccessToken as Cl, ConnectApplicationM2M as Cn, VaultDataReadEvent as Co, WorkOSOptions as Cr, OrganizationDomainVerificationFailedResponse as Cs, AuditLogSchema as Ct, ConnectionResponse as Cu, isAuthenticationErrorData as D, OrganizationDomainVerificationFailedEventResponse as Da, OrganizationMembership as Dc, SerializedListRoleAssignmentsForResourceOptions as Dd, EnvironmentRole as Df, DsyncGroupUserRemovedEventResponse as Di, CreateUserResponseResponse as Dl, ConnectApplicationResponse as Dn, VaultDekDecryptedEvent as Do, PatchOptions as Dr, OrganizationDomainVerificationStrategy as Ds, AuditLogExport as Dt, DefaultCustomAttributes as Du, AuthenticationException as E, OrganizationDomainVerificationFailedEvent as Ea, BaseOrganizationMembershipResponse as Ec, ListRoleAssignmentsForResourceOptions as Ed, SerializedCreateEnvironmentRoleOptions as Ef, DsyncGroupUserRemovedEvent as Ei, CreateUserResponse as El, ConnectApplicationOAuthResponse as En, VaultDataUpdatedEventResponse as Eo, PostOptions as Er, OrganizationDomainState as Es, AuditLogTargetSchema as Et, SSOPKCEAuthorizationURLResult as Eu, UpdateWebhookEndpointEvents as F, OrganizationMembershipUpdatedResponse as Fa, InvitationEvent as Fc, ListMembershipsForResourceByExternalIdOptions as Fd, PaginationOptions as Ff, EmailVerificationCreatedEventResponse as Fi, AuthenticateWithRefreshTokenOptions as Fl, DeleteApplicationOptions as Fn, VaultNamesListedEvent as Fo, ApiKeyRevokedEventResponse as Fr, UpdateUserOptions as Fs, FactorResponse as Ft, OrganizationRoleResponse as Fu, ObjectMetadata as G, PasswordResetCreatedEventResponse as Ga, CreateUserOptions as Gc, SerializedAuthorizationCheckOptions as Gd, HttpClient as Gf, FlagRuleUpdatedEventResponse as Gi, SerializedAuthenticateWithRadarSmsChallengeOptions as Gl, ListApplicationsOptions as Gn, Group as Go, AuthenticationOAuthFailedEventResponse as Gr, SendRadarSmsChallengeResponseResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, GroupRoleAssignmentEntryForOrganization as Gu, ObjectVersionResponse as H, OrganizationUpdatedEvent as Ha, EmailVerificationEvent as Hc, AuthorizationCheckOptionsWithResourceExternalId as Hd, DirectoryType as Hf, FlagDeletedEvent as Hi, SerializedAuthenticateWithOrganizationSelectionOptions as Hl, CreateOAuthApplicationResponse as Hn, RemoveGroupOrganizationMembershipOptions as Ho, AuthenticationMfaSucceededEvent as Hr, SendVerificationEmailOptions as Hs, ChallengeResponse as Ht, ListEffectivePermissionsOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationRoleCreatedEvent as Ia, InvitationEventResponse as Ic, ListMembershipsForResourceOptions as Id, DirectoryGroup as If, Event as Ii, SerializedAuthenticateWithRefreshTokenOptions as Il, UpdateApplicationOptions as In, VaultNamesListedEventResponse as Io, AuthenticationEmailVerificationSucceededEvent as Ir, SerializedUpdateOrganizationMembershipOptions as Is, FactorWithSecrets as It, Role as Iu, ActorResponse as J, PermissionCreatedEvent as Ja, SerializedCreatePasswordResetOptions as Jc, UpdateAuthorizationResourceByExternalIdOptions as Jd, RequestHeaders as Jf, GroupCreatedEvent as Ji, SerializedAuthenticateWithRadarEmailChallengeOptions as Jl, UserConsentOptionResponse as Jn, DeleteGroupOptions as Jo, AuthenticationPasskeyFailedEvent as Jr, SerializedSendInvitationOptions as Js, RadarStandaloneResponseBlocklistType as Jt, ReplaceGroupRoleAssignmentsOptions as Ju, ObjectMetadataResponse as K, PasswordResetSucceededEvent as Ka, SerializedCreateUserOptions as Kc, DeleteAuthorizationResourceOptions as Kd, HttpClientInterface as Kf, FlagUpdatedEvent as Ki, AuthenticateUserWithRadarEmailChallengeCredentials as Kl, CompleteOAuth2Options as Kn, GroupResponse as Ko, AuthenticationOAuthSucceededEvent as Kr, SerializedSendRadarSmsChallengeOptions as Ks, RadarStandaloneResponse as Kt, GroupRoleAssignmentEntryWithResourceExternalId as Ku, CreateWebhookEndpointEvents as L, OrganizationRoleCreatedEventResponse as La, InvitationResponse as Lc, ListResourcesForMembershipOptions as Ld, DirectoryGroupResponse as Lf, EventBase as Li, AuthenticateUserWithPasswordCredentials as Ll, GetApplicationOptions as Ln, DataKey as Lo, AuthenticationEmailVerificationSucceededEventResponse as Lr, UpdateOrganizationMembershipOptions as Ls, FactorWithSecretsResponse as Lt, RoleEvent as Lu, WebhookEndpoint as M, OrganizationMembershipDeleted as Ma, ListGroupsForOrganizationMembershipOptions as Mc, RoleAssignmentResourceResponse as Md, ListDirectoryGroupsOptions as Mf, DsyncUserUpdatedEvent as Mi, AuthenticateWithRefreshTokenPublicClientOptions as Ml, DeleteClientSecretOptions as Mn, VaultKekCreatedEventResponse as Mo, ApiKeyCreatedEvent as Mr, SerializedUpdateUserPasswordOptions as Ms, VerifyResponseResponse as Mt, ListOrganizationRolesResponse as Mu, WebhookEndpointResponse as N, OrganizationMembershipDeletedResponse as Na, ListAuthFactorsOptions as Nc, RoleAssignmentResponse as Nd, ListDirectoriesOptions as Nf, DsyncUserUpdatedEventResponse as Ni, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Nl, CreateApplicationClientSecretOptions as Nn, VaultMetadataReadEvent as No, ApiKeyCreatedEventResponse as Nr, UpdateUserPasswordOptions as Ns, VerifyChallengeOptions as Nt, OrganizationRoleEvent as Nu, GenericServerException as O, OrganizationDomainVerifiedEvent as Oa, OrganizationMembershipResponse as Oc, ListRoleAssignmentsOptions as Od, EnvironmentRoleList as Of, DsyncUserCreatedEvent as Oi, User as Ol, ConnectApplicationRedirectUri as On, VaultDekDecryptedEventResponse as Oo, List as Or, CreateOrganizationDomainOptions as Os, AuditLogExportResponse as Ot, DirectoryUser as Ou, WebhookEndpointStatus as P, OrganizationMembershipUpdated as Pa, Invitation as Pc, RoleAssignmentRole as Pd, SerializedListDirectoriesOptions as Pf, EmailVerificationCreatedEvent as Pi, AuthenticateUserWithRefreshTokenCredentials as Pl, ListApplicationClientSecretsOptions as Pn, VaultMetadataReadEventResponse as Po, ApiKeyRevokedEvent as Pr, SerializedUpdateUserOptions as Ps, Factor as Pt, OrganizationRoleEventResponse as Pu, UpdateObjectOptions as Q, PermissionUpdatedEvent as Qa, SerializedCreateMagicAuthOptions as Qc, AuthorizationResource as Qd, CryptoProvider as Qf, GroupMemberAddedEvent as Qi, AuthenticateUserWithEmailVerificationCredentials as Ql, UserObjectResponse as Qn, SerializedAddGroupOrganizationMembershipOptions as Qo, AuthenticationPasswordFailedEvent as Qr, ResetPasswordOptions as Qs, RadarListType as Qt, RemoveGroupRoleAssignmentsOptions as Qu, WorkOS as R, OrganizationRoleDeletedEvent as Ra, Identity as Rc, ListResourcesForMembershipOptionsWithParentExternalId as Rd, Directory as Rf, EventName as Ri, AuthenticateWithPasswordOptions as Rl, CreateApplicationOptions as Rn, DataKeyPair as Ro, AuthenticationMagicAuthFailedEvent as Rr, AuthMethod as Rs, Sms as Rt, RoleEventResponse as Ru, ConflictException as S, OrganizationDomainDeletedEvent as Sa, SerializedListOrganizationMembershipsOptions as Sc, AssignRoleOptionsWithResourceId as Sd, SetEnvironmentRolePermissionsOptions as Sf, DsyncGroupUpdatedEvent as Si, SessionCookieData as Sl, ConnectApplication as Sn, VaultDataDeletedEventResponse as So, WorkOSResponseError as Sr, OrganizationDomainVerificationFailed as Ss, AuditLogActorSchema as St, ConnectionDomain as Su, AuthenticationErrorData as T, OrganizationDomainUpdatedEventResponse as Ta, BaseOrganizationMembership as Tc, ListRoleAssignmentsForResourceByExternalIdOptions as Td, CreateEnvironmentRoleOptions as Tf, DsyncGroupUserAddedEventResponse as Ti, AuthenticationResponseResponse as Tl, ConnectApplicationOAuth as Tn, VaultDataUpdatedEvent as To, PutOptions as Tr, OrganizationDomainResponse as Ts, AuditLogSchemaResponse as Tt, SSOAuthorizationURLOptions as Tu, VaultObject as U, OrganizationUpdatedResponse as Ua, EmailVerificationEventResponse as Uc, AuthorizationCheckOptionsWithResourceId as Ud, EventDirectory as Uf, FlagDeletedEventResponse as Ui, AuthenticateUserWithRadarSmsChallengeCredentials as Ul, RedirectUriInput as Un, ListGroupsOptions as Uo, AuthenticationMfaSucceededEventResponse as Ur, SendRadarSmsChallengeOptions as Us, ChallengeFactorOptions as Ut, BaseGroupRoleAssignmentEntry as Uu, ObjectVersion as V, OrganizationRoleUpdatedEventResponse as Va, EmailVerification as Vc, AuthorizationCheckOptions as Vd, DirectoryStateResponse as Vf, FlagCreatedEventResponse as Vi, AuthenticateWithOrganizationSelectionOptions as Vl, CreateOAuthApplication as Vn, UpdateGroupOptions as Vo, AuthenticationMagicAuthSucceededEventResponse as Vr, SessionStatus as Vs, Challenge as Vt, ListEffectivePermissionsByExternalIdOptions as Vu, VaultObjectResponse as W, PasswordResetCreatedEvent as Wa, EmailVerificationResponse as Wc, AuthorizationCheckResult as Wd, EventDirectoryResponse as Wf, FlagRuleUpdatedEvent as Wi, AuthenticateWithRadarSmsChallengeOptions as Wl, RedirectUriInputResponse as Wn, ListGroupOrganizationMembershipsOptions as Wo, AuthenticationOAuthFailedEvent as Wr, SendRadarSmsChallengeResponse as Ws, RadarListEntryAlreadyPresentResponse as Wt, GroupRoleAssignmentEntry as Wu, CreateDataKeyResponseWire as X, PermissionDeletedEvent as Xa, SerializedCreateOrganizationMembershipOptions as Xc, ListAuthorizationResourcesOptions as Xd, ResponseHeaderValue as Xf, GroupDeletedEvent as Xi, AuthenticateWithMagicAuthOptions as Xl, UserConsentOptionChoiceResponse as Xn, SerializedCreateGroupOptions as Xo, AuthenticationPasskeySucceededEvent as Xr, SerializedRevokeSessionOptions as Xs, RadarStandaloneResponseVerdict as Xt, SerializedReplaceGroupRoleAssignmentsOptions as Xu, CreateDataKeyResponse as Y, PermissionCreatedEventResponse as Ya, CreateOrganizationMembershipOptions as Yc, GetAuthorizationResourceByExternalIdOptions as Yd, RequestOptions as Yf, GroupCreatedEventResponse as Yi, AuthenticateUserWithMagicAuthCredentials as Yl, UserConsentOptionChoice as Yn, CreateGroupOptions as Yo, AuthenticationPasskeyFailedEventResponse as Yr, RevokeSessionOptions as Ys, RadarStandaloneResponseControl as Yt, SerializedGroupRoleAssignmentEntry as Yu, UpdateObjectEntity as Z, PermissionDeletedEventResponse as Za, CreateMagicAuthOptions as Zc, SerializedListAuthorizationResourcesOptions as Zd, ResponseHeaders as Zf, GroupDeletedEventResponse as Zi, SerializedAuthenticateWithMagicAuthOptions as Zl, UserObject as Zn, AddGroupOrganizationMembershipOptions as Zo, AuthenticationPasskeySucceededEventResponse as Zr, serializeRevokeSessionOptions as Zs, RadarListAction as Zt, BaseRemoveGroupRoleAssignmentsOptions as Zu, SignatureVerificationException as _, OrganizationCreatedResponse as _a, SerializedListUsersOptions as _c, RemoveRoleOptionsWithResourceExternalId as _d, UpdateOrganizationRoleOptions as _f, DsyncDeletedEventResponse as _i, SerializedAuthenticateWithTotpOptions as _l, SerializedListEventOptions as _n, VaultByokKeyVerificationCompletedEvent as _o, CreateOrganizationOptions as _r, CreateOrganizationApiKeyOptions as _s, AuditLogActor as _t, ListConnectionsOptions as _u, PublicWorkOS as a, GroupUpdatedEventResponse as aa, PasswordResetEvent as ac, CreateGroupRoleAssignmentOptions as ad, UpdateAuthorizationResourceOptions as af, AuthenticationSSOFailedEventResponse as ai, AuthenticationFactorWithSecrets as al, SerializedGetAccessTokenFailureResponse as an, RoleUpdatedEventResponse as ao, UserRegistrationActionResponseData as ar, FlagPollResponse as as, DecryptDataKeyResponse as at, SerializedAuthenticateWithCodeOptions as au, NotFoundException as b, OrganizationDomainCreatedEvent as ba, SerializedListSessionsOptions as bc, AssignRoleOptions as bd, OrganizationRole as bf, DsyncGroupDeletedEvent as bi, AuthenticateWithSessionCookieOptions as bl, ApplicationCredentialsListItem as bn, VaultDataCreatedEventResponse as bo, DomainData as br, ApiKey as bs, CreateAuditLogEventRequestOptions as bt, GetProfileOptions as bu, PortalLinkResponseWire as c, InvitationCreatedEvent as ca, CreateMagicAuthResponse as cc, CreateGroupRoleAssignmentOptionsWithResourceId as cd, UpdatePermissionOptions as cf, ConnectionActivatedEvent as ci, TotpResponse as cl, SerializedGetAccessTokenSuccessResponse as cn, SessionRevokedEvent as co, UserData as cr, FeatureFlagResponse as cs, WidgetSessionTokenResponseWire as ct, SerializedAuthenticatePublicClientBase as cu, IntentOptions as d, InvitationResentEventResponse as da, MagicAuthEvent as dc, ListGroupRoleAssignmentsOptions as dd, Permission as df, ConnectionDeactivatedEventResponse as di, AuthenticationEvent as dl, SendSessionResponse as dn, UserCreatedEvent as do, SerializedUpdateOrganizationOptions as dr, SerializedValidateApiKeyResponse as ds, FeatureFlagsRuntimeClient as dt, ProfileAndToken as du, GroupMemberEventData as ea, ResendInvitationOptions as ec, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as ed, CreateAuthorizationResourceOptions as ef, AuthenticationPasswordSucceededEvent as ei, UserManagementAuthorizationURLOptions as el, RadarStandaloneAssessRequestAuthMethod as en, RoleCreatedEvent as eo, PKCE as er, RuntimeClientLogger as es, ReadObjectOptions as et, SerializedAuthenticateWithEmailVerificationOptions as eu, IntentOptionsResponse as f, InvitationRevokedEvent as fa, MagicAuthEventResponse as fc, GroupRoleAssignment as fd, PermissionResponse as ff, ConnectionDeletedEvent as fi, AuthenticationEventResponse as fl, CreatePasswordlessSessionOptions as fn, UserCreatedEventResponse as fo, UpdateOrganizationOptions as fr, ValidateApiKeyOptions as fs, CookieSession as ft, ProfileAndTokenResponse as fu, UnauthorizedException as g, OrganizationCreatedEvent as ga, ListUsersOptions as gc, RemoveRoleOptions as gd, SerializedUpdateOrganizationRoleOptions as gf, DsyncDeletedEvent as gi, AuthenticateWithTotpOptions as gl, ListEventOptions as gn, UserUpdatedEventResponse as go, ListOrganizationFeatureFlagsOptions as gr, SerializedCreatedApiKey as gs, SerializedCreateAuditLogSchemaOptions as gt, OauthTokensResponse as gu, UnprocessableEntityException as h, MagicAuthCreatedEventResponse as ha, Locale as hc, BaseRemoveRoleOptions as hd, SetOrganizationRolePermissionsOptions as hf, DsyncActivatedEventResponse as hi, AuthenticateUserWithTotpCredentials as hl, PasswordlessSessionResponse as hn, UserUpdatedEvent as ho, ListOrganizationsOptions as hr, CreatedApiKey as hs, CreateAuditLogSchemaResponse as ht, OauthTokens as hu, PublicUserManagement as i, GroupUpdatedEvent as ia, PasswordReset as ic, BaseCreateGroupRoleAssignmentOptions as id, SerializedUpdateAuthorizationResourceOptions as if, AuthenticationSSOFailedEvent as ii, AuthenticationFactorResponse as il, GetAccessTokenSuccessResponse as in, RoleUpdatedEvent as io, ResponsePayload as ir, FlagPollEntry as is, DecryptDataKeyOptions as it, AuthenticateWithCodeOptions as iu, Webhooks as j, OrganizationMembershipCreatedResponse as ja, SerializedListInvitationsOptions as jc, RoleAssignmentResource as jd, ListDirectoryUsersOptions as jf, DsyncUserDeletedEventResponse as ji, ImpersonatorResponse as jl, ExternalAuthCompleteResponseWire as jn, VaultKekCreatedEvent as jo, GenerateLinkIntent as jr, VerifyEmailOptions as js, VerifyResponse as jt, DirectoryUserWithGroupsResponse as ju, WorkOSErrorData as k, OrganizationDomainVerifiedEventResponse as ka, OrganizationMembershipStatus as kc, SerializedListRoleAssignmentsOptions as kd, EnvironmentRoleListResponse as kf, DsyncUserCreatedEventResponse as ki, UserResponse as kl, ConnectApplicationRedirectUriResponse as kn, VaultDekReadEvent as ko, ListResponse as kr, SerializedCreateOrganizationDomainOptions as ks, AuditLogExportOptions as kt, DirectoryUserResponse as ku, GenerateLink as l, InvitationCreatedEventResponse as la, CreateMagicAuthResponseResponse as lc, SerializedCreateGroupRoleAssignmentOptions as ld, CreatePermissionOptions as lf, ConnectionActivatedEventResponse as li, TotpWithSecrets as ll, AccessToken as ln, SessionRevokedEventResponse as lo, UserDataPayload as lr, EvaluationContext as ls, CreateTokenOptions as lt, SerializedAuthenticateWithOptionsBase as lu, SSOIntentOptionsResponse as m, MagicAuthCreatedEvent as ma, LogoutURLOptions as mc, RemoveRoleAssignmentOptions as md, AddOrganizationRolePermissionOptions as mf, DsyncActivatedEvent as mi, AuthenticationEventSsoResponse as ml, PasswordlessSession as mn, UserDeletedEventResponse as mo, OrganizationResponse as mr, ListOrganizationApiKeysOptions as ms, CreateAuditLogSchemaRequestOptions as mt, ProfileResponse as mu, PublicClientOptions as n, GroupMemberRemovedEvent as na, RefreshSessionFailureReason as nc, SerializedRemoveGroupRoleAssignmentsOptions as nd, CreateOptionsWithParentResourceId as nf, AuthenticationRadarRiskDetectedEvent as ni, AuthenticationRadarRiskDetectedEventResponseData as nl, GetAccessTokenOptions as nn, RoleDeletedEvent as no, Actions as nr, RemoveFlagTargetOptions as ns, CreateObjectEntity as nt, SerializedAuthenticateWithCodeAndVerifierOptions as nu, createWorkOS as o, InvitationAcceptedEvent as oa, PasswordResetEventResponse as oc, CreateGroupRoleAssignmentOptionsForOrganization as od, ListPermissionsOptions as of, AuthenticationSSOSucceededEvent as oi, AuthenticationFactorWithSecretsResponse as ol, SerializedGetAccessTokenOptions as on, SessionCreatedEvent as oo, ActionContext as or, FlagTarget as os, CreateDataKeyOptions as ot, AuthenticateWithOptionsBase as ou, SSOIntentOptions as p, InvitationRevokedEventResponse as pa, MagicAuthResponse as pc, GroupRoleAssignmentResponse as pd, RemoveOrganizationRolePermissionOptions as pf, ConnectionDeletedEventResponse as pi, AuthenticationEventSso as pl, SerializedCreatePasswordlessSessionOptions as pn, UserDeletedEvent as po, Organization as pr, ValidateApiKeyResponse as ps, CreateAuditLogSchemaOptions as pt, Profile as pu, Actor as q, PasswordResetSucceededEventResponse as qa, CreatePasswordResetOptions as qc, DeleteAuthorizationResourceByExternalIdOptions as qd, HttpClientResponseInterface as qf, FlagUpdatedEventResponse as qi, AuthenticateWithRadarEmailChallengeOptions as ql, UserConsentOption as qn, GetGroupOptions as qo, AuthenticationOAuthSucceededEventResponse as qr, SendInvitationOptions as qs, RadarStandaloneResponseWire as qt, GroupRoleAssignmentEntryWithResourceId as qu, PublicSSO as r, GroupMemberRemovedEventResponse as ra, RefreshSessionResponse as rc, RemoveGroupRoleAssignmentOptions as rd, SerializedCreateAuthorizationResourceOptions as rf, AuthenticationRadarRiskDetectedEventResponse as ri, AuthenticationFactor as rl, GetAccessTokenResponse as rn, RoleDeletedEventResponse as ro, AuthenticationActionResponseData as rr, ListFeatureFlagsOptions as rs, CreateObjectOptions as rt, AuthenticateUserWithCodeCredentials as ru, PortalLinkResponse as s, InvitationAcceptedEventResponse as sa, PasswordResetResponse as sc, CreateGroupRoleAssignmentOptionsWithResourceExternalId as sd, SerializedUpdatePermissionOptions as sf, AuthenticationSSOSucceededEventResponse as si, Totp as sl, SerializedGetAccessTokenResponse as sn, SessionCreatedEventResponse as so, ActionPayload as sr, FeatureFlag as ss, WidgetSessionTokenResponse as st, AuthenticateWithSessionOptions as su, ConfidentialClientOptions as t, GroupMemberEventResponseData as ta, SerializedResendInvitationOptions as tc, RemoveGroupRoleAssignmentsOptionsWithResourceId as td, CreateOptionsWithParentExternalId as tf, AuthenticationPasswordSucceededEventResponse as ti, AuthenticationRadarRiskDetectedEventData as tl, GetAccessTokenFailureResponse as tn, RoleCreatedEventResponse as to, PKCEPair as tr, RuntimeClientOptions as ts, ReadObjectResponse as tt, AuthenticateWithCodeAndVerifierOptions as tu, GenerateLinkResponse as u, InvitationResentEvent as ua, MagicAuth as uc, GetGroupRoleAssignmentOptions as ud, SerializedCreatePermissionOptions as uf, ConnectionDeactivatedEvent as ui, TotpWithSecretsResponse as ul, SerializedAccessToken as un, UnknownEvent as uo, UserRegistrationActionPayload as ur, AddFlagTargetOptions as us, WidgetSessionTokenScopes as ut, WithResolvedClientId as uu, RateLimitExceededException as v, OrganizationDeletedEvent as va, ListUserFeatureFlagsOptions as vc, RemoveRoleOptionsWithResourceId as vd, CreateOrganizationRoleOptions as vf, DsyncGroupCreatedEvent as vi, AuthenticateWithSessionCookieFailedResponse as vl, NewConnectApplicationSecret as vn, VaultByokKeyVerificationCompletedEventResponse as vo, CreateOrganizationRequestOptions as vr, CreateOrganizationApiKeyRequestOptions as vs, AuditLogTarget as vt, SerializedListConnectionsOptions as vu, AuthenticationErrorCode as w, OrganizationDomainUpdatedEvent as wa, AuthorizationOrganizationMembershipResponse as wc, SerializedAssignRoleOptions as wd, UpdateEnvironmentRoleOptions as wf, DsyncGroupUserAddedEvent as wi, AuthenticationResponse as wl, ConnectApplicationM2MResponse as wn, VaultDataReadEventResponse as wo, UnprocessableEntityError as wr, OrganizationDomain as ws, AuditLogSchemaMetadata as wt, ConnectionType as wu, NoApiKeyProvidedException as x, OrganizationDomainCreatedEventResponse as xa, ListOrganizationMembershipsOptions as xc, AssignRoleOptionsWithResourceExternalId as xd, AddEnvironmentRolePermissionOptions as xf, DsyncGroupDeletedEventResponse as xi, AuthenticateWithSessionCookieSuccessResponse as xl, ApplicationCredentialsListItemResponse as xn, VaultDataDeletedEvent as xo, DomainDataState as xr, SerializedApiKey as xs, SerializedCreateAuditLogEventOptions as xt, Connection as xu, OauthException as y, OrganizationDeletedResponse as ya, ListSessionsOptions as yc, SerializedRemoveRoleOptions as yd, SerializedCreateOrganizationRoleOptions as yf, DsyncGroupCreatedEventResponse as yi, AuthenticateWithSessionCookieFailureReason as yl, NewConnectApplicationSecretResponse as yn, VaultDataCreatedEvent as yo, SerializedCreateOrganizationOptions as yr, SerializedCreateOrganizationApiKeyOptions as ys, CreateAuditLogEventOptions as yt, GetProfileAndTokenOptions as yu, ObjectSummary as z, OrganizationRoleDeletedEventResponse as za, EnrollAuthFactorOptions as zc, ListResourcesForMembershipOptionsWithParentId as zd, DirectoryResponse as zf, EventResponse as zi, SerializedAuthenticateWithPasswordOptions as zl, CreateM2MApplication as zn, KeyContext as zo, AuthenticationMagicAuthFailedEventResponse as zr, Session as zs, SmsResponse as zt, RoleList as zu };
|
|
8527
|
-
//# sourceMappingURL=factory-
|
|
8566
|
+
export { ReadObjectMetadataResponse as $, PermissionUpdatedEventResponse as $a, SerializedCreateMagicAuthOptions as $c, AuthorizationResource as $d, CryptoProvider as $f, GroupMemberAddedEventResponse as $i, AuthenticateUserWithEmailVerificationCredentials as $l, AutoPaginatable as $n, RuntimeClientStats as $o, AuthenticationPasswordFailedEventResponse as $r, ResetPasswordOptions as $s, RadarStandaloneAssessRequestAction as $t, RemoveGroupRoleAssignmentsOptions as $u, ApiKeyRequiredException as A, OrganizationMembershipCreated as Aa, OrganizationMembershipStatus as Ac, SerializedListRoleAssignmentsOptions as Ad, EnvironmentRoleListResponse as Af, DsyncUserDeletedEvent as Ai, UserResponse as Al, ExternalAuthCompleteResponse as An, VaultDekReadEventResponse as Ao, GetOptions as Ar, SerializedCreateOrganizationDomainOptions as As, SerializedAuditLogExportOptions as At, DirectoryUserResponse as Au, ObjectSummaryResponse as B, OrganizationRoleUpdatedEvent as Ba, EnrollAuthFactorOptions as Bc, ListResourcesForMembershipOptionsWithParentId as Bd, DirectoryResponse as Bf, FlagCreatedEvent as Bi, SerializedAuthenticateWithPasswordOptions as Bl, CreateM2MApplicationResponse as Bn, SerializedUpdateGroupOptions as Bo, AuthenticationMagicAuthSucceededEvent as Br, Session as Bs, EnrollFactorOptions as Bt, RoleList as Bu, BadRequestException as C, OrganizationDomainDeletedEventResponse as Ca, SerializedListOrganizationMembershipsOptions as Cc, AssignRoleOptionsWithResourceId as Cd, SetEnvironmentRolePermissionsOptions as Cf, DsyncGroupUpdatedEventResponse as Ci, SessionCookieData as Cl, ConnectApplicationM2M as Cn, VaultDataReadEvent as Co, WorkOSOptions as Cr, OrganizationDomainVerificationFailed as Cs, AuditLogSchema as Ct, ConnectionDomain as Cu, isAuthenticationErrorData as D, OrganizationDomainVerificationFailedEventResponse as Da, BaseOrganizationMembershipResponse as Dc, ListRoleAssignmentsForResourceOptions as Dd, SerializedCreateEnvironmentRoleOptions as Df, DsyncGroupUserRemovedEventResponse as Di, CreateUserResponse as Dl, ConnectApplicationResponse as Dn, VaultDekDecryptedEvent as Do, PatchOptions as Dr, OrganizationDomainState as Ds, AuditLogExport as Dt, SSOPKCEAuthorizationURLResult as Du, AuthenticationException as E, OrganizationDomainVerificationFailedEvent as Ea, BaseOrganizationMembership as Ec, ListRoleAssignmentsForResourceByExternalIdOptions as Ed, CreateEnvironmentRoleOptions as Ef, DsyncGroupUserRemovedEvent as Ei, AuthenticationResponseResponse as El, ConnectApplicationOAuthResponse as En, VaultDataUpdatedEventResponse as Eo, PostOptions as Er, OrganizationDomainResponse as Es, AuditLogTargetSchema as Et, SSOAuthorizationURLOptions as Eu, UpdateWebhookEndpointEvents as F, OrganizationMembershipUpdatedResponse as Fa, Invitation as Fc, RoleAssignmentRole as Fd, SerializedListDirectoriesOptions as Ff, EmailVerificationCreatedEventResponse as Fi, AuthenticateUserWithRefreshTokenCredentials as Fl, DeleteApplicationOptions as Fn, VaultNamesListedEvent as Fo, ApiKeyRevokedEventResponse as Fr, SerializedUpdateUserOptions as Fs, FactorResponse as Ft, OrganizationRoleEventResponse as Fu, ObjectMetadata as G, PasswordResetCreatedEventResponse as Ga, EmailVerificationResponse as Gc, AuthorizationCheckResult as Gd, EventDirectoryResponse as Gf, FlagRuleUpdatedEventResponse as Gi, AuthenticateWithRadarSmsChallengeOptions as Gl, ListApplicationsOptions as Gn, Group as Go, AuthenticationOAuthFailedEventResponse as Gr, SendRadarSmsChallengeResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, GroupRoleAssignmentEntry as Gu, ObjectVersionResponse as H, OrganizationUpdatedEvent as Ha, EmailVerification as Hc, AuthorizationCheckOptions as Hd, DirectoryStateResponse as Hf, FlagDeletedEvent as Hi, AuthenticateWithOrganizationSelectionOptions as Hl, CreateOAuthApplicationResponse as Hn, RemoveGroupOrganizationMembershipOptions as Ho, AuthenticationMfaSucceededEvent as Hr, SessionStatus as Hs, ChallengeResponse as Ht, ListEffectivePermissionsByExternalIdOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationRoleCreatedEvent as Ia, InvitationEvent as Ic, ListMembershipsForResourceByExternalIdOptions as Id, PaginationOptions as If, Event as Ii, AuthenticateWithRefreshTokenOptions as Il, UpdateApplicationOptions as In, VaultNamesListedEventResponse as Io, AuthenticationEmailVerificationSucceededEvent as Ir, UpdateUserOptions as Is, FactorWithSecrets as It, OrganizationRoleResponse as Iu, ActorResponse as J, PermissionCreatedEvent as Ja, CreatePasswordResetOptions as Jc, DeleteAuthorizationResourceByExternalIdOptions as Jd, HttpClientResponseInterface as Jf, GroupCreatedEvent as Ji, AuthenticateWithRadarEmailChallengeOptions as Jl, UserConsentOptionResponse as Jn, DeleteGroupOptions as Jo, AuthenticationPasskeyFailedEvent as Jr, SendInvitationOptions as Js, RadarStandaloneResponseBlocklistType as Jt, GroupRoleAssignmentEntryWithResourceId as Ju, ObjectMetadataResponse as K, PasswordResetSucceededEvent as Ka, CreateUserOptions as Kc, SerializedAuthorizationCheckOptions as Kd, HttpClient as Kf, FlagUpdatedEvent as Ki, SerializedAuthenticateWithRadarSmsChallengeOptions as Kl, CompleteOAuth2Options as Kn, GroupResponse as Ko, AuthenticationOAuthSucceededEvent as Kr, SendRadarSmsChallengeResponseResponse as Ks, RadarStandaloneResponse as Kt, GroupRoleAssignmentEntryForOrganization as Ku, CreateWebhookEndpointEvents as L, OrganizationRoleCreatedEventResponse as La, InvitationEventResponse as Lc, ListMembershipsForResourceOptions as Ld, DirectoryGroup as Lf, EventBase as Li, SerializedAuthenticateWithRefreshTokenOptions as Ll, GetApplicationOptions as Ln, DataKey as Lo, AuthenticationEmailVerificationSucceededEventResponse as Lr, SerializedUpdateOrganizationMembershipOptions as Ls, FactorWithSecretsResponse as Lt, Role as Lu, WebhookEndpoint as M, OrganizationMembershipDeleted as Ma, SerializedListInvitationsOptions as Mc, RoleAssignmentResource as Md, ListDirectoryUsersOptions as Mf, DsyncUserUpdatedEvent as Mi, ImpersonatorResponse as Ml, DeleteClientSecretOptions as Mn, VaultKekCreatedEventResponse as Mo, ApiKeyCreatedEvent as Mr, VerifyEmailOptions as Ms, VerifyResponseResponse as Mt, DirectoryUserWithGroupsResponse as Mu, WebhookEndpointResponse as N, OrganizationMembershipDeletedResponse as Na, ListGroupsForOrganizationMembershipOptions as Nc, RoleAssignmentResourceResponse as Nd, ListDirectoryGroupsOptions as Nf, DsyncUserUpdatedEventResponse as Ni, AuthenticateWithRefreshTokenPublicClientOptions as Nl, CreateApplicationClientSecretOptions as Nn, VaultMetadataReadEvent as No, ApiKeyCreatedEventResponse as Nr, SerializedUpdateUserPasswordOptions as Ns, VerifyChallengeOptions as Nt, ListOrganizationRolesResponse as Nu, GenericServerException as O, OrganizationDomainVerifiedEvent as Oa, OrganizationMembership as Oc, SerializedListRoleAssignmentsForResourceOptions as Od, EnvironmentRole as Of, DsyncUserCreatedEvent as Oi, CreateUserResponseResponse as Ol, ConnectApplicationRedirectUri as On, VaultDekDecryptedEventResponse as Oo, List as Or, OrganizationDomainVerificationStrategy as Os, AuditLogExportResponse as Ot, DefaultCustomAttributes as Ou, WebhookEndpointStatus as P, OrganizationMembershipUpdated as Pa, ListAuthFactorsOptions as Pc, RoleAssignmentResponse as Pd, ListDirectoriesOptions as Pf, EmailVerificationCreatedEvent as Pi, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Pl, ListApplicationClientSecretsOptions as Pn, VaultMetadataReadEventResponse as Po, ApiKeyRevokedEvent as Pr, UpdateUserPasswordOptions as Ps, Factor as Pt, OrganizationRoleEvent as Pu, UpdateObjectOptions as Q, PermissionUpdatedEvent as Qa, CreateMagicAuthOptions as Qc, SerializedListAuthorizationResourcesOptions as Qd, ResponseHeaders as Qf, GroupMemberAddedEvent as Qi, SerializedAuthenticateWithMagicAuthOptions as Ql, UserObjectResponse as Qn, SerializedAddGroupOrganizationMembershipOptions as Qo, AuthenticationPasswordFailedEvent as Qr, serializeRevokeSessionOptions as Qs, RadarListType as Qt, BaseRemoveGroupRoleAssignmentsOptions as Qu, WorkOS as R, OrganizationRoleDeletedEvent as Ra, InvitationResponse as Rc, ListResourcesForMembershipOptions as Rd, DirectoryGroupResponse as Rf, EventName as Ri, AuthenticateUserWithPasswordCredentials as Rl, CreateApplicationOptions as Rn, DataKeyPair as Ro, AuthenticationMagicAuthFailedEvent as Rr, UpdateOrganizationMembershipOptions as Rs, Sms as Rt, RoleEvent as Ru, ConflictException as S, OrganizationDomainDeletedEvent as Sa, ListOrganizationMembershipsOptions as Sc, AssignRoleOptionsWithResourceExternalId as Sd, AddEnvironmentRolePermissionOptions as Sf, DsyncGroupUpdatedEvent as Si, AuthenticateWithSessionCookieSuccessResponse as Sl, ConnectApplication as Sn, VaultDataDeletedEventResponse as So, WorkOSResponseError as Sr, SerializedApiKey as Ss, AuditLogActorSchema as St, Connection as Su, AuthenticationErrorData as T, OrganizationDomainUpdatedEventResponse as Ta, AuthorizationOrganizationMembershipResponse as Tc, SerializedAssignRoleOptions as Td, UpdateEnvironmentRoleOptions as Tf, DsyncGroupUserAddedEventResponse as Ti, AuthenticationResponse as Tl, ConnectApplicationOAuth as Tn, VaultDataUpdatedEvent as To, PutOptions as Tr, OrganizationDomain as Ts, AuditLogSchemaResponse as Tt, ConnectionType as Tu, VaultObject as U, OrganizationUpdatedResponse as Ua, EmailVerificationEvent as Uc, AuthorizationCheckOptionsWithResourceExternalId as Ud, DirectoryType as Uf, FlagDeletedEventResponse as Ui, SerializedAuthenticateWithOrganizationSelectionOptions as Ul, RedirectUriInput as Un, ListGroupsOptions as Uo, AuthenticationMfaSucceededEventResponse as Ur, SendVerificationEmailOptions as Us, ChallengeFactorOptions as Ut, ListEffectivePermissionsOptions as Uu, ObjectVersion as V, OrganizationRoleUpdatedEventResponse as Va, SerializedEnrollUserInMfaFactorOptions as Vc, SerializedListResourcesForMembershipOptions as Vd, DirectoryState as Vf, FlagCreatedEventResponse as Vi, AuthenticateUserWithOrganizationSelectionCredentials as Vl, CreateOAuthApplication as Vn, UpdateGroupOptions as Vo, AuthenticationMagicAuthSucceededEventResponse as Vr, SessionResponse as Vs, Challenge as Vt, RoleResponse as Vu, VaultObjectResponse as W, PasswordResetCreatedEvent as Wa, EmailVerificationEventResponse as Wc, AuthorizationCheckOptionsWithResourceId as Wd, EventDirectory as Wf, FlagRuleUpdatedEvent as Wi, AuthenticateUserWithRadarSmsChallengeCredentials as Wl, RedirectUriInputResponse as Wn, ListGroupOrganizationMembershipsOptions as Wo, AuthenticationOAuthFailedEvent as Wr, SendRadarSmsChallengeOptions as Ws, RadarListEntryAlreadyPresentResponse as Wt, BaseGroupRoleAssignmentEntry as Wu, CreateDataKeyResponseWire as X, PermissionDeletedEvent as Xa, CreateOrganizationMembershipOptions as Xc, GetAuthorizationResourceByExternalIdOptions as Xd, RequestOptions as Xf, GroupDeletedEvent as Xi, AuthenticateUserWithMagicAuthCredentials as Xl, UserConsentOptionChoiceResponse as Xn, SerializedCreateGroupOptions as Xo, AuthenticationPasskeySucceededEvent as Xr, RevokeSessionOptions as Xs, RadarStandaloneResponseVerdict as Xt, SerializedGroupRoleAssignmentEntry as Xu, CreateDataKeyResponse as Y, PermissionCreatedEventResponse as Ya, SerializedCreatePasswordResetOptions as Yc, UpdateAuthorizationResourceByExternalIdOptions as Yd, RequestHeaders as Yf, GroupCreatedEventResponse as Yi, SerializedAuthenticateWithRadarEmailChallengeOptions as Yl, UserConsentOptionChoice as Yn, CreateGroupOptions as Yo, AuthenticationPasskeyFailedEventResponse as Yr, SerializedSendInvitationOptions as Ys, RadarStandaloneResponseControl as Yt, ReplaceGroupRoleAssignmentsOptions as Yu, UpdateObjectEntity as Z, PermissionDeletedEventResponse as Za, SerializedCreateOrganizationMembershipOptions as Zc, ListAuthorizationResourcesOptions as Zd, ResponseHeaderValue as Zf, GroupDeletedEventResponse as Zi, AuthenticateWithMagicAuthOptions as Zl, UserObject as Zn, AddGroupOrganizationMembershipOptions as Zo, AuthenticationPasskeySucceededEventResponse as Zr, SerializedRevokeSessionOptions as Zs, RadarListAction as Zt, SerializedReplaceGroupRoleAssignmentsOptions as Zu, SignatureVerificationException as _, OrganizationCreatedResponse as _a, ListUsersOptions as _c, RemoveRoleOptions as _d, SerializedUpdateOrganizationRoleOptions as _f, DsyncDeletedEventResponse as _i, AuthenticateWithTotpOptions as _l, SerializedListEventOptions as _n, VaultByokKeyVerificationCompletedEvent as _o, CreateOrganizationOptions as _r, SerializedCreatedApiKey as _s, AuditLogActor as _t, OauthTokensResponse as _u, PublicWorkOS as a, GroupUpdatedEventResponse as aa, PasswordReset as ac, BaseCreateGroupRoleAssignmentOptions as ad, SerializedUpdateAuthorizationResourceOptions as af, AuthenticationSSOFailedEventResponse as ai, AuthenticationFactorResponse as al, SerializedGetAccessTokenFailureResponse as an, RoleUpdatedEventResponse as ao, UserRegistrationActionResponseData as ar, FlagPollEntry as as, DecryptDataKeyResponse as at, AuthenticateWithCodeOptions as au, NotFoundException as b, OrganizationDomainCreatedEvent as ba, ListSessionsOptions as bc, SerializedRemoveRoleOptions as bd, SerializedCreateOrganizationRoleOptions as bf, DsyncGroupDeletedEvent as bi, AuthenticateWithSessionCookieFailureReason as bl, ApplicationCredentialsListItem as bn, VaultDataCreatedEventResponse as bo, DomainData as br, SerializedCreateOrganizationApiKeyOptions as bs, CreateAuditLogEventRequestOptions as bt, GetProfileAndTokenOptions as bu, PortalLinkResponseWire as c, InvitationCreatedEvent as ca, PasswordResetResponse as cc, CreateGroupRoleAssignmentOptionsWithResourceExternalId as cd, SerializedUpdatePermissionOptions as cf, ConnectionActivatedEvent as ci, Totp as cl, SerializedGetAccessTokenSuccessResponse as cn, SessionRevokedEvent as co, UserData as cr, FeatureFlag as cs, WidgetSessionTokenResponseWire as ct, AuthenticateWithSessionOptions as cu, IntentOptions as d, InvitationResentEventResponse as da, MagicAuth as dc, GetGroupRoleAssignmentOptions as dd, SerializedCreatePermissionOptions as df, ConnectionDeactivatedEventResponse as di, TotpWithSecretsResponse as dl, SendSessionResponse as dn, UserCreatedEvent as do, SerializedUpdateOrganizationOptions as dr, AddFlagTargetOptions as ds, FeatureFlagsRuntimeClient as dt, WithResolvedClientId as du, GroupMemberEventData as ea, SerializedResetPasswordOptions as ec, RemoveGroupRoleAssignmentsOptionsForOrganization as ed, AuthorizationResourceResponse as ef, AuthenticationPasswordSucceededEvent as ei, PKCEAuthorizationURLResult as el, RadarStandaloneAssessRequestAuthMethod as en, RoleCreatedEvent as eo, PKCE as er, RuntimeClientLogger as es, ReadObjectOptions as et, AuthenticateWithEmailVerificationOptions as eu, IntentOptionsResponse as f, InvitationRevokedEvent as fa, MagicAuthEvent as fc, ListGroupRoleAssignmentsOptions as fd, Permission as ff, ConnectionDeletedEvent as fi, AuthenticationEvent as fl, CreatePasswordlessSessionOptions as fn, UserCreatedEventResponse as fo, UpdateOrganizationOptions as fr, SerializedValidateApiKeyResponse as fs, CookieSession as ft, ProfileAndToken as fu, UnauthorizedException as g, OrganizationCreatedEvent as ga, Locale as gc, BaseRemoveRoleOptions as gd, SetOrganizationRolePermissionsOptions as gf, DsyncDeletedEvent as gi, AuthenticateUserWithTotpCredentials as gl, ListEventOptions as gn, UserUpdatedEventResponse as go, ListOrganizationFeatureFlagsOptions as gr, CreatedApiKey as gs, SerializedCreateAuditLogSchemaOptions as gt, OauthTokens as gu, UnprocessableEntityException as h, MagicAuthCreatedEventResponse as ha, LogoutURLOptions as hc, RemoveRoleAssignmentOptions as hd, AddOrganizationRolePermissionOptions as hf, DsyncActivatedEventResponse as hi, AuthenticationEventSsoResponse as hl, PasswordlessSessionResponse as hn, UserUpdatedEvent as ho, ListOrganizationsOptions as hr, ListOrganizationApiKeysOptions as hs, CreateAuditLogSchemaResponse as ht, ProfileResponse as hu, PublicUserManagement as i, GroupUpdatedEvent as ia, RefreshSessionResponse as ic, RemoveGroupRoleAssignmentOptions as id, SerializedCreateAuthorizationResourceOptions as if, AuthenticationSSOFailedEvent as ii, AuthenticationFactor as il, GetAccessTokenSuccessResponse as in, RoleUpdatedEvent as io, ResponsePayload as ir, FlagChange as is, DecryptDataKeyOptions as it, AuthenticateUserWithCodeCredentials as iu, Webhooks as j, OrganizationMembershipCreatedResponse as ja, ListInvitationsOptions as jc, RoleAssignment as jd, EnvironmentRoleResponse as jf, DsyncUserDeletedEventResponse as ji, Impersonator as jl, ExternalAuthCompleteResponseWire as jn, VaultKekCreatedEvent as jo, GenerateLinkIntent as jr, SerializedVerifyEmailOptions as js, VerifyResponse as jt, DirectoryUserWithGroups as ju, WorkOSErrorData as k, OrganizationDomainVerifiedEventResponse as ka, OrganizationMembershipResponse as kc, ListRoleAssignmentsOptions as kd, EnvironmentRoleList as kf, DsyncUserCreatedEventResponse as ki, User as kl, ConnectApplicationRedirectUriResponse as kn, VaultDekReadEvent as ko, ListResponse as kr, CreateOrganizationDomainOptions as ks, AuditLogExportOptions as kt, DirectoryUser as ku, GenerateLink as l, InvitationCreatedEventResponse as la, CreateMagicAuthResponse as lc, CreateGroupRoleAssignmentOptionsWithResourceId as ld, UpdatePermissionOptions as lf, ConnectionActivatedEventResponse as li, TotpResponse as ll, AccessToken as ln, SessionRevokedEventResponse as lo, UserDataPayload as lr, FeatureFlagResponse as ls, CreateTokenOptions as lt, SerializedAuthenticatePublicClientBase as lu, SSOIntentOptionsResponse as m, MagicAuthCreatedEvent as ma, MagicAuthResponse as mc, GroupRoleAssignmentResponse as md, RemoveOrganizationRolePermissionOptions as mf, DsyncActivatedEvent as mi, AuthenticationEventSso as ml, PasswordlessSession as mn, UserDeletedEventResponse as mo, OrganizationResponse as mr, ValidateApiKeyResponse as ms, CreateAuditLogSchemaRequestOptions as mt, Profile as mu, PublicClientOptions as n, GroupMemberRemovedEvent as na, SerializedResendInvitationOptions as nc, RemoveGroupRoleAssignmentsOptionsWithResourceId as nd, CreateOptionsWithParentExternalId as nf, AuthenticationRadarRiskDetectedEvent as ni, AuthenticationRadarRiskDetectedEventData as nl, GetAccessTokenOptions as nn, RoleDeletedEvent as no, Actions as nr, RemoveFlagTargetOptions as ns, CreateObjectEntity as nt, AuthenticateWithCodeAndVerifierOptions as nu, createWorkOS as o, InvitationAcceptedEvent as oa, PasswordResetEvent as oc, CreateGroupRoleAssignmentOptions as od, UpdateAuthorizationResourceOptions as of, AuthenticationSSOSucceededEvent as oi, AuthenticationFactorWithSecrets as ol, SerializedGetAccessTokenOptions as on, SessionCreatedEvent as oo, ActionContext as or, FlagPollResponse as os, CreateDataKeyOptions as ot, SerializedAuthenticateWithCodeOptions as ou, SSOIntentOptions as p, InvitationRevokedEventResponse as pa, MagicAuthEventResponse as pc, GroupRoleAssignment as pd, PermissionResponse as pf, ConnectionDeletedEventResponse as pi, AuthenticationEventResponse as pl, SerializedCreatePasswordlessSessionOptions as pn, UserDeletedEvent as po, Organization as pr, ValidateApiKeyOptions as ps, CreateAuditLogSchemaOptions as pt, ProfileAndTokenResponse as pu, Actor as q, PasswordResetSucceededEventResponse as qa, SerializedCreateUserOptions as qc, DeleteAuthorizationResourceOptions as qd, HttpClientInterface as qf, FlagUpdatedEventResponse as qi, AuthenticateUserWithRadarEmailChallengeCredentials as ql, UserConsentOption as qn, GetGroupOptions as qo, AuthenticationOAuthSucceededEventResponse as qr, SerializedSendRadarSmsChallengeOptions as qs, RadarStandaloneResponseWire as qt, GroupRoleAssignmentEntryWithResourceExternalId as qu, PublicSSO as r, GroupMemberRemovedEventResponse as ra, RefreshSessionFailureReason as rc, SerializedRemoveGroupRoleAssignmentsOptions as rd, CreateOptionsWithParentResourceId as rf, AuthenticationRadarRiskDetectedEventResponse as ri, AuthenticationRadarRiskDetectedEventResponseData as rl, GetAccessTokenResponse as rn, RoleDeletedEventResponse as ro, AuthenticationActionResponseData as rr, ListFeatureFlagsOptions as rs, CreateObjectOptions as rt, SerializedAuthenticateWithCodeAndVerifierOptions as ru, PortalLinkResponse as s, InvitationAcceptedEventResponse as sa, PasswordResetEventResponse as sc, CreateGroupRoleAssignmentOptionsForOrganization as sd, ListPermissionsOptions as sf, AuthenticationSSOSucceededEventResponse as si, AuthenticationFactorWithSecretsResponse as sl, SerializedGetAccessTokenResponse as sn, SessionCreatedEventResponse as so, ActionPayload as sr, FlagTarget as ss, WidgetSessionTokenResponse as st, AuthenticateWithOptionsBase as su, ConfidentialClientOptions as t, GroupMemberEventResponseData as ta, ResendInvitationOptions as tc, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as td, CreateAuthorizationResourceOptions as tf, AuthenticationPasswordSucceededEventResponse as ti, UserManagementAuthorizationURLOptions as tl, GetAccessTokenFailureResponse as tn, RoleCreatedEventResponse as to, PKCEPair as tr, RuntimeClientOptions as ts, ReadObjectResponse as tt, SerializedAuthenticateWithEmailVerificationOptions as tu, GenerateLinkResponse as u, InvitationResentEvent as ua, CreateMagicAuthResponseResponse as uc, SerializedCreateGroupRoleAssignmentOptions as ud, CreatePermissionOptions as uf, ConnectionDeactivatedEvent as ui, TotpWithSecrets as ul, SerializedAccessToken as un, UnknownEvent as uo, UserRegistrationActionPayload as ur, EvaluationContext as us, WidgetSessionTokenScopes as ut, SerializedAuthenticateWithOptionsBase as uu, RateLimitExceededException as v, OrganizationDeletedEvent as va, SerializedListUsersOptions as vc, RemoveRoleOptionsWithResourceExternalId as vd, UpdateOrganizationRoleOptions as vf, DsyncGroupCreatedEvent as vi, SerializedAuthenticateWithTotpOptions as vl, NewConnectApplicationSecret as vn, VaultByokKeyVerificationCompletedEventResponse as vo, CreateOrganizationRequestOptions as vr, CreateOrganizationApiKeyOptions as vs, AuditLogTarget as vt, ListConnectionsOptions as vu, AuthenticationErrorCode as w, OrganizationDomainUpdatedEvent as wa, AuthorizationOrganizationMembership as wc, BaseAssignRoleOptions as wd, SerializedUpdateEnvironmentRoleOptions as wf, DsyncGroupUserAddedEvent as wi, UserManagementAccessToken as wl, ConnectApplicationM2MResponse as wn, VaultDataReadEventResponse as wo, UnprocessableEntityError as wr, OrganizationDomainVerificationFailedResponse as ws, AuditLogSchemaMetadata as wt, ConnectionResponse as wu, NoApiKeyProvidedException as x, OrganizationDomainCreatedEventResponse as xa, SerializedListSessionsOptions as xc, AssignRoleOptions as xd, OrganizationRole as xf, DsyncGroupDeletedEventResponse as xi, AuthenticateWithSessionCookieOptions as xl, ApplicationCredentialsListItemResponse as xn, VaultDataDeletedEvent as xo, DomainDataState as xr, ApiKey as xs, SerializedCreateAuditLogEventOptions as xt, GetProfileOptions as xu, OauthException as y, OrganizationDeletedResponse as ya, ListUserFeatureFlagsOptions as yc, RemoveRoleOptionsWithResourceId as yd, CreateOrganizationRoleOptions as yf, DsyncGroupCreatedEventResponse as yi, AuthenticateWithSessionCookieFailedResponse as yl, NewConnectApplicationSecretResponse as yn, VaultDataCreatedEvent as yo, SerializedCreateOrganizationOptions as yr, CreateOrganizationApiKeyRequestOptions as ys, CreateAuditLogEventOptions as yt, SerializedListConnectionsOptions as yu, ObjectSummary as z, OrganizationRoleDeletedEventResponse as za, Identity as zc, ListResourcesForMembershipOptionsWithParentExternalId as zd, Directory as zf, EventResponse as zi, AuthenticateWithPasswordOptions as zl, CreateM2MApplication as zn, KeyContext as zo, AuthenticationMagicAuthFailedEventResponse as zr, AuthMethod as zs, SmsResponse as zt, RoleEventResponse as zu };
|
|
8567
|
+
//# sourceMappingURL=factory-B85kMVYe.d.mts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { EventEmitter } from "eventemitter3";
|
|
2
1
|
//#region src/common/crypto/crypto-provider.ts
|
|
3
2
|
/**
|
|
4
3
|
* Interface encapsulating the various crypto computations used by the library,
|
|
@@ -4817,7 +4816,7 @@ var UserManagement = class {
|
|
|
4817
4816
|
* Or use getAuthorizationUrlWithPKCE() which handles PKCE automatically.
|
|
4818
4817
|
*/
|
|
4819
4818
|
getAuthorizationUrl(options) {
|
|
4820
|
-
const { claimNonce, connectionId, codeChallenge, codeChallengeMethod, clientId, domainHint, loginHint, organizationId, provider, providerQueryParams, providerScopes, prompt, redirectUri, state, screenHint } = options;
|
|
4819
|
+
const { claimNonce, connectionId, codeChallenge, codeChallengeMethod, clientId, domainHint, invitationToken, loginHint, organizationId, provider, providerQueryParams, providerScopes, prompt, redirectUri, state, screenHint } = options;
|
|
4821
4820
|
const resolvedClientId = this.resolveClientId(clientId);
|
|
4822
4821
|
if (!provider && !connectionId && !organizationId) throw new TypeError(`Incomplete arguments. Need to specify either a 'connectionId', 'organizationId', or 'provider'.`);
|
|
4823
4822
|
if (provider !== "authkit" && screenHint) throw new TypeError(`'screenHint' is only supported for 'authkit' provider`);
|
|
@@ -4828,6 +4827,7 @@ var UserManagement = class {
|
|
|
4828
4827
|
code_challenge_method: codeChallengeMethod,
|
|
4829
4828
|
organization_id: organizationId,
|
|
4830
4829
|
domain_hint: domainHint,
|
|
4830
|
+
invitation_token: invitationToken,
|
|
4831
4831
|
login_hint: loginHint,
|
|
4832
4832
|
provider,
|
|
4833
4833
|
provider_query_params: providerQueryParams,
|
|
@@ -4928,6 +4928,81 @@ var UserManagement = class {
|
|
|
4928
4928
|
}
|
|
4929
4929
|
};
|
|
4930
4930
|
//#endregion
|
|
4931
|
+
//#region src/feature-flags/event-emitter.ts
|
|
4932
|
+
/**
|
|
4933
|
+
* Minimal, runtime-agnostic, typed event emitter.
|
|
4934
|
+
*
|
|
4935
|
+
* Replaces eventemitter3 so the SDK carries no event dependency and works in
|
|
4936
|
+
* edge runtimes where `node:events` is not available. Generic over an event
|
|
4937
|
+
* map (`{ eventName: [arg1, arg2, ...] }`) for compile-time-checked event
|
|
4938
|
+
* names and payloads.
|
|
4939
|
+
*
|
|
4940
|
+
* Unlike eventemitter3, an unhandled `'error'` event throws instead of being
|
|
4941
|
+
* silently dropped — matching Node's `EventEmitter` so failures are never
|
|
4942
|
+
* swallowed.
|
|
4943
|
+
*/
|
|
4944
|
+
var EventEmitter = class {
|
|
4945
|
+
handlers = /* @__PURE__ */ new Map();
|
|
4946
|
+
on(event, fn) {
|
|
4947
|
+
return this.add(event, fn, false);
|
|
4948
|
+
}
|
|
4949
|
+
once(event, fn) {
|
|
4950
|
+
return this.add(event, fn, true);
|
|
4951
|
+
}
|
|
4952
|
+
off(event, fn) {
|
|
4953
|
+
this.remove(event, (h) => h.fn !== fn);
|
|
4954
|
+
return this;
|
|
4955
|
+
}
|
|
4956
|
+
emit(event, ...args) {
|
|
4957
|
+
const list = this.handlers.get(event);
|
|
4958
|
+
if (!list || list.length === 0) {
|
|
4959
|
+
if (event === "error") throw args[0] instanceof Error ? args[0] : new Error(String(args[0]));
|
|
4960
|
+
return false;
|
|
4961
|
+
}
|
|
4962
|
+
for (const h of [...list]) {
|
|
4963
|
+
if (h.once) this.remove(event, (existing) => existing !== h);
|
|
4964
|
+
h.fn(...args);
|
|
4965
|
+
}
|
|
4966
|
+
return true;
|
|
4967
|
+
}
|
|
4968
|
+
listenerCount(event) {
|
|
4969
|
+
return this.handlers.get(event)?.length ?? 0;
|
|
4970
|
+
}
|
|
4971
|
+
removeAllListeners(event) {
|
|
4972
|
+
if (event === void 0) this.handlers.clear();
|
|
4973
|
+
else this.handlers.delete(event);
|
|
4974
|
+
return this;
|
|
4975
|
+
}
|
|
4976
|
+
addListener(event, fn) {
|
|
4977
|
+
return this.on(event, fn);
|
|
4978
|
+
}
|
|
4979
|
+
removeListener(event, fn) {
|
|
4980
|
+
return this.off(event, fn);
|
|
4981
|
+
}
|
|
4982
|
+
listeners(event) {
|
|
4983
|
+
return (this.handlers.get(event) ?? []).map((h) => h.fn);
|
|
4984
|
+
}
|
|
4985
|
+
eventNames() {
|
|
4986
|
+
return [...this.handlers.keys()];
|
|
4987
|
+
}
|
|
4988
|
+
add(event, fn, once) {
|
|
4989
|
+
const list = this.handlers.get(event) ?? [];
|
|
4990
|
+
list.push({
|
|
4991
|
+
fn,
|
|
4992
|
+
once
|
|
4993
|
+
});
|
|
4994
|
+
this.handlers.set(event, list);
|
|
4995
|
+
return this;
|
|
4996
|
+
}
|
|
4997
|
+
remove(event, keep) {
|
|
4998
|
+
const list = this.handlers.get(event);
|
|
4999
|
+
if (!list) return;
|
|
5000
|
+
const next = list.filter(keep);
|
|
5001
|
+
if (next.length) this.handlers.set(event, next);
|
|
5002
|
+
else this.handlers.delete(event);
|
|
5003
|
+
}
|
|
5004
|
+
};
|
|
5005
|
+
//#endregion
|
|
4931
5006
|
//#region src/feature-flags/in-memory-store.ts
|
|
4932
5007
|
var InMemoryStore = class {
|
|
4933
5008
|
flags = {};
|
|
@@ -5036,10 +5111,6 @@ var FeatureFlagsRuntimeClient = class extends EventEmitter {
|
|
|
5036
5111
|
clearTimeout(timeoutId);
|
|
5037
5112
|
});
|
|
5038
5113
|
}
|
|
5039
|
-
emit(event, ...args) {
|
|
5040
|
-
if (event === "error" && this.listenerCount(event) === 0) throw args[0] instanceof Error ? args[0] : new Error(String(args[0]));
|
|
5041
|
-
return super.emit(event, ...args);
|
|
5042
|
-
}
|
|
5043
5114
|
close() {
|
|
5044
5115
|
this.closed = true;
|
|
5045
5116
|
this.pollAbortController?.abort();
|
|
@@ -5087,14 +5158,15 @@ var FeatureFlagsRuntimeClient = class extends EventEmitter {
|
|
|
5087
5158
|
this.logger?.debug("Poll successful", { flagCount: this.store.size });
|
|
5088
5159
|
} catch (error) {
|
|
5089
5160
|
if (this.closed) return;
|
|
5161
|
+
const err = error instanceof Error ? error : new Error(String(error));
|
|
5090
5162
|
this.consecutiveErrors++;
|
|
5091
5163
|
this.stats.pollErrorCount++;
|
|
5092
|
-
this.emit("error",
|
|
5093
|
-
this.logger?.error("Poll failed",
|
|
5094
|
-
if (
|
|
5095
|
-
this.emit("failed",
|
|
5164
|
+
this.emit("error", err);
|
|
5165
|
+
this.logger?.error("Poll failed", err);
|
|
5166
|
+
if (err instanceof UnauthorizedException) {
|
|
5167
|
+
this.emit("failed", err);
|
|
5096
5168
|
if (!this.initialized && this.readyReject) {
|
|
5097
|
-
this.readyReject(
|
|
5169
|
+
this.readyReject(err);
|
|
5098
5170
|
this.readyReject = null;
|
|
5099
5171
|
}
|
|
5100
5172
|
return;
|
|
@@ -7069,7 +7141,7 @@ var Vault = class {
|
|
|
7069
7141
|
};
|
|
7070
7142
|
//#endregion
|
|
7071
7143
|
//#region package.json
|
|
7072
|
-
var version = "10.
|
|
7144
|
+
var version = "10.4.0";
|
|
7073
7145
|
//#endregion
|
|
7074
7146
|
//#region src/workos.ts
|
|
7075
7147
|
const DEFAULT_HOSTNAME = "api.workos.com";
|
|
@@ -7415,4 +7487,4 @@ function createWorkOS(options) {
|
|
|
7415
7487
|
//#endregion
|
|
7416
7488
|
export { FetchHttpClient as A, NoApiKeyProvidedException as C, isAuthenticationErrorData as D, AuthenticationException as E, GenericServerException as O, NotFoundException as S, BadRequestException as T, UnprocessableEntityException as _, DomainDataState as a, RateLimitExceededException as b, FeatureFlagsRuntimeClient as c, serializeRevokeSessionOptions as d, AuthenticateWithSessionCookieFailureReason as f, Actions as g, AutoPaginatable as h, OrganizationDomainVerificationStrategy as i, SubtleCryptoProvider as j, ApiKeyRequiredException as k, CookieSession as l, Webhooks as m, ConnectionType as n, GenerateLinkIntent as o, PKCE as p, OrganizationDomainState as r, WorkOS as s, createWorkOS as t, RefreshSessionFailureReason as u, UnauthorizedException as v, ConflictException as w, OauthException as x, SignatureVerificationException as y };
|
|
7417
7489
|
|
|
7418
|
-
//# sourceMappingURL=factory-
|
|
7490
|
+
//# sourceMappingURL=factory-CRqtXIIK.mjs.map
|