@workos-inc/node 10.9.0 → 10.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
- const require_factory = require("./factory-Bd19upQB.cjs");
2
+ const require_factory = require("./factory-JdOhqH28.cjs");
3
3
  //#region src/groups/interfaces/user-organization-membership-base-list-data-status.interface.ts
4
4
  const UserOrganizationMembershipBaseListDataStatus = {
5
5
  Active: "active",
@@ -360,9 +360,11 @@ var WorkOSNode = class extends require_factory.WorkOS {
360
360
  createHttpClient(options, userAgent) {
361
361
  const headers = {};
362
362
  const configHeaders = options.config?.headers;
363
- if (configHeaders) if (configHeaders instanceof Headers) configHeaders.forEach((v, k) => headers[k] = v);
364
- else if (Array.isArray(configHeaders)) configHeaders.forEach(([k, v]) => headers[k] = v);
365
- else Object.assign(headers, configHeaders);
363
+ if (configHeaders) {
364
+ if (configHeaders instanceof Headers) configHeaders.forEach((v, k) => headers[k] = v);
365
+ else if (Array.isArray(configHeaders)) configHeaders.forEach(([k, v]) => headers[k] = v);
366
+ else Object.assign(headers, configHeaders);
367
+ }
366
368
  headers["User-Agent"] = userAgent;
367
369
  if (this.key) headers["Authorization"] = `Bearer ${this.key}`;
368
370
  const opts = {
package/lib/index.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":["WorkOS","FetchHttpClient","Webhooks","SubtleCryptoProvider","Actions"],"sources":["../src/groups/interfaces/user-organization-membership-base-list-data-status.interface.ts","../src/pipes/interfaces/connected-account-auth-method.interface.ts","../src/pipes/interfaces/connected-account-state.interface.ts","../src/pipes/interfaces/custom-provider-definition-authenticate-via.interface.ts","../src/pipes/interfaces/data-integration-access-token-response-error.interface.ts","../src/pipes/interfaces/data-integration-credential-type.interface.ts","../src/pipes/interfaces/data-integration-credentials-response-error.interface.ts","../src/pipes/interfaces/data-integration-credentials-type.interface.ts","../src/pipes/interfaces/data-integration-custom-provider-authenticate-via.interface.ts","../src/pipes/interfaces/data-integration-state.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-auth-methods.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-connected-account-auth-method.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-connected-account-state.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-ownership.interface.ts","../src/pipes/interfaces/update-custom-provider-definition-authenticate-via.interface.ts","../src/radar/interfaces/radar-list-action.interface.ts","../src/radar/interfaces/radar-list-type.interface.ts","../src/radar/interfaces/radar-standalone-assess-request-action.interface.ts","../src/radar/interfaces/radar-standalone-assess-request-auth-method.interface.ts","../src/radar/interfaces/radar-standalone-response-blocklist-type.interface.ts","../src/radar/interfaces/radar-standalone-response-control.interface.ts","../src/radar/interfaces/radar-standalone-response-verdict.interface.ts","../src/vault/interfaces/vault-order.interface.ts","../src/webhooks/interfaces/create-webhook-endpoint-events.interface.ts","../src/webhooks/interfaces/update-webhook-endpoint-events.interface.ts","../src/webhooks/interfaces/update-webhook-endpoint-status.interface.ts","../src/webhooks/interfaces/webhook-endpoint-status.interface.ts","../src/widgets/interfaces/widget-session-token-scopes.interface.ts","../src/index.ts"],"sourcesContent":["// This file is auto-generated by oagen. Do not edit.\n\nexport const UserOrganizationMembershipBaseListDataStatus = {\n Active: 'active',\n Inactive: 'inactive',\n Pending: 'pending',\n} as const;\n\nexport type UserOrganizationMembershipBaseListDataStatus =\n (typeof UserOrganizationMembershipBaseListDataStatus)[keyof typeof UserOrganizationMembershipBaseListDataStatus];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const ConnectedAccountAuthMethod = {\n OAuth: 'oauth',\n ApiKey: 'api_key',\n} as const;\n\nexport type ConnectedAccountAuthMethod =\n (typeof ConnectedAccountAuthMethod)[keyof typeof ConnectedAccountAuthMethod];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const ConnectedAccountState = {\n Connected: 'connected',\n NeedsReauthorization: 'needs_reauthorization',\n} as const;\n\nexport type ConnectedAccountState =\n (typeof ConnectedAccountState)[keyof typeof ConnectedAccountState];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const CustomProviderDefinitionAuthenticateVia = {\n RequestBody: 'request_body',\n BasicAuthHeader: 'basic_auth_header',\n} as const;\n\nexport type CustomProviderDefinitionAuthenticateVia =\n (typeof CustomProviderDefinitionAuthenticateVia)[keyof typeof CustomProviderDefinitionAuthenticateVia];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationAccessTokenResponseError = {\n NotInstalled: 'not_installed',\n NeedsReauthorization: 'needs_reauthorization',\n} as const;\n\nexport type DataIntegrationAccessTokenResponseError =\n (typeof DataIntegrationAccessTokenResponseError)[keyof typeof DataIntegrationAccessTokenResponseError];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCredentialType = {\n Custom: 'custom',\n Organization: 'organization',\n} as const;\n\nexport type DataIntegrationCredentialType =\n (typeof DataIntegrationCredentialType)[keyof typeof DataIntegrationCredentialType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCredentialsResponseError = {\n NotInstalled: 'not_installed',\n NeedsReauthorization: 'needs_reauthorization',\n} as const;\n\nexport type DataIntegrationCredentialsResponseError =\n (typeof DataIntegrationCredentialsResponseError)[keyof typeof DataIntegrationCredentialsResponseError];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCredentialsType = {\n Custom: 'custom',\n Organization: 'organization',\n} as const;\n\nexport type DataIntegrationCredentialsType =\n (typeof DataIntegrationCredentialsType)[keyof typeof DataIntegrationCredentialsType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCustomProviderAuthenticateVia = {\n RequestBody: 'request_body',\n BasicAuthHeader: 'basic_auth_header',\n} as const;\n\nexport type DataIntegrationCustomProviderAuthenticateVia =\n (typeof DataIntegrationCustomProviderAuthenticateVia)[keyof typeof DataIntegrationCustomProviderAuthenticateVia];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationState = {\n Valid: 'valid',\n Invalid: 'invalid',\n Requested: 'requested',\n} as const;\n\nexport type DataIntegrationState =\n (typeof DataIntegrationState)[keyof typeof DataIntegrationState];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataAuthMethods = {\n OAuth: 'oauth',\n ApiKey: 'api_key',\n} as const;\n\nexport type DataIntegrationsListResponseDataAuthMethods =\n (typeof DataIntegrationsListResponseDataAuthMethods)[keyof typeof DataIntegrationsListResponseDataAuthMethods];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataConnectedAccountAuthMethod = {\n OAuth: 'oauth',\n ApiKey: 'api_key',\n} as const;\n\nexport type DataIntegrationsListResponseDataConnectedAccountAuthMethod =\n (typeof DataIntegrationsListResponseDataConnectedAccountAuthMethod)[keyof typeof DataIntegrationsListResponseDataConnectedAccountAuthMethod];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataConnectedAccountState = {\n Connected: 'connected',\n NeedsReauthorization: 'needs_reauthorization',\n Disconnected: 'disconnected',\n} as const;\n\nexport type DataIntegrationsListResponseDataConnectedAccountState =\n (typeof DataIntegrationsListResponseDataConnectedAccountState)[keyof typeof DataIntegrationsListResponseDataConnectedAccountState];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataOwnership = {\n UserlandUser: 'userland_user',\n Organization: 'organization',\n} as const;\n\nexport type DataIntegrationsListResponseDataOwnership =\n (typeof DataIntegrationsListResponseDataOwnership)[keyof typeof DataIntegrationsListResponseDataOwnership];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const UpdateCustomProviderDefinitionAuthenticateVia = {\n RequestBody: 'request_body',\n BasicAuthHeader: 'basic_auth_header',\n} as const;\n\nexport type UpdateCustomProviderDefinitionAuthenticateVia =\n (typeof UpdateCustomProviderDefinitionAuthenticateVia)[keyof typeof UpdateCustomProviderDefinitionAuthenticateVia];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarListAction = {\n Block: 'block',\n Allow: 'allow',\n} as const;\n\nexport type RadarListAction =\n (typeof RadarListAction)[keyof typeof RadarListAction];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarListType = {\n IpAddress: 'ip_address',\n Domain: 'domain',\n Email: 'email',\n Device: 'device',\n UserAgent: 'user_agent',\n DeviceFingerprint: 'device_fingerprint',\n Country: 'country',\n} as const;\n\nexport type RadarListType = (typeof RadarListType)[keyof typeof RadarListType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneAssessRequestAction = {\n SignUp: 'sign-up',\n SignIn: 'sign-in',\n} as const;\n\nexport type RadarStandaloneAssessRequestAction =\n (typeof RadarStandaloneAssessRequestAction)[keyof typeof RadarStandaloneAssessRequestAction];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneAssessRequestAuthMethod = {\n Password: 'Password',\n Passkey: 'Passkey',\n Authenticator: 'Authenticator',\n SmsOtp: 'SMS_OTP',\n EmailOtp: 'Email_OTP',\n Social: 'Social',\n SSO: 'SSO',\n Other: 'Other',\n} as const;\n\nexport type RadarStandaloneAssessRequestAuthMethod =\n (typeof RadarStandaloneAssessRequestAuthMethod)[keyof typeof RadarStandaloneAssessRequestAuthMethod];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneResponseBlocklistType = {\n IpAddress: 'ip_address',\n Domain: 'domain',\n Email: 'email',\n Device: 'device',\n UserAgent: 'user_agent',\n DeviceFingerprint: 'device_fingerprint',\n Country: 'country',\n} as const;\n\nexport type RadarStandaloneResponseBlocklistType =\n (typeof RadarStandaloneResponseBlocklistType)[keyof typeof RadarStandaloneResponseBlocklistType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneResponseControl = {\n BotDetection: 'bot_detection',\n BruteForceAttack: 'brute_force_attack',\n DomainSignUpRateLimit: 'domain_sign_up_rate_limit',\n ImpossibleTravel: 'impossible_travel',\n RepeatSignUp: 'repeat_sign_up',\n StaleAccount: 'stale_account',\n UnrecognizedDevice: 'unrecognized_device',\n Restriction: 'restriction',\n} as const;\n\nexport type RadarStandaloneResponseControl =\n (typeof RadarStandaloneResponseControl)[keyof typeof RadarStandaloneResponseControl];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneResponseVerdict = {\n Allow: 'allow',\n Block: 'block',\n Challenge: 'challenge',\n} as const;\n\nexport type RadarStandaloneResponseVerdict =\n (typeof RadarStandaloneResponseVerdict)[keyof typeof RadarStandaloneResponseVerdict];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const VaultOrder = {\n Asc: 'asc',\n Desc: 'desc',\n} as const;\n\nexport type VaultOrder = (typeof VaultOrder)[keyof typeof VaultOrder];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const CreateWebhookEndpointEvents = {\n AuthenticationEmailVerificationSucceeded:\n 'authentication.email_verification_succeeded',\n AuthenticationMagicAuthFailed: 'authentication.magic_auth_failed',\n AuthenticationMagicAuthSucceeded: 'authentication.magic_auth_succeeded',\n AuthenticationMfaSucceeded: 'authentication.mfa_succeeded',\n AuthenticationOAuthFailed: 'authentication.oauth_failed',\n AuthenticationOAuthSucceeded: 'authentication.oauth_succeeded',\n AuthenticationPasswordFailed: 'authentication.password_failed',\n AuthenticationPasswordSucceeded: 'authentication.password_succeeded',\n AuthenticationPasskeyFailed: 'authentication.passkey_failed',\n AuthenticationPasskeySucceeded: 'authentication.passkey_succeeded',\n AuthenticationSSOFailed: 'authentication.sso_failed',\n AuthenticationSSOStarted: 'authentication.sso_started',\n AuthenticationSSOSucceeded: 'authentication.sso_succeeded',\n AuthenticationSSOTimedOut: 'authentication.sso_timed_out',\n AuthenticationRadarRiskDetected: 'authentication.radar_risk_detected',\n ApiKeyCreated: 'api_key.created',\n ApiKeyRevoked: 'api_key.revoked',\n ConnectionActivated: 'connection.activated',\n ConnectionDeactivated: 'connection.deactivated',\n ConnectionSAMLCertificateRenewalRequired:\n 'connection.saml_certificate_renewal_required',\n ConnectionSAMLCertificateRenewed: 'connection.saml_certificate_renewed',\n ConnectionDeleted: 'connection.deleted',\n DsyncActivated: 'dsync.activated',\n DsyncDeleted: 'dsync.deleted',\n DsyncGroupCreated: 'dsync.group.created',\n DsyncGroupDeleted: 'dsync.group.deleted',\n DsyncGroupUpdated: 'dsync.group.updated',\n DsyncGroupUserAdded: 'dsync.group.user_added',\n DsyncGroupUserRemoved: 'dsync.group.user_removed',\n DsyncUserCreated: 'dsync.user.created',\n DsyncUserDeleted: 'dsync.user.deleted',\n DsyncUserUpdated: 'dsync.user.updated',\n EmailVerificationCreated: 'email_verification.created',\n GroupCreated: 'group.created',\n GroupDeleted: 'group.deleted',\n GroupMemberAdded: 'group.member_added',\n GroupMemberRemoved: 'group.member_removed',\n GroupUpdated: 'group.updated',\n FlagCreated: 'flag.created',\n FlagDeleted: 'flag.deleted',\n FlagUpdated: 'flag.updated',\n FlagRuleUpdated: 'flag.rule_updated',\n InvitationAccepted: 'invitation.accepted',\n InvitationCreated: 'invitation.created',\n InvitationResent: 'invitation.resent',\n InvitationRevoked: 'invitation.revoked',\n MagicAuthCreated: 'magic_auth.created',\n OrganizationCreated: 'organization.created',\n OrganizationDeleted: 'organization.deleted',\n OrganizationUpdated: 'organization.updated',\n OrganizationDomainCreated: 'organization_domain.created',\n OrganizationDomainDeleted: 'organization_domain.deleted',\n OrganizationDomainUpdated: 'organization_domain.updated',\n OrganizationDomainVerified: 'organization_domain.verified',\n OrganizationDomainVerificationFailed:\n 'organization_domain.verification_failed',\n PasswordResetCreated: 'password_reset.created',\n PasswordResetSucceeded: 'password_reset.succeeded',\n UserCreated: 'user.created',\n UserUpdated: 'user.updated',\n UserDeleted: 'user.deleted',\n OrganizationMembershipCreated: 'organization_membership.created',\n OrganizationMembershipDeleted: 'organization_membership.deleted',\n OrganizationMembershipUpdated: 'organization_membership.updated',\n RoleCreated: 'role.created',\n RoleDeleted: 'role.deleted',\n RoleUpdated: 'role.updated',\n OrganizationRoleCreated: 'organization_role.created',\n OrganizationRoleDeleted: 'organization_role.deleted',\n OrganizationRoleUpdated: 'organization_role.updated',\n PermissionCreated: 'permission.created',\n PermissionDeleted: 'permission.deleted',\n PermissionUpdated: 'permission.updated',\n PipesConnectedAccountConnected: 'pipes.connected_account.connected',\n PipesConnectedAccountDisconnected: 'pipes.connected_account.disconnected',\n PipesConnectedAccountReauthorizationNeeded:\n 'pipes.connected_account.reauthorization_needed',\n SessionCreated: 'session.created',\n SessionRevoked: 'session.revoked',\n WaitlistUserApproved: 'waitlist_user.approved',\n WaitlistUserCreated: 'waitlist_user.created',\n WaitlistUserDenied: 'waitlist_user.denied',\n} as const;\n\nexport type CreateWebhookEndpointEvents =\n (typeof CreateWebhookEndpointEvents)[keyof typeof CreateWebhookEndpointEvents];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const UpdateWebhookEndpointEvents = {\n AuthenticationEmailVerificationSucceeded:\n 'authentication.email_verification_succeeded',\n AuthenticationMagicAuthFailed: 'authentication.magic_auth_failed',\n AuthenticationMagicAuthSucceeded: 'authentication.magic_auth_succeeded',\n AuthenticationMfaSucceeded: 'authentication.mfa_succeeded',\n AuthenticationOAuthFailed: 'authentication.oauth_failed',\n AuthenticationOAuthSucceeded: 'authentication.oauth_succeeded',\n AuthenticationPasswordFailed: 'authentication.password_failed',\n AuthenticationPasswordSucceeded: 'authentication.password_succeeded',\n AuthenticationPasskeyFailed: 'authentication.passkey_failed',\n AuthenticationPasskeySucceeded: 'authentication.passkey_succeeded',\n AuthenticationSSOFailed: 'authentication.sso_failed',\n AuthenticationSSOStarted: 'authentication.sso_started',\n AuthenticationSSOSucceeded: 'authentication.sso_succeeded',\n AuthenticationSSOTimedOut: 'authentication.sso_timed_out',\n AuthenticationRadarRiskDetected: 'authentication.radar_risk_detected',\n ApiKeyCreated: 'api_key.created',\n ApiKeyRevoked: 'api_key.revoked',\n ConnectionActivated: 'connection.activated',\n ConnectionDeactivated: 'connection.deactivated',\n ConnectionSAMLCertificateRenewalRequired:\n 'connection.saml_certificate_renewal_required',\n ConnectionSAMLCertificateRenewed: 'connection.saml_certificate_renewed',\n ConnectionDeleted: 'connection.deleted',\n DsyncActivated: 'dsync.activated',\n DsyncDeleted: 'dsync.deleted',\n DsyncGroupCreated: 'dsync.group.created',\n DsyncGroupDeleted: 'dsync.group.deleted',\n DsyncGroupUpdated: 'dsync.group.updated',\n DsyncGroupUserAdded: 'dsync.group.user_added',\n DsyncGroupUserRemoved: 'dsync.group.user_removed',\n DsyncUserCreated: 'dsync.user.created',\n DsyncUserDeleted: 'dsync.user.deleted',\n DsyncUserUpdated: 'dsync.user.updated',\n EmailVerificationCreated: 'email_verification.created',\n GroupCreated: 'group.created',\n GroupDeleted: 'group.deleted',\n GroupMemberAdded: 'group.member_added',\n GroupMemberRemoved: 'group.member_removed',\n GroupUpdated: 'group.updated',\n FlagCreated: 'flag.created',\n FlagDeleted: 'flag.deleted',\n FlagUpdated: 'flag.updated',\n FlagRuleUpdated: 'flag.rule_updated',\n InvitationAccepted: 'invitation.accepted',\n InvitationCreated: 'invitation.created',\n InvitationResent: 'invitation.resent',\n InvitationRevoked: 'invitation.revoked',\n MagicAuthCreated: 'magic_auth.created',\n OrganizationCreated: 'organization.created',\n OrganizationDeleted: 'organization.deleted',\n OrganizationUpdated: 'organization.updated',\n OrganizationDomainCreated: 'organization_domain.created',\n OrganizationDomainDeleted: 'organization_domain.deleted',\n OrganizationDomainUpdated: 'organization_domain.updated',\n OrganizationDomainVerified: 'organization_domain.verified',\n OrganizationDomainVerificationFailed:\n 'organization_domain.verification_failed',\n PasswordResetCreated: 'password_reset.created',\n PasswordResetSucceeded: 'password_reset.succeeded',\n UserCreated: 'user.created',\n UserUpdated: 'user.updated',\n UserDeleted: 'user.deleted',\n OrganizationMembershipCreated: 'organization_membership.created',\n OrganizationMembershipDeleted: 'organization_membership.deleted',\n OrganizationMembershipUpdated: 'organization_membership.updated',\n RoleCreated: 'role.created',\n RoleDeleted: 'role.deleted',\n RoleUpdated: 'role.updated',\n OrganizationRoleCreated: 'organization_role.created',\n OrganizationRoleDeleted: 'organization_role.deleted',\n OrganizationRoleUpdated: 'organization_role.updated',\n PermissionCreated: 'permission.created',\n PermissionDeleted: 'permission.deleted',\n PermissionUpdated: 'permission.updated',\n PipesConnectedAccountConnected: 'pipes.connected_account.connected',\n PipesConnectedAccountDisconnected: 'pipes.connected_account.disconnected',\n PipesConnectedAccountReauthorizationNeeded:\n 'pipes.connected_account.reauthorization_needed',\n SessionCreated: 'session.created',\n SessionRevoked: 'session.revoked',\n WaitlistUserApproved: 'waitlist_user.approved',\n WaitlistUserCreated: 'waitlist_user.created',\n WaitlistUserDenied: 'waitlist_user.denied',\n} as const;\n\nexport type UpdateWebhookEndpointEvents =\n (typeof UpdateWebhookEndpointEvents)[keyof typeof UpdateWebhookEndpointEvents];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const UpdateWebhookEndpointStatus = {\n Enabled: 'enabled',\n Disabled: 'disabled',\n} as const;\n\nexport type UpdateWebhookEndpointStatus =\n (typeof UpdateWebhookEndpointStatus)[keyof typeof UpdateWebhookEndpointStatus];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const WebhookEndpointStatus = {\n Enabled: 'enabled',\n Disabled: 'disabled',\n} as const;\n\nexport type WebhookEndpointStatus =\n (typeof WebhookEndpointStatus)[keyof typeof WebhookEndpointStatus];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const WidgetSessionTokenScopes = {\n WidgetsUsersTableManage: 'widgets:users-table:manage',\n WidgetsDomainVerificationManage: 'widgets:domain-verification:manage',\n WidgetsSSOManage: 'widgets:sso:manage',\n WidgetsApiKeysManage: 'widgets:api-keys:manage',\n WidgetsDsyncManage: 'widgets:dsync:manage',\n WidgetsAuditLogStreamingManage: 'widgets:audit-log-streaming:manage',\n} as const;\n\nexport type WidgetSessionTokenScopes =\n (typeof WidgetSessionTokenScopes)[keyof typeof WidgetSessionTokenScopes];\n","// @oagen-ignore-file\nimport { SubtleCryptoProvider } from './common/crypto/subtle-crypto-provider';\nimport { CryptoProvider } from './common/crypto/crypto-provider';\n\nimport { HttpClient } from './common/net/http-client';\nimport { FetchHttpClient } from './common/net/fetch-client';\n\nimport { Actions } from './actions/actions';\nimport { Webhooks } from './webhooks/webhooks';\nimport { WorkOS } from './workos';\nimport { WorkOSOptions } from './common/interfaces';\n\nexport * from './actions/interfaces';\nexport * from './agents/interfaces';\nexport * from './api-keys/interfaces';\nexport * from './audit-logs/interfaces';\nexport * from './authorization/interfaces';\nexport * from './connect/interfaces';\nexport * from './common/exceptions';\nexport * from './common/interfaces';\nexport * from './common/utils/pagination';\nexport * from './directory-sync/interfaces';\nexport * from './events/interfaces';\nexport * from './feature-flags/interfaces';\nexport { FeatureFlagsRuntimeClient } from './feature-flags/runtime-client';\nexport * from './groups/interfaces';\nexport * from './multi-factor-auth/interfaces';\nexport * from './organizations/interfaces';\nexport * from './organization-domains/interfaces';\nexport * from './passwordless/interfaces';\nexport * from './pipes/interfaces';\nexport * from './admin-portal/interfaces';\nexport * from './radar/interfaces';\nexport * from './roles/interfaces';\nexport * from './sso/interfaces';\nexport * from './user-management/interfaces';\nexport { CookieSession } from './user-management/session';\nexport * from './vault/interfaces';\nexport * from './webhooks/interfaces';\nexport * from './widgets/interfaces';\nexport * from './pkce/pkce';\nexport {\n createWorkOS,\n type PublicWorkOS,\n type PublicUserManagement,\n type PublicSSO,\n type PublicClientOptions,\n type ConfidentialClientOptions,\n} from './factory';\n\nclass WorkOSNode extends WorkOS {\n /** @override */\n createHttpClient(options: WorkOSOptions, userAgent: string): HttpClient {\n const headers: Record<string, string> = {};\n\n const configHeaders = options.config?.headers;\n if (configHeaders) {\n if (configHeaders instanceof Headers) {\n configHeaders.forEach((v, k) => (headers[k] = v));\n } else if (Array.isArray(configHeaders)) {\n configHeaders.forEach(([k, v]) => (headers[k] = v));\n } else {\n Object.assign(headers, configHeaders);\n }\n }\n\n headers['User-Agent'] = userAgent;\n\n if (this.key) {\n headers['Authorization'] = `Bearer ${this.key}`;\n }\n\n const opts = {\n ...options.config,\n timeout: options.timeout,\n maxRetries: options.maxRetries,\n headers,\n };\n\n return new FetchHttpClient(this.baseURL, opts, options.fetchFn);\n }\n\n /** @override */\n createWebhookClient(): Webhooks {\n return new Webhooks(this);\n }\n\n override getCryptoProvider(): CryptoProvider {\n return new SubtleCryptoProvider();\n }\n\n /** @override */\n createActionsClient(): Actions {\n return new Actions(this.getCryptoProvider());\n }\n\n /** @override */\n emitWarning(warning: string): void {\n return process.emitWarning(warning, 'WorkOS');\n }\n}\n\nexport { WorkOSNode as WorkOS };\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","names":["WorkOS","FetchHttpClient","Webhooks","SubtleCryptoProvider","Actions"],"sources":["../src/groups/interfaces/user-organization-membership-base-list-data-status.interface.ts","../src/pipes/interfaces/connected-account-auth-method.interface.ts","../src/pipes/interfaces/connected-account-state.interface.ts","../src/pipes/interfaces/custom-provider-definition-authenticate-via.interface.ts","../src/pipes/interfaces/data-integration-access-token-response-error.interface.ts","../src/pipes/interfaces/data-integration-credential-type.interface.ts","../src/pipes/interfaces/data-integration-credentials-response-error.interface.ts","../src/pipes/interfaces/data-integration-credentials-type.interface.ts","../src/pipes/interfaces/data-integration-custom-provider-authenticate-via.interface.ts","../src/pipes/interfaces/data-integration-state.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-auth-methods.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-connected-account-auth-method.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-connected-account-state.interface.ts","../src/pipes/interfaces/data-integrations-list-response-data-ownership.interface.ts","../src/pipes/interfaces/update-custom-provider-definition-authenticate-via.interface.ts","../src/radar/interfaces/radar-list-action.interface.ts","../src/radar/interfaces/radar-list-type.interface.ts","../src/radar/interfaces/radar-standalone-assess-request-action.interface.ts","../src/radar/interfaces/radar-standalone-assess-request-auth-method.interface.ts","../src/radar/interfaces/radar-standalone-response-blocklist-type.interface.ts","../src/radar/interfaces/radar-standalone-response-control.interface.ts","../src/radar/interfaces/radar-standalone-response-verdict.interface.ts","../src/vault/interfaces/vault-order.interface.ts","../src/webhooks/interfaces/create-webhook-endpoint-events.interface.ts","../src/webhooks/interfaces/update-webhook-endpoint-events.interface.ts","../src/webhooks/interfaces/update-webhook-endpoint-status.interface.ts","../src/webhooks/interfaces/webhook-endpoint-status.interface.ts","../src/widgets/interfaces/widget-session-token-scopes.interface.ts","../src/index.ts"],"sourcesContent":["// This file is auto-generated by oagen. Do not edit.\n\nexport const UserOrganizationMembershipBaseListDataStatus = {\n Active: 'active',\n Inactive: 'inactive',\n Pending: 'pending',\n} as const;\n\nexport type UserOrganizationMembershipBaseListDataStatus =\n (typeof UserOrganizationMembershipBaseListDataStatus)[keyof typeof UserOrganizationMembershipBaseListDataStatus];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const ConnectedAccountAuthMethod = {\n OAuth: 'oauth',\n ApiKey: 'api_key',\n} as const;\n\nexport type ConnectedAccountAuthMethod =\n (typeof ConnectedAccountAuthMethod)[keyof typeof ConnectedAccountAuthMethod];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const ConnectedAccountState = {\n Connected: 'connected',\n NeedsReauthorization: 'needs_reauthorization',\n} as const;\n\nexport type ConnectedAccountState =\n (typeof ConnectedAccountState)[keyof typeof ConnectedAccountState];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const CustomProviderDefinitionAuthenticateVia = {\n RequestBody: 'request_body',\n BasicAuthHeader: 'basic_auth_header',\n} as const;\n\nexport type CustomProviderDefinitionAuthenticateVia =\n (typeof CustomProviderDefinitionAuthenticateVia)[keyof typeof CustomProviderDefinitionAuthenticateVia];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationAccessTokenResponseError = {\n NotInstalled: 'not_installed',\n NeedsReauthorization: 'needs_reauthorization',\n} as const;\n\nexport type DataIntegrationAccessTokenResponseError =\n (typeof DataIntegrationAccessTokenResponseError)[keyof typeof DataIntegrationAccessTokenResponseError];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCredentialType = {\n Custom: 'custom',\n Organization: 'organization',\n} as const;\n\nexport type DataIntegrationCredentialType =\n (typeof DataIntegrationCredentialType)[keyof typeof DataIntegrationCredentialType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCredentialsResponseError = {\n NotInstalled: 'not_installed',\n NeedsReauthorization: 'needs_reauthorization',\n} as const;\n\nexport type DataIntegrationCredentialsResponseError =\n (typeof DataIntegrationCredentialsResponseError)[keyof typeof DataIntegrationCredentialsResponseError];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCredentialsType = {\n Custom: 'custom',\n Organization: 'organization',\n} as const;\n\nexport type DataIntegrationCredentialsType =\n (typeof DataIntegrationCredentialsType)[keyof typeof DataIntegrationCredentialsType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationCustomProviderAuthenticateVia = {\n RequestBody: 'request_body',\n BasicAuthHeader: 'basic_auth_header',\n} as const;\n\nexport type DataIntegrationCustomProviderAuthenticateVia =\n (typeof DataIntegrationCustomProviderAuthenticateVia)[keyof typeof DataIntegrationCustomProviderAuthenticateVia];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationState = {\n Valid: 'valid',\n Invalid: 'invalid',\n Requested: 'requested',\n} as const;\n\nexport type DataIntegrationState =\n (typeof DataIntegrationState)[keyof typeof DataIntegrationState];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataAuthMethods = {\n OAuth: 'oauth',\n ApiKey: 'api_key',\n} as const;\n\nexport type DataIntegrationsListResponseDataAuthMethods =\n (typeof DataIntegrationsListResponseDataAuthMethods)[keyof typeof DataIntegrationsListResponseDataAuthMethods];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataConnectedAccountAuthMethod = {\n OAuth: 'oauth',\n ApiKey: 'api_key',\n} as const;\n\nexport type DataIntegrationsListResponseDataConnectedAccountAuthMethod =\n (typeof DataIntegrationsListResponseDataConnectedAccountAuthMethod)[keyof typeof DataIntegrationsListResponseDataConnectedAccountAuthMethod];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataConnectedAccountState = {\n Connected: 'connected',\n NeedsReauthorization: 'needs_reauthorization',\n Disconnected: 'disconnected',\n} as const;\n\nexport type DataIntegrationsListResponseDataConnectedAccountState =\n (typeof DataIntegrationsListResponseDataConnectedAccountState)[keyof typeof DataIntegrationsListResponseDataConnectedAccountState];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const DataIntegrationsListResponseDataOwnership = {\n UserlandUser: 'userland_user',\n Organization: 'organization',\n} as const;\n\nexport type DataIntegrationsListResponseDataOwnership =\n (typeof DataIntegrationsListResponseDataOwnership)[keyof typeof DataIntegrationsListResponseDataOwnership];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const UpdateCustomProviderDefinitionAuthenticateVia = {\n RequestBody: 'request_body',\n BasicAuthHeader: 'basic_auth_header',\n} as const;\n\nexport type UpdateCustomProviderDefinitionAuthenticateVia =\n (typeof UpdateCustomProviderDefinitionAuthenticateVia)[keyof typeof UpdateCustomProviderDefinitionAuthenticateVia];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarListAction = {\n Block: 'block',\n Allow: 'allow',\n} as const;\n\nexport type RadarListAction =\n (typeof RadarListAction)[keyof typeof RadarListAction];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarListType = {\n IpAddress: 'ip_address',\n Domain: 'domain',\n Email: 'email',\n Device: 'device',\n UserAgent: 'user_agent',\n DeviceFingerprint: 'device_fingerprint',\n Country: 'country',\n} as const;\n\nexport type RadarListType = (typeof RadarListType)[keyof typeof RadarListType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneAssessRequestAction = {\n SignUp: 'sign-up',\n SignIn: 'sign-in',\n} as const;\n\nexport type RadarStandaloneAssessRequestAction =\n (typeof RadarStandaloneAssessRequestAction)[keyof typeof RadarStandaloneAssessRequestAction];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneAssessRequestAuthMethod = {\n Password: 'Password',\n Passkey: 'Passkey',\n Authenticator: 'Authenticator',\n SmsOtp: 'SMS_OTP',\n EmailOtp: 'Email_OTP',\n Social: 'Social',\n SSO: 'SSO',\n Other: 'Other',\n} as const;\n\nexport type RadarStandaloneAssessRequestAuthMethod =\n (typeof RadarStandaloneAssessRequestAuthMethod)[keyof typeof RadarStandaloneAssessRequestAuthMethod];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneResponseBlocklistType = {\n IpAddress: 'ip_address',\n Domain: 'domain',\n Email: 'email',\n Device: 'device',\n UserAgent: 'user_agent',\n DeviceFingerprint: 'device_fingerprint',\n Country: 'country',\n} as const;\n\nexport type RadarStandaloneResponseBlocklistType =\n (typeof RadarStandaloneResponseBlocklistType)[keyof typeof RadarStandaloneResponseBlocklistType];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneResponseControl = {\n BotDetection: 'bot_detection',\n BruteForceAttack: 'brute_force_attack',\n DomainSignUpRateLimit: 'domain_sign_up_rate_limit',\n ImpossibleTravel: 'impossible_travel',\n RepeatSignUp: 'repeat_sign_up',\n StaleAccount: 'stale_account',\n UnrecognizedDevice: 'unrecognized_device',\n Restriction: 'restriction',\n} as const;\n\nexport type RadarStandaloneResponseControl =\n (typeof RadarStandaloneResponseControl)[keyof typeof RadarStandaloneResponseControl];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const RadarStandaloneResponseVerdict = {\n Allow: 'allow',\n Block: 'block',\n Challenge: 'challenge',\n} as const;\n\nexport type RadarStandaloneResponseVerdict =\n (typeof RadarStandaloneResponseVerdict)[keyof typeof RadarStandaloneResponseVerdict];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const VaultOrder = {\n Asc: 'asc',\n Desc: 'desc',\n} as const;\n\nexport type VaultOrder = (typeof VaultOrder)[keyof typeof VaultOrder];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const CreateWebhookEndpointEvents = {\n AuthenticationEmailVerificationSucceeded:\n 'authentication.email_verification_succeeded',\n AuthenticationMagicAuthFailed: 'authentication.magic_auth_failed',\n AuthenticationMagicAuthSucceeded: 'authentication.magic_auth_succeeded',\n AuthenticationMfaSucceeded: 'authentication.mfa_succeeded',\n AuthenticationOAuthFailed: 'authentication.oauth_failed',\n AuthenticationOAuthSucceeded: 'authentication.oauth_succeeded',\n AuthenticationPasswordFailed: 'authentication.password_failed',\n AuthenticationPasswordSucceeded: 'authentication.password_succeeded',\n AuthenticationPasskeyFailed: 'authentication.passkey_failed',\n AuthenticationPasskeySucceeded: 'authentication.passkey_succeeded',\n AuthenticationSSOFailed: 'authentication.sso_failed',\n AuthenticationSSOStarted: 'authentication.sso_started',\n AuthenticationSSOSucceeded: 'authentication.sso_succeeded',\n AuthenticationSSOTimedOut: 'authentication.sso_timed_out',\n AuthenticationRadarRiskDetected: 'authentication.radar_risk_detected',\n ApiKeyCreated: 'api_key.created',\n ApiKeyRevoked: 'api_key.revoked',\n ConnectionActivated: 'connection.activated',\n ConnectionDeactivated: 'connection.deactivated',\n ConnectionSAMLCertificateRenewalRequired:\n 'connection.saml_certificate_renewal_required',\n ConnectionSAMLCertificateRenewed: 'connection.saml_certificate_renewed',\n ConnectionDeleted: 'connection.deleted',\n DsyncActivated: 'dsync.activated',\n DsyncDeleted: 'dsync.deleted',\n DsyncGroupCreated: 'dsync.group.created',\n DsyncGroupDeleted: 'dsync.group.deleted',\n DsyncGroupUpdated: 'dsync.group.updated',\n DsyncGroupUserAdded: 'dsync.group.user_added',\n DsyncGroupUserRemoved: 'dsync.group.user_removed',\n DsyncUserCreated: 'dsync.user.created',\n DsyncUserDeleted: 'dsync.user.deleted',\n DsyncUserUpdated: 'dsync.user.updated',\n EmailVerificationCreated: 'email_verification.created',\n GroupCreated: 'group.created',\n GroupDeleted: 'group.deleted',\n GroupMemberAdded: 'group.member_added',\n GroupMemberRemoved: 'group.member_removed',\n GroupUpdated: 'group.updated',\n FlagCreated: 'flag.created',\n FlagDeleted: 'flag.deleted',\n FlagUpdated: 'flag.updated',\n FlagRuleUpdated: 'flag.rule_updated',\n InvitationAccepted: 'invitation.accepted',\n InvitationCreated: 'invitation.created',\n InvitationResent: 'invitation.resent',\n InvitationRevoked: 'invitation.revoked',\n MagicAuthCreated: 'magic_auth.created',\n OrganizationCreated: 'organization.created',\n OrganizationDeleted: 'organization.deleted',\n OrganizationUpdated: 'organization.updated',\n OrganizationDomainCreated: 'organization_domain.created',\n OrganizationDomainDeleted: 'organization_domain.deleted',\n OrganizationDomainUpdated: 'organization_domain.updated',\n OrganizationDomainVerified: 'organization_domain.verified',\n OrganizationDomainVerificationFailed:\n 'organization_domain.verification_failed',\n PasswordResetCreated: 'password_reset.created',\n PasswordResetSucceeded: 'password_reset.succeeded',\n UserCreated: 'user.created',\n UserUpdated: 'user.updated',\n UserDeleted: 'user.deleted',\n OrganizationMembershipCreated: 'organization_membership.created',\n OrganizationMembershipDeleted: 'organization_membership.deleted',\n OrganizationMembershipUpdated: 'organization_membership.updated',\n RoleCreated: 'role.created',\n RoleDeleted: 'role.deleted',\n RoleUpdated: 'role.updated',\n OrganizationRoleCreated: 'organization_role.created',\n OrganizationRoleDeleted: 'organization_role.deleted',\n OrganizationRoleUpdated: 'organization_role.updated',\n PermissionCreated: 'permission.created',\n PermissionDeleted: 'permission.deleted',\n PermissionUpdated: 'permission.updated',\n PipesConnectedAccountConnected: 'pipes.connected_account.connected',\n PipesConnectedAccountDisconnected: 'pipes.connected_account.disconnected',\n PipesConnectedAccountReauthorizationNeeded:\n 'pipes.connected_account.reauthorization_needed',\n SessionCreated: 'session.created',\n SessionRevoked: 'session.revoked',\n WaitlistUserApproved: 'waitlist_user.approved',\n WaitlistUserCreated: 'waitlist_user.created',\n WaitlistUserDenied: 'waitlist_user.denied',\n} as const;\n\nexport type CreateWebhookEndpointEvents =\n (typeof CreateWebhookEndpointEvents)[keyof typeof CreateWebhookEndpointEvents];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const UpdateWebhookEndpointEvents = {\n AuthenticationEmailVerificationSucceeded:\n 'authentication.email_verification_succeeded',\n AuthenticationMagicAuthFailed: 'authentication.magic_auth_failed',\n AuthenticationMagicAuthSucceeded: 'authentication.magic_auth_succeeded',\n AuthenticationMfaSucceeded: 'authentication.mfa_succeeded',\n AuthenticationOAuthFailed: 'authentication.oauth_failed',\n AuthenticationOAuthSucceeded: 'authentication.oauth_succeeded',\n AuthenticationPasswordFailed: 'authentication.password_failed',\n AuthenticationPasswordSucceeded: 'authentication.password_succeeded',\n AuthenticationPasskeyFailed: 'authentication.passkey_failed',\n AuthenticationPasskeySucceeded: 'authentication.passkey_succeeded',\n AuthenticationSSOFailed: 'authentication.sso_failed',\n AuthenticationSSOStarted: 'authentication.sso_started',\n AuthenticationSSOSucceeded: 'authentication.sso_succeeded',\n AuthenticationSSOTimedOut: 'authentication.sso_timed_out',\n AuthenticationRadarRiskDetected: 'authentication.radar_risk_detected',\n ApiKeyCreated: 'api_key.created',\n ApiKeyRevoked: 'api_key.revoked',\n ConnectionActivated: 'connection.activated',\n ConnectionDeactivated: 'connection.deactivated',\n ConnectionSAMLCertificateRenewalRequired:\n 'connection.saml_certificate_renewal_required',\n ConnectionSAMLCertificateRenewed: 'connection.saml_certificate_renewed',\n ConnectionDeleted: 'connection.deleted',\n DsyncActivated: 'dsync.activated',\n DsyncDeleted: 'dsync.deleted',\n DsyncGroupCreated: 'dsync.group.created',\n DsyncGroupDeleted: 'dsync.group.deleted',\n DsyncGroupUpdated: 'dsync.group.updated',\n DsyncGroupUserAdded: 'dsync.group.user_added',\n DsyncGroupUserRemoved: 'dsync.group.user_removed',\n DsyncUserCreated: 'dsync.user.created',\n DsyncUserDeleted: 'dsync.user.deleted',\n DsyncUserUpdated: 'dsync.user.updated',\n EmailVerificationCreated: 'email_verification.created',\n GroupCreated: 'group.created',\n GroupDeleted: 'group.deleted',\n GroupMemberAdded: 'group.member_added',\n GroupMemberRemoved: 'group.member_removed',\n GroupUpdated: 'group.updated',\n FlagCreated: 'flag.created',\n FlagDeleted: 'flag.deleted',\n FlagUpdated: 'flag.updated',\n FlagRuleUpdated: 'flag.rule_updated',\n InvitationAccepted: 'invitation.accepted',\n InvitationCreated: 'invitation.created',\n InvitationResent: 'invitation.resent',\n InvitationRevoked: 'invitation.revoked',\n MagicAuthCreated: 'magic_auth.created',\n OrganizationCreated: 'organization.created',\n OrganizationDeleted: 'organization.deleted',\n OrganizationUpdated: 'organization.updated',\n OrganizationDomainCreated: 'organization_domain.created',\n OrganizationDomainDeleted: 'organization_domain.deleted',\n OrganizationDomainUpdated: 'organization_domain.updated',\n OrganizationDomainVerified: 'organization_domain.verified',\n OrganizationDomainVerificationFailed:\n 'organization_domain.verification_failed',\n PasswordResetCreated: 'password_reset.created',\n PasswordResetSucceeded: 'password_reset.succeeded',\n UserCreated: 'user.created',\n UserUpdated: 'user.updated',\n UserDeleted: 'user.deleted',\n OrganizationMembershipCreated: 'organization_membership.created',\n OrganizationMembershipDeleted: 'organization_membership.deleted',\n OrganizationMembershipUpdated: 'organization_membership.updated',\n RoleCreated: 'role.created',\n RoleDeleted: 'role.deleted',\n RoleUpdated: 'role.updated',\n OrganizationRoleCreated: 'organization_role.created',\n OrganizationRoleDeleted: 'organization_role.deleted',\n OrganizationRoleUpdated: 'organization_role.updated',\n PermissionCreated: 'permission.created',\n PermissionDeleted: 'permission.deleted',\n PermissionUpdated: 'permission.updated',\n PipesConnectedAccountConnected: 'pipes.connected_account.connected',\n PipesConnectedAccountDisconnected: 'pipes.connected_account.disconnected',\n PipesConnectedAccountReauthorizationNeeded:\n 'pipes.connected_account.reauthorization_needed',\n SessionCreated: 'session.created',\n SessionRevoked: 'session.revoked',\n WaitlistUserApproved: 'waitlist_user.approved',\n WaitlistUserCreated: 'waitlist_user.created',\n WaitlistUserDenied: 'waitlist_user.denied',\n} as const;\n\nexport type UpdateWebhookEndpointEvents =\n (typeof UpdateWebhookEndpointEvents)[keyof typeof UpdateWebhookEndpointEvents];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const UpdateWebhookEndpointStatus = {\n Enabled: 'enabled',\n Disabled: 'disabled',\n} as const;\n\nexport type UpdateWebhookEndpointStatus =\n (typeof UpdateWebhookEndpointStatus)[keyof typeof UpdateWebhookEndpointStatus];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const WebhookEndpointStatus = {\n Enabled: 'enabled',\n Disabled: 'disabled',\n} as const;\n\nexport type WebhookEndpointStatus =\n (typeof WebhookEndpointStatus)[keyof typeof WebhookEndpointStatus];\n","// This file is auto-generated by oagen. Do not edit.\n\nexport const WidgetSessionTokenScopes = {\n WidgetsUsersTableManage: 'widgets:users-table:manage',\n WidgetsDomainVerificationManage: 'widgets:domain-verification:manage',\n WidgetsSSOManage: 'widgets:sso:manage',\n WidgetsApiKeysManage: 'widgets:api-keys:manage',\n WidgetsDsyncManage: 'widgets:dsync:manage',\n WidgetsAuditLogStreamingManage: 'widgets:audit-log-streaming:manage',\n} as const;\n\nexport type WidgetSessionTokenScopes =\n (typeof WidgetSessionTokenScopes)[keyof typeof WidgetSessionTokenScopes];\n","// @oagen-ignore-file\nimport { SubtleCryptoProvider } from './common/crypto/subtle-crypto-provider';\nimport { CryptoProvider } from './common/crypto/crypto-provider';\n\nimport { HttpClient } from './common/net/http-client';\nimport { FetchHttpClient } from './common/net/fetch-client';\n\nimport { Actions } from './actions/actions';\nimport { Webhooks } from './webhooks/webhooks';\nimport { WorkOS } from './workos';\nimport { WorkOSOptions } from './common/interfaces';\n\nexport * from './actions/interfaces';\nexport * from './agents/interfaces';\nexport * from './api-keys/interfaces';\nexport * from './audit-logs/interfaces';\nexport * from './authorization/interfaces';\nexport * from './connect/interfaces';\nexport * from './common/exceptions';\nexport * from './common/interfaces';\nexport * from './common/utils/pagination';\nexport * from './directory-sync/interfaces';\nexport * from './events/interfaces';\nexport * from './feature-flags/interfaces';\nexport { FeatureFlagsRuntimeClient } from './feature-flags/runtime-client';\nexport * from './groups/interfaces';\nexport * from './multi-factor-auth/interfaces';\nexport * from './organizations/interfaces';\nexport * from './organization-domains/interfaces';\nexport * from './passwordless/interfaces';\nexport * from './pipes/interfaces';\nexport * from './admin-portal/interfaces';\nexport * from './radar/interfaces';\nexport * from './roles/interfaces';\nexport * from './sso/interfaces';\nexport * from './user-management/interfaces';\nexport { CookieSession } from './user-management/session';\nexport * from './vault/interfaces';\nexport * from './webhooks/interfaces';\nexport * from './widgets/interfaces';\nexport * from './pkce/pkce';\nexport {\n createWorkOS,\n type PublicWorkOS,\n type PublicUserManagement,\n type PublicSSO,\n type PublicClientOptions,\n type ConfidentialClientOptions,\n} from './factory';\n\nclass WorkOSNode extends WorkOS {\n /** @override */\n createHttpClient(options: WorkOSOptions, userAgent: string): HttpClient {\n const headers: Record<string, string> = {};\n\n const configHeaders = options.config?.headers;\n if (configHeaders) {\n if (configHeaders instanceof Headers) {\n configHeaders.forEach((v, k) => (headers[k] = v));\n } else if (Array.isArray(configHeaders)) {\n configHeaders.forEach(([k, v]) => (headers[k] = v));\n } else {\n Object.assign(headers, configHeaders);\n }\n }\n\n headers['User-Agent'] = userAgent;\n\n if (this.key) {\n headers['Authorization'] = `Bearer ${this.key}`;\n }\n\n const opts = {\n ...options.config,\n timeout: options.timeout,\n maxRetries: options.maxRetries,\n headers,\n };\n\n return new FetchHttpClient(this.baseURL, opts, options.fetchFn);\n }\n\n /** @override */\n createWebhookClient(): Webhooks {\n return new Webhooks(this);\n }\n\n override getCryptoProvider(): CryptoProvider {\n return new SubtleCryptoProvider();\n }\n\n /** @override */\n createActionsClient(): Actions {\n return new Actions(this.getCryptoProvider());\n }\n\n /** @override */\n emitWarning(warning: string): void {\n return process.emitWarning(warning, 'WorkOS');\n }\n}\n\nexport { WorkOSNode as WorkOS };\n"],"mappings":"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"}
package/lib/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { $ as ReadObjectMetadataResponse, $a as FlagDeletedEventResponse, $c as AuthMethod, $d as ConnectionResponse, $f as BaseAssignRoleOptions, $i as AuthenticationMfaSucceededEventResponse, $l as Invitation, $n as PasswordlessSessionResponse, $o as OrganizationUpdatedResponse, $p as AddEnvironmentRolePermissionOptions, $r as SerializedLinkClaimAttemptToExternalUserOptions, $s as ListGroupsOptions, $t as DataIntegrationsListResponseDataOwnership, $u as UserManagementAccessToken, A as ApiKeyRequiredException, Aa as DsyncGroupDeletedEvent, Ac as SerializedCreateOrganizationApiKeyOptions, Ad as SerializedAuthenticateWithEmailVerificationOptions, Af as RemoveGroupRoleAssignmentsOptionsWithResourceExternalId, Ai as DomainData, Al as MagicAuthResponse, Am as CryptoProvider, An as ConnectedAccountState, Ao as OrganizationDomainCreatedEvent, Ap as AuthorizationResource, Ar as CompleteOAuth2Options, As as VaultDataCreatedEventResponse, At as SerializedAuditLogExportOptions, Au as Factor, B as ObjectSummaryResponse, Ba as DsyncUserDeletedEvent, Bc as SerializedCreateOrganizationDomainOptions, Bd as WithResolvedClientId, Bf as GetGroupRoleAssignmentOptions, Bi as GetOptions, Bl as ListOrganizationMembershipsOptions, Bn as UpdateCustomProviderDefinitionAuthenticateVia, Bo as OrganizationMembershipCreated, Bp as UpdatePermissionOptions, Br as AgentCredentialValidation, Bs as VaultDekReadEventResponse, Bt as RadarStandaloneResponse, Bu as SmsResponse, C as BadRequestException, Ca as ConnectionDeletedEventResponse, Cc as ValidateApiKeyOptions, Cd as AuthenticateWithRadarEmailChallengeOptions, Cf as GroupRoleAssignmentEntryWithResourceId, Ci as Organization, Cl as PasswordResetEventResponse, Cm as HttpClient, Cn as DataIntegrationCredential, Co as InvitationRevokedEventResponse, Cp as SerializedAuthorizationCheckOptions, Cr as CreateM2MApplication, Cs as UserDeletedEvent, Ct as AuditLogSchema, Cu as AuthenticationRadarRiskDetectedEventData, D as isAuthenticationErrorData, Da as DsyncDeletedEventResponse, Dc as SerializedCreatedApiKey, Dd as SerializedAuthenticateWithMagicAuthOptions, Df as BaseRemoveGroupRoleAssignmentsOptions, Di as CreateOrganizationOptions, Dl as MagicAuth, Dm as RequestOptions, Dn as DeleteUserConnectedAccountOptions, Do as OrganizationCreatedResponse, Dp as GetAuthorizationResourceByExternalIdOptions, Dr as RedirectUriInput, Ds as VaultByokKeyVerificationCompletedEvent, Dt as AuditLogExport, Du as AuthenticationFactorType, E as AuthenticationException, Ea as DsyncDeletedEvent, Ec as CreatedApiKey, Ed as AuthenticateWithMagicAuthOptions, Ef as SerializedReplaceGroupRoleAssignmentsOptions, Ei as ListOrganizationFeatureFlagsOptions, El as CreateMagicAuthResponseResponse, Em as RequestHeaders, En as ListUserDataProvidersOptions, Eo as OrganizationCreatedEvent, Ep as UpdateAuthorizationResourceByExternalIdOptions, Er as CreateOAuthApplicationResponse, Es as UserUpdatedEventResponse, Et as AuditLogTargetSchema, Eu as AuthenticationFactorResponse, F as UpdateWebhookEndpointEvents, Fa as DsyncGroupUserAddedEventResponse, Fc as OrganizationDomain, Fd as SerializedAuthenticateWithCodeOptions, Ff as CreateGroupRoleAssignmentOptions, Fi as PutOptions, Fl as ListUserApiKeysOptions, Fn as UpdateDataIntegrationApiKeyOptions, Fo as OrganizationDomainUpdatedEventResponse, Fp as SerializedCreateAuthorizationResourceOptions, Fr as UserObject, Fs as VaultDataUpdatedEvent, Ft as Challenge, Fu as Totp, G as ObjectMetadata, Ga as EmailVerificationCreatedEventResponse, Gc as SerializedUserApiKey, Gd as OauthTokens, Gf as BaseRemoveRoleOptions, Gi as ApiKeyRevokedEventResponse, Gl as BaseOrganizationMembershipResponse, Gn as CustomProviderDefinitionAuthenticateVia, Go as OrganizationMembershipUpdatedResponse, Gp as RemoveOrganizationRolePermissionOptions, Gr as ValidAgentCredential, Gs as VaultNamesListedEvent, Gt as RadarListAction, Gu as AuthenticateUserWithTotpCredentials, H as ObjectVersionResponse, Ha as DsyncUserUpdatedEvent, Hc as VerifyEmailOptions, Hd as ProfileAndTokenResponse, Hf as GroupRoleAssignment, Hi as ApiKeyCreatedEvent, Hl as AuthorizationOrganizationMembership, Hn as CreateDataIntegrationOptions, Ho as OrganizationMembershipDeleted, Hp as SerializedCreatePermissionOptions, Hr as SerializedAgentAccessTokenClaims, Hs as VaultKekCreatedEventResponse, Ht as RadarStandaloneResponseBlocklistType, Hu as AuthenticationEventResponse, I as UpdateWebhookEndpointStatus, Ia as DsyncGroupUserRemovedEvent, Ic as OrganizationDomainResponse, Id as AuthenticateWithOptionsBase, If as CreateGroupRoleAssignmentOptionsForOrganization, Ii as PostOptions, Il as SerializedListUserApiKeysOptions, In as DeleteDataIntegrationOptions, Io as OrganizationDomainVerificationFailedEvent, Ip as SerializedUpdateAuthorizationResourceOptions, Ir as UserObjectResponse, Is as VaultDataUpdatedEventResponse, It as ChallengeResponse, Iu as TotpResponse, J as ActorResponse, Ja as EventName, Jc as UpdateUserPasswordOptions, Jd as SerializedListConnectionsOptions, Jf as RemoveRoleOptionsWithResourceId, Ji as AuthenticationMagicAuthFailedEvent, Jl as OrganizationMembershipStatus, Jn as DataIntegrationCredentialsType, Jo as OrganizationRoleDeletedEvent, Jp as SerializedUpdateOrganizationRoleOptions, Jr as ValidateAgentCredentialOptions, Js as DataKeyPair, Jt as RadarStandaloneAssessRequestAuthMethod, Ju as AuthenticateWithSessionCookieFailedResponse, K as ObjectMetadataResponse, Ka as Event, Kc as UserApiKey, Kd as OauthTokensResponse, Kf as RemoveRoleOptions, Ki as AuthenticationEmailVerificationSucceededEvent, Kl as OrganizationMembership, Kn as DataIntegrationCredentialsDto, Ko as OrganizationRoleCreatedEvent, Kp as AddOrganizationRolePermissionOptions, Kr as ValidateAgentAccessTokenOptions, Ks as VaultNamesListedEventResponse, Kt as RadarListType, Ku as AuthenticateWithTotpOptions, L as CreateWebhookEndpointEvents, La as DsyncGroupUserRemovedEventResponse, Lc as OrganizationDomainState, Ld as AuthenticateWithSessionOptions, Lf as CreateGroupRoleAssignmentOptionsWithResourceExternalId, Li as PatchOptions, Ll as ListUserFeatureFlagsOptions, Ln as UpdateDataIntegrationOptions, Lo as OrganizationDomainVerificationFailedEventResponse, Lp as UpdateAuthorizationResourceOptions, Lr as AutoPaginatable, Ls as VaultDekDecryptedEvent, Lt as ChallengeFactorOptions, Lu as TotpWithSecrets, M as WebhookEndpoint, Ma as DsyncGroupUpdatedEvent, Mc as SerializedApiKey, Md as SerializedAuthenticateWithCodeAndVerifierOptions, Mf as SerializedRemoveGroupRoleAssignmentsOptions, Mi as WorkOSResponseError, Ml as Locale, Mn as GetAccessTokenOptions, Mo as OrganizationDomainDeletedEvent, Mp as CreateAuthorizationResourceOptions, Mr as UserConsentOptionResponse, Ms as VaultDataDeletedEventResponse, Mt as VerifyResponseResponse, Mu as FactorType, N as WebhookEndpointResponse, Na as DsyncGroupUpdatedEventResponse, Nc as OrganizationDomainVerificationFailed, Nd as AuthenticateUserWithCodeCredentials, Nf as RemoveGroupRoleAssignmentOptions, Ni as WorkOSOptions, Nl as ListUsersOptions, Nn as CreateDataIntegrationCredentialOptions, No as OrganizationDomainDeletedEventResponse, Np as CreateOptionsWithParentExternalId, Nr as UserConsentOptionChoice, Ns as VaultDataReadEvent, Nt as VerifyChallengeOptions, Nu as FactorWithSecrets, O as GenericServerException, Oa as DsyncGroupCreatedEvent, Oc as CreateOrganizationApiKeyOptions, Od as AuthenticateUserWithEmailVerificationCredentials, Of as RemoveGroupRoleAssignmentsOptions, Oi as CreateOrganizationRequestOptions, Ol as MagicAuthEvent, Om as ResponseHeaderValue, On as UpdateUserConnectedAccountOptions, Oo as OrganizationDeletedEvent, Op as ListAuthorizationResourcesOptions, Or as RedirectUriInputResponse, Os as VaultByokKeyVerificationCompletedEventResponse, Ot as AuditLogExportResponse, Ou as AuthenticationFactorWithSecrets, P as WebhookEndpointStatus, Pa as DsyncGroupUserAddedEvent, Pc as OrganizationDomainVerificationFailedResponse, Pd as AuthenticateWithCodeOptions, Pf as BaseCreateGroupRoleAssignmentOptions, Pi as UnprocessableEntityError, Pl as SerializedListUsersOptions, Pn as AuthorizeDataIntegrationOptions, Po as OrganizationDomainUpdatedEvent, Pp as CreateOptionsWithParentResourceId, Pr as UserConsentOptionChoiceResponse, Ps as VaultDataReadEventResponse, Pt as EnrollFactorOptions, Pu as FactorWithSecretsResponse, Q as UpdateObjectOptions, Qa as FlagDeletedEvent, Qc as UpdateOrganizationMembershipOptions, Qd as ConnectionDomain, Qf as AssignRoleOptionsWithResourceId, Qi as AuthenticationMfaSucceededEvent, Ql as ListAuthFactorsOptions, Qn as PasswordlessSession, Qo as OrganizationUpdatedEvent, Qp as OrganizationRole, Qr as SerializedClaimAttemptResponse, Qs as RemoveGroupOrganizationMembershipOptions, Qt as DataIntegrationsListResponseDataResponse, Qu as SessionCookieData, R as WorkOS, Ra as DsyncUserCreatedEvent, Rc as OrganizationDomainVerificationStrategy, Rd as SerializedAuthenticatePublicClientBase, Rf as CreateGroupRoleAssignmentOptionsWithResourceId, Ri as List, Rl as ListSessionsOptions, Rn as UpdateCustomProviderDefinition, Ro as OrganizationDomainVerifiedEvent, Rp as ListPermissionsOptions, Rr as AgentAccessTokenClaims, Rs as VaultDekDecryptedEventResponse, Rt as RadarListEntryAlreadyPresentResponse, Ru as TotpWithSecretsResponse, S as ConflictException, Sa as ConnectionDeletedEvent, Sc as SerializedValidateApiKeyResponse, Sd as AuthenticateUserWithRadarEmailChallengeCredentials, Sf as GroupRoleAssignmentEntryWithResourceExternalId, Si as UpdateOrganizationOptions, Sl as PasswordResetEvent, Sm as EventDirectoryResponse, Sn as DataIntegrationCustomProviderAuthenticateVia, So as InvitationRevokedEvent, Sp as AuthorizationCheckResult, Sr as CreateApplicationOptions, Ss as UserCreatedEventResponse, St as AuditLogActorSchema, Su as UserManagementAuthorizationURLOptions, T as AuthenticationErrorData, Ta as DsyncActivatedEventResponse, Tc as ListOrganizationApiKeysOptions, Td as AuthenticateUserWithMagicAuthCredentials, Tf as SerializedGroupRoleAssignmentEntry, Ti as ListOrganizationsOptions, Tl as CreateMagicAuthResponse, Tm as HttpClientResponseInterface, Tn as DataIntegrationCredentialType, To as MagicAuthCreatedEventResponse, Tp as DeleteAuthorizationResourceByExternalIdOptions, Tr as CreateOAuthApplication, Ts as UserUpdatedEvent, Tt as AuditLogSchemaResponse, Tu as AuthenticationFactor, U as VaultObject, Ua as DsyncUserUpdatedEventResponse, Uc as SerializedUserApiKeyWithValue, Ud as Profile, Uf as GroupRoleAssignmentResponse, Ui as ApiKeyCreatedEventResponse, Ul as AuthorizationOrganizationMembershipResponse, Un as CustomProviderDefinition, Uo as OrganizationMembershipDeletedResponse, Up as Permission, Ur as SerializedAgentCredentialValidation, Us as VaultMetadataReadEvent, Ut as RadarStandaloneResponseControl, Uu as AuthenticationEventSso, V as ObjectVersion, Va as DsyncUserDeletedEventResponse, Vc as SerializedVerifyEmailOptions, Vd as ProfileAndToken, Vf as ListGroupRoleAssignmentsOptions, Vi as GenerateLinkIntent, Vl as SerializedListOrganizationMembershipsOptions, Vn as GetDataIntegrationOptions, Vo as OrganizationMembershipCreatedResponse, Vp as CreatePermissionOptions, Vr as InvalidAgentCredential, Vs as VaultKekCreatedEvent, Vt as RadarStandaloneResponseWire, Vu as AuthenticationEvent, W as VaultObjectResponse, Wa as EmailVerificationCreatedEvent, Wc as UserApiKeyWithValue, Wd as ProfileResponse, Wf as RemoveRoleAssignmentOptions, Wi as ApiKeyRevokedEvent, Wl as BaseOrganizationMembership, Wn as CustomProviderDefinitionResponse, Wo as OrganizationMembershipUpdated, Wp as PermissionResponse, Wr as SerializedValidateAgentCredentialOptions, Ws as VaultMetadataReadEventResponse, Wt as RadarStandaloneResponseVerdict, Wu as AuthenticationEventSsoResponse, X as CreateDataKeyResponseWire, Xa as FlagCreatedEvent, Xc as UpdateUserOptions, Xd as GetProfileOptions, Xf as AssignRoleOptions, Xi as AuthenticationMagicAuthSucceededEvent, Xl as SerializedListInvitationsOptions, Xn as CreatePasswordlessSessionOptions, Xo as OrganizationRoleUpdatedEvent, Xp as CreateOrganizationRoleOptions, Xr as ClaimAttemptResponse, Xs as SerializedUpdateGroupOptions, Xt as DataIntegrationsListResponseWire, Xu as AuthenticateWithSessionCookieOptions, Y as CreateDataKeyResponse, Ya as EventResponse, Yc as SerializedUpdateUserOptions, Yd as GetProfileAndTokenOptions, Yf as SerializedRemoveRoleOptions, Yi as AuthenticationMagicAuthFailedEventResponse, Yl as ListInvitationsOptions, Yn as SendSessionResponse, Yo as OrganizationRoleDeletedEventResponse, Yp as UpdateOrganizationRoleOptions, Yr as ClaimAttemptOrganization, Ys as KeyContext, Yt as DataIntegrationsListResponse, Yu as AuthenticateWithSessionCookieFailureReason, Z as UpdateObjectEntity, Za as FlagCreatedEventResponse, Zc as SerializedUpdateOrganizationMembershipOptions, Zd as Connection, Zf as AssignRoleOptionsWithResourceExternalId, Zi as AuthenticationMagicAuthSucceededEventResponse, Zl as ListGroupsForOrganizationMembershipOptions, Zn as SerializedCreatePasswordlessSessionOptions, Zo as OrganizationRoleUpdatedEventResponse, Zp as SerializedCreateOrganizationRoleOptions, Zr as LinkClaimAttemptToExternalUserOptions, Zs as UpdateGroupOptions, Zt as DataIntegrationsListResponseData, Zu as AuthenticateWithSessionCookieSuccessResponse, _ as SignatureVerificationException, _a as AuthenticationSSOSucceededEventResponse, _c as FlagTarget, _d as AuthenticateWithOrganizationSelectionOptions, _f as ListEffectivePermissionsByExternalIdOptions, _i as ActionPayload, _l as RefreshSessionFailureReason, _m as DirectoryResponse, _n as DataIntegration, _o as InvitationAcceptedEventResponse, _p as ListResourcesForMembershipOptionsWithParentId, _r as CreateApplicationClientSecretOptions, _s as SessionCreatedEventResponse, _t as AuditLogActor, _u as CreateOrganizationMembershipOptions, a as PublicWorkOS, aa as AuthenticationPasskeyFailedEventResponse, ac as CreateGroupOptions, ad as UserResponse, af as DirectoryUserResponse, ai as AgentRegistrationStatus, al as SendRadarSmsChallengeResponse, am as EnvironmentRole, an as DataIntegrationAccessTokenResponse, ao as GroupCreatedEventResponse, ap as SerializedListRoleAssignmentsOptions, ar as ApplicationCredentialsListItemResponse, as as PermissionCreatedEventResponse, at as DecryptDataKeyResponse, au as SerializedEnrollUserInMfaFactorOptions, b as NotFoundException, ba as ConnectionDeactivatedEvent, bc as EvaluationContext, bd as AuthenticateWithRadarSmsChallengeOptions, bf as GroupRoleAssignmentEntry, bi as UserRegistrationActionPayload, bl as TerminalRefreshSessionFailureReason, bm as DirectoryType, bn as DataIntegrationCustomProvider, bo as InvitationResentEvent, bp as AuthorizationCheckOptionsWithResourceExternalId, br as UpdateApplicationOptions, bs as UnknownEvent, bt as CreateAuditLogEventRequestOptions, bu as SerializedCreateMagicAuthOptions, c as PortalLinkResponseWire, ca as AuthenticationPasswordFailedEvent, cc as SerializedAddGroupOrganizationMembershipOptions, cd as AuthenticateWithRefreshTokenPublicClientOptions, cf as ListOrganizationRolesResponse, ci as SerializedAgentRegistrationClaim, cl as SendInvitationOptions, cm as EnvironmentRoleResponse, cn as DataIntegrationAccessTokenResponseAccessTokenResponse, co as GroupMemberAddedEvent, cp as RoleAssignmentResourceResponse, cr as ConnectApplicationM2MResponse, cs as PermissionUpdatedEvent, ct as WidgetSessionTokenResponseWire, cu as EmailVerificationEventResponse, d as IntentOptions, da as AuthenticationPasswordSucceededEventResponse, dc as RuntimeClientOptions, dd as AuthenticateWithRefreshTokenOptions, df as OrganizationRoleResponse, di as PKCEPair, dl as SerializedRevokeSessionOptions, dm as ListDirectoriesOptions, dn as DataIntegrationCredentialsResponseCredentialResponse, do as GroupMemberEventResponseData, dp as RoleAssignmentSource, dr as ConnectApplicationResponse, ds as RoleCreatedEventResponse, dt as FeatureFlagsRuntimeClient, du as SerializedCreateUserOptions, ea as AuthenticationOAuthFailedEvent, ec as ListGroupOrganizationMembershipsOptions, ed as AuthenticationResponse, ef as ConnectionType, ei as AgentIdentity, el as Session, em as SetEnvironmentRolePermissionsOptions, en as DataIntegrationsListResponseDataAuthMethods, eo as FlagRuleUpdatedEvent, ep as SerializedAssignRoleOptions, er as ListEventOptions, es as PasswordResetCreatedEvent, et as ReadObjectOptions, eu as InvitationEvent, f as IntentOptionsResponse, fa as AuthenticationRadarRiskDetectedEvent, fc as RemoveFlagTargetOptions, fd as SerializedAuthenticateWithRefreshTokenOptions, ff as Role, fi as Actions, fl as serializeRevokeSessionOptions, fm as SerializedListDirectoriesOptions, fn as DataIntegrationAuthorizeUrlResponse, fo as GroupMemberRemovedEvent, fp as RoleAssignmentSourceResponse, fr as ConnectApplicationRedirectUri, fs as RoleDeletedEvent, ft as CookieSession, fu as CreateUserApiKeyOptions, g as UnauthorizedException, ga as AuthenticationSSOSucceededEvent, gc as FlagPollResponse, gd as AuthenticateUserWithOrganizationSelectionCredentials, gf as RoleResponse, gi as ActionContext, gl as SerializedResendInvitationOptions, gm as Directory, gn as ConnectedAccountAuthMethod, go as InvitationAcceptedEvent, gp as ListResourcesForMembershipOptionsWithParentExternalId, gr as DeleteClientSecretOptions, gs as SessionCreatedEvent, gt as SerializedCreateAuditLogSchemaOptions, gu as SerializedCreatePasswordResetOptions, h as UnprocessableEntityException, ha as AuthenticationSSOFailedEventResponse, hc as FlagPollEntry, hd as SerializedAuthenticateWithPasswordOptions, hf as RoleList, hi as UserRegistrationActionResponseData, hl as ResendInvitationOptions, hm as DirectoryGroupResponse, hn as ConnectedAccountResponse, ho as GroupUpdatedEventResponse, hp as ListResourcesForMembershipOptions, hr as ExternalAuthCompleteResponseWire, hs as RoleUpdatedEventResponse, ht as CreateAuditLogSchemaResponse, hu as CreatePasswordResetOptions, i as PublicUserManagement, ia as AuthenticationPasskeyFailedEvent, ic as DeleteGroupOptions, id as User, if as DirectoryUser, ii as AgentRegistrationKind, il as SendRadarSmsChallengeOptions, im as SerializedCreateEnvironmentRoleOptions, in as DataIntegrationsListResponseDataConnectedAccountAuthMethod, io as GroupCreatedEvent, ip as ListRoleAssignmentsOptions, ir as ApplicationCredentialsListItem, is as PermissionCreatedEvent, it as DecryptDataKeyOptions, iu as EnrollAuthFactorOptions, j as Webhooks, ja as DsyncGroupDeletedEventResponse, jc as ApiKey, jd as AuthenticateWithCodeAndVerifierOptions, jf as RemoveGroupRoleAssignmentsOptionsWithResourceId, ji as DomainDataState, jl as LogoutURLOptions, jn as GetUserConnectedAccountOptions, jo as OrganizationDomainCreatedEventResponse, jp as AuthorizationResourceResponse, jr as UserConsentOption, js as VaultDataDeletedEvent, jt as VerifyResponse, ju as FactorResponse, k as WorkOSErrorData, ka as DsyncGroupCreatedEventResponse, kc as CreateOrganizationApiKeyRequestOptions, kd as AuthenticateWithEmailVerificationOptions, kf as RemoveGroupRoleAssignmentsOptionsForOrganization, ki as SerializedCreateOrganizationOptions, kl as MagicAuthEventResponse, km as ResponseHeaders, kn as CreateUserConnectedAccountOptions, ko as OrganizationDeletedResponse, kp as SerializedListAuthorizationResourcesOptions, kr as ListApplicationsOptions, ks as VaultDataCreatedEvent, kt as AuditLogExportOptions, ku as AuthenticationFactorWithSecretsResponse, l as GenerateLink, la as AuthenticationPasswordFailedEventResponse, lc as RuntimeClientStats, ld as SerializedAuthenticateWithRefreshTokenPublicClientOptions, lf as OrganizationRoleEvent, li as SerializedAgentRegistrationClaimCompletion, ll as SerializedSendInvitationOptions, lm as ListDirectoryUsersOptions, ln as DataIntegrationCredentialsResponseError, lo as GroupMemberAddedEventResponse, lp as RoleAssignmentResponse, lr as ConnectApplicationOAuth, ls as PermissionUpdatedEventResponse, lt as CreateTokenOptions, lu as EmailVerificationResponse, m as SSOIntentOptionsResponse, ma as AuthenticationSSOFailedEvent, mc as FlagChange, md as AuthenticateWithPasswordOptions, mf as RoleEventResponse, mi as ResponsePayload, ml as SerializedResetPasswordOptions, mm as DirectoryGroup, mn as ConnectedAccount, mo as GroupUpdatedEvent, mp as ListMembershipsForResourceOptions, mr as ExternalAuthCompleteResponse, ms as RoleUpdatedEvent, mt as CreateAuditLogSchemaRequestOptions, mu as SerializedCreateUserApiKeyOptions, n as PublicClientOptions, na as AuthenticationOAuthSucceededEvent, nc as GroupResponse, nd as CreateUserResponse, nf as SSOPKCEAuthorizationURLResult, ni as AgentRegistrationClaim, nl as SessionStatus, nm as UpdateEnvironmentRoleOptions, nn as DataIntegrationsListResponseDataConnectedAccountResponse, no as FlagUpdatedEvent, np as ListRoleAssignmentsForResourceOptions, nr as NewConnectApplicationSecret, ns as PasswordResetSucceededEvent, nt as CreateObjectEntity, nu as InvitationResponse, o as createWorkOS, oa as AuthenticationPasskeySucceededEvent, oc as SerializedCreateGroupOptions, od as Impersonator, of as DirectoryUserWithGroups, oi as SerializedAgentIdentity, ol as SendRadarSmsChallengeResponseResponse, om as EnvironmentRoleList, on as DataIntegrationAccessTokenResponseWire, oo as GroupDeletedEvent, op as RoleAssignment, or as ConnectApplication, os as PermissionDeletedEvent, ot as CreateDataKeyOptions, ou as EmailVerification, p as SSOIntentOptions, pa as AuthenticationRadarRiskDetectedEventResponse, pc as ListFeatureFlagsOptions, pd as AuthenticateUserWithPasswordCredentials, pf as RoleEvent, pi as AuthenticationActionResponseData, pl as ResetPasswordOptions, pm as PaginationOptions, pn as DataIntegrationAuthorizeUrlResponseWire, po as GroupMemberRemovedEventResponse, pp as ListMembershipsForResourceByExternalIdOptions, pr as ConnectApplicationRedirectUriResponse, ps as RoleDeletedEventResponse, pt as CreateAuditLogSchemaOptions, pu as CreateUserApiKeyRequestOptions, q as Actor, qa as EventBase, qc as SerializedUpdateUserPasswordOptions, qd as ListConnectionsOptions, qf as RemoveRoleOptionsWithResourceExternalId, qi as AuthenticationEmailVerificationSucceededEventResponse, ql as OrganizationMembershipResponse, qn as DataIntegrationCredentialsDtoResponse, qo as OrganizationRoleCreatedEventResponse, qp as SetOrganizationRolePermissionsOptions, qr as ValidateAgentApiKeyOptions, qs as DataKey, qt as RadarStandaloneAssessRequestAction, qu as SerializedAuthenticateWithTotpOptions, r as PublicSSO, ra as AuthenticationOAuthSucceededEventResponse, rc as GetGroupOptions, rd as CreateUserResponseResponse, rf as DefaultCustomAttributes, ri as AgentRegistrationClaimCompletion, rl as SendVerificationEmailOptions, rm as CreateEnvironmentRoleOptions, rn as DataIntegrationsListResponseDataConnectedAccountState, ro as FlagUpdatedEventResponse, rp as SerializedListRoleAssignmentsForResourceOptions, rr as NewConnectApplicationSecretResponse, rs as PasswordResetSucceededEventResponse, rt as CreateObjectOptions, ru as Identity, s as PortalLinkResponse, sa as AuthenticationPasskeySucceededEventResponse, sc as AddGroupOrganizationMembershipOptions, sd as ImpersonatorResponse, sf as DirectoryUserWithGroupsResponse, si as SerializedAgentRegistration, sl as SerializedSendRadarSmsChallengeOptions, sm as EnvironmentRoleListResponse, sn as DataIntegrationAccessTokenResponseAccessToken, so as GroupDeletedEventResponse, sp as RoleAssignmentResource, sr as ConnectApplicationM2M, ss as PermissionDeletedEventResponse, st as WidgetSessionTokenResponse, su as EmailVerificationEvent, t as ConfidentialClientOptions, ta as AuthenticationOAuthFailedEventResponse, tc as Group, td as AuthenticationResponseResponse, tf as SSOAuthorizationURLOptions, ti as AgentRegistration, tl as SessionResponse, tm as SerializedUpdateEnvironmentRoleOptions, tn as DataIntegrationsListResponseDataConnectedAccount, to as FlagRuleUpdatedEventResponse, tp as ListRoleAssignmentsForResourceByExternalIdOptions, tr as SerializedListEventOptions, ts as PasswordResetCreatedEventResponse, tt as ReadObjectResponse, tu as InvitationEventResponse, u as GenerateLinkResponse, ua as AuthenticationPasswordSucceededEvent, uc as RuntimeClientLogger, ud as AuthenticateUserWithRefreshTokenCredentials, uf as OrganizationRoleEventResponse, ui as PKCE, ul as RevokeSessionOptions, um as ListDirectoryGroupsOptions, un as DataIntegrationCredentialsResponseCredential, uo as GroupMemberEventData, up as RoleAssignmentRole, ur as ConnectApplicationOAuthResponse, us as RoleCreatedEvent, ut as WidgetSessionTokenScopes, uu as CreateUserOptions, v as RateLimitExceededException, va as ConnectionActivatedEvent, vc as FeatureFlag, vd as SerializedAuthenticateWithOrganizationSelectionOptions, vf as ListEffectivePermissionsOptions, vi as UserData, vl as RefreshSessionResponse, vm as DirectoryState, vn as DataIntegrationResponse, vo as InvitationCreatedEvent, vp as SerializedListResourcesForMembershipOptions, vr as ListApplicationClientSecretsOptions, vs as SessionRevokedEvent, vt as AuditLogTarget, vu as SerializedCreateOrganizationMembershipOptions, w as AuthenticationErrorCode, wa as DsyncActivatedEvent, wc as ValidateApiKeyResponse, wd as SerializedAuthenticateWithRadarEmailChallengeOptions, wf as ReplaceGroupRoleAssignmentsOptions, wi as OrganizationResponse, wl as PasswordResetResponse, wm as HttpClientInterface, wn as DataIntegrationCredentialResponse, wo as MagicAuthCreatedEvent, wp as DeleteAuthorizationResourceOptions, wr as CreateM2MApplicationResponse, ws as UserDeletedEventResponse, wt as AuditLogSchemaMetadata, wu as AuthenticationRadarRiskDetectedEventResponseData, x as NoApiKeyProvidedException, xa as ConnectionDeactivatedEventResponse, xc as AddFlagTargetOptions, xd as SerializedAuthenticateWithRadarSmsChallengeOptions, xf as GroupRoleAssignmentEntryForOrganization, xi as SerializedUpdateOrganizationOptions, xl as PasswordReset, xm as EventDirectory, xn as DataIntegrationCustomProviderResponse, xo as InvitationResentEventResponse, xp as AuthorizationCheckOptionsWithResourceId, xr as GetApplicationOptions, xs as UserCreatedEvent, xt as SerializedCreateAuditLogEventOptions, xu as PKCEAuthorizationURLResult, y as OauthException, ya as ConnectionActivatedEventResponse, yc as FeatureFlagResponse, yd as AuthenticateUserWithRadarSmsChallengeCredentials, yf as BaseGroupRoleAssignmentEntry, yi as UserDataPayload, yl as RetryableRefreshSessionFailureReason, ym as DirectoryStateResponse, yn as DataIntegrationState, yo as InvitationCreatedEventResponse, yp as AuthorizationCheckOptions, yr as DeleteApplicationOptions, ys as SessionRevokedEventResponse, yt as CreateAuditLogEventOptions, yu as CreateMagicAuthOptions, z as ObjectSummary, za as DsyncUserCreatedEventResponse, zc as CreateOrganizationDomainOptions, zd as SerializedAuthenticateWithOptionsBase, zf as SerializedCreateGroupRoleAssignmentOptions, zi as ListResponse, zl as SerializedListSessionsOptions, zn as UpdateCustomProviderDefinitionResponse, zo as OrganizationDomainVerifiedEventResponse, zp as SerializedUpdatePermissionOptions, zr as AgentCredentialType, zs as VaultDekReadEvent, zt as RadarListEntryAlreadyPresentResponseWire, zu as Sms } from "./factory-DmBBe791.cjs";
1
+ import { $ as ReadObjectMetadataResponse, $a as FlagDeletedEventResponse, $c as SerializedUpdateUserOptions, $d as SerializedListConnectionsOptions, $f as RemoveRoleOptionsWithResourceId, $i as AuthenticationMfaSucceededEventResponse, $l as ListInvitationsOptions, $n as PasswordlessSessionResponse, $o as OrganizationUpdatedResponse, $p as SerializedUpdateOrganizationRoleOptions, $r as SerializedLinkClaimAttemptToExternalUserOptions, $s as ListGroupsOptions, $t as DataIntegrationsListResponseDataOwnership, $u as AuthenticateWithSessionCookieFailureReason, A as ApiKeyRequiredException, Aa as DsyncGroupDeletedEvent, Ac as CreatedApiKey, Ad as AuthenticateUserWithMagicAuthCredentials, Af as SerializedGroupRoleAssignmentEntry, Ai as DomainData, Al as CreateMagicAuthResponseResponse, Am as HttpClientResponseInterface, An as ConnectedAccountState, Ao as OrganizationDomainCreatedEvent, Ap as DeleteAuthorizationResourceByExternalIdOptions, Ar as CompleteOAuth2Options, As as VaultDataCreatedEventResponse, At as SerializedAuditLogExportOptions, Au as AuthenticationFactorResponse, B as ObjectSummaryResponse, Ba as DsyncUserDeletedEvent, Bc as OrganizationDomainResponse, Bd as SerializedAuthenticateWithCodeOptions, Bf as CreateGroupRoleAssignmentOptions, Bi as GetOptions, Bl as SerializedListUserApiKeysOptions, Bn as UpdateCustomProviderDefinitionAuthenticateVia, Bo as OrganizationMembershipCreated, Bp as SerializedCreateAuthorizationResourceOptions, Br as AgentCredentialValidation, Bs as VaultDekReadEventResponse, Bt as RadarStandaloneResponse, Bu as TotpResponse, C as BadRequestException, Ca as ConnectionDeletedEventResponse, Cc as LegacyEvaluationContext, Cd as SerializedAuthenticateWithOrganizationSelectionOptions, Cf as ListEffectivePermissionsOptions, Ci as Organization, Cl as RetryableRefreshSessionFailureReason, Cm as DirectoryState, Cn as DataIntegrationCredential, Co as InvitationRevokedEventResponse, Cp as SerializedListResourcesForMembershipOptions, Cr as CreateM2MApplication, Cs as UserDeletedEvent, Ct as AuditLogSchema, Cu as CreateMagicAuthOptions, D as isAuthenticationErrorData, Da as DsyncDeletedEventResponse, Dc as ValidateApiKeyOptions, Dd as AuthenticateUserWithRadarEmailChallengeCredentials, Df as GroupRoleAssignmentEntryWithResourceExternalId, Di as CreateOrganizationOptions, Dl as PasswordResetEventResponse, Dm as EventDirectoryResponse, Dn as DeleteUserConnectedAccountOptions, Do as OrganizationCreatedResponse, Dp as AuthorizationCheckResult, Dr as RedirectUriInput, Ds as VaultByokKeyVerificationCompletedEvent, Dt as AuditLogExport, Du as AuthenticationRadarRiskDetectedEventData, E as AuthenticationException, Ea as DsyncDeletedEvent, Ec as SerializedValidateApiKeyResponse, Ed as SerializedAuthenticateWithRadarSmsChallengeOptions, Ef as GroupRoleAssignmentEntryForOrganization, Ei as ListOrganizationFeatureFlagsOptions, El as PasswordResetEvent, Em as EventDirectory, En as ListUserDataProvidersOptions, Eo as OrganizationCreatedEvent, Ep as AuthorizationCheckOptionsWithResourceId, Er as CreateOAuthApplicationResponse, Es as UserUpdatedEventResponse, Et as AuditLogTargetSchema, Eu as UserManagementAuthorizationURLOptions, F as UpdateWebhookEndpointEvents, Fa as DsyncGroupUserAddedEventResponse, Fc as ApiKey, Fd as SerializedAuthenticateWithEmailVerificationOptions, Ff as RemoveGroupRoleAssignmentsOptionsWithResourceExternalId, Fi as PutOptions, Fl as LogoutURLOptions, Fm as CryptoProvider, Fn as UpdateDataIntegrationApiKeyOptions, Fo as OrganizationDomainUpdatedEventResponse, Fp as AuthorizationResource, Fr as UserObject, Fs as VaultDataUpdatedEvent, Ft as Challenge, Fu as FactorResponse, G as ObjectMetadata, Ga as EmailVerificationCreatedEventResponse, Gc as SerializedVerifyEmailOptions, Gd as WithResolvedClientId, Gf as GetGroupRoleAssignmentOptions, Gi as ApiKeyRevokedEventResponse, Gl as SerializedListOrganizationMembershipsOptions, Gn as CustomProviderDefinitionAuthenticateVia, Go as OrganizationMembershipUpdatedResponse, Gp as UpdatePermissionOptions, Gr as ValidAgentCredential, Gs as VaultNamesListedEvent, Gt as RadarListAction, Gu as AuthenticationEvent, H as ObjectVersionResponse, Ha as DsyncUserUpdatedEvent, Hc as OrganizationDomainVerificationStrategy, Hd as AuthenticateWithSessionOptions, Hf as CreateGroupRoleAssignmentOptionsWithResourceExternalId, Hi as ApiKeyCreatedEvent, Hl as ListSessionsOptions, Hn as CreateDataIntegrationOptions, Ho as OrganizationMembershipDeleted, Hp as UpdateAuthorizationResourceOptions, Hr as SerializedAgentAccessTokenClaims, Hs as VaultKekCreatedEventResponse, Ht as RadarStandaloneResponseBlocklistType, Hu as TotpWithSecretsResponse, I as UpdateWebhookEndpointStatus, Ia as DsyncGroupUserRemovedEvent, Ic as SerializedApiKey, Id as AuthenticateWithCodeAndVerifierOptions, If as RemoveGroupRoleAssignmentsOptionsWithResourceId, Ii as PostOptions, Il as Locale, In as DeleteDataIntegrationOptions, Io as OrganizationDomainVerificationFailedEvent, Ip as AuthorizationResourceResponse, Ir as UserObjectResponse, Is as VaultDataUpdatedEventResponse, It as ChallengeResponse, Iu as FactorType, J as ActorResponse, Ja as EventName, Jc as UserApiKeyWithValue, Jd as Profile, Jf as GroupRoleAssignmentResponse, Ji as AuthenticationMagicAuthFailedEvent, Jl as BaseOrganizationMembership, Jn as DataIntegrationCredentialsType, Jo as OrganizationRoleDeletedEvent, Jp as Permission, Jr as ValidateAgentCredentialOptions, Js as DataKeyPair, Jt as RadarStandaloneAssessRequestAuthMethod, Ju as AuthenticationEventSsoResponse, K as ObjectMetadataResponse, Ka as Event, Kc as VerifyEmailOptions, Kd as ProfileAndToken, Kf as ListGroupRoleAssignmentsOptions, Ki as AuthenticationEmailVerificationSucceededEvent, Kl as AuthorizationOrganizationMembership, Kn as DataIntegrationCredentialsDto, Ko as OrganizationRoleCreatedEvent, Kp as CreatePermissionOptions, Kr as ValidateAgentAccessTokenOptions, Ks as VaultNamesListedEventResponse, Kt as RadarListType, Ku as AuthenticationEventResponse, L as CreateWebhookEndpointEvents, La as DsyncGroupUserRemovedEventResponse, Lc as OrganizationDomainVerificationFailed, Ld as SerializedAuthenticateWithCodeAndVerifierOptions, Lf as SerializedRemoveGroupRoleAssignmentsOptions, Li as PatchOptions, Ll as ListUsersOptions, Ln as UpdateDataIntegrationOptions, Lo as OrganizationDomainVerificationFailedEventResponse, Lp as CreateAuthorizationResourceOptions, Lr as AutoPaginatable, Ls as VaultDekDecryptedEvent, Lt as ChallengeFactorOptions, Lu as FactorWithSecrets, M as WebhookEndpoint, Ma as DsyncGroupUpdatedEvent, Mc as CreateOrganizationApiKeyOptions, Md as SerializedAuthenticateWithMagicAuthOptions, Mf as BaseRemoveGroupRoleAssignmentsOptions, Mi as WorkOSResponseError, Ml as MagicAuthEvent, Mm as RequestOptions, Mn as GetAccessTokenOptions, Mo as OrganizationDomainDeletedEvent, Mp as GetAuthorizationResourceByExternalIdOptions, Mr as UserConsentOptionResponse, Ms as VaultDataDeletedEventResponse, Mt as VerifyResponseResponse, Mu as AuthenticationFactorWithSecrets, N as WebhookEndpointResponse, Na as DsyncGroupUpdatedEventResponse, Nc as CreateOrganizationApiKeyRequestOptions, Nd as AuthenticateUserWithEmailVerificationCredentials, Nf as RemoveGroupRoleAssignmentsOptions, Ni as WorkOSOptions, Nl as MagicAuthEventResponse, Nm as ResponseHeaderValue, Nn as CreateDataIntegrationCredentialOptions, No as OrganizationDomainDeletedEventResponse, Np as ListAuthorizationResourcesOptions, Nr as UserConsentOptionChoice, Ns as VaultDataReadEvent, Nt as VerifyChallengeOptions, Nu as AuthenticationFactorWithSecretsResponse, O as GenericServerException, Oa as DsyncGroupCreatedEvent, Oc as ValidateApiKeyResponse, Od as AuthenticateWithRadarEmailChallengeOptions, Of as GroupRoleAssignmentEntryWithResourceId, Oi as CreateOrganizationRequestOptions, Ol as PasswordResetResponse, Om as HttpClient, On as UpdateUserConnectedAccountOptions, Oo as OrganizationDeletedEvent, Op as SerializedAuthorizationCheckOptions, Or as RedirectUriInputResponse, Os as VaultByokKeyVerificationCompletedEventResponse, Ot as AuditLogExportResponse, Ou as AuthenticationRadarRiskDetectedEventResponseData, P as WebhookEndpointStatus, Pa as DsyncGroupUserAddedEvent, Pc as SerializedCreateOrganizationApiKeyOptions, Pd as AuthenticateWithEmailVerificationOptions, Pf as RemoveGroupRoleAssignmentsOptionsForOrganization, Pi as UnprocessableEntityError, Pl as MagicAuthResponse, Pm as ResponseHeaders, Pn as AuthorizeDataIntegrationOptions, Po as OrganizationDomainUpdatedEvent, Pp as SerializedListAuthorizationResourcesOptions, Pr as UserConsentOptionChoiceResponse, Ps as VaultDataReadEventResponse, Pt as EnrollFactorOptions, Pu as Factor, Q as UpdateObjectOptions, Qa as FlagDeletedEvent, Qc as UpdateUserPasswordOptions, Qd as ListConnectionsOptions, Qf as RemoveRoleOptionsWithResourceExternalId, Qi as AuthenticationMfaSucceededEvent, Ql as OrganizationMembershipStatus, Qn as PasswordlessSession, Qo as OrganizationUpdatedEvent, Qp as SetOrganizationRolePermissionsOptions, Qr as SerializedClaimAttemptResponse, Qs as RemoveGroupOrganizationMembershipOptions, Qt as DataIntegrationsListResponseDataResponse, Qu as AuthenticateWithSessionCookieFailedResponse, R as WorkOS, Ra as DsyncUserCreatedEvent, Rc as OrganizationDomainVerificationFailedResponse, Rd as AuthenticateUserWithCodeCredentials, Rf as RemoveGroupRoleAssignmentOptions, Ri as List, Rl as SerializedListUsersOptions, Rn as UpdateCustomProviderDefinition, Ro as OrganizationDomainVerifiedEvent, Rp as CreateOptionsWithParentExternalId, Rr as AgentAccessTokenClaims, Rs as VaultDekDecryptedEventResponse, Rt as RadarListEntryAlreadyPresentResponse, Ru as FactorWithSecretsResponse, S as ConflictException, Sa as ConnectionDeletedEvent, Sc as EvaluationResource, Sd as AuthenticateWithOrganizationSelectionOptions, Sf as ListEffectivePermissionsByExternalIdOptions, Si as UpdateOrganizationOptions, Sl as RefreshSessionResponse, Sm as DirectoryResponse, Sn as DataIntegrationCustomProviderAuthenticateVia, So as InvitationRevokedEvent, Sp as ListResourcesForMembershipOptionsWithParentId, Sr as CreateApplicationOptions, Ss as UserCreatedEventResponse, St as AuditLogActorSchema, Su as SerializedCreateOrganizationMembershipOptions, T as AuthenticationErrorData, Ta as DsyncActivatedEventResponse, Tc as AddFlagTargetOptions, Td as AuthenticateWithRadarSmsChallengeOptions, Tf as GroupRoleAssignmentEntry, Ti as ListOrganizationsOptions, Tl as PasswordReset, Tm as DirectoryType, Tn as DataIntegrationCredentialType, To as MagicAuthCreatedEventResponse, Tp as AuthorizationCheckOptionsWithResourceExternalId, Tr as CreateOAuthApplication, Ts as UserUpdatedEvent, Tt as AuditLogSchemaResponse, Tu as PKCEAuthorizationURLResult, U as VaultObject, Ua as DsyncUserUpdatedEventResponse, Uc as CreateOrganizationDomainOptions, Ud as SerializedAuthenticatePublicClientBase, Uf as CreateGroupRoleAssignmentOptionsWithResourceId, Ui as ApiKeyCreatedEventResponse, Ul as SerializedListSessionsOptions, Un as CustomProviderDefinition, Uo as OrganizationMembershipDeletedResponse, Up as ListPermissionsOptions, Ur as SerializedAgentCredentialValidation, Us as VaultMetadataReadEvent, Ut as RadarStandaloneResponseControl, Uu as Sms, V as ObjectVersion, Va as DsyncUserDeletedEventResponse, Vc as OrganizationDomainState, Vd as AuthenticateWithOptionsBase, Vf as CreateGroupRoleAssignmentOptionsForOrganization, Vi as GenerateLinkIntent, Vl as ListUserFeatureFlagsOptions, Vn as GetDataIntegrationOptions, Vo as OrganizationMembershipCreatedResponse, Vp as SerializedUpdateAuthorizationResourceOptions, Vr as InvalidAgentCredential, Vs as VaultKekCreatedEvent, Vt as RadarStandaloneResponseWire, Vu as TotpWithSecrets, W as VaultObjectResponse, Wa as EmailVerificationCreatedEvent, Wc as SerializedCreateOrganizationDomainOptions, Wd as SerializedAuthenticateWithOptionsBase, Wf as SerializedCreateGroupRoleAssignmentOptions, Wi as ApiKeyRevokedEvent, Wl as ListOrganizationMembershipsOptions, Wn as CustomProviderDefinitionResponse, Wo as OrganizationMembershipUpdated, Wp as SerializedUpdatePermissionOptions, Wr as SerializedValidateAgentCredentialOptions, Ws as VaultMetadataReadEventResponse, Wt as RadarStandaloneResponseVerdict, Wu as SmsResponse, X as CreateDataKeyResponseWire, Xa as FlagCreatedEvent, Xc as UserApiKey, Xd as OauthTokens, Xf as BaseRemoveRoleOptions, Xi as AuthenticationMagicAuthSucceededEvent, Xl as OrganizationMembership, Xn as CreatePasswordlessSessionOptions, Xo as OrganizationRoleUpdatedEvent, Xp as RemoveOrganizationRolePermissionOptions, Xr as ClaimAttemptResponse, Xs as SerializedUpdateGroupOptions, Xt as DataIntegrationsListResponseWire, Xu as AuthenticateWithTotpOptions, Y as CreateDataKeyResponse, Ya as EventResponse, Yc as SerializedUserApiKey, Yd as ProfileResponse, Yf as RemoveRoleAssignmentOptions, Yi as AuthenticationMagicAuthFailedEventResponse, Yl as BaseOrganizationMembershipResponse, Yn as SendSessionResponse, Yo as OrganizationRoleDeletedEventResponse, Yp as PermissionResponse, Yr as ClaimAttemptOrganization, Ys as KeyContext, Yt as DataIntegrationsListResponse, Yu as AuthenticateUserWithTotpCredentials, Z as UpdateObjectEntity, Za as FlagCreatedEventResponse, Zc as SerializedUpdateUserPasswordOptions, Zd as OauthTokensResponse, Zf as RemoveRoleOptions, Zi as AuthenticationMagicAuthSucceededEventResponse, Zl as OrganizationMembershipResponse, Zn as SerializedCreatePasswordlessSessionOptions, Zo as OrganizationRoleUpdatedEventResponse, Zp as AddOrganizationRolePermissionOptions, Zr as LinkClaimAttemptToExternalUserOptions, Zs as UpdateGroupOptions, Zt as DataIntegrationsListResponseData, Zu as SerializedAuthenticateWithTotpOptions, _ as SignatureVerificationException, _a as AuthenticationSSOSucceededEventResponse, _c as FlagPollResponse, _d as SerializedAuthenticateWithRefreshTokenOptions, _f as Role, _i as ActionPayload, _l as ResetPasswordOptions, _m as SerializedListDirectoriesOptions, _n as DataIntegration, _o as InvitationAcceptedEventResponse, _p as RoleAssignmentSourceResponse, _r as CreateApplicationClientSecretOptions, _s as SessionCreatedEventResponse, _t as AuditLogActor, _u as CreateUserApiKeyRequestOptions, a as PublicWorkOS, aa as AuthenticationPasskeyFailedEventResponse, ac as CreateGroupOptions, ad as AuthenticationResponse, af as ConnectionType, ai as AgentRegistrationStatus, al as SessionResponse, am as SetEnvironmentRolePermissionsOptions, an as DataIntegrationAccessTokenResponse, ao as GroupCreatedEventResponse, ap as SerializedAssignRoleOptions, ar as ApplicationCredentialsListItemResponse, as as PermissionCreatedEventResponse, at as DecryptDataKeyResponse, au as InvitationEventResponse, b as NotFoundException, ba as ConnectionDeactivatedEvent, bc as FeatureFlagResponse, bd as SerializedAuthenticateWithPasswordOptions, bf as RoleList, bi as UserRegistrationActionPayload, bl as SerializedResendInvitationOptions, bm as DirectoryGroupResponse, bn as DataIntegrationCustomProvider, bo as InvitationResentEvent, bp as ListResourcesForMembershipOptions, br as UpdateApplicationOptions, bs as UnknownEvent, bt as CreateAuditLogEventRequestOptions, bu as SerializedCreatePasswordResetOptions, c as PortalLinkResponseWire, ca as AuthenticationPasswordFailedEvent, cc as SerializedAddGroupOrganizationMembershipOptions, cd as CreateUserResponseResponse, cf as DefaultCustomAttributes, ci as SerializedAgentRegistrationClaim, cl as SendRadarSmsChallengeOptions, cm as CreateEnvironmentRoleOptions, cn as DataIntegrationAccessTokenResponseAccessTokenResponse, co as GroupMemberAddedEvent, cp as SerializedListRoleAssignmentsForResourceOptions, cr as ConnectApplicationM2MResponse, cs as PermissionUpdatedEvent, ct as WidgetSessionTokenResponseWire, cu as EnrollAuthFactorOptions, d as IntentOptions, da as AuthenticationPasswordSucceededEventResponse, dc as RuntimeClientOptions, dd as Impersonator, df as DirectoryUserWithGroups, di as PKCEPair, dl as SerializedSendRadarSmsChallengeOptions, dm as EnvironmentRoleList, dn as DataIntegrationCredentialsResponseCredentialResponse, do as GroupMemberEventResponseData, dp as RoleAssignment, dr as ConnectApplicationResponse, ds as RoleCreatedEventResponse, dt as FeatureFlagsRuntimeClient, du as EmailVerificationEvent, ea as AuthenticationOAuthFailedEvent, ec as ListGroupOrganizationMembershipsOptions, ed as AuthenticateWithSessionCookieOptions, ef as GetProfileAndTokenOptions, ei as AgentIdentity, el as UpdateUserOptions, em as UpdateOrganizationRoleOptions, en as DataIntegrationsListResponseDataAuthMethods, eo as FlagRuleUpdatedEvent, ep as SerializedRemoveRoleOptions, er as ListEventOptions, es as PasswordResetCreatedEvent, et as ReadObjectOptions, eu as SerializedListInvitationsOptions, f as IntentOptionsResponse, fa as AuthenticationRadarRiskDetectedEvent, fc as RemoveFlagTargetOptions, fd as ImpersonatorResponse, ff as DirectoryUserWithGroupsResponse, fi as Actions, fl as SendInvitationOptions, fm as EnvironmentRoleListResponse, fn as DataIntegrationAuthorizeUrlResponse, fo as GroupMemberRemovedEvent, fp as RoleAssignmentResource, fr as ConnectApplicationRedirectUri, fs as RoleDeletedEvent, ft as CookieSession, fu as EmailVerificationEventResponse, g as UnauthorizedException, ga as AuthenticationSSOSucceededEvent, gc as FlagPollEntry, gd as AuthenticateWithRefreshTokenOptions, gf as OrganizationRoleResponse, gi as ActionContext, gl as serializeRevokeSessionOptions, gm as ListDirectoriesOptions, gn as ConnectedAccountAuthMethod, go as InvitationAcceptedEvent, gp as RoleAssignmentSource, gr as DeleteClientSecretOptions, gs as SessionCreatedEvent, gt as SerializedCreateAuditLogSchemaOptions, gu as CreateUserApiKeyOptions, h as UnprocessableEntityException, ha as AuthenticationSSOFailedEventResponse, hc as FlagCustomTarget, hd as AuthenticateUserWithRefreshTokenCredentials, hf as OrganizationRoleEventResponse, hi as UserRegistrationActionResponseData, hl as SerializedRevokeSessionOptions, hm as ListDirectoryGroupsOptions, hn as ConnectedAccountResponse, ho as GroupUpdatedEventResponse, hp as RoleAssignmentRole, hr as ExternalAuthCompleteResponseWire, hs as RoleUpdatedEventResponse, ht as CreateAuditLogSchemaResponse, hu as SerializedCreateUserOptions, i as PublicUserManagement, ia as AuthenticationPasskeyFailedEvent, ic as DeleteGroupOptions, id as AuthenticationMethod, if as ConnectionResponse, ii as AgentRegistrationKind, il as Session, im as AddEnvironmentRolePermissionOptions, in as DataIntegrationsListResponseDataConnectedAccountAuthMethod, io as GroupCreatedEvent, ip as BaseAssignRoleOptions, ir as ApplicationCredentialsListItem, is as PermissionCreatedEvent, it as DecryptDataKeyOptions, iu as InvitationEvent, j as Webhooks, ja as DsyncGroupDeletedEventResponse, jc as SerializedCreatedApiKey, jd as AuthenticateWithMagicAuthOptions, jf as SerializedReplaceGroupRoleAssignmentsOptions, ji as DomainDataState, jl as MagicAuth, jm as RequestHeaders, jn as GetUserConnectedAccountOptions, jo as OrganizationDomainCreatedEventResponse, jp as UpdateAuthorizationResourceByExternalIdOptions, jr as UserConsentOption, js as VaultDataDeletedEvent, jt as VerifyResponse, ju as AuthenticationFactorType, k as WorkOSErrorData, ka as DsyncGroupCreatedEventResponse, kc as ListOrganizationApiKeysOptions, kd as SerializedAuthenticateWithRadarEmailChallengeOptions, kf as ReplaceGroupRoleAssignmentsOptions, ki as SerializedCreateOrganizationOptions, kl as CreateMagicAuthResponse, km as HttpClientInterface, kn as CreateUserConnectedAccountOptions, ko as OrganizationDeletedResponse, kp as DeleteAuthorizationResourceOptions, kr as ListApplicationsOptions, ks as VaultDataCreatedEvent, kt as AuditLogExportOptions, ku as AuthenticationFactor, l as GenerateLink, la as AuthenticationPasswordFailedEventResponse, lc as RuntimeClientStats, ld as User, lf as DirectoryUser, li as SerializedAgentRegistrationClaimCompletion, ll as SendRadarSmsChallengeResponse, lm as SerializedCreateEnvironmentRoleOptions, ln as DataIntegrationCredentialsResponseError, lo as GroupMemberAddedEventResponse, lp as ListRoleAssignmentsOptions, lr as ConnectApplicationOAuth, ls as PermissionUpdatedEventResponse, lt as CreateTokenOptions, lu as SerializedEnrollUserInMfaFactorOptions, m as SSOIntentOptionsResponse, ma as AuthenticationSSOFailedEvent, mc as FlagChange, md as SerializedAuthenticateWithRefreshTokenPublicClientOptions, mf as OrganizationRoleEvent, mi as ResponsePayload, ml as RevokeSessionOptions, mm as ListDirectoryUsersOptions, mn as ConnectedAccount, mo as GroupUpdatedEvent, mp as RoleAssignmentResponse, mr as ExternalAuthCompleteResponse, ms as RoleUpdatedEvent, mt as CreateAuditLogSchemaRequestOptions, mu as CreateUserOptions, n as PublicClientOptions, na as AuthenticationOAuthSucceededEvent, nc as GroupResponse, nd as SessionCookieData, nf as Connection, ni as AgentRegistrationClaim, nl as UpdateOrganizationMembershipOptions, nm as SerializedCreateOrganizationRoleOptions, nn as DataIntegrationsListResponseDataConnectedAccountResponse, no as FlagUpdatedEvent, np as AssignRoleOptionsWithResourceExternalId, nr as NewConnectApplicationSecret, ns as PasswordResetSucceededEvent, nt as CreateObjectEntity, nu as ListAuthFactorsOptions, o as createWorkOS, oa as AuthenticationPasskeySucceededEvent, oc as SerializedCreateGroupOptions, od as AuthenticationResponseResponse, of as SSOAuthorizationURLOptions, oi as SerializedAgentIdentity, ol as SessionStatus, om as SerializedUpdateEnvironmentRoleOptions, on as DataIntegrationAccessTokenResponseWire, oo as GroupDeletedEvent, op as ListRoleAssignmentsForResourceByExternalIdOptions, or as ConnectApplication, os as PermissionDeletedEvent, ot as CreateDataKeyOptions, ou as InvitationResponse, p as SSOIntentOptions, pa as AuthenticationRadarRiskDetectedEventResponse, pc as ListFeatureFlagsOptions, pd as AuthenticateWithRefreshTokenPublicClientOptions, pf as ListOrganizationRolesResponse, pi as AuthenticationActionResponseData, pl as SerializedSendInvitationOptions, pm as EnvironmentRoleResponse, pn as DataIntegrationAuthorizeUrlResponseWire, po as GroupMemberRemovedEventResponse, pp as RoleAssignmentResourceResponse, pr as ConnectApplicationRedirectUriResponse, ps as RoleDeletedEventResponse, pt as CreateAuditLogSchemaOptions, pu as EmailVerificationResponse, q as Actor, qa as EventBase, qc as SerializedUserApiKeyWithValue, qd as ProfileAndTokenResponse, qf as GroupRoleAssignment, qi as AuthenticationEmailVerificationSucceededEventResponse, ql as AuthorizationOrganizationMembershipResponse, qn as DataIntegrationCredentialsDtoResponse, qo as OrganizationRoleCreatedEventResponse, qp as SerializedCreatePermissionOptions, qr as ValidateAgentApiKeyOptions, qs as DataKey, qt as RadarStandaloneAssessRequestAction, qu as AuthenticationEventSso, r as PublicSSO, ra as AuthenticationOAuthSucceededEventResponse, rc as GetGroupOptions, rd as UserManagementAccessToken, rf as ConnectionDomain, ri as AgentRegistrationClaimCompletion, rl as AuthMethod, rm as OrganizationRole, rn as DataIntegrationsListResponseDataConnectedAccountState, ro as FlagUpdatedEventResponse, rp as AssignRoleOptionsWithResourceId, rr as NewConnectApplicationSecretResponse, rs as PasswordResetSucceededEventResponse, rt as CreateObjectOptions, ru as Invitation, s as PortalLinkResponse, sa as AuthenticationPasskeySucceededEventResponse, sc as AddGroupOrganizationMembershipOptions, sd as CreateUserResponse, sf as SSOPKCEAuthorizationURLResult, si as SerializedAgentRegistration, sl as SendVerificationEmailOptions, sm as UpdateEnvironmentRoleOptions, sn as DataIntegrationAccessTokenResponseAccessToken, so as GroupDeletedEventResponse, sp as ListRoleAssignmentsForResourceOptions, sr as ConnectApplicationM2M, ss as PermissionDeletedEventResponse, st as WidgetSessionTokenResponse, su as Identity, t as ConfidentialClientOptions, ta as AuthenticationOAuthFailedEventResponse, tc as Group, td as AuthenticateWithSessionCookieSuccessResponse, tf as GetProfileOptions, ti as AgentRegistration, tl as SerializedUpdateOrganizationMembershipOptions, tm as CreateOrganizationRoleOptions, tn as DataIntegrationsListResponseDataConnectedAccount, to as FlagRuleUpdatedEventResponse, tp as AssignRoleOptions, tr as SerializedListEventOptions, ts as PasswordResetCreatedEventResponse, tt as ReadObjectResponse, tu as ListGroupsForOrganizationMembershipOptions, u as GenerateLinkResponse, ua as AuthenticationPasswordSucceededEvent, uc as RuntimeClientLogger, ud as UserResponse, uf as DirectoryUserResponse, ui as PKCE, ul as SendRadarSmsChallengeResponseResponse, um as EnvironmentRole, un as DataIntegrationCredentialsResponseCredential, uo as GroupMemberEventData, up as SerializedListRoleAssignmentsOptions, ur as ConnectApplicationOAuthResponse, us as RoleCreatedEvent, ut as WidgetSessionTokenScopes, uu as EmailVerification, v as RateLimitExceededException, va as ConnectionActivatedEvent, vc as FlagTarget, vd as AuthenticateUserWithPasswordCredentials, vf as RoleEvent, vi as UserData, vl as SerializedResetPasswordOptions, vm as PaginationOptions, vn as DataIntegrationResponse, vo as InvitationCreatedEvent, vp as ListMembershipsForResourceByExternalIdOptions, vr as ListApplicationClientSecretsOptions, vs as SessionRevokedEvent, vt as AuditLogTarget, vu as SerializedCreateUserApiKeyOptions, w as AuthenticationErrorCode, wa as DsyncActivatedEvent, wc as TypedEvaluationContext, wd as AuthenticateUserWithRadarSmsChallengeCredentials, wf as BaseGroupRoleAssignmentEntry, wi as OrganizationResponse, wl as TerminalRefreshSessionFailureReason, wm as DirectoryStateResponse, wn as DataIntegrationCredentialResponse, wo as MagicAuthCreatedEvent, wp as AuthorizationCheckOptions, wr as CreateM2MApplicationResponse, ws as UserDeletedEventResponse, wt as AuditLogSchemaMetadata, wu as SerializedCreateMagicAuthOptions, x as NoApiKeyProvidedException, xa as ConnectionDeactivatedEventResponse, xc as EvaluationContext, xd as AuthenticateUserWithOrganizationSelectionCredentials, xf as RoleResponse, xi as SerializedUpdateOrganizationOptions, xl as RefreshSessionFailureReason, xm as Directory, xn as DataIntegrationCustomProviderResponse, xo as InvitationResentEventResponse, xp as ListResourcesForMembershipOptionsWithParentExternalId, xr as GetApplicationOptions, xs as UserCreatedEvent, xt as SerializedCreateAuditLogEventOptions, xu as CreateOrganizationMembershipOptions, y as OauthException, ya as ConnectionActivatedEventResponse, yc as FeatureFlag, yd as AuthenticateWithPasswordOptions, yf as RoleEventResponse, yi as UserDataPayload, yl as ResendInvitationOptions, ym as DirectoryGroup, yn as DataIntegrationState, yo as InvitationCreatedEventResponse, yp as ListMembershipsForResourceOptions, yr as DeleteApplicationOptions, ys as SessionRevokedEventResponse, yt as CreateAuditLogEventOptions, yu as CreatePasswordResetOptions, z as ObjectSummary, za as DsyncUserCreatedEventResponse, zc as OrganizationDomain, zd as AuthenticateWithCodeOptions, zf as BaseCreateGroupRoleAssignmentOptions, zi as ListResponse, zl as ListUserApiKeysOptions, zn as UpdateCustomProviderDefinitionResponse, zo as OrganizationDomainVerifiedEventResponse, zp as CreateOptionsWithParentResourceId, zr as AgentCredentialType, zs as VaultDekReadEvent, zt as RadarListEntryAlreadyPresentResponseWire, zu as Totp } from "./factory-VM3aexOH.cjs";
2
2
  //#region src/groups/interfaces/create-group-membership.interface.d.ts
3
3
  interface CreateGroupMembership {
4
4
  /** The ID of the Organization Membership to add to the group. */
@@ -474,5 +474,5 @@ declare class WorkOSNode extends WorkOS {
474
474
  emitWarning(warning: string): void;
475
475
  }
476
476
  //#endregion
477
- export { AccessToken, ActionContext, ActionPayload, Actor, ActorResponse, AddEnvironmentRolePermissionOptions, AddFlagTargetOptions, AddGroupOrganizationMembershipOptions, AddOrganizationRolePermissionOptions, AgentAccessTokenClaims, AgentCredentialType, AgentCredentialValidation, AgentIdentity, AgentRegistration, AgentRegistrationClaim, AgentRegistrationClaimCompletion, AgentRegistrationKind, AgentRegistrationStatus, ApiKey, ApiKeyCreatedEvent, ApiKeyCreatedEventResponse, ApiKeyRequiredException, ApiKeyRevokedEvent, ApiKeyRevokedEventResponse, ApplicationCredentialsListItem, ApplicationCredentialsListItemResponse, AssignRoleOptions, AssignRoleOptionsWithResourceExternalId, AssignRoleOptionsWithResourceId, AuditLogActor, AuditLogActorSchema, AuditLogExport, AuditLogExportOptions, AuditLogExportResponse, AuditLogSchema, AuditLogSchemaMetadata, AuditLogSchemaResponse, AuditLogTarget, AuditLogTargetSchema, AuthMethod, AuthenticateUserWithCodeCredentials, AuthenticateUserWithEmailVerificationCredentials, AuthenticateUserWithMagicAuthCredentials, AuthenticateUserWithOrganizationSelectionCredentials, AuthenticateUserWithPasswordCredentials, AuthenticateUserWithRadarEmailChallengeCredentials, AuthenticateUserWithRadarSmsChallengeCredentials, AuthenticateUserWithRefreshTokenCredentials, AuthenticateUserWithTotpCredentials, AuthenticateWithCodeAndVerifierOptions, AuthenticateWithCodeOptions, AuthenticateWithEmailVerificationOptions, AuthenticateWithMagicAuthOptions, AuthenticateWithOptionsBase, AuthenticateWithOrganizationSelectionOptions, AuthenticateWithPasswordOptions, AuthenticateWithRadarEmailChallengeOptions, AuthenticateWithRadarSmsChallengeOptions, AuthenticateWithRefreshTokenOptions, AuthenticateWithRefreshTokenPublicClientOptions, AuthenticateWithSessionCookieFailedResponse, AuthenticateWithSessionCookieFailureReason, AuthenticateWithSessionCookieOptions, AuthenticateWithSessionCookieSuccessResponse, AuthenticateWithSessionOptions, AuthenticateWithTotpOptions, AuthenticationActionResponseData, AuthenticationEmailVerificationSucceededEvent, AuthenticationEmailVerificationSucceededEventResponse, AuthenticationErrorCode, AuthenticationErrorData, AuthenticationEvent, AuthenticationEventResponse, AuthenticationEventSso, AuthenticationEventSsoResponse, AuthenticationException, AuthenticationFactor, AuthenticationFactorResponse, AuthenticationFactorType, AuthenticationFactorWithSecrets, AuthenticationFactorWithSecretsResponse, AuthenticationMagicAuthFailedEvent, AuthenticationMagicAuthFailedEventResponse, AuthenticationMagicAuthSucceededEvent, AuthenticationMagicAuthSucceededEventResponse, AuthenticationMfaSucceededEvent, AuthenticationMfaSucceededEventResponse, AuthenticationOAuthFailedEvent, AuthenticationOAuthFailedEventResponse, AuthenticationOAuthSucceededEvent, AuthenticationOAuthSucceededEventResponse, AuthenticationPasskeyFailedEvent, AuthenticationPasskeyFailedEventResponse, AuthenticationPasskeySucceededEvent, AuthenticationPasskeySucceededEventResponse, AuthenticationPasswordFailedEvent, AuthenticationPasswordFailedEventResponse, AuthenticationPasswordSucceededEvent, AuthenticationPasswordSucceededEventResponse, AuthenticationRadarRiskDetectedEvent, AuthenticationRadarRiskDetectedEventData, AuthenticationRadarRiskDetectedEventResponse, AuthenticationRadarRiskDetectedEventResponseData, AuthenticationResponse, AuthenticationResponseResponse, AuthenticationSSOFailedEvent, AuthenticationSSOFailedEventResponse, AuthenticationSSOSucceededEvent, AuthenticationSSOSucceededEventResponse, AuthorizationCheckOptions, AuthorizationCheckOptionsWithResourceExternalId, AuthorizationCheckOptionsWithResourceId, AuthorizationCheckResult, AuthorizationOrganizationMembership, AuthorizationOrganizationMembershipResponse, AuthorizationResource, AuthorizationResourceResponse, AuthorizeDataIntegrationOptions, AutoPaginatable, BadRequestException, BaseAssignRoleOptions, BaseCreateGroupRoleAssignmentOptions, BaseGroupRoleAssignmentEntry, BaseOrganizationMembership, BaseOrganizationMembershipResponse, BaseRemoveGroupRoleAssignmentsOptions, BaseRemoveRoleOptions, Challenge, ChallengeFactorOptions, ChallengeResponse, ClaimAttemptOrganization, ClaimAttemptResponse, CompleteOAuth2Options, type ConfidentialClientOptions, ConflictException, ConnectApplication, ConnectApplicationM2M, ConnectApplicationM2MResponse, ConnectApplicationOAuth, ConnectApplicationOAuthResponse, ConnectApplicationRedirectUri, ConnectApplicationRedirectUriResponse, ConnectApplicationResponse, ConnectedAccount, ConnectedAccountAuthMethod, ConnectedAccountDto, ConnectedAccountDtoResponse, ConnectedAccountResponse, ConnectedAccountState, Connection, ConnectionActivatedEvent, ConnectionActivatedEventResponse, ConnectionDeactivatedEvent, ConnectionDeactivatedEventResponse, ConnectionDeletedEvent, ConnectionDeletedEventResponse, ConnectionDomain, ConnectionResponse, ConnectionType, CookieSession, CreateApplicationClientSecretOptions, CreateApplicationOptions, CreateApplicationSecret, CreateApplicationSecretResponse, CreateAuditLogEventOptions, CreateAuditLogEventRequestOptions, CreateAuditLogSchemaOptions, CreateAuditLogSchemaRequestOptions, CreateAuditLogSchemaResponse, CreateAuthorizationResourceOptions, CreateDataIntegration, CreateDataIntegrationCredentialOptions, CreateDataIntegrationOptions, CreateDataIntegrationResponse, CreateDataIntegrationTokenOptions, type CreateDataKeyOptions, CreateDataKeyRequest, CreateDataKeyRequestResponse, CreateDataKeyResponse, CreateDataKeyResponseWire, CreateEnvironmentRoleOptions, CreateGroup, CreateGroupMembership, CreateGroupMembershipResponse, CreateGroupOptions, CreateGroupResponse, CreateGroupRoleAssignmentOptions, CreateGroupRoleAssignmentOptionsForOrganization, CreateGroupRoleAssignmentOptionsWithResourceExternalId, CreateGroupRoleAssignmentOptionsWithResourceId, CreateM2MApplication, CreateM2MApplicationResponse, CreateMagicAuthOptions, CreateMagicAuthResponse, CreateMagicAuthResponseResponse, CreateOAuthApplication, CreateOAuthApplicationResponse, CreateObjectEntity, CreateObjectOptions, CreateObjectRequest, CreateObjectRequestResponse, CreateOptionsWithParentExternalId, CreateOptionsWithParentResourceId, CreateOrganizationApiKeyOptions, CreateOrganizationApiKeyRequestOptions, CreateOrganizationDomainOptions, CreateOrganizationMembershipOptions, CreateOrganizationOptions, CreateOrganizationRequestOptions, CreateOrganizationRoleOptions, CreatePasswordResetOptions, CreatePasswordlessSessionOptions, CreatePermissionOptions, CreateTokenOptions, CreateUserApiKeyOptions, CreateUserApiKeyRequestOptions, CreateUserConnectedAccountOptions, CreateUserOptions, CreateUserResponse, CreateUserResponseResponse, CreateWebhookEndpoint, CreateWebhookEndpointEvents, CreateWebhookEndpointResponse, CreatedApiKey, CustomProviderDefinition, CustomProviderDefinitionAuthenticateVia, CustomProviderDefinitionResponse, DataIntegration, DataIntegrationAccessTokenResponse, DataIntegrationAccessTokenResponseAccessToken, DataIntegrationAccessTokenResponseAccessTokenResponse, DataIntegrationAccessTokenResponseError, DataIntegrationAccessTokenResponseWire, DataIntegrationAuthorizeUrlResponse, DataIntegrationAuthorizeUrlResponseWire, DataIntegrationCredential, DataIntegrationCredentialResponse, DataIntegrationCredentialType, DataIntegrationCredentialsDto, DataIntegrationCredentialsDtoResponse, DataIntegrationCredentialsResponseCredential, DataIntegrationCredentialsResponseCredentialResponse, DataIntegrationCredentialsResponseError, DataIntegrationCredentialsType, DataIntegrationCustomProvider, DataIntegrationCustomProviderAuthenticateVia, DataIntegrationCustomProviderResponse, DataIntegrationResponse, DataIntegrationState, DataIntegrationsGetDataIntegrationAuthorizeUrlRequest, DataIntegrationsGetDataIntegrationAuthorizeUrlRequestResponse, DataIntegrationsGetUserTokenRequest, DataIntegrationsGetUserTokenRequestResponse, DataIntegrationsListResponse, DataIntegrationsListResponseData, DataIntegrationsListResponseDataAuthMethods, DataIntegrationsListResponseDataConnectedAccount, DataIntegrationsListResponseDataConnectedAccountAuthMethod, DataIntegrationsListResponseDataConnectedAccountResponse, DataIntegrationsListResponseDataConnectedAccountState, DataIntegrationsListResponseDataOwnership, DataIntegrationsListResponseDataResponse, DataIntegrationsListResponseWire, DataIntegrationsUpsertApiKeyRequest, DataIntegrationsUpsertApiKeyRequestResponse, DataIntegrationsVendCredentialsRequest, DataIntegrationsVendCredentialsRequestResponse, DataKey, DataKeyPair, DecryptDataKeyOptions, DecryptDataKeyResponse, DecryptRequest, DecryptRequestResponse, DecryptResponse, DecryptResponseWire, DefaultCustomAttributes, DeleteApplicationOptions, DeleteAuthorizationResourceByExternalIdOptions, DeleteAuthorizationResourceOptions, DeleteClientSecretOptions, DeleteDataIntegrationOptions, DeleteGroupOptions, DeleteObjectOptions, DeleteUserConnectedAccountOptions, Directory, DirectoryGroup, DirectoryGroupResponse, DirectoryResponse, DirectoryState, DirectoryStateResponse, DirectoryType, DirectoryUser, DirectoryUserResponse, DirectoryUserWithGroups, DirectoryUserWithGroupsResponse, DomainData, DomainDataState, DsyncActivatedEvent, DsyncActivatedEventResponse, DsyncDeletedEvent, DsyncDeletedEventResponse, DsyncGroupCreatedEvent, DsyncGroupCreatedEventResponse, DsyncGroupDeletedEvent, DsyncGroupDeletedEventResponse, DsyncGroupUpdatedEvent, DsyncGroupUpdatedEventResponse, DsyncGroupUserAddedEvent, DsyncGroupUserAddedEventResponse, DsyncGroupUserRemovedEvent, DsyncGroupUserRemovedEventResponse, DsyncUserCreatedEvent, DsyncUserCreatedEventResponse, DsyncUserDeletedEvent, DsyncUserDeletedEventResponse, DsyncUserUpdatedEvent, DsyncUserUpdatedEventResponse, EmailVerification, EmailVerificationCreatedEvent, EmailVerificationCreatedEventResponse, EmailVerificationEvent, EmailVerificationEventResponse, EmailVerificationResponse, EnrollAuthFactorOptions, EnrollFactorOptions, EnvironmentRole, EnvironmentRoleList, EnvironmentRoleListResponse, EnvironmentRoleResponse, EvaluationContext, Event, EventBase, EventDirectory, EventDirectoryResponse, EventName, EventResponse, ExternalAuthCompleteResponse, ExternalAuthCompleteResponseWire, Factor, FactorResponse, FactorType, FactorWithSecrets, FactorWithSecretsResponse, FeatureFlag, FeatureFlagResponse, FeatureFlagsRuntimeClient, FlagChange, FlagCreatedEvent, FlagCreatedEventResponse, FlagDeletedEvent, FlagDeletedEventResponse, FlagPollEntry, FlagPollResponse, FlagRuleUpdatedEvent, FlagRuleUpdatedEventResponse, FlagTarget, FlagUpdatedEvent, FlagUpdatedEventResponse, GenerateLink, GenerateLinkIntent, GenerateLinkResponse, GenericServerException, GetAccessTokenOptions, GetApplicationOptions, GetAuthorizationResourceByExternalIdOptions, GetDataIntegrationOptions, GetGroupOptions, GetGroupRoleAssignmentOptions, GetOptions, GetProfileAndTokenOptions, GetProfileOptions, GetTokenOptions, GetUserConnectedAccountOptions, Group, GroupCreatedEvent, GroupCreatedEventResponse, GroupDeletedEvent, GroupDeletedEventResponse, GroupMemberAddedEvent, GroupMemberAddedEventResponse, GroupMemberEventData, GroupMemberEventResponseData, GroupMemberRemovedEvent, GroupMemberRemovedEventResponse, GroupResponse, GroupRoleAssignment, GroupRoleAssignmentEntry, GroupRoleAssignmentEntryForOrganization, GroupRoleAssignmentEntryWithResourceExternalId, GroupRoleAssignmentEntryWithResourceId, GroupRoleAssignmentResponse, GroupUpdatedEvent, GroupUpdatedEventResponse, HttpClientInterface, HttpClientResponseInterface, Identity, Impersonator, ImpersonatorResponse, IntentOptions, IntentOptionsResponse, InvalidAgentCredential, Invitation, InvitationAcceptedEvent, InvitationAcceptedEventResponse, InvitationCreatedEvent, InvitationCreatedEventResponse, InvitationEvent, InvitationEventResponse, InvitationResentEvent, InvitationResentEventResponse, InvitationResponse, InvitationRevokedEvent, InvitationRevokedEventResponse, KeyContext, LinkClaimAttemptToExternalUserOptions, List, ListApplicationClientSecretsOptions, ListApplicationsOptions, ListAuthFactorsOptions, ListAuthorizationResourcesOptions, ListConnectionsOptions, ListDataIntegrationsOptions, ListDirectoriesOptions, ListDirectoryGroupsOptions, ListDirectoryUsersOptions, ListEffectivePermissionsByExternalIdOptions, ListEffectivePermissionsOptions, ListEventOptions, ListFeatureFlagsOptions, ListGroupOrganizationMembershipsOptions, ListGroupRoleAssignmentsOptions, ListGroupsForOrganizationMembershipOptions, ListGroupsOptions, ListInvitationsOptions, ListMembershipsForResourceByExternalIdOptions, ListMembershipsForResourceOptions, ListOrganizationApiKeysOptions, ListOrganizationFeatureFlagsOptions, ListOrganizationMembershipsOptions, ListOrganizationRolesResponse, ListOrganizationsOptions, ListPermissionsOptions, ListResourcesForMembershipOptions, ListResourcesForMembershipOptionsWithParentExternalId, ListResourcesForMembershipOptionsWithParentId, ListResponse, ListRoleAssignmentsForResourceByExternalIdOptions, ListRoleAssignmentsForResourceOptions, ListRoleAssignmentsOptions, ListSessionsOptions, ListUserApiKeysOptions, ListUserDataProvidersOptions, ListUserFeatureFlagsOptions, ListUsersOptions, Locale, LogoutURLOptions, MagicAuth, MagicAuthCreatedEvent, MagicAuthCreatedEventResponse, MagicAuthEvent, MagicAuthEventResponse, MagicAuthResponse, NewConnectApplicationSecret, NewConnectApplicationSecretResponse, NoApiKeyProvidedException, NotFoundException, OauthException, OauthTokens, OauthTokensResponse, ObjectMetadata, ObjectMetadataResponse, ObjectSummary, ObjectSummaryResponse, ObjectVersion, ObjectVersionResponse, ObjectWithoutValue, ObjectWithoutValueResponse, Organization, OrganizationCreatedEvent, OrganizationCreatedResponse, OrganizationDeletedEvent, OrganizationDeletedResponse, OrganizationDomain, OrganizationDomainCreatedEvent, OrganizationDomainCreatedEventResponse, OrganizationDomainDeletedEvent, OrganizationDomainDeletedEventResponse, OrganizationDomainResponse, OrganizationDomainState, OrganizationDomainUpdatedEvent, OrganizationDomainUpdatedEventResponse, OrganizationDomainVerificationFailed, OrganizationDomainVerificationFailedEvent, OrganizationDomainVerificationFailedEventResponse, OrganizationDomainVerificationFailedResponse, OrganizationDomainVerificationStrategy, OrganizationDomainVerifiedEvent, OrganizationDomainVerifiedEventResponse, OrganizationMembership, OrganizationMembershipCreated, OrganizationMembershipCreatedResponse, OrganizationMembershipDeleted, OrganizationMembershipDeletedResponse, OrganizationMembershipResponse, OrganizationMembershipStatus, OrganizationMembershipUpdated, OrganizationMembershipUpdatedResponse, OrganizationResponse, OrganizationRole, OrganizationRoleCreatedEvent, OrganizationRoleCreatedEventResponse, OrganizationRoleDeletedEvent, OrganizationRoleDeletedEventResponse, OrganizationRoleEvent, OrganizationRoleEventResponse, OrganizationRoleResponse, OrganizationRoleUpdatedEvent, OrganizationRoleUpdatedEventResponse, OrganizationUpdatedEvent, OrganizationUpdatedResponse, PKCE, PKCEAuthorizationURLResult, PKCEPair, PaginationOptions, PasswordReset, PasswordResetCreatedEvent, PasswordResetCreatedEventResponse, PasswordResetEvent, PasswordResetEventResponse, PasswordResetResponse, PasswordResetSucceededEvent, PasswordResetSucceededEventResponse, PasswordlessSession, PasswordlessSessionResponse, PatchOptions, Permission, PermissionCreatedEvent, PermissionCreatedEventResponse, PermissionDeletedEvent, PermissionDeletedEventResponse, PermissionResponse, PermissionUpdatedEvent, PermissionUpdatedEventResponse, PortalLinkResponse, PortalLinkResponseWire, PostOptions, Profile, ProfileAndToken, ProfileAndTokenResponse, ProfileResponse, type PublicClientOptions, type PublicSSO, type PublicUserManagement, type PublicWorkOS, PutOptions, RadarListAction, RadarListEntryAlreadyPresentResponse, RadarListEntryAlreadyPresentResponseWire, RadarListType, RadarStandaloneAssessRequest, RadarStandaloneAssessRequestAction, RadarStandaloneAssessRequestAuthMethod, RadarStandaloneAssessRequestResponse, RadarStandaloneDeleteRadarListEntryRequest, RadarStandaloneDeleteRadarListEntryRequestResponse, RadarStandaloneResponse, RadarStandaloneResponseBlocklistType, RadarStandaloneResponseControl, RadarStandaloneResponseVerdict, RadarStandaloneResponseWire, RadarStandaloneUpdateRadarAttemptRequest, RadarStandaloneUpdateRadarAttemptRequestResponse, RadarStandaloneUpdateRadarListRequest, RadarStandaloneUpdateRadarListRequestResponse, RateLimitExceededException, ReadObjectMetadataResponse, ReadObjectOptions, ReadObjectResponse, RedirectUriInput, RedirectUriInputResponse, RefreshSessionFailureReason, RefreshSessionResponse, RekeyRequest, RekeyRequestResponse, RemoveFlagTargetOptions, RemoveGroupOrganizationMembershipOptions, RemoveGroupRoleAssignmentOptions, RemoveGroupRoleAssignmentsOptions, RemoveGroupRoleAssignmentsOptionsForOrganization, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId, RemoveGroupRoleAssignmentsOptionsWithResourceId, RemoveOrganizationRolePermissionOptions, RemoveRoleAssignmentOptions, RemoveRoleOptions, RemoveRoleOptionsWithResourceExternalId, RemoveRoleOptionsWithResourceId, ReplaceGroupRoleAssignmentsOptions, RequestHeaders, RequestOptions, ResendInvitationOptions, ResetPasswordOptions, ResponseHeaderValue, ResponseHeaders, ResponsePayload, RetryableRefreshSessionFailureReason, RevokeSessionOptions, Role, RoleAssignment, RoleAssignmentResource, RoleAssignmentResourceResponse, RoleAssignmentResponse, RoleAssignmentRole, RoleAssignmentSource, RoleAssignmentSourceResponse, RoleCreatedEvent, RoleCreatedEventResponse, RoleDeletedEvent, RoleDeletedEventResponse, RoleEvent, RoleEventResponse, RoleList, RoleResponse, RoleUpdatedEvent, RoleUpdatedEventResponse, RuntimeClientLogger, RuntimeClientOptions, RuntimeClientStats, SSOAuthorizationURLOptions, SSOIntentOptions, SSOIntentOptionsResponse, SSOPKCEAuthorizationURLResult, SendInvitationOptions, SendRadarSmsChallengeOptions, SendRadarSmsChallengeResponse, SendRadarSmsChallengeResponseResponse, SendSessionResponse, SendVerificationEmailOptions, SerializedAccessToken, SerializedAddGroupOrganizationMembershipOptions, SerializedAgentAccessTokenClaims, SerializedAgentCredentialValidation, SerializedAgentIdentity, SerializedAgentRegistration, SerializedAgentRegistrationClaim, SerializedAgentRegistrationClaimCompletion, SerializedApiKey, SerializedAssignRoleOptions, SerializedAuditLogExportOptions, SerializedAuthenticatePublicClientBase, SerializedAuthenticateWithCodeAndVerifierOptions, SerializedAuthenticateWithCodeOptions, SerializedAuthenticateWithEmailVerificationOptions, SerializedAuthenticateWithMagicAuthOptions, SerializedAuthenticateWithOptionsBase, SerializedAuthenticateWithOrganizationSelectionOptions, SerializedAuthenticateWithPasswordOptions, SerializedAuthenticateWithRadarEmailChallengeOptions, SerializedAuthenticateWithRadarSmsChallengeOptions, SerializedAuthenticateWithRefreshTokenOptions, SerializedAuthenticateWithRefreshTokenPublicClientOptions, SerializedAuthenticateWithTotpOptions, SerializedAuthorizationCheckOptions, SerializedClaimAttemptResponse, SerializedCreateAuditLogEventOptions, SerializedCreateAuditLogSchemaOptions, SerializedCreateAuthorizationResourceOptions, SerializedCreateEnvironmentRoleOptions, SerializedCreateGroupOptions, SerializedCreateGroupRoleAssignmentOptions, SerializedCreateMagicAuthOptions, SerializedCreateOrganizationApiKeyOptions, SerializedCreateOrganizationDomainOptions, SerializedCreateOrganizationMembershipOptions, SerializedCreateOrganizationOptions, SerializedCreateOrganizationRoleOptions, SerializedCreatePasswordResetOptions, SerializedCreatePasswordlessSessionOptions, SerializedCreatePermissionOptions, SerializedCreateUserApiKeyOptions, SerializedCreateUserOptions, SerializedCreatedApiKey, SerializedEnrollUserInMfaFactorOptions, SerializedGetTokenOptions, SerializedGroupRoleAssignmentEntry, SerializedLinkClaimAttemptToExternalUserOptions, SerializedListAuthorizationResourcesOptions, SerializedListConnectionsOptions, SerializedListDirectoriesOptions, SerializedListEventOptions, SerializedListInvitationsOptions, SerializedListOrganizationMembershipsOptions, SerializedListResourcesForMembershipOptions, SerializedListRoleAssignmentsForResourceOptions, SerializedListRoleAssignmentsOptions, SerializedListSessionsOptions, SerializedListUserApiKeysOptions, SerializedListUsersOptions, SerializedRemoveGroupRoleAssignmentsOptions, SerializedRemoveRoleOptions, SerializedReplaceGroupRoleAssignmentsOptions, SerializedResendInvitationOptions, SerializedResetPasswordOptions, SerializedRevokeSessionOptions, SerializedSendInvitationOptions, SerializedSendRadarSmsChallengeOptions, SerializedUpdateAuthorizationResourceOptions, SerializedUpdateEnvironmentRoleOptions, SerializedUpdateGroupOptions, SerializedUpdateOrganizationMembershipOptions, SerializedUpdateOrganizationOptions, SerializedUpdateOrganizationRoleOptions, SerializedUpdatePermissionOptions, SerializedUpdateUserOptions, SerializedUpdateUserPasswordOptions, SerializedUserApiKey, SerializedUserApiKeyWithValue, SerializedValidateAgentCredentialOptions, SerializedValidateApiKeyResponse, SerializedVerifyEmailOptions, Session, SessionCookieData, SessionCreatedEvent, SessionCreatedEventResponse, SessionResponse, SessionRevokedEvent, SessionRevokedEventResponse, SessionStatus, SetEnvironmentRolePermissionsOptions, SetOrganizationRolePermissionsOptions, SignatureVerificationException, Sms, SmsResponse, TerminalRefreshSessionFailureReason, Totp, TotpResponse, TotpWithSecrets, TotpWithSecretsResponse, UnauthorizedException, UnknownEvent, UnprocessableEntityError, UnprocessableEntityException, UpdateApplicationOptions, UpdateAuthorizationResourceByExternalIdOptions, UpdateAuthorizationResourceOptions, UpdateCustomProviderDefinition, UpdateCustomProviderDefinitionAuthenticateVia, UpdateCustomProviderDefinitionResponse, UpdateDataIntegration, UpdateDataIntegrationApiKeyOptions, UpdateDataIntegrationOptions, UpdateDataIntegrationResponse, UpdateEnvironmentRoleOptions, UpdateGroup, UpdateGroupOptions, UpdateGroupResponse, UpdateOAuthApplication, UpdateOAuthApplicationResponse, UpdateObjectEntity, UpdateObjectOptions, UpdateObjectRequest, UpdateObjectRequestResponse, UpdateOrganizationMembershipOptions, UpdateOrganizationOptions, UpdateOrganizationRoleOptions, UpdatePermissionOptions, UpdateUserConnectedAccountOptions, UpdateUserOptions, UpdateUserPasswordOptions, UpdateWebhookEndpoint, UpdateWebhookEndpointEvents, UpdateWebhookEndpointResponse, UpdateWebhookEndpointStatus, User, UserApiKey, UserApiKeyWithValue, UserConsentOption, UserConsentOptionChoice, UserConsentOptionChoiceResponse, UserConsentOptionResponse, UserCreatedEvent, UserCreatedEventResponse, UserData, UserDataPayload, UserDeletedEvent, UserDeletedEventResponse, UserManagementAccessToken, UserManagementAuthorizationURLOptions, UserManagementLoginRequest, UserManagementLoginRequestResponse, UserObject, UserObjectResponse, UserOrganizationMembershipBaseListData, UserOrganizationMembershipBaseListDataResponse, UserOrganizationMembershipBaseListDataStatus, UserRegistrationActionPayload, UserRegistrationActionResponseData, UserResponse, UserUpdatedEvent, UserUpdatedEventResponse, ValidAgentCredential, ValidateAgentAccessTokenOptions, ValidateAgentApiKeyOptions, ValidateAgentCredentialOptions, ValidateApiKeyOptions, ValidateApiKeyResponse, VaultByokKeyVerificationCompletedEvent, VaultByokKeyVerificationCompletedEventResponse, VaultDataCreatedEvent, VaultDataCreatedEventResponse, VaultDataDeletedEvent, VaultDataDeletedEventResponse, VaultDataReadEvent, VaultDataReadEventResponse, VaultDataUpdatedEvent, VaultDataUpdatedEventResponse, VaultDekDecryptedEvent, VaultDekDecryptedEventResponse, VaultDekReadEvent, VaultDekReadEventResponse, VaultKekCreatedEvent, VaultKekCreatedEventResponse, VaultMetadataReadEvent, VaultMetadataReadEventResponse, VaultNamesListedEvent, VaultNamesListedEventResponse, VaultObject, VaultObjectResponse, VaultOrder, VerifyChallengeOptions, VerifyEmailOptions, VerifyResponse, VerifyResponseResponse, WebhookEndpoint, WebhookEndpointResponse, WebhookEndpointStatus, WidgetSessionTokenResponse, WidgetSessionTokenResponseWire, WidgetSessionTokenScopes, WithResolvedClientId, WorkOSNode as WorkOS, WorkOSErrorData, WorkOSOptions, WorkOSResponseError, createWorkOS, isAuthenticationErrorData, serializeRevokeSessionOptions };
477
+ export { AccessToken, ActionContext, ActionPayload, Actor, ActorResponse, AddEnvironmentRolePermissionOptions, AddFlagTargetOptions, AddGroupOrganizationMembershipOptions, AddOrganizationRolePermissionOptions, AgentAccessTokenClaims, AgentCredentialType, AgentCredentialValidation, AgentIdentity, AgentRegistration, AgentRegistrationClaim, AgentRegistrationClaimCompletion, AgentRegistrationKind, AgentRegistrationStatus, ApiKey, ApiKeyCreatedEvent, ApiKeyCreatedEventResponse, ApiKeyRequiredException, ApiKeyRevokedEvent, ApiKeyRevokedEventResponse, ApplicationCredentialsListItem, ApplicationCredentialsListItemResponse, AssignRoleOptions, AssignRoleOptionsWithResourceExternalId, AssignRoleOptionsWithResourceId, AuditLogActor, AuditLogActorSchema, AuditLogExport, AuditLogExportOptions, AuditLogExportResponse, AuditLogSchema, AuditLogSchemaMetadata, AuditLogSchemaResponse, AuditLogTarget, AuditLogTargetSchema, AuthMethod, AuthenticateUserWithCodeCredentials, AuthenticateUserWithEmailVerificationCredentials, AuthenticateUserWithMagicAuthCredentials, AuthenticateUserWithOrganizationSelectionCredentials, AuthenticateUserWithPasswordCredentials, AuthenticateUserWithRadarEmailChallengeCredentials, AuthenticateUserWithRadarSmsChallengeCredentials, AuthenticateUserWithRefreshTokenCredentials, AuthenticateUserWithTotpCredentials, AuthenticateWithCodeAndVerifierOptions, AuthenticateWithCodeOptions, AuthenticateWithEmailVerificationOptions, AuthenticateWithMagicAuthOptions, AuthenticateWithOptionsBase, AuthenticateWithOrganizationSelectionOptions, AuthenticateWithPasswordOptions, AuthenticateWithRadarEmailChallengeOptions, AuthenticateWithRadarSmsChallengeOptions, AuthenticateWithRefreshTokenOptions, AuthenticateWithRefreshTokenPublicClientOptions, AuthenticateWithSessionCookieFailedResponse, AuthenticateWithSessionCookieFailureReason, AuthenticateWithSessionCookieOptions, AuthenticateWithSessionCookieSuccessResponse, AuthenticateWithSessionOptions, AuthenticateWithTotpOptions, AuthenticationActionResponseData, AuthenticationEmailVerificationSucceededEvent, AuthenticationEmailVerificationSucceededEventResponse, AuthenticationErrorCode, AuthenticationErrorData, AuthenticationEvent, AuthenticationEventResponse, AuthenticationEventSso, AuthenticationEventSsoResponse, AuthenticationException, AuthenticationFactor, AuthenticationFactorResponse, AuthenticationFactorType, AuthenticationFactorWithSecrets, AuthenticationFactorWithSecretsResponse, AuthenticationMagicAuthFailedEvent, AuthenticationMagicAuthFailedEventResponse, AuthenticationMagicAuthSucceededEvent, AuthenticationMagicAuthSucceededEventResponse, AuthenticationMethod, AuthenticationMfaSucceededEvent, AuthenticationMfaSucceededEventResponse, AuthenticationOAuthFailedEvent, AuthenticationOAuthFailedEventResponse, AuthenticationOAuthSucceededEvent, AuthenticationOAuthSucceededEventResponse, AuthenticationPasskeyFailedEvent, AuthenticationPasskeyFailedEventResponse, AuthenticationPasskeySucceededEvent, AuthenticationPasskeySucceededEventResponse, AuthenticationPasswordFailedEvent, AuthenticationPasswordFailedEventResponse, AuthenticationPasswordSucceededEvent, AuthenticationPasswordSucceededEventResponse, AuthenticationRadarRiskDetectedEvent, AuthenticationRadarRiskDetectedEventData, AuthenticationRadarRiskDetectedEventResponse, AuthenticationRadarRiskDetectedEventResponseData, AuthenticationResponse, AuthenticationResponseResponse, AuthenticationSSOFailedEvent, AuthenticationSSOFailedEventResponse, AuthenticationSSOSucceededEvent, AuthenticationSSOSucceededEventResponse, AuthorizationCheckOptions, AuthorizationCheckOptionsWithResourceExternalId, AuthorizationCheckOptionsWithResourceId, AuthorizationCheckResult, AuthorizationOrganizationMembership, AuthorizationOrganizationMembershipResponse, AuthorizationResource, AuthorizationResourceResponse, AuthorizeDataIntegrationOptions, AutoPaginatable, BadRequestException, BaseAssignRoleOptions, BaseCreateGroupRoleAssignmentOptions, BaseGroupRoleAssignmentEntry, BaseOrganizationMembership, BaseOrganizationMembershipResponse, BaseRemoveGroupRoleAssignmentsOptions, BaseRemoveRoleOptions, Challenge, ChallengeFactorOptions, ChallengeResponse, ClaimAttemptOrganization, ClaimAttemptResponse, CompleteOAuth2Options, type ConfidentialClientOptions, ConflictException, ConnectApplication, ConnectApplicationM2M, ConnectApplicationM2MResponse, ConnectApplicationOAuth, ConnectApplicationOAuthResponse, ConnectApplicationRedirectUri, ConnectApplicationRedirectUriResponse, ConnectApplicationResponse, ConnectedAccount, ConnectedAccountAuthMethod, ConnectedAccountDto, ConnectedAccountDtoResponse, ConnectedAccountResponse, ConnectedAccountState, Connection, ConnectionActivatedEvent, ConnectionActivatedEventResponse, ConnectionDeactivatedEvent, ConnectionDeactivatedEventResponse, ConnectionDeletedEvent, ConnectionDeletedEventResponse, ConnectionDomain, ConnectionResponse, ConnectionType, CookieSession, CreateApplicationClientSecretOptions, CreateApplicationOptions, CreateApplicationSecret, CreateApplicationSecretResponse, CreateAuditLogEventOptions, CreateAuditLogEventRequestOptions, CreateAuditLogSchemaOptions, CreateAuditLogSchemaRequestOptions, CreateAuditLogSchemaResponse, CreateAuthorizationResourceOptions, CreateDataIntegration, CreateDataIntegrationCredentialOptions, CreateDataIntegrationOptions, CreateDataIntegrationResponse, CreateDataIntegrationTokenOptions, type CreateDataKeyOptions, CreateDataKeyRequest, CreateDataKeyRequestResponse, CreateDataKeyResponse, CreateDataKeyResponseWire, CreateEnvironmentRoleOptions, CreateGroup, CreateGroupMembership, CreateGroupMembershipResponse, CreateGroupOptions, CreateGroupResponse, CreateGroupRoleAssignmentOptions, CreateGroupRoleAssignmentOptionsForOrganization, CreateGroupRoleAssignmentOptionsWithResourceExternalId, CreateGroupRoleAssignmentOptionsWithResourceId, CreateM2MApplication, CreateM2MApplicationResponse, CreateMagicAuthOptions, CreateMagicAuthResponse, CreateMagicAuthResponseResponse, CreateOAuthApplication, CreateOAuthApplicationResponse, CreateObjectEntity, CreateObjectOptions, CreateObjectRequest, CreateObjectRequestResponse, CreateOptionsWithParentExternalId, CreateOptionsWithParentResourceId, CreateOrganizationApiKeyOptions, CreateOrganizationApiKeyRequestOptions, CreateOrganizationDomainOptions, CreateOrganizationMembershipOptions, CreateOrganizationOptions, CreateOrganizationRequestOptions, CreateOrganizationRoleOptions, CreatePasswordResetOptions, CreatePasswordlessSessionOptions, CreatePermissionOptions, CreateTokenOptions, CreateUserApiKeyOptions, CreateUserApiKeyRequestOptions, CreateUserConnectedAccountOptions, CreateUserOptions, CreateUserResponse, CreateUserResponseResponse, CreateWebhookEndpoint, CreateWebhookEndpointEvents, CreateWebhookEndpointResponse, CreatedApiKey, CustomProviderDefinition, CustomProviderDefinitionAuthenticateVia, CustomProviderDefinitionResponse, DataIntegration, DataIntegrationAccessTokenResponse, DataIntegrationAccessTokenResponseAccessToken, DataIntegrationAccessTokenResponseAccessTokenResponse, DataIntegrationAccessTokenResponseError, DataIntegrationAccessTokenResponseWire, DataIntegrationAuthorizeUrlResponse, DataIntegrationAuthorizeUrlResponseWire, DataIntegrationCredential, DataIntegrationCredentialResponse, DataIntegrationCredentialType, DataIntegrationCredentialsDto, DataIntegrationCredentialsDtoResponse, DataIntegrationCredentialsResponseCredential, DataIntegrationCredentialsResponseCredentialResponse, DataIntegrationCredentialsResponseError, DataIntegrationCredentialsType, DataIntegrationCustomProvider, DataIntegrationCustomProviderAuthenticateVia, DataIntegrationCustomProviderResponse, DataIntegrationResponse, DataIntegrationState, DataIntegrationsGetDataIntegrationAuthorizeUrlRequest, DataIntegrationsGetDataIntegrationAuthorizeUrlRequestResponse, DataIntegrationsGetUserTokenRequest, DataIntegrationsGetUserTokenRequestResponse, DataIntegrationsListResponse, DataIntegrationsListResponseData, DataIntegrationsListResponseDataAuthMethods, DataIntegrationsListResponseDataConnectedAccount, DataIntegrationsListResponseDataConnectedAccountAuthMethod, DataIntegrationsListResponseDataConnectedAccountResponse, DataIntegrationsListResponseDataConnectedAccountState, DataIntegrationsListResponseDataOwnership, DataIntegrationsListResponseDataResponse, DataIntegrationsListResponseWire, DataIntegrationsUpsertApiKeyRequest, DataIntegrationsUpsertApiKeyRequestResponse, DataIntegrationsVendCredentialsRequest, DataIntegrationsVendCredentialsRequestResponse, DataKey, DataKeyPair, DecryptDataKeyOptions, DecryptDataKeyResponse, DecryptRequest, DecryptRequestResponse, DecryptResponse, DecryptResponseWire, DefaultCustomAttributes, DeleteApplicationOptions, DeleteAuthorizationResourceByExternalIdOptions, DeleteAuthorizationResourceOptions, DeleteClientSecretOptions, DeleteDataIntegrationOptions, DeleteGroupOptions, DeleteObjectOptions, DeleteUserConnectedAccountOptions, Directory, DirectoryGroup, DirectoryGroupResponse, DirectoryResponse, DirectoryState, DirectoryStateResponse, DirectoryType, DirectoryUser, DirectoryUserResponse, DirectoryUserWithGroups, DirectoryUserWithGroupsResponse, DomainData, DomainDataState, DsyncActivatedEvent, DsyncActivatedEventResponse, DsyncDeletedEvent, DsyncDeletedEventResponse, DsyncGroupCreatedEvent, DsyncGroupCreatedEventResponse, DsyncGroupDeletedEvent, DsyncGroupDeletedEventResponse, DsyncGroupUpdatedEvent, DsyncGroupUpdatedEventResponse, DsyncGroupUserAddedEvent, DsyncGroupUserAddedEventResponse, DsyncGroupUserRemovedEvent, DsyncGroupUserRemovedEventResponse, DsyncUserCreatedEvent, DsyncUserCreatedEventResponse, DsyncUserDeletedEvent, DsyncUserDeletedEventResponse, DsyncUserUpdatedEvent, DsyncUserUpdatedEventResponse, EmailVerification, EmailVerificationCreatedEvent, EmailVerificationCreatedEventResponse, EmailVerificationEvent, EmailVerificationEventResponse, EmailVerificationResponse, EnrollAuthFactorOptions, EnrollFactorOptions, EnvironmentRole, EnvironmentRoleList, EnvironmentRoleListResponse, EnvironmentRoleResponse, EvaluationContext, EvaluationResource, Event, EventBase, EventDirectory, EventDirectoryResponse, EventName, EventResponse, ExternalAuthCompleteResponse, ExternalAuthCompleteResponseWire, Factor, FactorResponse, FactorType, FactorWithSecrets, FactorWithSecretsResponse, FeatureFlag, FeatureFlagResponse, FeatureFlagsRuntimeClient, FlagChange, FlagCreatedEvent, FlagCreatedEventResponse, FlagCustomTarget, FlagDeletedEvent, FlagDeletedEventResponse, FlagPollEntry, FlagPollResponse, FlagRuleUpdatedEvent, FlagRuleUpdatedEventResponse, FlagTarget, FlagUpdatedEvent, FlagUpdatedEventResponse, GenerateLink, GenerateLinkIntent, GenerateLinkResponse, GenericServerException, GetAccessTokenOptions, GetApplicationOptions, GetAuthorizationResourceByExternalIdOptions, GetDataIntegrationOptions, GetGroupOptions, GetGroupRoleAssignmentOptions, GetOptions, GetProfileAndTokenOptions, GetProfileOptions, GetTokenOptions, GetUserConnectedAccountOptions, Group, GroupCreatedEvent, GroupCreatedEventResponse, GroupDeletedEvent, GroupDeletedEventResponse, GroupMemberAddedEvent, GroupMemberAddedEventResponse, GroupMemberEventData, GroupMemberEventResponseData, GroupMemberRemovedEvent, GroupMemberRemovedEventResponse, GroupResponse, GroupRoleAssignment, GroupRoleAssignmentEntry, GroupRoleAssignmentEntryForOrganization, GroupRoleAssignmentEntryWithResourceExternalId, GroupRoleAssignmentEntryWithResourceId, GroupRoleAssignmentResponse, GroupUpdatedEvent, GroupUpdatedEventResponse, HttpClientInterface, HttpClientResponseInterface, Identity, Impersonator, ImpersonatorResponse, IntentOptions, IntentOptionsResponse, InvalidAgentCredential, Invitation, InvitationAcceptedEvent, InvitationAcceptedEventResponse, InvitationCreatedEvent, InvitationCreatedEventResponse, InvitationEvent, InvitationEventResponse, InvitationResentEvent, InvitationResentEventResponse, InvitationResponse, InvitationRevokedEvent, InvitationRevokedEventResponse, KeyContext, LegacyEvaluationContext, LinkClaimAttemptToExternalUserOptions, List, ListApplicationClientSecretsOptions, ListApplicationsOptions, ListAuthFactorsOptions, ListAuthorizationResourcesOptions, ListConnectionsOptions, ListDataIntegrationsOptions, ListDirectoriesOptions, ListDirectoryGroupsOptions, ListDirectoryUsersOptions, ListEffectivePermissionsByExternalIdOptions, ListEffectivePermissionsOptions, ListEventOptions, ListFeatureFlagsOptions, ListGroupOrganizationMembershipsOptions, ListGroupRoleAssignmentsOptions, ListGroupsForOrganizationMembershipOptions, ListGroupsOptions, ListInvitationsOptions, ListMembershipsForResourceByExternalIdOptions, ListMembershipsForResourceOptions, ListOrganizationApiKeysOptions, ListOrganizationFeatureFlagsOptions, ListOrganizationMembershipsOptions, ListOrganizationRolesResponse, ListOrganizationsOptions, ListPermissionsOptions, ListResourcesForMembershipOptions, ListResourcesForMembershipOptionsWithParentExternalId, ListResourcesForMembershipOptionsWithParentId, ListResponse, ListRoleAssignmentsForResourceByExternalIdOptions, ListRoleAssignmentsForResourceOptions, ListRoleAssignmentsOptions, ListSessionsOptions, ListUserApiKeysOptions, ListUserDataProvidersOptions, ListUserFeatureFlagsOptions, ListUsersOptions, Locale, LogoutURLOptions, MagicAuth, MagicAuthCreatedEvent, MagicAuthCreatedEventResponse, MagicAuthEvent, MagicAuthEventResponse, MagicAuthResponse, NewConnectApplicationSecret, NewConnectApplicationSecretResponse, NoApiKeyProvidedException, NotFoundException, OauthException, OauthTokens, OauthTokensResponse, ObjectMetadata, ObjectMetadataResponse, ObjectSummary, ObjectSummaryResponse, ObjectVersion, ObjectVersionResponse, ObjectWithoutValue, ObjectWithoutValueResponse, Organization, OrganizationCreatedEvent, OrganizationCreatedResponse, OrganizationDeletedEvent, OrganizationDeletedResponse, OrganizationDomain, OrganizationDomainCreatedEvent, OrganizationDomainCreatedEventResponse, OrganizationDomainDeletedEvent, OrganizationDomainDeletedEventResponse, OrganizationDomainResponse, OrganizationDomainState, OrganizationDomainUpdatedEvent, OrganizationDomainUpdatedEventResponse, OrganizationDomainVerificationFailed, OrganizationDomainVerificationFailedEvent, OrganizationDomainVerificationFailedEventResponse, OrganizationDomainVerificationFailedResponse, OrganizationDomainVerificationStrategy, OrganizationDomainVerifiedEvent, OrganizationDomainVerifiedEventResponse, OrganizationMembership, OrganizationMembershipCreated, OrganizationMembershipCreatedResponse, OrganizationMembershipDeleted, OrganizationMembershipDeletedResponse, OrganizationMembershipResponse, OrganizationMembershipStatus, OrganizationMembershipUpdated, OrganizationMembershipUpdatedResponse, OrganizationResponse, OrganizationRole, OrganizationRoleCreatedEvent, OrganizationRoleCreatedEventResponse, OrganizationRoleDeletedEvent, OrganizationRoleDeletedEventResponse, OrganizationRoleEvent, OrganizationRoleEventResponse, OrganizationRoleResponse, OrganizationRoleUpdatedEvent, OrganizationRoleUpdatedEventResponse, OrganizationUpdatedEvent, OrganizationUpdatedResponse, PKCE, PKCEAuthorizationURLResult, PKCEPair, PaginationOptions, PasswordReset, PasswordResetCreatedEvent, PasswordResetCreatedEventResponse, PasswordResetEvent, PasswordResetEventResponse, PasswordResetResponse, PasswordResetSucceededEvent, PasswordResetSucceededEventResponse, PasswordlessSession, PasswordlessSessionResponse, PatchOptions, Permission, PermissionCreatedEvent, PermissionCreatedEventResponse, PermissionDeletedEvent, PermissionDeletedEventResponse, PermissionResponse, PermissionUpdatedEvent, PermissionUpdatedEventResponse, PortalLinkResponse, PortalLinkResponseWire, PostOptions, Profile, ProfileAndToken, ProfileAndTokenResponse, ProfileResponse, type PublicClientOptions, type PublicSSO, type PublicUserManagement, type PublicWorkOS, PutOptions, RadarListAction, RadarListEntryAlreadyPresentResponse, RadarListEntryAlreadyPresentResponseWire, RadarListType, RadarStandaloneAssessRequest, RadarStandaloneAssessRequestAction, RadarStandaloneAssessRequestAuthMethod, RadarStandaloneAssessRequestResponse, RadarStandaloneDeleteRadarListEntryRequest, RadarStandaloneDeleteRadarListEntryRequestResponse, RadarStandaloneResponse, RadarStandaloneResponseBlocklistType, RadarStandaloneResponseControl, RadarStandaloneResponseVerdict, RadarStandaloneResponseWire, RadarStandaloneUpdateRadarAttemptRequest, RadarStandaloneUpdateRadarAttemptRequestResponse, RadarStandaloneUpdateRadarListRequest, RadarStandaloneUpdateRadarListRequestResponse, RateLimitExceededException, ReadObjectMetadataResponse, ReadObjectOptions, ReadObjectResponse, RedirectUriInput, RedirectUriInputResponse, RefreshSessionFailureReason, RefreshSessionResponse, RekeyRequest, RekeyRequestResponse, RemoveFlagTargetOptions, RemoveGroupOrganizationMembershipOptions, RemoveGroupRoleAssignmentOptions, RemoveGroupRoleAssignmentsOptions, RemoveGroupRoleAssignmentsOptionsForOrganization, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId, RemoveGroupRoleAssignmentsOptionsWithResourceId, RemoveOrganizationRolePermissionOptions, RemoveRoleAssignmentOptions, RemoveRoleOptions, RemoveRoleOptionsWithResourceExternalId, RemoveRoleOptionsWithResourceId, ReplaceGroupRoleAssignmentsOptions, RequestHeaders, RequestOptions, ResendInvitationOptions, ResetPasswordOptions, ResponseHeaderValue, ResponseHeaders, ResponsePayload, RetryableRefreshSessionFailureReason, RevokeSessionOptions, Role, RoleAssignment, RoleAssignmentResource, RoleAssignmentResourceResponse, RoleAssignmentResponse, RoleAssignmentRole, RoleAssignmentSource, RoleAssignmentSourceResponse, RoleCreatedEvent, RoleCreatedEventResponse, RoleDeletedEvent, RoleDeletedEventResponse, RoleEvent, RoleEventResponse, RoleList, RoleResponse, RoleUpdatedEvent, RoleUpdatedEventResponse, RuntimeClientLogger, RuntimeClientOptions, RuntimeClientStats, SSOAuthorizationURLOptions, SSOIntentOptions, SSOIntentOptionsResponse, SSOPKCEAuthorizationURLResult, SendInvitationOptions, SendRadarSmsChallengeOptions, SendRadarSmsChallengeResponse, SendRadarSmsChallengeResponseResponse, SendSessionResponse, SendVerificationEmailOptions, SerializedAccessToken, SerializedAddGroupOrganizationMembershipOptions, SerializedAgentAccessTokenClaims, SerializedAgentCredentialValidation, SerializedAgentIdentity, SerializedAgentRegistration, SerializedAgentRegistrationClaim, SerializedAgentRegistrationClaimCompletion, SerializedApiKey, SerializedAssignRoleOptions, SerializedAuditLogExportOptions, SerializedAuthenticatePublicClientBase, SerializedAuthenticateWithCodeAndVerifierOptions, SerializedAuthenticateWithCodeOptions, SerializedAuthenticateWithEmailVerificationOptions, SerializedAuthenticateWithMagicAuthOptions, SerializedAuthenticateWithOptionsBase, SerializedAuthenticateWithOrganizationSelectionOptions, SerializedAuthenticateWithPasswordOptions, SerializedAuthenticateWithRadarEmailChallengeOptions, SerializedAuthenticateWithRadarSmsChallengeOptions, SerializedAuthenticateWithRefreshTokenOptions, SerializedAuthenticateWithRefreshTokenPublicClientOptions, SerializedAuthenticateWithTotpOptions, SerializedAuthorizationCheckOptions, SerializedClaimAttemptResponse, SerializedCreateAuditLogEventOptions, SerializedCreateAuditLogSchemaOptions, SerializedCreateAuthorizationResourceOptions, SerializedCreateEnvironmentRoleOptions, SerializedCreateGroupOptions, SerializedCreateGroupRoleAssignmentOptions, SerializedCreateMagicAuthOptions, SerializedCreateOrganizationApiKeyOptions, SerializedCreateOrganizationDomainOptions, SerializedCreateOrganizationMembershipOptions, SerializedCreateOrganizationOptions, SerializedCreateOrganizationRoleOptions, SerializedCreatePasswordResetOptions, SerializedCreatePasswordlessSessionOptions, SerializedCreatePermissionOptions, SerializedCreateUserApiKeyOptions, SerializedCreateUserOptions, SerializedCreatedApiKey, SerializedEnrollUserInMfaFactorOptions, SerializedGetTokenOptions, SerializedGroupRoleAssignmentEntry, SerializedLinkClaimAttemptToExternalUserOptions, SerializedListAuthorizationResourcesOptions, SerializedListConnectionsOptions, SerializedListDirectoriesOptions, SerializedListEventOptions, SerializedListInvitationsOptions, SerializedListOrganizationMembershipsOptions, SerializedListResourcesForMembershipOptions, SerializedListRoleAssignmentsForResourceOptions, SerializedListRoleAssignmentsOptions, SerializedListSessionsOptions, SerializedListUserApiKeysOptions, SerializedListUsersOptions, SerializedRemoveGroupRoleAssignmentsOptions, SerializedRemoveRoleOptions, SerializedReplaceGroupRoleAssignmentsOptions, SerializedResendInvitationOptions, SerializedResetPasswordOptions, SerializedRevokeSessionOptions, SerializedSendInvitationOptions, SerializedSendRadarSmsChallengeOptions, SerializedUpdateAuthorizationResourceOptions, SerializedUpdateEnvironmentRoleOptions, SerializedUpdateGroupOptions, SerializedUpdateOrganizationMembershipOptions, SerializedUpdateOrganizationOptions, SerializedUpdateOrganizationRoleOptions, SerializedUpdatePermissionOptions, SerializedUpdateUserOptions, SerializedUpdateUserPasswordOptions, SerializedUserApiKey, SerializedUserApiKeyWithValue, SerializedValidateAgentCredentialOptions, SerializedValidateApiKeyResponse, SerializedVerifyEmailOptions, Session, SessionCookieData, SessionCreatedEvent, SessionCreatedEventResponse, SessionResponse, SessionRevokedEvent, SessionRevokedEventResponse, SessionStatus, SetEnvironmentRolePermissionsOptions, SetOrganizationRolePermissionsOptions, SignatureVerificationException, Sms, SmsResponse, TerminalRefreshSessionFailureReason, Totp, TotpResponse, TotpWithSecrets, TotpWithSecretsResponse, TypedEvaluationContext, UnauthorizedException, UnknownEvent, UnprocessableEntityError, UnprocessableEntityException, UpdateApplicationOptions, UpdateAuthorizationResourceByExternalIdOptions, UpdateAuthorizationResourceOptions, UpdateCustomProviderDefinition, UpdateCustomProviderDefinitionAuthenticateVia, UpdateCustomProviderDefinitionResponse, UpdateDataIntegration, UpdateDataIntegrationApiKeyOptions, UpdateDataIntegrationOptions, UpdateDataIntegrationResponse, UpdateEnvironmentRoleOptions, UpdateGroup, UpdateGroupOptions, UpdateGroupResponse, UpdateOAuthApplication, UpdateOAuthApplicationResponse, UpdateObjectEntity, UpdateObjectOptions, UpdateObjectRequest, UpdateObjectRequestResponse, UpdateOrganizationMembershipOptions, UpdateOrganizationOptions, UpdateOrganizationRoleOptions, UpdatePermissionOptions, UpdateUserConnectedAccountOptions, UpdateUserOptions, UpdateUserPasswordOptions, UpdateWebhookEndpoint, UpdateWebhookEndpointEvents, UpdateWebhookEndpointResponse, UpdateWebhookEndpointStatus, User, UserApiKey, UserApiKeyWithValue, UserConsentOption, UserConsentOptionChoice, UserConsentOptionChoiceResponse, UserConsentOptionResponse, UserCreatedEvent, UserCreatedEventResponse, UserData, UserDataPayload, UserDeletedEvent, UserDeletedEventResponse, UserManagementAccessToken, UserManagementAuthorizationURLOptions, UserManagementLoginRequest, UserManagementLoginRequestResponse, UserObject, UserObjectResponse, UserOrganizationMembershipBaseListData, UserOrganizationMembershipBaseListDataResponse, UserOrganizationMembershipBaseListDataStatus, UserRegistrationActionPayload, UserRegistrationActionResponseData, UserResponse, UserUpdatedEvent, UserUpdatedEventResponse, ValidAgentCredential, ValidateAgentAccessTokenOptions, ValidateAgentApiKeyOptions, ValidateAgentCredentialOptions, ValidateApiKeyOptions, ValidateApiKeyResponse, VaultByokKeyVerificationCompletedEvent, VaultByokKeyVerificationCompletedEventResponse, VaultDataCreatedEvent, VaultDataCreatedEventResponse, VaultDataDeletedEvent, VaultDataDeletedEventResponse, VaultDataReadEvent, VaultDataReadEventResponse, VaultDataUpdatedEvent, VaultDataUpdatedEventResponse, VaultDekDecryptedEvent, VaultDekDecryptedEventResponse, VaultDekReadEvent, VaultDekReadEventResponse, VaultKekCreatedEvent, VaultKekCreatedEventResponse, VaultMetadataReadEvent, VaultMetadataReadEventResponse, VaultNamesListedEvent, VaultNamesListedEventResponse, VaultObject, VaultObjectResponse, VaultOrder, VerifyChallengeOptions, VerifyEmailOptions, VerifyResponse, VerifyResponseResponse, WebhookEndpoint, WebhookEndpointResponse, WebhookEndpointStatus, WidgetSessionTokenResponse, WidgetSessionTokenResponseWire, WidgetSessionTokenScopes, WithResolvedClientId, WorkOSNode as WorkOS, WorkOSErrorData, WorkOSOptions, WorkOSResponseError, createWorkOS, isAuthenticationErrorData, serializeRevokeSessionOptions };
478
478
  //# sourceMappingURL=index.d.cts.map