@workos-inc/node 10.8.0 → 10.9.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.
@@ -1617,6 +1617,14 @@ interface AuthenticationEventResponse {
1617
1617
  user_id: string | null;
1618
1618
  }
1619
1619
  //#endregion
1620
+ //#region src/multi-factor-auth/interfaces/sms.interface.d.ts
1621
+ interface Sms {
1622
+ phoneNumber: string;
1623
+ }
1624
+ interface SmsResponse {
1625
+ phone_number: string;
1626
+ }
1627
+ //#endregion
1620
1628
  //#region src/multi-factor-auth/interfaces/totp.interface.d.ts
1621
1629
  interface Totp {
1622
1630
  issuer: string;
@@ -1637,14 +1645,55 @@ interface TotpWithSecretsResponse extends TotpResponse {
1637
1645
  uri: string;
1638
1646
  }
1639
1647
  //#endregion
1648
+ //#region src/multi-factor-auth/interfaces/factor.interface.d.ts
1649
+ type FactorType = 'sms' | 'totp' | 'generic_otp';
1650
+ interface Factor {
1651
+ object: 'authentication_factor';
1652
+ id: string;
1653
+ createdAt: string;
1654
+ updatedAt: string;
1655
+ type: FactorType;
1656
+ sms?: Sms;
1657
+ totp?: Totp;
1658
+ }
1659
+ interface FactorWithSecrets {
1660
+ object: 'authentication_factor';
1661
+ id: string;
1662
+ createdAt: string;
1663
+ updatedAt: string;
1664
+ type: FactorType;
1665
+ sms?: Sms;
1666
+ totp?: TotpWithSecrets;
1667
+ }
1668
+ interface FactorResponse {
1669
+ object: 'authentication_factor';
1670
+ id: string;
1671
+ created_at: string;
1672
+ updated_at: string;
1673
+ type: FactorType;
1674
+ sms?: SmsResponse;
1675
+ totp?: TotpResponse;
1676
+ }
1677
+ interface FactorWithSecretsResponse {
1678
+ object: 'authentication_factor';
1679
+ id: string;
1680
+ created_at: string;
1681
+ updated_at: string;
1682
+ type: FactorType;
1683
+ sms?: SmsResponse;
1684
+ totp?: TotpWithSecretsResponse;
1685
+ }
1686
+ //#endregion
1640
1687
  //#region src/user-management/interfaces/authentication-factor.interface.d.ts
1688
+ type AuthenticationFactorType = FactorType;
1641
1689
  interface AuthenticationFactor {
1642
1690
  object: 'authentication_factor';
1643
1691
  id: string;
1644
1692
  createdAt: string;
1645
1693
  updatedAt: string;
1646
- type: 'totp';
1647
- totp: Totp;
1694
+ type: AuthenticationFactorType;
1695
+ sms?: Sms;
1696
+ totp?: Totp;
1648
1697
  userId: string;
1649
1698
  }
1650
1699
  interface AuthenticationFactorWithSecrets {
@@ -1661,8 +1710,9 @@ interface AuthenticationFactorResponse {
1661
1710
  id: string;
1662
1711
  created_at: string;
1663
1712
  updated_at: string;
1664
- type: 'totp';
1665
- totp: TotpResponse;
1713
+ type: AuthenticationFactorType;
1714
+ sms?: SmsResponse;
1715
+ totp?: TotpResponse;
1666
1716
  user_id: string;
1667
1717
  }
1668
1718
  interface AuthenticationFactorWithSecretsResponse {
@@ -1786,6 +1836,21 @@ interface SerializedCreatePasswordResetOptions {
1786
1836
  email: string;
1787
1837
  }
1788
1838
  //#endregion
1839
+ //#region src/user-management/interfaces/create-user-api-key-options.interface.d.ts
1840
+ interface CreateUserApiKeyOptions {
1841
+ name: string;
1842
+ organizationId: string;
1843
+ permissions?: string[];
1844
+ expiresAt?: Date;
1845
+ }
1846
+ interface SerializedCreateUserApiKeyOptions {
1847
+ name: string;
1848
+ organization_id: string;
1849
+ permissions?: string[];
1850
+ expires_at?: string;
1851
+ }
1852
+ interface CreateUserApiKeyRequestOptions extends Pick<PostOptions, 'idempotencyKey'> {}
1853
+ //#endregion
1789
1854
  //#region src/user-management/interfaces/password-hash-type.interface.d.ts
1790
1855
  type PasswordHashType = 'bcrypt' | 'firebase-scrypt' | 'ssha' | 'scrypt' | 'argon2';
1791
1856
  //#endregion
@@ -2058,6 +2123,14 @@ interface ListUserFeatureFlagsOptions extends PaginationOptions {
2058
2123
  userId: string;
2059
2124
  }
2060
2125
  //#endregion
2126
+ //#region src/user-management/interfaces/list-user-api-keys-options.interface.d.ts
2127
+ interface ListUserApiKeysOptions extends PaginationOptions {
2128
+ organizationId?: string;
2129
+ }
2130
+ interface SerializedListUserApiKeysOptions extends PaginationOptions {
2131
+ organization_id?: string;
2132
+ }
2133
+ //#endregion
2061
2134
  //#region src/user-management/interfaces/list-users-options.interface.d.ts
2062
2135
  interface ListUsersOptions extends PaginationOptions {
2063
2136
  /** Filter users by their email address. */
@@ -2185,12 +2258,43 @@ declare enum RefreshSessionFailureReason {
2185
2258
  NO_SESSION_COOKIE_PROVIDED = "no_session_cookie_provided",
2186
2259
  INVALID_GRANT = "invalid_grant",
2187
2260
  MFA_ENROLLMENT = "mfa_enrollment",
2188
- SSO_REQUIRED = "sso_required"
2189
- }
2190
- type RefreshSessionFailedResponse = {
2261
+ SSO_REQUIRED = "sso_required",
2262
+ RATE_LIMIT_EXCEEDED = "rate_limit_exceeded",
2263
+ TIMEOUT = "timeout",
2264
+ SERVER_ERROR = "server_error",
2265
+ NETWORK_ERROR = "network_error"
2266
+ }
2267
+ type TerminalRefreshSessionFailureReason = RefreshSessionFailureReason.INVALID_SESSION_COOKIE | RefreshSessionFailureReason.NO_SESSION_COOKIE_PROVIDED | RefreshSessionFailureReason.INVALID_GRANT | RefreshSessionFailureReason.MFA_ENROLLMENT | RefreshSessionFailureReason.SSO_REQUIRED;
2268
+ type RetryableRefreshSessionFailureReason = RefreshSessionFailureReason.RATE_LIMIT_EXCEEDED | RefreshSessionFailureReason.TIMEOUT | RefreshSessionFailureReason.SERVER_ERROR | RefreshSessionFailureReason.NETWORK_ERROR;
2269
+ /**
2270
+ * A terminal refresh failure: the session is over (e.g. `invalid_grant`) and
2271
+ * the user should be redirected to sign in.
2272
+ */
2273
+ type RefreshSessionTerminalFailedResponse = {
2274
+ authenticated: false;
2275
+ reason: TerminalRefreshSessionFailureReason;
2276
+ retryable: false;
2277
+ };
2278
+ /**
2279
+ * A transient refresh failure: the refresh token is likely still valid (e.g. a
2280
+ * timeout, `5xx`, or `429`), so keep the existing session and retry later.
2281
+ */
2282
+ type RefreshSessionRetryableFailedResponse = {
2191
2283
  authenticated: false;
2192
- reason: RefreshSessionFailureReason;
2284
+ reason: RetryableRefreshSessionFailureReason;
2285
+ retryable: true;
2286
+ /**
2287
+ * Seconds the server asked the client to wait before retrying, parsed from
2288
+ * the `Retry-After` response header. Only present for some retryable
2289
+ * failures (e.g. a `429`).
2290
+ */
2291
+ retryAfter?: number;
2292
+ /**
2293
+ * The underlying error, exposed for logging.
2294
+ */
2295
+ error?: unknown;
2193
2296
  };
2297
+ type RefreshSessionFailedResponse = RefreshSessionTerminalFailedResponse | RefreshSessionRetryableFailedResponse;
2194
2298
  type RefreshSessionSuccessResponse = Omit<AuthenticateWithSessionCookieSuccessResponse, 'accessToken'> & {
2195
2299
  authenticated: true;
2196
2300
  session?: AuthenticationResponse;
@@ -2354,6 +2458,48 @@ interface SerializedUpdateUserPasswordOptions {
2354
2458
  password: string;
2355
2459
  }
2356
2460
  //#endregion
2461
+ //#region src/user-management/interfaces/user-api-key.interface.d.ts
2462
+ interface UserApiKey {
2463
+ object: 'api_key';
2464
+ id: string;
2465
+ owner: {
2466
+ type: 'user';
2467
+ id: string;
2468
+ organizationId: string;
2469
+ };
2470
+ name: string;
2471
+ obfuscatedValue: string;
2472
+ lastUsedAt: string | null;
2473
+ expiresAt: string | null;
2474
+ permissions: string[];
2475
+ createdAt: string;
2476
+ updatedAt: string;
2477
+ }
2478
+ interface SerializedUserApiKey {
2479
+ object: 'api_key';
2480
+ id: string;
2481
+ owner: {
2482
+ type: 'user';
2483
+ id: string;
2484
+ organization_id: string;
2485
+ };
2486
+ name: string;
2487
+ obfuscated_value: string;
2488
+ last_used_at: string | null;
2489
+ expires_at: string | null;
2490
+ permissions: string[];
2491
+ created_at: string;
2492
+ updated_at: string;
2493
+ }
2494
+ //#endregion
2495
+ //#region src/user-management/interfaces/user-api-key-with-value.interface.d.ts
2496
+ interface UserApiKeyWithValue extends UserApiKey {
2497
+ value: string;
2498
+ }
2499
+ interface SerializedUserApiKeyWithValue extends SerializedUserApiKey {
2500
+ value: string;
2501
+ }
2502
+ //#endregion
2357
2503
  //#region src/user-management/interfaces/verify-email-options.interface.d.ts
2358
2504
  interface VerifyEmailOptions {
2359
2505
  code: string;
@@ -3962,6 +4108,55 @@ interface SerializedAgentRegistration {
3962
4108
  updated_at: string;
3963
4109
  }
3964
4110
  //#endregion
4111
+ //#region src/agents/interfaces/claim-attempt.interface.d.ts
4112
+ /** Options for linking an external user to a claim attempt via the admin API. */
4113
+ interface LinkClaimAttemptToExternalUserOptions {
4114
+ /** The claim attempt token identifying the pending claim. */
4115
+ claimAttemptToken: string;
4116
+ /** The user to attach to the claim attempt. */
4117
+ user: {
4118
+ /** The email address of the user. */
4119
+ email: string;
4120
+ /** The external ID of the user. */
4121
+ externalId: string;
4122
+ };
4123
+ /** The organization to place the agent in. Required when the user belongs to multiple organizations. */
4124
+ organizationId?: string;
4125
+ }
4126
+ interface SerializedLinkClaimAttemptToExternalUserOptions {
4127
+ type: 'link_external_user';
4128
+ claim_attempt_token: string;
4129
+ user: {
4130
+ email: string;
4131
+ external_id: string;
4132
+ };
4133
+ organization_id?: string;
4134
+ }
4135
+ /** An organization the confirming user belongs to, offered as a placement choice. */
4136
+ interface ClaimAttemptOrganization {
4137
+ /** The organization ID. */
4138
+ id: string;
4139
+ /** The organization name. */
4140
+ name: string;
4141
+ }
4142
+ /** The result of linking an external user to a claim attempt. */
4143
+ interface ClaimAttemptResponse {
4144
+ /** The agent registration ID. */
4145
+ id: string;
4146
+ /** Current status of the agent registration. */
4147
+ status: AgentRegistrationStatus;
4148
+ /** The user code the agent needs to complete the claim. */
4149
+ userCode: string;
4150
+ /** Organizations the user belongs to, offered as placement choices. */
4151
+ organizations: ClaimAttemptOrganization[];
4152
+ }
4153
+ interface SerializedClaimAttemptResponse {
4154
+ id: string;
4155
+ status: AgentRegistrationStatus;
4156
+ user_code: string;
4157
+ organizations: ClaimAttemptOrganization[];
4158
+ }
4159
+ //#endregion
3965
4160
  //#region src/agents/interfaces/validate-agent-credential.interface.d.ts
3966
4161
  /** The type of agent credential to validate. */
3967
4162
  type AgentCredentialType = 'api_key' | 'access_token';
@@ -4083,6 +4278,22 @@ declare class Agents {
4083
4278
  private readonly workos;
4084
4279
  private _jwks?;
4085
4280
  constructor(workos: WorkOS);
4281
+ /**
4282
+ * Link a claim attempt to an external user
4283
+ *
4284
+ * Link an external user to a claim attempt and retrieve the code needed
4285
+ * for the agent to complete the claim. The user is looked up by external
4286
+ * ID; if no user exists, one is created. When the user belongs to multiple
4287
+ * organizations, an explicit organization must be provided.
4288
+ *
4289
+ * @param options - Object containing the claim attempt token, user details, and optional organization ID.
4290
+ * @returns {Promise<ClaimAttemptResponse>}
4291
+ * @throws {BadRequestException} 400 - Invalid request, email mismatch, or wrong account.
4292
+ * @throws {ForbiddenException} 403 - Claim denied or auth method disabled.
4293
+ * @throws {ConflictException} 409 - Organization selection required, external ID conflict, or already claimed.
4294
+ * @throws {GoneException} 410 - Claim or user code expired.
4295
+ */
4296
+ linkClaimAttemptToExternalUser(options: LinkClaimAttemptToExternalUserOptions): Promise<ClaimAttemptResponse>;
4086
4297
  /**
4087
4298
  * Get an agent registration
4088
4299
  *
@@ -6331,53 +6542,6 @@ type EnrollFactorOptions = {
6331
6542
  type: 'generic_otp';
6332
6543
  };
6333
6544
  //#endregion
6334
- //#region src/multi-factor-auth/interfaces/sms.interface.d.ts
6335
- interface Sms {
6336
- phoneNumber: string;
6337
- }
6338
- interface SmsResponse {
6339
- phone_number: string;
6340
- }
6341
- //#endregion
6342
- //#region src/multi-factor-auth/interfaces/factor.interface.d.ts
6343
- type FactorType = 'sms' | 'totp' | 'generic_otp';
6344
- interface Factor {
6345
- object: 'authentication_factor';
6346
- id: string;
6347
- createdAt: string;
6348
- updatedAt: string;
6349
- type: FactorType;
6350
- sms?: Sms;
6351
- totp?: Totp;
6352
- }
6353
- interface FactorWithSecrets {
6354
- object: 'authentication_factor';
6355
- id: string;
6356
- createdAt: string;
6357
- updatedAt: string;
6358
- type: FactorType;
6359
- sms?: Sms;
6360
- totp?: TotpWithSecrets;
6361
- }
6362
- interface FactorResponse {
6363
- object: 'authentication_factor';
6364
- id: string;
6365
- created_at: string;
6366
- updated_at: string;
6367
- type: FactorType;
6368
- sms?: SmsResponse;
6369
- totp?: TotpResponse;
6370
- }
6371
- interface FactorWithSecretsResponse {
6372
- object: 'authentication_factor';
6373
- id: string;
6374
- created_at: string;
6375
- updated_at: string;
6376
- type: FactorType;
6377
- sms?: SmsResponse;
6378
- totp?: TotpWithSecretsResponse;
6379
- }
6380
- //#endregion
6381
6545
  //#region src/multi-factor-auth/interfaces/verify-challenge-options.d.ts
6382
6546
  interface VerifyChallengeOptions {
6383
6547
  authenticationChallengeId: string;
@@ -7341,6 +7505,28 @@ declare class UserManagement {
7341
7505
  * @throws {NotFoundException} 404
7342
7506
  */
7343
7507
  deleteUser(userId: string): Promise<void>;
7508
+ /**
7509
+ * List API keys for a user
7510
+ *
7511
+ * Get a list of API keys owned by a specific user.
7512
+ * @param userId - Unique identifier of the user.
7513
+ * @param options - Pagination and filter options.
7514
+ * @returns {Promise<AutoPaginatable<UserApiKey, SerializedListUserApiKeysOptions>>}
7515
+ * @throws {NotFoundException} 404
7516
+ */
7517
+ listUserApiKeys(userId: string, options?: ListUserApiKeysOptions): Promise<AutoPaginatable<UserApiKey, SerializedListUserApiKeysOptions>>;
7518
+ /**
7519
+ * Create an API key for a user
7520
+ *
7521
+ * Create a new API key owned by a user. The user must have an active membership in the specified organization.
7522
+ * @param userId - Unique identifier of the user.
7523
+ * @param options - Object containing the API key properties.
7524
+ * @returns {Promise<UserApiKeyWithValue>}
7525
+ * @throws {BadRequestException} 400
7526
+ * @throws {NotFoundException} 404
7527
+ * @throws {UnprocessableEntityException} 422
7528
+ */
7529
+ createUserApiKey(userId: string, options: CreateUserApiKeyOptions, requestOptions?: CreateUserApiKeyRequestOptions): Promise<UserApiKeyWithValue>;
7344
7530
  /**
7345
7531
  * Get user identities
7346
7532
  *
@@ -9095,7 +9281,7 @@ declare class WorkOS {
9095
9281
  patch<Result = any, Entity = any>(path: string, entity: Entity, options?: PatchOptions): Promise<{
9096
9282
  data: Result;
9097
9283
  }>;
9098
- delete(path: string, query?: any): Promise<void>;
9284
+ delete(path: string, query?: Record<string, string | number | boolean | undefined>): Promise<void>;
9099
9285
  deleteWithBody<Entity = any>(path: string, entity: Entity): Promise<void>;
9100
9286
  emitWarning(warning: string): void;
9101
9287
  private handleHttpError;
@@ -9723,5 +9909,5 @@ interface ConfidentialClientOptions extends WorkOSOptions {
9723
9909
  declare function createWorkOS(options: PublicClientOptions): PublicWorkOS;
9724
9910
  declare function createWorkOS(options: ConfidentialClientOptions): WorkOS;
9725
9911
  //#endregion
9726
- export { ReadObjectMetadataResponse as $, FlagDeletedEvent as $a, SessionStatus as $c, ListEffectivePermissionsByExternalIdOptions as $d, ListResourcesForMembershipOptionsWithParentId as $f, AuthenticationMfaSucceededEvent as $i, EmailVerification as $l, DataIntegrationCredentialsDtoResponse as $n, OrganizationUpdatedEvent as $o, DirectoryResponse as $p, ValidateAgentApiKeyOptions as $r, RemoveGroupOrganizationMembershipOptions as $s, RadarStandaloneAssessRequestAction as $t, AuthenticateWithOrganizationSelectionOptions as $u, ApiKeyRequiredException as A, DsyncGroupCreatedEventResponse as Aa, CreateOrganizationApiKeyRequestOptions as Ac, SerializedListConnectionsOptions as Ad, RemoveRoleOptionsWithResourceId as Af, SerializedCreateOrganizationOptions as Ai, ListUserFeatureFlagsOptions as Al, DataIntegrationCredentialResponse as An, OrganizationDeletedResponse as Ao, SerializedUpdateOrganizationRoleOptions as Ap, CreateM2MApplicationResponse as Ar, VaultDataCreatedEvent as As, SerializedAuditLogExportOptions as At, AuthenticateWithSessionCookieFailedResponse as Au, ObjectSummaryResponse as B, DsyncUserCreatedEventResponse as Ba, CreateOrganizationDomainOptions as Bc, DirectoryUser as Bd, ListRoleAssignmentsOptions as Bf, ListResponse as Bi, OrganizationMembershipResponse as Bl, AuthorizeDataIntegrationOptions as Bn, OrganizationDomainVerifiedEventResponse as Bo, SerializedCreateEnvironmentRoleOptions as Bp, UserConsentOptionChoiceResponse as Br, VaultDekReadEvent as Bs, EnrollFactorOptions as Bt, User as Bu, BadRequestException as C, ConnectionDeletedEvent as Ca, SerializedValidateApiKeyResponse as Cc, ProfileAndToken as Cd, ListGroupRoleAssignmentsOptions as Cf, UpdateOrganizationOptions as Ci, MagicAuthEvent as Cl, DataIntegration as Cn, InvitationRevokedEvent as Co, CreatePermissionOptions as Cp, CreateApplicationClientSecretOptions as Cr, UserCreatedEventResponse as Cs, AuditLogSchema as Ct, AuthenticationEvent as Cu, isAuthenticationErrorData as D, DsyncDeletedEvent as Da, CreatedApiKey as Dc, OauthTokens as Dd, BaseRemoveRoleOptions as Df, ListOrganizationFeatureFlagsOptions as Di, Locale as Dl, DataIntegrationCustomProviderResponse as Dn, OrganizationCreatedEvent as Do, RemoveOrganizationRolePermissionOptions as Dp, GetApplicationOptions as Dr, UserUpdatedEventResponse as Ds, AuditLogExport as Dt, AuthenticateUserWithTotpCredentials as Du, AuthenticationException as E, DsyncActivatedEventResponse as Ea, ListOrganizationApiKeysOptions as Ec, ProfileResponse as Ed, RemoveRoleAssignmentOptions as Ef, ListOrganizationsOptions as Ei, LogoutURLOptions as El, DataIntegrationCustomProvider as En, MagicAuthCreatedEventResponse as Eo, PermissionResponse as Ep, UpdateApplicationOptions as Er, UserUpdatedEvent as Es, AuditLogTargetSchema as Et, AuthenticationEventSsoResponse as Eu, UpdateWebhookEndpointEvents as F, DsyncGroupUserAddedEvent as Fa, OrganizationDomainVerificationFailedResponse as Fc, ConnectionResponse as Fd, BaseAssignRoleOptions as Ff, UnprocessableEntityError as Fi, AuthorizationOrganizationMembership as Fl, CreateUserConnectedAccountOptions as Fn, OrganizationDomainUpdatedEvent as Fo, AddEnvironmentRolePermissionOptions as Fp, ListApplicationsOptions as Fr, VaultDataReadEventResponse as Fs, FactorResponse as Ft, UserManagementAccessToken as Fu, ObjectMetadata as G, EmailVerificationCreatedEvent as Ga, UpdateUserPasswordOptions as Gc, OrganizationRoleEvent as Gd, RoleAssignmentResponse as Gf, ApiKeyRevokedEvent as Gi, ListAuthFactorsOptions as Gl, UpdateCustomProviderDefinitionResponse as Gn, OrganizationMembershipUpdated as Go, ListDirectoryUsersOptions as Gp, AgentCredentialType as Gr, VaultMetadataReadEventResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Gu, ObjectVersionResponse as H, DsyncUserDeletedEventResponse as Ha, SerializedVerifyEmailOptions as Hc, DirectoryUserWithGroups as Hd, RoleAssignment as Hf, GenerateLinkIntent as Hi, ListInvitationsOptions as Hl, DeleteDataIntegrationOptions as Hn, OrganizationMembershipCreatedResponse as Ho, EnvironmentRoleList as Hp, UserObjectResponse as Hr, VaultKekCreatedEvent as Hs, ChallengeResponse as Ht, Impersonator as Hu, UpdateWebhookEndpointStatus as I, DsyncGroupUserAddedEventResponse as Ia, OrganizationDomain as Ic, ConnectionType as Id, SerializedAssignRoleOptions as If, PutOptions as Ii, AuthorizationOrganizationMembershipResponse as Il, ConnectedAccountState as In, OrganizationDomainUpdatedEventResponse as Io, SetEnvironmentRolePermissionsOptions as Ip, CompleteOAuth2Options as Ir, VaultDataUpdatedEvent as Is, FactorWithSecrets as It, AuthenticationResponse as Iu, ActorResponse as J, EventBase as Ja, SerializedUpdateOrganizationMembershipOptions as Jc, Role as Jd, RoleAssignmentSourceResponse as Jf, AuthenticationEmailVerificationSucceededEventResponse as Ji, InvitationEventResponse as Jl, CreateDataIntegrationOptions as Jn, OrganizationRoleCreatedEventResponse as Jo, SerializedListDirectoriesOptions as Jp, SerializedAgentAccessTokenClaims as Jr, DataKey as Js, RadarStandaloneResponseBlocklistType as Jt, SerializedAuthenticateWithRefreshTokenOptions as Ju, ObjectMetadataResponse as K, EmailVerificationCreatedEventResponse as Ka, SerializedUpdateUserOptions as Kc, OrganizationRoleEventResponse as Kd, RoleAssignmentRole as Kf, ApiKeyRevokedEventResponse as Ki, Invitation as Kl, UpdateCustomProviderDefinitionAuthenticateVia as Kn, OrganizationMembershipUpdatedResponse as Ko, ListDirectoryGroupsOptions as Kp, AgentCredentialValidation as Kr, VaultNamesListedEvent as Ks, RadarStandaloneResponse as Kt, AuthenticateUserWithRefreshTokenCredentials as Ku, CreateWebhookEndpointEvents as L, DsyncGroupUserRemovedEvent as La, OrganizationDomainResponse as Lc, SSOAuthorizationURLOptions as Ld, ListRoleAssignmentsForResourceByExternalIdOptions as Lf, PostOptions as Li, BaseOrganizationMembership as Ll, GetUserConnectedAccountOptions as Ln, OrganizationDomainVerificationFailedEvent as Lo, SerializedUpdateEnvironmentRoleOptions as Lp, UserConsentOption as Lr, VaultDataUpdatedEventResponse as Ls, FactorWithSecretsResponse as Lt, AuthenticationResponseResponse as Lu, WebhookEndpoint as M, DsyncGroupDeletedEventResponse as Ma, ApiKey as Mc, GetProfileOptions as Md, AssignRoleOptions as Mf, DomainDataState as Mi, SerializedListSessionsOptions as Ml, ListUserDataProvidersOptions as Mn, OrganizationDomainCreatedEventResponse as Mo, CreateOrganizationRoleOptions as Mp, CreateOAuthApplicationResponse as Mr, VaultDataDeletedEvent as Ms, VerifyResponseResponse as Mt, AuthenticateWithSessionCookieOptions as Mu, WebhookEndpointResponse as N, DsyncGroupUpdatedEvent as Na, SerializedApiKey as Nc, Connection as Nd, AssignRoleOptionsWithResourceExternalId as Nf, WorkOSResponseError as Ni, ListOrganizationMembershipsOptions as Nl, DeleteUserConnectedAccountOptions as Nn, OrganizationDomainDeletedEvent as No, SerializedCreateOrganizationRoleOptions as Np, RedirectUriInput as Nr, VaultDataDeletedEventResponse as Ns, VerifyChallengeOptions as Nt, AuthenticateWithSessionCookieSuccessResponse as Nu, GenericServerException as O, DsyncDeletedEventResponse as Oa, SerializedCreatedApiKey as Oc, OauthTokensResponse as Od, RemoveRoleOptions as Of, CreateOrganizationOptions as Oi, ListUsersOptions as Ol, DataIntegrationCustomProviderAuthenticateVia as On, OrganizationCreatedResponse as Oo, AddOrganizationRolePermissionOptions as Op, CreateApplicationOptions as Or, VaultByokKeyVerificationCompletedEvent as Os, AuditLogExportResponse as Ot, AuthenticateWithTotpOptions as Ou, WebhookEndpointStatus as P, DsyncGroupUpdatedEventResponse as Pa, OrganizationDomainVerificationFailed as Pc, ConnectionDomain as Pd, AssignRoleOptionsWithResourceId as Pf, WorkOSOptions as Pi, SerializedListOrganizationMembershipsOptions as Pl, UpdateUserConnectedAccountOptions as Pn, OrganizationDomainDeletedEventResponse as Po, OrganizationRole as Pp, RedirectUriInputResponse as Pr, VaultDataReadEvent as Ps, Factor as Pt, SessionCookieData as Pu, UpdateObjectOptions as Q, FlagCreatedEventResponse as Qa, SessionResponse as Qc, RoleResponse as Qd, ListResourcesForMembershipOptionsWithParentExternalId as Qf, AuthenticationMagicAuthSucceededEventResponse as Qi, SerializedEnrollUserInMfaFactorOptions as Ql, DataIntegrationCredentialsDto as Qn, OrganizationRoleUpdatedEventResponse as Qo, Directory as Qp, ValidateAgentAccessTokenOptions as Qr, UpdateGroupOptions as Qs, RadarListType as Qt, AuthenticateUserWithOrganizationSelectionCredentials as Qu, WorkOS as R, DsyncGroupUserRemovedEventResponse as Ra, OrganizationDomainState as Rc, SSOPKCEAuthorizationURLResult as Rd, ListRoleAssignmentsForResourceOptions as Rf, PatchOptions as Ri, BaseOrganizationMembershipResponse as Rl, GetAccessTokenOptions as Rn, OrganizationDomainVerificationFailedEventResponse as Ro, UpdateEnvironmentRoleOptions as Rp, UserConsentOptionResponse as Rr, VaultDekDecryptedEvent as Rs, Sms as Rt, CreateUserResponse as Ru, ConflictException as S, ConnectionDeactivatedEventResponse as Sa, AddFlagTargetOptions as Sc, WithResolvedClientId as Sd, GetGroupRoleAssignmentOptions as Sf, SerializedUpdateOrganizationOptions as Si, MagicAuth as Sl, ConnectedAccountAuthMethod as Sn, InvitationResentEventResponse as So, UpdatePermissionOptions as Sp, DeleteClientSecretOptions as Sr, UserCreatedEvent as Ss, AuditLogActorSchema as St, TotpWithSecretsResponse as Su, AuthenticationErrorData as T, DsyncActivatedEvent as Ta, ValidateApiKeyResponse as Tc, Profile as Td, GroupRoleAssignmentResponse as Tf, OrganizationResponse as Ti, MagicAuthResponse as Tl, DataIntegrationState as Tn, MagicAuthCreatedEvent as To, Permission as Tp, DeleteApplicationOptions as Tr, UserDeletedEventResponse as Ts, AuditLogSchemaResponse as Tt, AuthenticationEventSso as Tu, VaultObject as U, DsyncUserUpdatedEvent as Ua, VerifyEmailOptions as Uc, DirectoryUserWithGroupsResponse as Ud, RoleAssignmentResource as Uf, ApiKeyCreatedEvent as Ui, SerializedListInvitationsOptions as Ul, UpdateDataIntegrationOptions as Un, OrganizationMembershipDeleted as Uo, EnvironmentRoleListResponse as Up, AutoPaginatable as Ur, VaultKekCreatedEventResponse as Us, ChallengeFactorOptions as Ut, ImpersonatorResponse as Uu, ObjectVersion as V, DsyncUserDeletedEvent as Va, SerializedCreateOrganizationDomainOptions as Vc, DirectoryUserResponse as Vd, SerializedListRoleAssignmentsOptions as Vf, GetOptions as Vi, OrganizationMembershipStatus as Vl, UpdateDataIntegrationApiKeyOptions as Vn, OrganizationMembershipCreated as Vo, EnvironmentRole as Vp, UserObject as Vr, VaultDekReadEventResponse as Vs, Challenge as Vt, UserResponse as Vu, VaultObjectResponse as W, DsyncUserUpdatedEventResponse as Wa, SerializedUpdateUserPasswordOptions as Wc, ListOrganizationRolesResponse as Wd, RoleAssignmentResourceResponse as Wf, ApiKeyCreatedEventResponse as Wi, ListGroupsForOrganizationMembershipOptions as Wl, UpdateCustomProviderDefinition as Wn, OrganizationMembershipDeletedResponse as Wo, EnvironmentRoleResponse as Wp, AgentAccessTokenClaims as Wr, VaultMetadataReadEvent as Ws, RadarListEntryAlreadyPresentResponse as Wt, AuthenticateWithRefreshTokenPublicClientOptions as Wu, CreateDataKeyResponseWire as X, EventResponse as Xa, AuthMethod as Xc, RoleEventResponse as Xd, ListMembershipsForResourceOptions as Xf, AuthenticationMagicAuthFailedEventResponse as Xi, Identity as Xl, CustomProviderDefinitionResponse as Xn, OrganizationRoleDeletedEventResponse as Xo, DirectoryGroup as Xp, SerializedValidateAgentCredentialOptions as Xr, KeyContext as Xs, RadarStandaloneResponseVerdict as Xt, AuthenticateWithPasswordOptions as Xu, CreateDataKeyResponse as Y, EventName as Ya, UpdateOrganizationMembershipOptions as Yc, RoleEvent as Yd, ListMembershipsForResourceByExternalIdOptions as Yf, AuthenticationMagicAuthFailedEvent as Yi, InvitationResponse as Yl, CustomProviderDefinition as Yn, OrganizationRoleDeletedEvent as Yo, PaginationOptions as Yp, SerializedAgentCredentialValidation as Yr, DataKeyPair as Ys, RadarStandaloneResponseControl as Yt, AuthenticateUserWithPasswordCredentials as Yu, UpdateObjectEntity as Z, FlagCreatedEvent as Za, Session as Zc, RoleList as Zd, ListResourcesForMembershipOptions as Zf, AuthenticationMagicAuthSucceededEvent as Zi, EnrollAuthFactorOptions as Zl, CustomProviderDefinitionAuthenticateVia as Zn, OrganizationRoleUpdatedEvent as Zo, DirectoryGroupResponse as Zp, ValidAgentCredential as Zr, SerializedUpdateGroupOptions as Zs, RadarListAction as Zt, SerializedAuthenticateWithPasswordOptions as Zu, SignatureVerificationException as _, AuthenticationSSOSucceededEvent as _a, FlagPollResponse as _c, SerializedAuthenticateWithCodeOptions as _d, CreateGroupRoleAssignmentOptions as _f, ActionContext as _i, PasswordResetEvent as _l, DataIntegrationCredentialsResponseCredentialResponse as _n, InvitationAcceptedEvent as _o, SerializedCreateAuthorizationResourceOptions as _p, ConnectApplicationResponse as _r, SessionCreatedEvent as _s, AuditLogActor as _t, AuthenticationFactorWithSecrets as _u, PublicWorkOS as a, AuthenticationPasskeyFailedEvent as aa, DeleteGroupOptions as ac, AuthenticateWithRadarEmailChallengeOptions as ad, GroupRoleAssignmentEntryWithResourceId as af, AgentRegistrationKind as ai, SendInvitationOptions as al, HttpClient as am, DataIntegrationsListResponseDataOwnership as an, GroupCreatedEvent as ao, SerializedAuthorizationCheckOptions as ap, PasswordlessSessionResponse as ar, PermissionCreatedEvent as as, DecryptDataKeyResponse as at, CreatePasswordResetOptions as au, NotFoundException as b, ConnectionActivatedEventResponse as ba, FeatureFlagResponse as bc, SerializedAuthenticatePublicClientBase as bd, CreateGroupRoleAssignmentOptionsWithResourceId as bf, UserDataPayload as bi, CreateMagicAuthResponse as bl, ConnectedAccount as bn, InvitationCreatedEventResponse as bo, ListPermissionsOptions as bp, ExternalAuthCompleteResponse as br, SessionRevokedEventResponse as bs, CreateAuditLogEventRequestOptions as bt, TotpResponse as bu, PortalLinkResponseWire as c, AuthenticationPasskeySucceededEventResponse as ca, AddGroupOrganizationMembershipOptions as cc, AuthenticateWithMagicAuthOptions as cd, SerializedReplaceGroupRoleAssignmentsOptions as cf, SerializedAgentRegistration as ci, SerializedRevokeSessionOptions as cl, RequestHeaders as cm, DataIntegrationsListResponseDataConnectedAccountResponse as cn, GroupDeletedEventResponse as co, UpdateAuthorizationResourceByExternalIdOptions as cp, NewConnectApplicationSecret as cr, PermissionDeletedEventResponse as cs, WidgetSessionTokenResponseWire as ct, SerializedCreateOrganizationMembershipOptions as cu, IntentOptions as d, AuthenticationPasswordSucceededEvent as da, RuntimeClientLogger as dc, AuthenticateWithEmailVerificationOptions as dd, RemoveGroupRoleAssignmentsOptionsForOrganization as df, PKCE as di, SerializedResetPasswordOptions as dl, ResponseHeaders as dm, DataIntegrationAccessTokenResponse as dn, GroupMemberEventData as do, SerializedListAuthorizationResourcesOptions as dp, ApplicationCredentialsListItemResponse as dr, RoleCreatedEvent as ds, FeatureFlagsRuntimeClient as dt, PKCEAuthorizationURLResult as du, AuthenticationMfaSucceededEventResponse as ea, ListGroupsOptions as ec, SerializedAuthenticateWithOrganizationSelectionOptions as ed, ListEffectivePermissionsOptions as ef, ValidateAgentCredentialOptions as ei, SendVerificationEmailOptions as el, DirectoryState as em, RadarStandaloneAssessRequestAuthMethod as en, FlagDeletedEventResponse as eo, SerializedListResourcesForMembershipOptions as ep, DataIntegrationCredentialsType as er, OrganizationUpdatedResponse as es, ReadObjectOptions as et, EmailVerificationEvent as eu, IntentOptionsResponse as f, AuthenticationPasswordSucceededEventResponse as fa, RuntimeClientOptions as fc, SerializedAuthenticateWithEmailVerificationOptions as fd, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as ff, PKCEPair as fi, ResendInvitationOptions as fl, CryptoProvider as fm, DataIntegrationAccessTokenResponseWire as fn, GroupMemberEventResponseData as fo, AuthorizationResource as fp, ConnectApplication as fr, RoleCreatedEventResponse as fs, CookieSession as ft, UserManagementAuthorizationURLOptions as fu, UnauthorizedException as g, AuthenticationSSOFailedEventResponse as ga, FlagPollEntry as gc, AuthenticateWithCodeOptions as gd, BaseCreateGroupRoleAssignmentOptions as gf, UserRegistrationActionResponseData as gi, PasswordReset as gl, DataIntegrationCredentialsResponseCredential as gn, GroupUpdatedEventResponse as go, CreateOptionsWithParentResourceId as gp, ConnectApplicationOAuthResponse as gr, RoleUpdatedEventResponse as gs, SerializedCreateAuditLogSchemaOptions as gt, AuthenticationFactorResponse as gu, UnprocessableEntityException as h, AuthenticationSSOFailedEvent as ha, FlagChange as hc, AuthenticateUserWithCodeCredentials as hd, RemoveGroupRoleAssignmentOptions as hf, ResponsePayload as hi, RefreshSessionResponse as hl, DataIntegrationCredentialsResponseError as hn, GroupUpdatedEvent as ho, CreateOptionsWithParentExternalId as hp, ConnectApplicationOAuth as hr, RoleUpdatedEvent as hs, CreateAuditLogSchemaResponse as ht, AuthenticationFactor as hu, PublicUserManagement as i, AuthenticationOAuthSucceededEventResponse as ia, GetGroupOptions as ic, AuthenticateUserWithRadarEmailChallengeCredentials as id, GroupRoleAssignmentEntryWithResourceExternalId as if, AgentRegistrationClaimCompletion as ii, SerializedSendRadarSmsChallengeOptions as il, EventDirectoryResponse as im, DataIntegrationsListResponseDataResponse as in, FlagUpdatedEventResponse as io, AuthorizationCheckResult as ip, PasswordlessSession as ir, PasswordResetSucceededEventResponse as is, DecryptDataKeyOptions as it, SerializedCreateUserOptions as iu, Webhooks as j, DsyncGroupDeletedEvent as ja, SerializedCreateOrganizationApiKeyOptions as jc, GetProfileAndTokenOptions as jd, SerializedRemoveRoleOptions as jf, DomainData as ji, ListSessionsOptions as jl, DataIntegrationCredentialType as jn, OrganizationDomainCreatedEvent as jo, UpdateOrganizationRoleOptions as jp, CreateOAuthApplication as jr, VaultDataCreatedEventResponse as js, VerifyResponse as jt, AuthenticateWithSessionCookieFailureReason as ju, WorkOSErrorData as k, DsyncGroupCreatedEvent as ka, CreateOrganizationApiKeyOptions as kc, ListConnectionsOptions as kd, RemoveRoleOptionsWithResourceExternalId as kf, CreateOrganizationRequestOptions as ki, SerializedListUsersOptions as kl, DataIntegrationCredential as kn, OrganizationDeletedEvent as ko, SetOrganizationRolePermissionsOptions as kp, CreateM2MApplication as kr, VaultByokKeyVerificationCompletedEventResponse as ks, AuditLogExportOptions as kt, SerializedAuthenticateWithTotpOptions as ku, GenerateLink as l, AuthenticationPasswordFailedEvent as la, SerializedAddGroupOrganizationMembershipOptions as lc, SerializedAuthenticateWithMagicAuthOptions as ld, BaseRemoveGroupRoleAssignmentsOptions as lf, SerializedAgentRegistrationClaim as li, serializeRevokeSessionOptions as ll, RequestOptions as lm, DataIntegrationsListResponseDataConnectedAccountState as ln, GroupMemberAddedEvent as lo, GetAuthorizationResourceByExternalIdOptions as lp, NewConnectApplicationSecretResponse as lr, PermissionUpdatedEvent as ls, CreateTokenOptions as lt, CreateMagicAuthOptions as lu, SSOIntentOptionsResponse as m, AuthenticationRadarRiskDetectedEventResponse as ma, ListFeatureFlagsOptions as mc, SerializedAuthenticateWithCodeAndVerifierOptions as md, SerializedRemoveGroupRoleAssignmentsOptions as mf, AuthenticationActionResponseData as mi, RefreshSessionFailureReason as ml, DataIntegrationAccessTokenResponseAccessTokenResponse as mn, GroupMemberRemovedEventResponse as mo, CreateAuthorizationResourceOptions as mp, ConnectApplicationM2MResponse as mr, RoleDeletedEventResponse as ms, CreateAuditLogSchemaRequestOptions as mt, AuthenticationRadarRiskDetectedEventResponseData as mu, PublicClientOptions as n, AuthenticationOAuthFailedEventResponse as na, Group as nc, AuthenticateWithRadarSmsChallengeOptions as nd, GroupRoleAssignmentEntry as nf, AgentRegistration as ni, SendRadarSmsChallengeResponse as nl, DirectoryType as nm, DataIntegrationsListResponseWire as nn, FlagRuleUpdatedEventResponse as no, AuthorizationCheckOptionsWithResourceExternalId as np, CreatePasswordlessSessionOptions as nr, PasswordResetCreatedEventResponse as ns, CreateObjectEntity as nt, EmailVerificationResponse as nu, createWorkOS as o, AuthenticationPasskeyFailedEventResponse as oa, CreateGroupOptions as oc, SerializedAuthenticateWithRadarEmailChallengeOptions as od, ReplaceGroupRoleAssignmentsOptions as of, AgentRegistrationStatus as oi, SerializedSendInvitationOptions as ol, HttpClientInterface as om, DataIntegrationsListResponseDataAuthMethods as on, GroupCreatedEventResponse as oo, DeleteAuthorizationResourceOptions as op, ListEventOptions as or, PermissionCreatedEventResponse as os, CreateDataKeyOptions as ot, SerializedCreatePasswordResetOptions as ou, SSOIntentOptions as p, AuthenticationRadarRiskDetectedEvent as pa, RemoveFlagTargetOptions as pc, AuthenticateWithCodeAndVerifierOptions as pd, RemoveGroupRoleAssignmentsOptionsWithResourceId as pf, Actions as pi, SerializedResendInvitationOptions as pl, DataIntegrationAccessTokenResponseAccessToken as pn, GroupMemberRemovedEvent as po, AuthorizationResourceResponse as pp, ConnectApplicationM2M as pr, RoleDeletedEvent as ps, CreateAuditLogSchemaOptions as pt, AuthenticationRadarRiskDetectedEventData as pu, Actor as q, Event as qa, UpdateUserOptions as qc, OrganizationRoleResponse as qd, RoleAssignmentSource as qf, AuthenticationEmailVerificationSucceededEvent as qi, InvitationEvent as ql, GetDataIntegrationOptions as qn, OrganizationRoleCreatedEvent as qo, ListDirectoriesOptions as qp, InvalidAgentCredential as qr, VaultNamesListedEventResponse as qs, RadarStandaloneResponseWire as qt, AuthenticateWithRefreshTokenOptions as qu, PublicSSO as r, AuthenticationOAuthSucceededEvent as ra, GroupResponse as rc, SerializedAuthenticateWithRadarSmsChallengeOptions as rd, GroupRoleAssignmentEntryForOrganization as rf, AgentRegistrationClaim as ri, SendRadarSmsChallengeResponseResponse as rl, EventDirectory as rm, DataIntegrationsListResponseData as rn, FlagUpdatedEvent as ro, AuthorizationCheckOptionsWithResourceId as rp, SerializedCreatePasswordlessSessionOptions as rr, PasswordResetSucceededEvent as rs, CreateObjectOptions as rt, CreateUserOptions as ru, PortalLinkResponse as s, AuthenticationPasskeySucceededEvent as sa, SerializedCreateGroupOptions as sc, AuthenticateUserWithMagicAuthCredentials as sd, SerializedGroupRoleAssignmentEntry as sf, SerializedAgentIdentity as si, RevokeSessionOptions as sl, HttpClientResponseInterface as sm, DataIntegrationsListResponseDataConnectedAccount as sn, GroupDeletedEvent as so, DeleteAuthorizationResourceByExternalIdOptions as sp, SerializedListEventOptions as sr, PermissionDeletedEvent as ss, WidgetSessionTokenResponse as st, CreateOrganizationMembershipOptions as su, ConfidentialClientOptions as t, AuthenticationOAuthFailedEvent as ta, ListGroupOrganizationMembershipsOptions as tc, AuthenticateUserWithRadarSmsChallengeCredentials as td, BaseGroupRoleAssignmentEntry as tf, AgentIdentity as ti, SendRadarSmsChallengeOptions as tl, DirectoryStateResponse as tm, DataIntegrationsListResponse as tn, FlagRuleUpdatedEvent as to, AuthorizationCheckOptions as tp, SendSessionResponse as tr, PasswordResetCreatedEvent as ts, ReadObjectResponse as tt, EmailVerificationEventResponse as tu, GenerateLinkResponse as u, AuthenticationPasswordFailedEventResponse as ua, RuntimeClientStats as uc, AuthenticateUserWithEmailVerificationCredentials as ud, RemoveGroupRoleAssignmentsOptions as uf, SerializedAgentRegistrationClaimCompletion as ui, ResetPasswordOptions as ul, ResponseHeaderValue as um, DataIntegrationsListResponseDataConnectedAccountAuthMethod as un, GroupMemberAddedEventResponse as uo, ListAuthorizationResourcesOptions as up, ApplicationCredentialsListItem as ur, PermissionUpdatedEventResponse as us, WidgetSessionTokenScopes as ut, SerializedCreateMagicAuthOptions as uu, RateLimitExceededException as v, AuthenticationSSOSucceededEventResponse as va, FlagTarget as vc, AuthenticateWithOptionsBase as vd, CreateGroupRoleAssignmentOptionsForOrganization as vf, ActionPayload as vi, PasswordResetEventResponse as vl, DataIntegrationAuthorizeUrlResponse as vn, InvitationAcceptedEventResponse as vo, SerializedUpdateAuthorizationResourceOptions as vp, ConnectApplicationRedirectUri as vr, SessionCreatedEventResponse as vs, AuditLogTarget as vt, AuthenticationFactorWithSecretsResponse as vu, AuthenticationErrorCode as w, ConnectionDeletedEventResponse as wa, ValidateApiKeyOptions as wc, ProfileAndTokenResponse as wd, GroupRoleAssignment as wf, Organization as wi, MagicAuthEventResponse as wl, DataIntegrationResponse as wn, InvitationRevokedEventResponse as wo, SerializedCreatePermissionOptions as wp, ListApplicationClientSecretsOptions as wr, UserDeletedEvent as ws, AuditLogSchemaMetadata as wt, AuthenticationEventResponse as wu, NoApiKeyProvidedException as x, ConnectionDeactivatedEvent as xa, EvaluationContext as xc, SerializedAuthenticateWithOptionsBase as xd, SerializedCreateGroupRoleAssignmentOptions as xf, UserRegistrationActionPayload as xi, CreateMagicAuthResponseResponse as xl, ConnectedAccountResponse as xn, InvitationResentEvent as xo, SerializedUpdatePermissionOptions as xp, ExternalAuthCompleteResponseWire as xr, UnknownEvent as xs, SerializedCreateAuditLogEventOptions as xt, TotpWithSecrets as xu, OauthException as y, ConnectionActivatedEvent as ya, FeatureFlag as yc, AuthenticateWithSessionOptions as yd, CreateGroupRoleAssignmentOptionsWithResourceExternalId as yf, UserData as yi, PasswordResetResponse as yl, DataIntegrationAuthorizeUrlResponseWire as yn, InvitationCreatedEvent as yo, UpdateAuthorizationResourceOptions as yp, ConnectApplicationRedirectUriResponse as yr, SessionRevokedEvent as ys, CreateAuditLogEventOptions as yt, Totp as yu, ObjectSummary as z, DsyncUserCreatedEvent as za, OrganizationDomainVerificationStrategy as zc, DefaultCustomAttributes as zd, SerializedListRoleAssignmentsForResourceOptions as zf, List as zi, OrganizationMembership as zl, CreateDataIntegrationCredentialOptions as zn, OrganizationDomainVerifiedEvent as zo, CreateEnvironmentRoleOptions as zp, UserConsentOptionChoice as zr, VaultDekDecryptedEventResponse as zs, SmsResponse as zt, CreateUserResponseResponse as zu };
9727
- //# sourceMappingURL=factory-B8vTFojy.d.cts.map
9912
+ export { ReadObjectMetadataResponse as $, FlagDeletedEventResponse as $a, AuthMethod as $c, ConnectionResponse as $d, BaseAssignRoleOptions as $f, AuthenticationMfaSucceededEventResponse as $i, Invitation as $l, PasswordlessSessionResponse as $n, OrganizationUpdatedResponse as $o, AddEnvironmentRolePermissionOptions as $p, SerializedLinkClaimAttemptToExternalUserOptions as $r, ListGroupsOptions as $s, DataIntegrationsListResponseDataOwnership as $t, UserManagementAccessToken as $u, ApiKeyRequiredException as A, DsyncGroupDeletedEvent as Aa, SerializedCreateOrganizationApiKeyOptions as Ac, SerializedAuthenticateWithEmailVerificationOptions as Ad, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as Af, DomainData as Ai, MagicAuthResponse as Al, CryptoProvider as Am, ConnectedAccountState as An, OrganizationDomainCreatedEvent as Ao, AuthorizationResource as Ap, CompleteOAuth2Options as Ar, VaultDataCreatedEventResponse as As, SerializedAuditLogExportOptions as At, Factor as Au, ObjectSummaryResponse as B, DsyncUserDeletedEvent as Ba, SerializedCreateOrganizationDomainOptions as Bc, WithResolvedClientId as Bd, GetGroupRoleAssignmentOptions as Bf, GetOptions as Bi, ListOrganizationMembershipsOptions as Bl, UpdateCustomProviderDefinitionAuthenticateVia as Bn, OrganizationMembershipCreated as Bo, UpdatePermissionOptions as Bp, AgentCredentialValidation as Br, VaultDekReadEventResponse as Bs, RadarStandaloneResponse as Bt, SmsResponse as Bu, BadRequestException as C, ConnectionDeletedEventResponse as Ca, ValidateApiKeyOptions as Cc, AuthenticateWithRadarEmailChallengeOptions as Cd, GroupRoleAssignmentEntryWithResourceId as Cf, Organization as Ci, PasswordResetEventResponse as Cl, HttpClient as Cm, DataIntegrationCredential as Cn, InvitationRevokedEventResponse as Co, SerializedAuthorizationCheckOptions as Cp, CreateM2MApplication as Cr, UserDeletedEvent as Cs, AuditLogSchema as Ct, AuthenticationRadarRiskDetectedEventData as Cu, isAuthenticationErrorData as D, DsyncDeletedEventResponse as Da, SerializedCreatedApiKey as Dc, SerializedAuthenticateWithMagicAuthOptions as Dd, BaseRemoveGroupRoleAssignmentsOptions as Df, CreateOrganizationOptions as Di, MagicAuth as Dl, RequestOptions as Dm, DeleteUserConnectedAccountOptions as Dn, OrganizationCreatedResponse as Do, GetAuthorizationResourceByExternalIdOptions as Dp, RedirectUriInput as Dr, VaultByokKeyVerificationCompletedEvent as Ds, AuditLogExport as Dt, AuthenticationFactorType as Du, AuthenticationException as E, DsyncDeletedEvent as Ea, CreatedApiKey as Ec, AuthenticateWithMagicAuthOptions as Ed, SerializedReplaceGroupRoleAssignmentsOptions as Ef, ListOrganizationFeatureFlagsOptions as Ei, CreateMagicAuthResponseResponse as El, RequestHeaders as Em, ListUserDataProvidersOptions as En, OrganizationCreatedEvent as Eo, UpdateAuthorizationResourceByExternalIdOptions as Ep, CreateOAuthApplicationResponse as Er, UserUpdatedEventResponse as Es, AuditLogTargetSchema as Et, AuthenticationFactorResponse as Eu, UpdateWebhookEndpointEvents as F, DsyncGroupUserAddedEventResponse as Fa, OrganizationDomain as Fc, SerializedAuthenticateWithCodeOptions as Fd, CreateGroupRoleAssignmentOptions as Ff, PutOptions as Fi, ListUserApiKeysOptions as Fl, UpdateDataIntegrationApiKeyOptions as Fn, OrganizationDomainUpdatedEventResponse as Fo, SerializedCreateAuthorizationResourceOptions as Fp, UserObject as Fr, VaultDataUpdatedEvent as Fs, Challenge as Ft, Totp as Fu, ObjectMetadata as G, EmailVerificationCreatedEventResponse as Ga, SerializedUserApiKey as Gc, OauthTokens as Gd, BaseRemoveRoleOptions as Gf, ApiKeyRevokedEventResponse as Gi, BaseOrganizationMembershipResponse as Gl, CustomProviderDefinitionAuthenticateVia as Gn, OrganizationMembershipUpdatedResponse as Go, RemoveOrganizationRolePermissionOptions as Gp, ValidAgentCredential as Gr, VaultNamesListedEvent as Gs, RadarListAction as Gt, AuthenticateUserWithTotpCredentials as Gu, ObjectVersionResponse as H, DsyncUserUpdatedEvent as Ha, VerifyEmailOptions as Hc, ProfileAndTokenResponse as Hd, GroupRoleAssignment as Hf, ApiKeyCreatedEvent as Hi, AuthorizationOrganizationMembership as Hl, CreateDataIntegrationOptions as Hn, OrganizationMembershipDeleted as Ho, SerializedCreatePermissionOptions as Hp, SerializedAgentAccessTokenClaims as Hr, VaultKekCreatedEventResponse as Hs, RadarStandaloneResponseBlocklistType as Ht, AuthenticationEventResponse as Hu, UpdateWebhookEndpointStatus as I, DsyncGroupUserRemovedEvent as Ia, OrganizationDomainResponse as Ic, AuthenticateWithOptionsBase as Id, CreateGroupRoleAssignmentOptionsForOrganization as If, PostOptions as Ii, SerializedListUserApiKeysOptions as Il, DeleteDataIntegrationOptions as In, OrganizationDomainVerificationFailedEvent as Io, SerializedUpdateAuthorizationResourceOptions as Ip, UserObjectResponse as Ir, VaultDataUpdatedEventResponse as Is, ChallengeResponse as It, TotpResponse as Iu, ActorResponse as J, EventName as Ja, UpdateUserPasswordOptions as Jc, SerializedListConnectionsOptions as Jd, RemoveRoleOptionsWithResourceId as Jf, AuthenticationMagicAuthFailedEvent as Ji, OrganizationMembershipStatus as Jl, DataIntegrationCredentialsType as Jn, OrganizationRoleDeletedEvent as Jo, SerializedUpdateOrganizationRoleOptions as Jp, ValidateAgentCredentialOptions as Jr, DataKeyPair as Js, RadarStandaloneAssessRequestAuthMethod as Jt, AuthenticateWithSessionCookieFailedResponse as Ju, ObjectMetadataResponse as K, Event as Ka, UserApiKey as Kc, OauthTokensResponse as Kd, RemoveRoleOptions as Kf, AuthenticationEmailVerificationSucceededEvent as Ki, OrganizationMembership as Kl, DataIntegrationCredentialsDto as Kn, OrganizationRoleCreatedEvent as Ko, AddOrganizationRolePermissionOptions as Kp, ValidateAgentAccessTokenOptions as Kr, VaultNamesListedEventResponse as Ks, RadarListType as Kt, AuthenticateWithTotpOptions as Ku, CreateWebhookEndpointEvents as L, DsyncGroupUserRemovedEventResponse as La, OrganizationDomainState as Lc, AuthenticateWithSessionOptions as Ld, CreateGroupRoleAssignmentOptionsWithResourceExternalId as Lf, PatchOptions as Li, ListUserFeatureFlagsOptions as Ll, UpdateDataIntegrationOptions as Ln, OrganizationDomainVerificationFailedEventResponse as Lo, UpdateAuthorizationResourceOptions as Lp, AutoPaginatable as Lr, VaultDekDecryptedEvent as Ls, ChallengeFactorOptions as Lt, TotpWithSecrets as Lu, WebhookEndpoint as M, DsyncGroupUpdatedEvent as Ma, SerializedApiKey as Mc, SerializedAuthenticateWithCodeAndVerifierOptions as Md, SerializedRemoveGroupRoleAssignmentsOptions as Mf, WorkOSResponseError as Mi, Locale as Ml, GetAccessTokenOptions as Mn, OrganizationDomainDeletedEvent as Mo, CreateAuthorizationResourceOptions as Mp, UserConsentOptionResponse as Mr, VaultDataDeletedEventResponse as Ms, VerifyResponseResponse as Mt, FactorType as Mu, WebhookEndpointResponse as N, DsyncGroupUpdatedEventResponse as Na, OrganizationDomainVerificationFailed as Nc, AuthenticateUserWithCodeCredentials as Nd, RemoveGroupRoleAssignmentOptions as Nf, WorkOSOptions as Ni, ListUsersOptions as Nl, CreateDataIntegrationCredentialOptions as Nn, OrganizationDomainDeletedEventResponse as No, CreateOptionsWithParentExternalId as Np, UserConsentOptionChoice as Nr, VaultDataReadEvent as Ns, VerifyChallengeOptions as Nt, FactorWithSecrets as Nu, GenericServerException as O, DsyncGroupCreatedEvent as Oa, CreateOrganizationApiKeyOptions as Oc, AuthenticateUserWithEmailVerificationCredentials as Od, RemoveGroupRoleAssignmentsOptions as Of, CreateOrganizationRequestOptions as Oi, MagicAuthEvent as Ol, ResponseHeaderValue as Om, UpdateUserConnectedAccountOptions as On, OrganizationDeletedEvent as Oo, ListAuthorizationResourcesOptions as Op, RedirectUriInputResponse as Or, VaultByokKeyVerificationCompletedEventResponse as Os, AuditLogExportResponse as Ot, AuthenticationFactorWithSecrets as Ou, WebhookEndpointStatus as P, DsyncGroupUserAddedEvent as Pa, OrganizationDomainVerificationFailedResponse as Pc, AuthenticateWithCodeOptions as Pd, BaseCreateGroupRoleAssignmentOptions as Pf, UnprocessableEntityError as Pi, SerializedListUsersOptions as Pl, AuthorizeDataIntegrationOptions as Pn, OrganizationDomainUpdatedEvent as Po, CreateOptionsWithParentResourceId as Pp, UserConsentOptionChoiceResponse as Pr, VaultDataReadEventResponse as Ps, EnrollFactorOptions as Pt, FactorWithSecretsResponse as Pu, UpdateObjectOptions as Q, FlagDeletedEvent as Qa, UpdateOrganizationMembershipOptions as Qc, ConnectionDomain as Qd, AssignRoleOptionsWithResourceId as Qf, AuthenticationMfaSucceededEvent as Qi, ListAuthFactorsOptions as Ql, PasswordlessSession as Qn, OrganizationUpdatedEvent as Qo, OrganizationRole as Qp, SerializedClaimAttemptResponse as Qr, RemoveGroupOrganizationMembershipOptions as Qs, DataIntegrationsListResponseDataResponse as Qt, SessionCookieData as Qu, WorkOS as R, DsyncUserCreatedEvent as Ra, OrganizationDomainVerificationStrategy as Rc, SerializedAuthenticatePublicClientBase as Rd, CreateGroupRoleAssignmentOptionsWithResourceId as Rf, List as Ri, ListSessionsOptions as Rl, UpdateCustomProviderDefinition as Rn, OrganizationDomainVerifiedEvent as Ro, ListPermissionsOptions as Rp, AgentAccessTokenClaims as Rr, VaultDekDecryptedEventResponse as Rs, RadarListEntryAlreadyPresentResponse as Rt, TotpWithSecretsResponse as Ru, ConflictException as S, ConnectionDeletedEvent as Sa, SerializedValidateApiKeyResponse as Sc, AuthenticateUserWithRadarEmailChallengeCredentials as Sd, GroupRoleAssignmentEntryWithResourceExternalId as Sf, UpdateOrganizationOptions as Si, PasswordResetEvent as Sl, EventDirectoryResponse as Sm, DataIntegrationCustomProviderAuthenticateVia as Sn, InvitationRevokedEvent as So, AuthorizationCheckResult as Sp, CreateApplicationOptions as Sr, UserCreatedEventResponse as Ss, AuditLogActorSchema as St, UserManagementAuthorizationURLOptions as Su, AuthenticationErrorData as T, DsyncActivatedEventResponse as Ta, ListOrganizationApiKeysOptions as Tc, AuthenticateUserWithMagicAuthCredentials as Td, SerializedGroupRoleAssignmentEntry as Tf, ListOrganizationsOptions as Ti, CreateMagicAuthResponse as Tl, HttpClientResponseInterface as Tm, DataIntegrationCredentialType as Tn, MagicAuthCreatedEventResponse as To, DeleteAuthorizationResourceByExternalIdOptions as Tp, CreateOAuthApplication as Tr, UserUpdatedEvent as Ts, AuditLogSchemaResponse as Tt, AuthenticationFactor as Tu, VaultObject as U, DsyncUserUpdatedEventResponse as Ua, SerializedUserApiKeyWithValue as Uc, Profile as Ud, GroupRoleAssignmentResponse as Uf, ApiKeyCreatedEventResponse as Ui, AuthorizationOrganizationMembershipResponse as Ul, CustomProviderDefinition as Un, OrganizationMembershipDeletedResponse as Uo, Permission as Up, SerializedAgentCredentialValidation as Ur, VaultMetadataReadEvent as Us, RadarStandaloneResponseControl as Ut, AuthenticationEventSso as Uu, ObjectVersion as V, DsyncUserDeletedEventResponse as Va, SerializedVerifyEmailOptions as Vc, ProfileAndToken as Vd, ListGroupRoleAssignmentsOptions as Vf, GenerateLinkIntent as Vi, SerializedListOrganizationMembershipsOptions as Vl, GetDataIntegrationOptions as Vn, OrganizationMembershipCreatedResponse as Vo, CreatePermissionOptions as Vp, InvalidAgentCredential as Vr, VaultKekCreatedEvent as Vs, RadarStandaloneResponseWire as Vt, AuthenticationEvent as Vu, VaultObjectResponse as W, EmailVerificationCreatedEvent as Wa, UserApiKeyWithValue as Wc, ProfileResponse as Wd, RemoveRoleAssignmentOptions as Wf, ApiKeyRevokedEvent as Wi, BaseOrganizationMembership as Wl, CustomProviderDefinitionResponse as Wn, OrganizationMembershipUpdated as Wo, PermissionResponse as Wp, SerializedValidateAgentCredentialOptions as Wr, VaultMetadataReadEventResponse as Ws, RadarStandaloneResponseVerdict as Wt, AuthenticationEventSsoResponse as Wu, CreateDataKeyResponseWire as X, FlagCreatedEvent as Xa, UpdateUserOptions as Xc, GetProfileOptions as Xd, AssignRoleOptions as Xf, AuthenticationMagicAuthSucceededEvent as Xi, SerializedListInvitationsOptions as Xl, CreatePasswordlessSessionOptions as Xn, OrganizationRoleUpdatedEvent as Xo, CreateOrganizationRoleOptions as Xp, ClaimAttemptResponse as Xr, SerializedUpdateGroupOptions as Xs, DataIntegrationsListResponseWire as Xt, AuthenticateWithSessionCookieOptions as Xu, CreateDataKeyResponse as Y, EventResponse as Ya, SerializedUpdateUserOptions as Yc, GetProfileAndTokenOptions as Yd, SerializedRemoveRoleOptions as Yf, AuthenticationMagicAuthFailedEventResponse as Yi, ListInvitationsOptions as Yl, SendSessionResponse as Yn, OrganizationRoleDeletedEventResponse as Yo, UpdateOrganizationRoleOptions as Yp, ClaimAttemptOrganization as Yr, KeyContext as Ys, DataIntegrationsListResponse as Yt, AuthenticateWithSessionCookieFailureReason as Yu, UpdateObjectEntity as Z, FlagCreatedEventResponse as Za, SerializedUpdateOrganizationMembershipOptions as Zc, Connection as Zd, AssignRoleOptionsWithResourceExternalId as Zf, AuthenticationMagicAuthSucceededEventResponse as Zi, ListGroupsForOrganizationMembershipOptions as Zl, SerializedCreatePasswordlessSessionOptions as Zn, OrganizationRoleUpdatedEventResponse as Zo, SerializedCreateOrganizationRoleOptions as Zp, LinkClaimAttemptToExternalUserOptions as Zr, UpdateGroupOptions as Zs, DataIntegrationsListResponseData as Zt, AuthenticateWithSessionCookieSuccessResponse as Zu, SignatureVerificationException as _, AuthenticationSSOSucceededEventResponse as _a, FlagTarget as _c, AuthenticateWithOrganizationSelectionOptions as _d, ListEffectivePermissionsByExternalIdOptions as _f, ActionPayload as _i, RefreshSessionFailureReason as _l, DirectoryResponse as _m, DataIntegration as _n, InvitationAcceptedEventResponse as _o, ListResourcesForMembershipOptionsWithParentId as _p, CreateApplicationClientSecretOptions as _r, SessionCreatedEventResponse as _s, AuditLogActor as _t, CreateOrganizationMembershipOptions as _u, PublicWorkOS as a, AuthenticationPasskeyFailedEventResponse as aa, CreateGroupOptions as ac, UserResponse as ad, DirectoryUserResponse as af, AgentRegistrationStatus as ai, SendRadarSmsChallengeResponse as al, EnvironmentRole as am, DataIntegrationAccessTokenResponse as an, GroupCreatedEventResponse as ao, SerializedListRoleAssignmentsOptions as ap, ApplicationCredentialsListItemResponse as ar, PermissionCreatedEventResponse as as, DecryptDataKeyResponse as at, SerializedEnrollUserInMfaFactorOptions as au, NotFoundException as b, ConnectionDeactivatedEvent as ba, EvaluationContext as bc, AuthenticateWithRadarSmsChallengeOptions as bd, GroupRoleAssignmentEntry as bf, UserRegistrationActionPayload as bi, TerminalRefreshSessionFailureReason as bl, DirectoryType as bm, DataIntegrationCustomProvider as bn, InvitationResentEvent as bo, AuthorizationCheckOptionsWithResourceExternalId as bp, UpdateApplicationOptions as br, UnknownEvent as bs, CreateAuditLogEventRequestOptions as bt, SerializedCreateMagicAuthOptions as bu, PortalLinkResponseWire as c, AuthenticationPasswordFailedEvent as ca, SerializedAddGroupOrganizationMembershipOptions as cc, AuthenticateWithRefreshTokenPublicClientOptions as cd, ListOrganizationRolesResponse as cf, SerializedAgentRegistrationClaim as ci, SendInvitationOptions as cl, EnvironmentRoleResponse as cm, DataIntegrationAccessTokenResponseAccessTokenResponse as cn, GroupMemberAddedEvent as co, RoleAssignmentResourceResponse as cp, ConnectApplicationM2MResponse as cr, PermissionUpdatedEvent as cs, WidgetSessionTokenResponseWire as ct, EmailVerificationEventResponse as cu, IntentOptions as d, AuthenticationPasswordSucceededEventResponse as da, RuntimeClientOptions as dc, AuthenticateWithRefreshTokenOptions as dd, OrganizationRoleResponse as df, PKCEPair as di, SerializedRevokeSessionOptions as dl, ListDirectoriesOptions as dm, DataIntegrationCredentialsResponseCredentialResponse as dn, GroupMemberEventResponseData as do, RoleAssignmentSource as dp, ConnectApplicationResponse as dr, RoleCreatedEventResponse as ds, FeatureFlagsRuntimeClient as dt, SerializedCreateUserOptions as du, AuthenticationOAuthFailedEvent as ea, ListGroupOrganizationMembershipsOptions as ec, AuthenticationResponse as ed, ConnectionType as ef, AgentIdentity as ei, Session as el, SetEnvironmentRolePermissionsOptions as em, DataIntegrationsListResponseDataAuthMethods as en, FlagRuleUpdatedEvent as eo, SerializedAssignRoleOptions as ep, ListEventOptions as er, PasswordResetCreatedEvent as es, ReadObjectOptions as et, InvitationEvent as eu, IntentOptionsResponse as f, AuthenticationRadarRiskDetectedEvent as fa, RemoveFlagTargetOptions as fc, SerializedAuthenticateWithRefreshTokenOptions as fd, Role as ff, Actions as fi, serializeRevokeSessionOptions as fl, SerializedListDirectoriesOptions as fm, DataIntegrationAuthorizeUrlResponse as fn, GroupMemberRemovedEvent as fo, RoleAssignmentSourceResponse as fp, ConnectApplicationRedirectUri as fr, RoleDeletedEvent as fs, CookieSession as ft, CreateUserApiKeyOptions as fu, UnauthorizedException as g, AuthenticationSSOSucceededEvent as ga, FlagPollResponse as gc, AuthenticateUserWithOrganizationSelectionCredentials as gd, RoleResponse as gf, ActionContext as gi, SerializedResendInvitationOptions as gl, Directory as gm, ConnectedAccountAuthMethod as gn, InvitationAcceptedEvent as go, ListResourcesForMembershipOptionsWithParentExternalId as gp, DeleteClientSecretOptions as gr, SessionCreatedEvent as gs, SerializedCreateAuditLogSchemaOptions as gt, SerializedCreatePasswordResetOptions as gu, UnprocessableEntityException as h, AuthenticationSSOFailedEventResponse as ha, FlagPollEntry as hc, SerializedAuthenticateWithPasswordOptions as hd, RoleList as hf, UserRegistrationActionResponseData as hi, ResendInvitationOptions as hl, DirectoryGroupResponse as hm, ConnectedAccountResponse as hn, GroupUpdatedEventResponse as ho, ListResourcesForMembershipOptions as hp, ExternalAuthCompleteResponseWire as hr, RoleUpdatedEventResponse as hs, CreateAuditLogSchemaResponse as ht, CreatePasswordResetOptions as hu, PublicUserManagement as i, AuthenticationPasskeyFailedEvent as ia, DeleteGroupOptions as ic, User as id, DirectoryUser as if, AgentRegistrationKind as ii, SendRadarSmsChallengeOptions as il, SerializedCreateEnvironmentRoleOptions as im, DataIntegrationsListResponseDataConnectedAccountAuthMethod as in, GroupCreatedEvent as io, ListRoleAssignmentsOptions as ip, ApplicationCredentialsListItem as ir, PermissionCreatedEvent as is, DecryptDataKeyOptions as it, EnrollAuthFactorOptions as iu, Webhooks as j, DsyncGroupDeletedEventResponse as ja, ApiKey as jc, AuthenticateWithCodeAndVerifierOptions as jd, RemoveGroupRoleAssignmentsOptionsWithResourceId as jf, DomainDataState as ji, LogoutURLOptions as jl, GetUserConnectedAccountOptions as jn, OrganizationDomainCreatedEventResponse as jo, AuthorizationResourceResponse as jp, UserConsentOption as jr, VaultDataDeletedEvent as js, VerifyResponse as jt, FactorResponse as ju, WorkOSErrorData as k, DsyncGroupCreatedEventResponse as ka, CreateOrganizationApiKeyRequestOptions as kc, AuthenticateWithEmailVerificationOptions as kd, RemoveGroupRoleAssignmentsOptionsForOrganization as kf, SerializedCreateOrganizationOptions as ki, MagicAuthEventResponse as kl, ResponseHeaders as km, CreateUserConnectedAccountOptions as kn, OrganizationDeletedResponse as ko, SerializedListAuthorizationResourcesOptions as kp, ListApplicationsOptions as kr, VaultDataCreatedEvent as ks, AuditLogExportOptions as kt, AuthenticationFactorWithSecretsResponse as ku, GenerateLink as l, AuthenticationPasswordFailedEventResponse as la, RuntimeClientStats as lc, SerializedAuthenticateWithRefreshTokenPublicClientOptions as ld, OrganizationRoleEvent as lf, SerializedAgentRegistrationClaimCompletion as li, SerializedSendInvitationOptions as ll, ListDirectoryUsersOptions as lm, DataIntegrationCredentialsResponseError as ln, GroupMemberAddedEventResponse as lo, RoleAssignmentResponse as lp, ConnectApplicationOAuth as lr, PermissionUpdatedEventResponse as ls, CreateTokenOptions as lt, EmailVerificationResponse as lu, SSOIntentOptionsResponse as m, AuthenticationSSOFailedEvent as ma, FlagChange as mc, AuthenticateWithPasswordOptions as md, RoleEventResponse as mf, ResponsePayload as mi, SerializedResetPasswordOptions as ml, DirectoryGroup as mm, ConnectedAccount as mn, GroupUpdatedEvent as mo, ListMembershipsForResourceOptions as mp, ExternalAuthCompleteResponse as mr, RoleUpdatedEvent as ms, CreateAuditLogSchemaRequestOptions as mt, SerializedCreateUserApiKeyOptions as mu, PublicClientOptions as n, AuthenticationOAuthSucceededEvent as na, GroupResponse as nc, CreateUserResponse as nd, SSOPKCEAuthorizationURLResult as nf, AgentRegistrationClaim as ni, SessionStatus as nl, UpdateEnvironmentRoleOptions as nm, DataIntegrationsListResponseDataConnectedAccountResponse as nn, FlagUpdatedEvent as no, ListRoleAssignmentsForResourceOptions as np, NewConnectApplicationSecret as nr, PasswordResetSucceededEvent as ns, CreateObjectEntity as nt, InvitationResponse as nu, createWorkOS as o, AuthenticationPasskeySucceededEvent as oa, SerializedCreateGroupOptions as oc, Impersonator as od, DirectoryUserWithGroups as of, SerializedAgentIdentity as oi, SendRadarSmsChallengeResponseResponse as ol, EnvironmentRoleList as om, DataIntegrationAccessTokenResponseWire as on, GroupDeletedEvent as oo, RoleAssignment as op, ConnectApplication as or, PermissionDeletedEvent as os, CreateDataKeyOptions as ot, EmailVerification as ou, SSOIntentOptions as p, AuthenticationRadarRiskDetectedEventResponse as pa, ListFeatureFlagsOptions as pc, AuthenticateUserWithPasswordCredentials as pd, RoleEvent as pf, AuthenticationActionResponseData as pi, ResetPasswordOptions as pl, PaginationOptions as pm, DataIntegrationAuthorizeUrlResponseWire as pn, GroupMemberRemovedEventResponse as po, ListMembershipsForResourceByExternalIdOptions as pp, ConnectApplicationRedirectUriResponse as pr, RoleDeletedEventResponse as ps, CreateAuditLogSchemaOptions as pt, CreateUserApiKeyRequestOptions as pu, Actor as q, EventBase as qa, SerializedUpdateUserPasswordOptions as qc, ListConnectionsOptions as qd, RemoveRoleOptionsWithResourceExternalId as qf, AuthenticationEmailVerificationSucceededEventResponse as qi, OrganizationMembershipResponse as ql, DataIntegrationCredentialsDtoResponse as qn, OrganizationRoleCreatedEventResponse as qo, SetOrganizationRolePermissionsOptions as qp, ValidateAgentApiKeyOptions as qr, DataKey as qs, RadarStandaloneAssessRequestAction as qt, SerializedAuthenticateWithTotpOptions as qu, PublicSSO as r, AuthenticationOAuthSucceededEventResponse as ra, GetGroupOptions as rc, CreateUserResponseResponse as rd, DefaultCustomAttributes as rf, AgentRegistrationClaimCompletion as ri, SendVerificationEmailOptions as rl, CreateEnvironmentRoleOptions as rm, DataIntegrationsListResponseDataConnectedAccountState as rn, FlagUpdatedEventResponse as ro, SerializedListRoleAssignmentsForResourceOptions as rp, NewConnectApplicationSecretResponse as rr, PasswordResetSucceededEventResponse as rs, CreateObjectOptions as rt, Identity as ru, PortalLinkResponse as s, AuthenticationPasskeySucceededEventResponse as sa, AddGroupOrganizationMembershipOptions as sc, ImpersonatorResponse as sd, DirectoryUserWithGroupsResponse as sf, SerializedAgentRegistration as si, SerializedSendRadarSmsChallengeOptions as sl, EnvironmentRoleListResponse as sm, DataIntegrationAccessTokenResponseAccessToken as sn, GroupDeletedEventResponse as so, RoleAssignmentResource as sp, ConnectApplicationM2M as sr, PermissionDeletedEventResponse as ss, WidgetSessionTokenResponse as st, EmailVerificationEvent as su, ConfidentialClientOptions as t, AuthenticationOAuthFailedEventResponse as ta, Group as tc, AuthenticationResponseResponse as td, SSOAuthorizationURLOptions as tf, AgentRegistration as ti, SessionResponse as tl, SerializedUpdateEnvironmentRoleOptions as tm, DataIntegrationsListResponseDataConnectedAccount as tn, FlagRuleUpdatedEventResponse as to, ListRoleAssignmentsForResourceByExternalIdOptions as tp, SerializedListEventOptions as tr, PasswordResetCreatedEventResponse as ts, ReadObjectResponse as tt, InvitationEventResponse as tu, GenerateLinkResponse as u, AuthenticationPasswordSucceededEvent as ua, RuntimeClientLogger as uc, AuthenticateUserWithRefreshTokenCredentials as ud, OrganizationRoleEventResponse as uf, PKCE as ui, RevokeSessionOptions as ul, ListDirectoryGroupsOptions as um, DataIntegrationCredentialsResponseCredential as un, GroupMemberEventData as uo, RoleAssignmentRole as up, ConnectApplicationOAuthResponse as ur, RoleCreatedEvent as us, WidgetSessionTokenScopes as ut, CreateUserOptions as uu, RateLimitExceededException as v, ConnectionActivatedEvent as va, FeatureFlag as vc, SerializedAuthenticateWithOrganizationSelectionOptions as vd, ListEffectivePermissionsOptions as vf, UserData as vi, RefreshSessionResponse as vl, DirectoryState as vm, DataIntegrationResponse as vn, InvitationCreatedEvent as vo, SerializedListResourcesForMembershipOptions as vp, ListApplicationClientSecretsOptions as vr, SessionRevokedEvent as vs, AuditLogTarget as vt, SerializedCreateOrganizationMembershipOptions as vu, AuthenticationErrorCode as w, DsyncActivatedEvent as wa, ValidateApiKeyResponse as wc, SerializedAuthenticateWithRadarEmailChallengeOptions as wd, ReplaceGroupRoleAssignmentsOptions as wf, OrganizationResponse as wi, PasswordResetResponse as wl, HttpClientInterface as wm, DataIntegrationCredentialResponse as wn, MagicAuthCreatedEvent as wo, DeleteAuthorizationResourceOptions as wp, CreateM2MApplicationResponse as wr, UserDeletedEventResponse as ws, AuditLogSchemaMetadata as wt, AuthenticationRadarRiskDetectedEventResponseData as wu, NoApiKeyProvidedException as x, ConnectionDeactivatedEventResponse as xa, AddFlagTargetOptions as xc, SerializedAuthenticateWithRadarSmsChallengeOptions as xd, GroupRoleAssignmentEntryForOrganization as xf, SerializedUpdateOrganizationOptions as xi, PasswordReset as xl, EventDirectory as xm, DataIntegrationCustomProviderResponse as xn, InvitationResentEventResponse as xo, AuthorizationCheckOptionsWithResourceId as xp, GetApplicationOptions as xr, UserCreatedEvent as xs, SerializedCreateAuditLogEventOptions as xt, PKCEAuthorizationURLResult as xu, OauthException as y, ConnectionActivatedEventResponse as ya, FeatureFlagResponse as yc, AuthenticateUserWithRadarSmsChallengeCredentials as yd, BaseGroupRoleAssignmentEntry as yf, UserDataPayload as yi, RetryableRefreshSessionFailureReason as yl, DirectoryStateResponse as ym, DataIntegrationState as yn, InvitationCreatedEventResponse as yo, AuthorizationCheckOptions as yp, DeleteApplicationOptions as yr, SessionRevokedEventResponse as ys, CreateAuditLogEventOptions as yt, CreateMagicAuthOptions as yu, ObjectSummary as z, DsyncUserCreatedEventResponse as za, CreateOrganizationDomainOptions as zc, SerializedAuthenticateWithOptionsBase as zd, SerializedCreateGroupRoleAssignmentOptions as zf, ListResponse as zi, SerializedListSessionsOptions as zl, UpdateCustomProviderDefinitionResponse as zn, OrganizationDomainVerifiedEventResponse as zo, SerializedUpdatePermissionOptions as zp, AgentCredentialType as zr, VaultDekReadEvent as zs, RadarListEntryAlreadyPresentResponseWire as zt, Sms as zu };
9913
+ //# sourceMappingURL=factory-DmBBe791.d.cts.map