@workos-inc/node 10.2.1 → 10.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/{factory-C2wHWEA5.d.cts → factory-B85kMVYe.d.cts} +258 -6
- package/lib/{factory-C2wHWEA5.d.mts → factory-B85kMVYe.d.mts} +258 -6
- package/lib/{factory-Bp8G8dsp.mjs → factory-CRqtXIIK.mjs} +237 -13
- package/lib/factory-CRqtXIIK.mjs.map +1 -0
- package/lib/{factory-BzpScK-h.cjs → factory-CYqsa7gY.cjs} +238 -14
- package/lib/factory-CYqsa7gY.cjs.map +1 -0
- package/lib/index.cjs +1 -1
- package/lib/index.d.cts +2 -2
- package/lib/index.d.mts +2 -2
- package/lib/index.mjs +1 -1
- package/lib/index.worker.cjs +1 -1
- package/lib/index.worker.d.cts +2 -2
- package/lib/index.worker.d.mts +2 -2
- package/lib/index.worker.mjs +1 -1
- package/package.json +1 -4
- package/lib/factory-Bp8G8dsp.mjs.map +0 -1
- package/lib/factory-BzpScK-h.cjs.map +0 -1
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { EventEmitter } from "eventemitter3";
|
|
2
|
-
|
|
3
1
|
//#region src/common/crypto/crypto-provider.d.ts
|
|
4
2
|
/**
|
|
5
3
|
* Interface encapsulating the various crypto computations used by the library,
|
|
@@ -707,6 +705,129 @@ interface RemoveRoleAssignmentOptions {
|
|
|
707
705
|
roleAssignmentId: string;
|
|
708
706
|
}
|
|
709
707
|
//#endregion
|
|
708
|
+
//#region src/authorization/interfaces/group-role-assignment.interface.d.ts
|
|
709
|
+
interface GroupRoleAssignment {
|
|
710
|
+
/** Distinguishes the group role assignment object. */
|
|
711
|
+
object: 'group_role_assignment';
|
|
712
|
+
/** Unique identifier of the group role assignment. */
|
|
713
|
+
id: string;
|
|
714
|
+
/** The ID of the group the role is assigned to. */
|
|
715
|
+
groupId: string;
|
|
716
|
+
/** The role included in the assignment. */
|
|
717
|
+
role: RoleAssignmentRole;
|
|
718
|
+
/** The resource the role is assigned on. */
|
|
719
|
+
resource: RoleAssignmentResource;
|
|
720
|
+
/** An ISO 8601 timestamp. */
|
|
721
|
+
createdAt: string;
|
|
722
|
+
/** An ISO 8601 timestamp. */
|
|
723
|
+
updatedAt: string;
|
|
724
|
+
}
|
|
725
|
+
interface GroupRoleAssignmentResponse {
|
|
726
|
+
object: 'group_role_assignment';
|
|
727
|
+
id: string;
|
|
728
|
+
group_id: string;
|
|
729
|
+
role: RoleAssignmentRole;
|
|
730
|
+
resource: RoleAssignmentResourceResponse;
|
|
731
|
+
created_at: string;
|
|
732
|
+
updated_at: string;
|
|
733
|
+
}
|
|
734
|
+
//#endregion
|
|
735
|
+
//#region src/authorization/interfaces/list-group-role-assignments-options.interface.d.ts
|
|
736
|
+
interface ListGroupRoleAssignmentsOptions extends PaginationOptions {
|
|
737
|
+
/** The ID of the group. */
|
|
738
|
+
groupId: string;
|
|
739
|
+
}
|
|
740
|
+
//#endregion
|
|
741
|
+
//#region src/authorization/interfaces/get-group-role-assignment-options.interface.d.ts
|
|
742
|
+
interface GetGroupRoleAssignmentOptions {
|
|
743
|
+
/** The ID of the group. */
|
|
744
|
+
groupId: string;
|
|
745
|
+
/** The ID of the group role assignment. */
|
|
746
|
+
roleAssignmentId: string;
|
|
747
|
+
}
|
|
748
|
+
//#endregion
|
|
749
|
+
//#region src/authorization/interfaces/create-group-role-assignment-options.interface.d.ts
|
|
750
|
+
interface BaseCreateGroupRoleAssignmentOptions {
|
|
751
|
+
groupId: string;
|
|
752
|
+
roleSlug: string;
|
|
753
|
+
}
|
|
754
|
+
type CreateGroupRoleAssignmentOptionsForOrganization = BaseCreateGroupRoleAssignmentOptions;
|
|
755
|
+
interface CreateGroupRoleAssignmentOptionsWithResourceId extends BaseCreateGroupRoleAssignmentOptions, AuthorizationResourceIdentifierById {}
|
|
756
|
+
interface CreateGroupRoleAssignmentOptionsWithResourceExternalId extends BaseCreateGroupRoleAssignmentOptions, AuthorizationResourceIdentifierByExternalId {}
|
|
757
|
+
/**
|
|
758
|
+
* Omit the resource fields entirely to assign the role on the organization
|
|
759
|
+
* itself. Otherwise provide either `resourceId` or both `resourceExternalId`
|
|
760
|
+
* and `resourceTypeSlug`.
|
|
761
|
+
*/
|
|
762
|
+
type CreateGroupRoleAssignmentOptions = CreateGroupRoleAssignmentOptionsForOrganization | CreateGroupRoleAssignmentOptionsWithResourceId | CreateGroupRoleAssignmentOptionsWithResourceExternalId;
|
|
763
|
+
interface SerializedCreateGroupRoleAssignmentOptions {
|
|
764
|
+
role_slug: string;
|
|
765
|
+
resource_id?: string;
|
|
766
|
+
resource_external_id?: string;
|
|
767
|
+
resource_type_slug?: string;
|
|
768
|
+
}
|
|
769
|
+
//#endregion
|
|
770
|
+
//#region src/authorization/interfaces/remove-group-role-assignment-options.interface.d.ts
|
|
771
|
+
interface RemoveGroupRoleAssignmentOptions {
|
|
772
|
+
/** The ID of the group. */
|
|
773
|
+
groupId: string;
|
|
774
|
+
/** The ID of the group role assignment to remove. */
|
|
775
|
+
roleAssignmentId: string;
|
|
776
|
+
}
|
|
777
|
+
//#endregion
|
|
778
|
+
//#region src/authorization/interfaces/remove-group-role-assignments-options.interface.d.ts
|
|
779
|
+
interface BaseRemoveGroupRoleAssignmentsOptions {
|
|
780
|
+
groupId: string;
|
|
781
|
+
roleSlug: string;
|
|
782
|
+
}
|
|
783
|
+
type RemoveGroupRoleAssignmentsOptionsForOrganization = BaseRemoveGroupRoleAssignmentsOptions;
|
|
784
|
+
interface RemoveGroupRoleAssignmentsOptionsWithResourceId extends BaseRemoveGroupRoleAssignmentsOptions, AuthorizationResourceIdentifierById {}
|
|
785
|
+
interface RemoveGroupRoleAssignmentsOptionsWithResourceExternalId extends BaseRemoveGroupRoleAssignmentsOptions, AuthorizationResourceIdentifierByExternalId {}
|
|
786
|
+
/**
|
|
787
|
+
* Omit the resource fields entirely to remove the role assignment on the
|
|
788
|
+
* organization itself. Otherwise provide either `resourceId` or both
|
|
789
|
+
* `resourceExternalId` and `resourceTypeSlug`.
|
|
790
|
+
*/
|
|
791
|
+
type RemoveGroupRoleAssignmentsOptions = RemoveGroupRoleAssignmentsOptionsForOrganization | RemoveGroupRoleAssignmentsOptionsWithResourceId | RemoveGroupRoleAssignmentsOptionsWithResourceExternalId;
|
|
792
|
+
interface SerializedRemoveGroupRoleAssignmentsOptions {
|
|
793
|
+
role_slug: string;
|
|
794
|
+
resource_id?: string;
|
|
795
|
+
resource_external_id?: string;
|
|
796
|
+
resource_type_slug?: string;
|
|
797
|
+
}
|
|
798
|
+
//#endregion
|
|
799
|
+
//#region src/authorization/interfaces/replace-group-role-assignments-options.interface.d.ts
|
|
800
|
+
interface BaseGroupRoleAssignmentEntry {
|
|
801
|
+
roleSlug: string;
|
|
802
|
+
}
|
|
803
|
+
type GroupRoleAssignmentEntryForOrganization = BaseGroupRoleAssignmentEntry;
|
|
804
|
+
interface GroupRoleAssignmentEntryWithResourceId extends BaseGroupRoleAssignmentEntry, AuthorizationResourceIdentifierById {}
|
|
805
|
+
interface GroupRoleAssignmentEntryWithResourceExternalId extends BaseGroupRoleAssignmentEntry, AuthorizationResourceIdentifierByExternalId {}
|
|
806
|
+
/**
|
|
807
|
+
* Omit the resource fields entirely to assign the role on the organization
|
|
808
|
+
* itself. Otherwise provide either `resourceId` or both `resourceExternalId`
|
|
809
|
+
* and `resourceTypeSlug`.
|
|
810
|
+
*/
|
|
811
|
+
type GroupRoleAssignmentEntry = GroupRoleAssignmentEntryForOrganization | GroupRoleAssignmentEntryWithResourceId | GroupRoleAssignmentEntryWithResourceExternalId;
|
|
812
|
+
interface ReplaceGroupRoleAssignmentsOptions {
|
|
813
|
+
groupId: string;
|
|
814
|
+
/**
|
|
815
|
+
* The complete list of role assignments that should exist for the group.
|
|
816
|
+
* Existing assignments absent from this list are removed; pass an empty
|
|
817
|
+
* array to clear all assignments. At most 100 entries.
|
|
818
|
+
*/
|
|
819
|
+
roleAssignments: GroupRoleAssignmentEntry[];
|
|
820
|
+
}
|
|
821
|
+
interface SerializedGroupRoleAssignmentEntry {
|
|
822
|
+
role_slug: string;
|
|
823
|
+
resource_id?: string;
|
|
824
|
+
resource_external_id?: string;
|
|
825
|
+
resource_type_slug?: string;
|
|
826
|
+
}
|
|
827
|
+
interface SerializedReplaceGroupRoleAssignmentsOptions {
|
|
828
|
+
role_assignments: SerializedGroupRoleAssignmentEntry[];
|
|
829
|
+
}
|
|
830
|
+
//#endregion
|
|
710
831
|
//#region src/authorization/interfaces/list-effective-permissions-options.interface.d.ts
|
|
711
832
|
interface ListEffectivePermissionsOptions extends PaginationOptions {
|
|
712
833
|
organizationMembershipId: string;
|
|
@@ -1542,6 +1663,7 @@ interface UserManagementAuthorizationURLBaseOptions {
|
|
|
1542
1663
|
connectionId?: string;
|
|
1543
1664
|
organizationId?: string;
|
|
1544
1665
|
domainHint?: string;
|
|
1666
|
+
invitationToken?: string;
|
|
1545
1667
|
loginHint?: string;
|
|
1546
1668
|
provider?: string;
|
|
1547
1669
|
providerQueryParams?: Record<string, string | boolean | number>;
|
|
@@ -2410,6 +2532,13 @@ interface FlagPollEntry {
|
|
|
2410
2532
|
}
|
|
2411
2533
|
type FlagPollResponse = Record<string, FlagPollEntry>;
|
|
2412
2534
|
//#endregion
|
|
2535
|
+
//#region src/feature-flags/interfaces/flag-change.interface.d.ts
|
|
2536
|
+
interface FlagChange {
|
|
2537
|
+
key: string;
|
|
2538
|
+
previous: FlagPollEntry | null;
|
|
2539
|
+
current: FlagPollEntry | null;
|
|
2540
|
+
}
|
|
2541
|
+
//#endregion
|
|
2413
2542
|
//#region src/feature-flags/interfaces/list-feature-flags-options.interface.d.ts
|
|
2414
2543
|
type ListFeatureFlagsOptions = PaginationOptions;
|
|
2415
2544
|
//#endregion
|
|
@@ -6236,8 +6365,43 @@ declare class UserManagement {
|
|
|
6236
6365
|
getJwksUrl(clientId: string): string;
|
|
6237
6366
|
}
|
|
6238
6367
|
//#endregion
|
|
6368
|
+
//#region src/feature-flags/event-emitter.d.ts
|
|
6369
|
+
type Listener<Args extends unknown[]> = (...args: Args) => void;
|
|
6370
|
+
/**
|
|
6371
|
+
* Minimal, runtime-agnostic, typed event emitter.
|
|
6372
|
+
*
|
|
6373
|
+
* Replaces eventemitter3 so the SDK carries no event dependency and works in
|
|
6374
|
+
* edge runtimes where `node:events` is not available. Generic over an event
|
|
6375
|
+
* map (`{ eventName: [arg1, arg2, ...] }`) for compile-time-checked event
|
|
6376
|
+
* names and payloads.
|
|
6377
|
+
*
|
|
6378
|
+
* Unlike eventemitter3, an unhandled `'error'` event throws instead of being
|
|
6379
|
+
* silently dropped — matching Node's `EventEmitter` so failures are never
|
|
6380
|
+
* swallowed.
|
|
6381
|
+
*/
|
|
6382
|
+
declare class EventEmitter<Events extends Record<keyof Events, unknown[]>> {
|
|
6383
|
+
private handlers;
|
|
6384
|
+
on<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6385
|
+
once<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6386
|
+
off<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6387
|
+
emit<E extends keyof Events>(event: E, ...args: Events[E]): boolean;
|
|
6388
|
+
listenerCount(event: keyof Events): number;
|
|
6389
|
+
removeAllListeners(event?: keyof Events): this;
|
|
6390
|
+
addListener<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6391
|
+
removeListener<E extends keyof Events>(event: E, fn: Listener<Events[E]>): this;
|
|
6392
|
+
listeners<E extends keyof Events>(event: E): Array<Listener<Events[E]>>;
|
|
6393
|
+
eventNames(): Array<keyof Events>;
|
|
6394
|
+
private add;
|
|
6395
|
+
private remove;
|
|
6396
|
+
}
|
|
6397
|
+
//#endregion
|
|
6239
6398
|
//#region src/feature-flags/runtime-client.d.ts
|
|
6240
|
-
|
|
6399
|
+
interface RuntimeClientEvents {
|
|
6400
|
+
change: [FlagChange];
|
|
6401
|
+
error: [Error];
|
|
6402
|
+
failed: [Error];
|
|
6403
|
+
}
|
|
6404
|
+
declare class FeatureFlagsRuntimeClient extends EventEmitter<RuntimeClientEvents> {
|
|
6241
6405
|
private readonly workos;
|
|
6242
6406
|
private readonly store;
|
|
6243
6407
|
private readonly evaluator;
|
|
@@ -6257,7 +6421,6 @@ declare class FeatureFlagsRuntimeClient extends EventEmitter {
|
|
|
6257
6421
|
waitUntilReady(options?: {
|
|
6258
6422
|
timeoutMs?: number;
|
|
6259
6423
|
}): Promise<void>;
|
|
6260
|
-
emit(event: string | symbol, ...args: unknown[]): boolean;
|
|
6261
6424
|
close(): void;
|
|
6262
6425
|
isEnabled(flagKey: string, context?: EvaluationContext, defaultValue?: boolean): boolean;
|
|
6263
6426
|
getAllFlags(context?: EvaluationContext): Record<string, boolean>;
|
|
@@ -7112,6 +7275,95 @@ declare class Authorization {
|
|
|
7112
7275
|
* @throws {NotFoundException} 404
|
|
7113
7276
|
*/
|
|
7114
7277
|
removeRoleAssignment(options: RemoveRoleAssignmentOptions): Promise<void>;
|
|
7278
|
+
/**
|
|
7279
|
+
* List role assignments for a group
|
|
7280
|
+
*
|
|
7281
|
+
* List all role assignments granted to a group. Each assignment represents a role granted to the group on a resource.
|
|
7282
|
+
* @param options - Pagination options.
|
|
7283
|
+
* @param options.groupId - The ID of the group.
|
|
7284
|
+
*
|
|
7285
|
+
* @example
|
|
7286
|
+
* "group_01HXYZ123456789ABCDEFGHIJ"
|
|
7287
|
+
*
|
|
7288
|
+
* @returns {Promise<AutoPaginatable<GroupRoleAssignment>>}
|
|
7289
|
+
* @throws 403 response from the API.
|
|
7290
|
+
* @throws {NotFoundException} 404
|
|
7291
|
+
*/
|
|
7292
|
+
listGroupRoleAssignments(options: ListGroupRoleAssignmentsOptions): Promise<AutoPaginatable<GroupRoleAssignment>>;
|
|
7293
|
+
/**
|
|
7294
|
+
* Get a group role assignment
|
|
7295
|
+
*
|
|
7296
|
+
* Get a specific role assignment for a group by its ID.
|
|
7297
|
+
* @param options - Object containing groupId and roleAssignmentId.
|
|
7298
|
+
* @param options.groupId - The ID of the group.
|
|
7299
|
+
*
|
|
7300
|
+
* @example
|
|
7301
|
+
* "group_01HXYZ123456789ABCDEFGHIJ"
|
|
7302
|
+
*
|
|
7303
|
+
* @param options.roleAssignmentId - The ID of the group role assignment.
|
|
7304
|
+
*
|
|
7305
|
+
* @example
|
|
7306
|
+
* "gra_01HXYZ123456789ABCDEFGH"
|
|
7307
|
+
*
|
|
7308
|
+
* @returns {Promise<GroupRoleAssignment>}
|
|
7309
|
+
* @throws 403 response from the API.
|
|
7310
|
+
* @throws {NotFoundException} 404
|
|
7311
|
+
*/
|
|
7312
|
+
getGroupRoleAssignment(options: GetGroupRoleAssignmentOptions): Promise<GroupRoleAssignment>;
|
|
7313
|
+
/**
|
|
7314
|
+
* Assign a role to a group
|
|
7315
|
+
*
|
|
7316
|
+
* Assign a role to a group on a specific resource. Omit the resource fields to assign the role on the organization itself.
|
|
7317
|
+
* @param options - Object containing groupId and roleSlug.
|
|
7318
|
+
* @returns {Promise<GroupRoleAssignment>}
|
|
7319
|
+
* @throws 403 response from the API.
|
|
7320
|
+
* @throws {NotFoundException} 404
|
|
7321
|
+
* @throws {ConflictException} 409
|
|
7322
|
+
* @throws {UnprocessableEntityException} 422
|
|
7323
|
+
*/
|
|
7324
|
+
createGroupRoleAssignment(options: CreateGroupRoleAssignmentOptions): Promise<GroupRoleAssignment>;
|
|
7325
|
+
/**
|
|
7326
|
+
* Remove a group role assignment
|
|
7327
|
+
*
|
|
7328
|
+
* Remove a specific role assignment from a group by its ID.
|
|
7329
|
+
* @param options - Object containing groupId and roleAssignmentId.
|
|
7330
|
+
* @param options.groupId - The ID of the group.
|
|
7331
|
+
*
|
|
7332
|
+
* @example
|
|
7333
|
+
* "group_01HXYZ123456789ABCDEFGHIJ"
|
|
7334
|
+
*
|
|
7335
|
+
* @param options.roleAssignmentId - The ID of the group role assignment to remove.
|
|
7336
|
+
*
|
|
7337
|
+
* @example
|
|
7338
|
+
* "gra_01HXYZ123456789ABCDEFGH"
|
|
7339
|
+
*
|
|
7340
|
+
* @returns {Promise<void>}
|
|
7341
|
+
* @throws 403 response from the API.
|
|
7342
|
+
* @throws {NotFoundException} 404
|
|
7343
|
+
*/
|
|
7344
|
+
removeGroupRoleAssignment(options: RemoveGroupRoleAssignmentOptions): Promise<void>;
|
|
7345
|
+
/**
|
|
7346
|
+
* Remove group role assignments by criteria
|
|
7347
|
+
*
|
|
7348
|
+
* Remove role assignments from a group that match the provided role and resource. Omit the resource fields to target the organization itself.
|
|
7349
|
+
* @param options - Object containing groupId and roleSlug.
|
|
7350
|
+
* @returns {Promise<void>}
|
|
7351
|
+
* @throws 403 response from the API.
|
|
7352
|
+
* @throws {NotFoundException} 404
|
|
7353
|
+
* @throws {UnprocessableEntityException} 422
|
|
7354
|
+
*/
|
|
7355
|
+
removeGroupRoleAssignments(options: RemoveGroupRoleAssignmentsOptions): Promise<void>;
|
|
7356
|
+
/**
|
|
7357
|
+
* Replace role assignments for a group
|
|
7358
|
+
*
|
|
7359
|
+
* Replace all of a group's role assignments with the provided list. Assignments not present in the list are removed and new ones are created. Pass an empty `roleAssignments` array to clear all assignments. Returns the resulting set of assignments.
|
|
7360
|
+
* @param options - Object containing groupId and roleAssignments.
|
|
7361
|
+
* @returns {Promise<List<GroupRoleAssignment>>}
|
|
7362
|
+
* @throws 403 response from the API.
|
|
7363
|
+
* @throws {NotFoundException} 404
|
|
7364
|
+
* @throws {UnprocessableEntityException} 422
|
|
7365
|
+
*/
|
|
7366
|
+
replaceGroupRoleAssignments(options: ReplaceGroupRoleAssignmentsOptions): Promise<List<GroupRoleAssignment>>;
|
|
7115
7367
|
/**
|
|
7116
7368
|
* List resources for organization membership
|
|
7117
7369
|
*
|
|
@@ -8311,5 +8563,5 @@ interface ConfidentialClientOptions extends WorkOSOptions {
|
|
|
8311
8563
|
declare function createWorkOS(options: PublicClientOptions): PublicWorkOS;
|
|
8312
8564
|
declare function createWorkOS(options: ConfidentialClientOptions): WorkOS;
|
|
8313
8565
|
//#endregion
|
|
8314
|
-
export { ReadObjectMetadataResponse as $, PermissionUpdatedEventResponse as $a, PKCEAuthorizationURLResult as $c, UpdateEnvironmentRoleOptions as $d, GroupMemberAddedEventResponse as $i, AuthenticateWithEmailVerificationOptions as $l, AutoPaginatable as $n, RuntimeClientStats as $o, AuthenticationPasswordFailedEventResponse as $r, SerializedResetPasswordOptions as $s, RadarStandaloneAssessRequestAction as $t, SerializedAssignRoleOptions as $u, ApiKeyRequiredException as A, OrganizationMembershipCreated as Aa, ListInvitationsOptions as Ac, CreateOptionsWithParentExternalId as Ad, DsyncUserDeletedEvent as Ai, Impersonator as Al, ExternalAuthCompleteResponse as An, VaultDekReadEventResponse as Ao, GetOptions as Ar, SerializedVerifyEmailOptions as As, SerializedAuditLogExportOptions as At, DirectoryUserWithGroups as Au, ObjectSummaryResponse as B, OrganizationRoleUpdatedEvent as Ba, SerializedEnrollUserInMfaFactorOptions as Bc, Permission as Bd, FlagCreatedEvent as Bi, AuthenticateUserWithOrganizationSelectionCredentials as Bl, CreateM2MApplicationResponse as Bn, SerializedUpdateGroupOptions as Bo, AuthenticationMagicAuthSucceededEvent as Br, SessionResponse as Bs, EnrollFactorOptions as Bt, RoleResponse as Bu, BadRequestException as C, OrganizationDomainDeletedEventResponse as Ca, AuthorizationOrganizationMembership as Cc, UpdateAuthorizationResourceByExternalIdOptions as Cd, RequestHeaders as Cf, DsyncGroupUpdatedEventResponse as Ci, UserManagementAccessToken as Cl, ConnectApplicationM2M as Cn, VaultDataReadEvent as Co, WorkOSOptions as Cr, OrganizationDomainVerificationFailedResponse as Cs, AuditLogSchema as Ct, ConnectionResponse as Cu, isAuthenticationErrorData as D, OrganizationDomainVerificationFailedEventResponse as Da, OrganizationMembership as Dc, AuthorizationResource as Dd, CryptoProvider as Df, DsyncGroupUserRemovedEventResponse as Di, CreateUserResponseResponse as Dl, ConnectApplicationResponse as Dn, VaultDekDecryptedEvent as Do, PatchOptions as Dr, OrganizationDomainVerificationStrategy as Ds, AuditLogExport as Dt, DefaultCustomAttributes as Du, AuthenticationException as E, OrganizationDomainVerificationFailedEvent as Ea, BaseOrganizationMembershipResponse as Ec, SerializedListAuthorizationResourcesOptions as Ed, ResponseHeaders as Ef, DsyncGroupUserRemovedEvent as Ei, CreateUserResponse as El, ConnectApplicationOAuthResponse as En, VaultDataUpdatedEventResponse as Eo, PostOptions as Er, OrganizationDomainState as Es, AuditLogTargetSchema as Et, SSOPKCEAuthorizationURLResult as Eu, UpdateWebhookEndpointEvents as F, OrganizationMembershipUpdatedResponse as Fa, InvitationEvent as Fc, ListPermissionsOptions as Fd, EmailVerificationCreatedEventResponse as Fi, AuthenticateWithRefreshTokenOptions as Fl, DeleteApplicationOptions as Fn, VaultNamesListedEvent as Fo, ApiKeyRevokedEventResponse as Fr, UpdateUserOptions as Fs, FactorResponse as Ft, OrganizationRoleResponse as Fu, ObjectMetadata as G, PasswordResetCreatedEventResponse as Ga, CreateUserOptions as Gc, SerializedUpdateOrganizationRoleOptions as Gd, FlagRuleUpdatedEventResponse as Gi, SerializedAuthenticateWithRadarSmsChallengeOptions as Gl, ListApplicationsOptions as Gn, Group as Go, AuthenticationOAuthFailedEventResponse as Gr, SendRadarSmsChallengeResponseResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, RemoveRoleOptions as Gu, ObjectVersionResponse as H, OrganizationUpdatedEvent as Ha, EmailVerificationEvent as Hc, RemoveOrganizationRolePermissionOptions as Hd, FlagDeletedEvent as Hi, SerializedAuthenticateWithOrganizationSelectionOptions as Hl, CreateOAuthApplicationResponse as Hn, RemoveGroupOrganizationMembershipOptions as Ho, AuthenticationMfaSucceededEvent as Hr, SendVerificationEmailOptions as Hs, ChallengeResponse as Ht, ListEffectivePermissionsOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationRoleCreatedEvent as Ia, InvitationEventResponse as Ic, SerializedUpdatePermissionOptions as Id, Event as Ii, SerializedAuthenticateWithRefreshTokenOptions as Il, UpdateApplicationOptions as In, VaultNamesListedEventResponse as Io, AuthenticationEmailVerificationSucceededEvent as Ir, SerializedUpdateOrganizationMembershipOptions as Is, FactorWithSecrets as It, Role as Iu, ActorResponse as J, PermissionCreatedEvent as Ja, SerializedCreatePasswordResetOptions as Jc, SerializedCreateOrganizationRoleOptions as Jd, GroupCreatedEvent as Ji, SerializedAuthenticateWithRadarEmailChallengeOptions as Jl, UserConsentOptionResponse as Jn, DeleteGroupOptions as Jo, AuthenticationPasskeyFailedEvent as Jr, SerializedSendInvitationOptions as Js, RadarStandaloneResponseBlocklistType as Jt, SerializedRemoveRoleOptions as Ju, ObjectMetadataResponse as K, PasswordResetSucceededEvent as Ka, SerializedCreateUserOptions as Kc, UpdateOrganizationRoleOptions as Kd, FlagUpdatedEvent as Ki, AuthenticateUserWithRadarEmailChallengeCredentials as Kl, CompleteOAuth2Options as Kn, GroupResponse as Ko, AuthenticationOAuthSucceededEvent as Kr, SerializedSendRadarSmsChallengeOptions as Ks, RadarStandaloneResponse as Kt, RemoveRoleOptionsWithResourceExternalId as Ku, CreateWebhookEndpointEvents as L, OrganizationRoleCreatedEventResponse as La, InvitationResponse as Lc, UpdatePermissionOptions as Ld, EventBase as Li, AuthenticateUserWithPasswordCredentials as Ll, GetApplicationOptions as Ln, DataKey as Lo, AuthenticationEmailVerificationSucceededEventResponse as Lr, UpdateOrganizationMembershipOptions as Ls, FactorWithSecretsResponse as Lt, RoleEvent as Lu, WebhookEndpoint as M, OrganizationMembershipDeleted as Ma, ListGroupsForOrganizationMembershipOptions as Mc, SerializedCreateAuthorizationResourceOptions as Md, DsyncUserUpdatedEvent as Mi, AuthenticateWithRefreshTokenPublicClientOptions as Ml, DeleteClientSecretOptions as Mn, VaultKekCreatedEventResponse as Mo, ApiKeyCreatedEvent as Mr, SerializedUpdateUserPasswordOptions as Ms, VerifyResponseResponse as Mt, ListOrganizationRolesResponse as Mu, WebhookEndpointResponse as N, OrganizationMembershipDeletedResponse as Na, ListAuthFactorsOptions as Nc, SerializedUpdateAuthorizationResourceOptions as Nd, DsyncUserUpdatedEventResponse as Ni, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Nl, CreateApplicationClientSecretOptions as Nn, VaultMetadataReadEvent as No, ApiKeyCreatedEventResponse as Nr, UpdateUserPasswordOptions as Ns, VerifyChallengeOptions as Nt, OrganizationRoleEvent as Nu, GenericServerException as O, OrganizationDomainVerifiedEvent as Oa, OrganizationMembershipResponse as Oc, AuthorizationResourceResponse as Od, DsyncUserCreatedEvent as Oi, User as Ol, ConnectApplicationRedirectUri as On, VaultDekDecryptedEventResponse as Oo, List as Or, CreateOrganizationDomainOptions as Os, AuditLogExportResponse as Ot, DirectoryUser as Ou, WebhookEndpointStatus as P, OrganizationMembershipUpdated as Pa, Invitation as Pc, UpdateAuthorizationResourceOptions as Pd, EmailVerificationCreatedEvent as Pi, AuthenticateUserWithRefreshTokenCredentials as Pl, ListApplicationClientSecretsOptions as Pn, VaultMetadataReadEventResponse as Po, ApiKeyRevokedEvent as Pr, SerializedUpdateUserOptions as Ps, Factor as Pt, OrganizationRoleEventResponse as Pu, UpdateObjectOptions as Q, PermissionUpdatedEvent as Qa, SerializedCreateMagicAuthOptions as Qc, SerializedUpdateEnvironmentRoleOptions as Qd, GroupMemberAddedEvent as Qi, AuthenticateUserWithEmailVerificationCredentials as Ql, UserObjectResponse as Qn, SerializedAddGroupOrganizationMembershipOptions as Qo, AuthenticationPasswordFailedEvent as Qr, ResetPasswordOptions as Qs, RadarListType as Qt, BaseAssignRoleOptions as Qu, WorkOS as R, OrganizationRoleDeletedEvent as Ra, Identity as Rc, CreatePermissionOptions as Rd, EventName as Ri, AuthenticateWithPasswordOptions as Rl, CreateApplicationOptions as Rn, DataKeyPair as Ro, AuthenticationMagicAuthFailedEvent as Rr, AuthMethod as Rs, Sms as Rt, RoleEventResponse as Ru, ConflictException as S, OrganizationDomainDeletedEvent as Sa, SerializedListOrganizationMembershipsOptions as Sc, DeleteAuthorizationResourceByExternalIdOptions as Sd, HttpClientResponseInterface as Sf, DsyncGroupUpdatedEvent as Si, SessionCookieData as Sl, ConnectApplication as Sn, VaultDataDeletedEventResponse as So, WorkOSResponseError as Sr, OrganizationDomainVerificationFailed as Ss, AuditLogActorSchema as St, ConnectionDomain as Su, AuthenticationErrorData as T, OrganizationDomainUpdatedEventResponse as Ta, BaseOrganizationMembership as Tc, ListAuthorizationResourcesOptions as Td, ResponseHeaderValue as Tf, DsyncGroupUserAddedEventResponse as Ti, AuthenticationResponseResponse as Tl, ConnectApplicationOAuth as Tn, VaultDataUpdatedEvent as To, PutOptions as Tr, OrganizationDomainResponse as Ts, AuditLogSchemaResponse as Tt, SSOAuthorizationURLOptions as Tu, VaultObject as U, OrganizationUpdatedResponse as Ua, EmailVerificationEventResponse as Uc, AddOrganizationRolePermissionOptions as Ud, FlagDeletedEventResponse as Ui, AuthenticateUserWithRadarSmsChallengeCredentials as Ul, RedirectUriInput as Un, ListGroupsOptions as Uo, AuthenticationMfaSucceededEventResponse as Ur, SendRadarSmsChallengeOptions as Us, ChallengeFactorOptions as Ut, RemoveRoleAssignmentOptions as Uu, ObjectVersion as V, OrganizationRoleUpdatedEventResponse as Va, EmailVerification as Vc, PermissionResponse as Vd, FlagCreatedEventResponse as Vi, AuthenticateWithOrganizationSelectionOptions as Vl, CreateOAuthApplication as Vn, UpdateGroupOptions as Vo, AuthenticationMagicAuthSucceededEventResponse as Vr, SessionStatus as Vs, Challenge as Vt, ListEffectivePermissionsByExternalIdOptions as Vu, VaultObjectResponse as W, PasswordResetCreatedEvent as Wa, EmailVerificationResponse as Wc, SetOrganizationRolePermissionsOptions as Wd, FlagRuleUpdatedEvent as Wi, AuthenticateWithRadarSmsChallengeOptions as Wl, RedirectUriInputResponse as Wn, ListGroupOrganizationMembershipsOptions as Wo, AuthenticationOAuthFailedEvent as Wr, SendRadarSmsChallengeResponse as Ws, RadarListEntryAlreadyPresentResponse as Wt, BaseRemoveRoleOptions as Wu, CreateDataKeyResponseWire as X, PermissionDeletedEvent as Xa, SerializedCreateOrganizationMembershipOptions as Xc, AddEnvironmentRolePermissionOptions as Xd, GroupDeletedEvent as Xi, AuthenticateWithMagicAuthOptions as Xl, UserConsentOptionChoiceResponse as Xn, SerializedCreateGroupOptions as Xo, AuthenticationPasskeySucceededEvent as Xr, SerializedRevokeSessionOptions as Xs, RadarStandaloneResponseVerdict as Xt, AssignRoleOptionsWithResourceExternalId as Xu, CreateDataKeyResponse as Y, PermissionCreatedEventResponse as Ya, CreateOrganizationMembershipOptions as Yc, OrganizationRole as Yd, GroupCreatedEventResponse as Yi, AuthenticateUserWithMagicAuthCredentials as Yl, UserConsentOptionChoice as Yn, CreateGroupOptions as Yo, AuthenticationPasskeyFailedEventResponse as Yr, RevokeSessionOptions as Ys, RadarStandaloneResponseControl as Yt, AssignRoleOptions as Yu, UpdateObjectEntity as Z, PermissionDeletedEventResponse as Za, CreateMagicAuthOptions as Zc, SetEnvironmentRolePermissionsOptions as Zd, GroupDeletedEventResponse as Zi, SerializedAuthenticateWithMagicAuthOptions as Zl, UserObject as Zn, AddGroupOrganizationMembershipOptions as Zo, AuthenticationPasskeySucceededEventResponse as Zr, serializeRevokeSessionOptions as Zs, RadarListAction as Zt, AssignRoleOptionsWithResourceId as Zu, SignatureVerificationException as _, OrganizationCreatedResponse as _a, SerializedListUsersOptions as _c, AuthorizationCheckOptionsWithResourceExternalId as _d, DirectoryType as _f, DsyncDeletedEventResponse as _i, SerializedAuthenticateWithTotpOptions as _l, SerializedListEventOptions as _n, VaultByokKeyVerificationCompletedEvent as _o, CreateOrganizationOptions as _r, CreateOrganizationApiKeyOptions as _s, AuditLogActor as _t, ListConnectionsOptions as _u, PublicWorkOS as a, GroupUpdatedEventResponse as aa, PasswordResetEvent as ac, RoleAssignment as ad, EnvironmentRoleResponse as af, AuthenticationSSOFailedEventResponse as ai, AuthenticationFactorWithSecrets as al, SerializedGetAccessTokenFailureResponse as an, RoleUpdatedEventResponse as ao, UserRegistrationActionResponseData as ar, FlagPollResponse as as, DecryptDataKeyResponse as at, SerializedAuthenticateWithCodeOptions as au, NotFoundException as b, OrganizationDomainCreatedEvent as ba, SerializedListSessionsOptions as bc, SerializedAuthorizationCheckOptions as bd, HttpClient as bf, DsyncGroupDeletedEvent as bi, AuthenticateWithSessionCookieOptions as bl, ApplicationCredentialsListItem as bn, VaultDataCreatedEventResponse as bo, DomainData as br, ApiKey as bs, CreateAuditLogEventRequestOptions as bt, GetProfileOptions as bu, PortalLinkResponseWire as c, InvitationCreatedEvent as ca, CreateMagicAuthResponse as cc, RoleAssignmentResponse as cd, ListDirectoriesOptions as cf, ConnectionActivatedEvent as ci, TotpResponse as cl, SerializedGetAccessTokenSuccessResponse as cn, SessionRevokedEvent as co, UserData as cr, FeatureFlagResponse as cs, WidgetSessionTokenResponseWire as ct, SerializedAuthenticatePublicClientBase as cu, IntentOptions as d, InvitationResentEventResponse as da, MagicAuthEvent as dc, ListMembershipsForResourceOptions as dd, DirectoryGroup as df, ConnectionDeactivatedEventResponse as di, AuthenticationEvent as dl, SendSessionResponse as dn, UserCreatedEvent as do, SerializedUpdateOrganizationOptions as dr, SerializedValidateApiKeyResponse as ds, FeatureFlagsRuntimeClient as dt, ProfileAndToken as du, GroupMemberEventData as ea, ResendInvitationOptions as ec, ListRoleAssignmentsForResourceByExternalIdOptions as ed, CreateEnvironmentRoleOptions as ef, AuthenticationPasswordSucceededEvent as ei, UserManagementAuthorizationURLOptions as el, RadarStandaloneAssessRequestAuthMethod as en, RoleCreatedEvent as eo, PKCE as er, RuntimeClientLogger as es, ReadObjectOptions as et, SerializedAuthenticateWithEmailVerificationOptions as eu, IntentOptionsResponse as f, InvitationRevokedEvent as fa, MagicAuthEventResponse as fc, ListResourcesForMembershipOptions as fd, DirectoryGroupResponse as ff, ConnectionDeletedEvent as fi, AuthenticationEventResponse as fl, CreatePasswordlessSessionOptions as fn, UserCreatedEventResponse as fo, UpdateOrganizationOptions as fr, ValidateApiKeyOptions as fs, CookieSession as ft, ProfileAndTokenResponse as fu, UnauthorizedException as g, OrganizationCreatedEvent as ga, ListUsersOptions as gc, AuthorizationCheckOptions as gd, DirectoryStateResponse as gf, DsyncDeletedEvent as gi, AuthenticateWithTotpOptions as gl, ListEventOptions as gn, UserUpdatedEventResponse as go, ListOrganizationFeatureFlagsOptions as gr, SerializedCreatedApiKey as gs, SerializedCreateAuditLogSchemaOptions as gt, OauthTokensResponse as gu, UnprocessableEntityException as h, MagicAuthCreatedEventResponse as ha, Locale as hc, SerializedListResourcesForMembershipOptions as hd, DirectoryState as hf, DsyncActivatedEventResponse as hi, AuthenticateUserWithTotpCredentials as hl, PasswordlessSessionResponse as hn, UserUpdatedEvent as ho, ListOrganizationsOptions as hr, CreatedApiKey as hs, CreateAuditLogSchemaResponse as ht, OauthTokens as hu, PublicUserManagement as i, GroupUpdatedEvent as ia, PasswordReset as ic, SerializedListRoleAssignmentsOptions as id, EnvironmentRoleListResponse as if, AuthenticationSSOFailedEvent as ii, AuthenticationFactorResponse as il, GetAccessTokenSuccessResponse as in, RoleUpdatedEvent as io, ResponsePayload as ir, FlagPollEntry as is, DecryptDataKeyOptions as it, AuthenticateWithCodeOptions as iu, Webhooks as j, OrganizationMembershipCreatedResponse as ja, SerializedListInvitationsOptions as jc, CreateOptionsWithParentResourceId as jd, DsyncUserDeletedEventResponse as ji, ImpersonatorResponse as jl, ExternalAuthCompleteResponseWire as jn, VaultKekCreatedEvent as jo, GenerateLinkIntent as jr, VerifyEmailOptions as js, VerifyResponse as jt, DirectoryUserWithGroupsResponse as ju, WorkOSErrorData as k, OrganizationDomainVerifiedEventResponse as ka, OrganizationMembershipStatus as kc, CreateAuthorizationResourceOptions as kd, DsyncUserCreatedEventResponse as ki, UserResponse as kl, ConnectApplicationRedirectUriResponse as kn, VaultDekReadEvent as ko, ListResponse as kr, SerializedCreateOrganizationDomainOptions as ks, AuditLogExportOptions as kt, DirectoryUserResponse as ku, GenerateLink as l, InvitationCreatedEventResponse as la, CreateMagicAuthResponseResponse as lc, RoleAssignmentRole as ld, SerializedListDirectoriesOptions as lf, ConnectionActivatedEventResponse as li, TotpWithSecrets as ll, AccessToken as ln, SessionRevokedEventResponse as lo, UserDataPayload as lr, EvaluationContext as ls, CreateTokenOptions as lt, SerializedAuthenticateWithOptionsBase as lu, SSOIntentOptionsResponse as m, MagicAuthCreatedEvent as ma, LogoutURLOptions as mc, ListResourcesForMembershipOptionsWithParentId as md, DirectoryResponse as mf, DsyncActivatedEvent as mi, AuthenticationEventSsoResponse as ml, PasswordlessSession as mn, UserDeletedEventResponse as mo, OrganizationResponse as mr, ListOrganizationApiKeysOptions as ms, CreateAuditLogSchemaRequestOptions as mt, ProfileResponse as mu, PublicClientOptions as n, GroupMemberRemovedEvent as na, RefreshSessionFailureReason as nc, SerializedListRoleAssignmentsForResourceOptions as nd, EnvironmentRole as nf, AuthenticationRadarRiskDetectedEvent as ni, AuthenticationRadarRiskDetectedEventResponseData as nl, GetAccessTokenOptions as nn, RoleDeletedEvent as no, Actions as nr, RemoveFlagTargetOptions as ns, CreateObjectEntity as nt, SerializedAuthenticateWithCodeAndVerifierOptions as nu, createWorkOS as o, InvitationAcceptedEvent as oa, PasswordResetEventResponse as oc, RoleAssignmentResource as od, ListDirectoryUsersOptions as of, AuthenticationSSOSucceededEvent as oi, AuthenticationFactorWithSecretsResponse as ol, SerializedGetAccessTokenOptions as on, SessionCreatedEvent as oo, ActionContext as or, FlagTarget as os, CreateDataKeyOptions as ot, AuthenticateWithOptionsBase as ou, SSOIntentOptions as p, InvitationRevokedEventResponse as pa, MagicAuthResponse as pc, ListResourcesForMembershipOptionsWithParentExternalId as pd, Directory as pf, ConnectionDeletedEventResponse as pi, AuthenticationEventSso as pl, SerializedCreatePasswordlessSessionOptions as pn, UserDeletedEvent as po, Organization as pr, ValidateApiKeyResponse as ps, CreateAuditLogSchemaOptions as pt, Profile as pu, Actor as q, PasswordResetSucceededEventResponse as qa, CreatePasswordResetOptions as qc, CreateOrganizationRoleOptions as qd, FlagUpdatedEventResponse as qi, AuthenticateWithRadarEmailChallengeOptions as ql, UserConsentOption as qn, GetGroupOptions as qo, AuthenticationOAuthSucceededEventResponse as qr, SendInvitationOptions as qs, RadarStandaloneResponseWire as qt, RemoveRoleOptionsWithResourceId as qu, PublicSSO as r, GroupMemberRemovedEventResponse as ra, RefreshSessionResponse as rc, ListRoleAssignmentsOptions as rd, EnvironmentRoleList as rf, AuthenticationRadarRiskDetectedEventResponse as ri, AuthenticationFactor as rl, GetAccessTokenResponse as rn, RoleDeletedEventResponse as ro, AuthenticationActionResponseData as rr, ListFeatureFlagsOptions as rs, CreateObjectOptions as rt, AuthenticateUserWithCodeCredentials as ru, PortalLinkResponse as s, InvitationAcceptedEventResponse as sa, PasswordResetResponse as sc, RoleAssignmentResourceResponse as sd, ListDirectoryGroupsOptions as sf, AuthenticationSSOSucceededEventResponse as si, Totp as sl, SerializedGetAccessTokenResponse as sn, SessionCreatedEventResponse as so, ActionPayload as sr, FeatureFlag as ss, WidgetSessionTokenResponse as st, AuthenticateWithSessionOptions as su, ConfidentialClientOptions as t, GroupMemberEventResponseData as ta, SerializedResendInvitationOptions as tc, ListRoleAssignmentsForResourceOptions as td, SerializedCreateEnvironmentRoleOptions as tf, AuthenticationPasswordSucceededEventResponse as ti, AuthenticationRadarRiskDetectedEventData as tl, GetAccessTokenFailureResponse as tn, RoleCreatedEventResponse as to, PKCEPair as tr, RuntimeClientOptions as ts, ReadObjectResponse as tt, AuthenticateWithCodeAndVerifierOptions as tu, GenerateLinkResponse as u, InvitationResentEvent as ua, MagicAuth as uc, ListMembershipsForResourceByExternalIdOptions as ud, PaginationOptions as uf, ConnectionDeactivatedEvent as ui, TotpWithSecretsResponse as ul, SerializedAccessToken as un, UnknownEvent as uo, UserRegistrationActionPayload as ur, AddFlagTargetOptions as us, WidgetSessionTokenScopes as ut, WithResolvedClientId as uu, RateLimitExceededException as v, OrganizationDeletedEvent as va, ListUserFeatureFlagsOptions as vc, AuthorizationCheckOptionsWithResourceId as vd, EventDirectory as vf, DsyncGroupCreatedEvent as vi, AuthenticateWithSessionCookieFailedResponse as vl, NewConnectApplicationSecret as vn, VaultByokKeyVerificationCompletedEventResponse as vo, CreateOrganizationRequestOptions as vr, CreateOrganizationApiKeyRequestOptions as vs, AuditLogTarget as vt, SerializedListConnectionsOptions as vu, AuthenticationErrorCode as w, OrganizationDomainUpdatedEvent as wa, AuthorizationOrganizationMembershipResponse as wc, GetAuthorizationResourceByExternalIdOptions as wd, RequestOptions as wf, DsyncGroupUserAddedEvent as wi, AuthenticationResponse as wl, ConnectApplicationM2MResponse as wn, VaultDataReadEventResponse as wo, UnprocessableEntityError as wr, OrganizationDomain as ws, AuditLogSchemaMetadata as wt, ConnectionType as wu, NoApiKeyProvidedException as x, OrganizationDomainCreatedEventResponse as xa, ListOrganizationMembershipsOptions as xc, DeleteAuthorizationResourceOptions as xd, HttpClientInterface as xf, DsyncGroupDeletedEventResponse as xi, AuthenticateWithSessionCookieSuccessResponse as xl, ApplicationCredentialsListItemResponse as xn, VaultDataDeletedEvent as xo, DomainDataState as xr, SerializedApiKey as xs, SerializedCreateAuditLogEventOptions as xt, Connection as xu, OauthException as y, OrganizationDeletedResponse as ya, ListSessionsOptions as yc, AuthorizationCheckResult as yd, EventDirectoryResponse as yf, DsyncGroupCreatedEventResponse as yi, AuthenticateWithSessionCookieFailureReason as yl, NewConnectApplicationSecretResponse as yn, VaultDataCreatedEvent as yo, SerializedCreateOrganizationOptions as yr, SerializedCreateOrganizationApiKeyOptions as ys, CreateAuditLogEventOptions as yt, GetProfileAndTokenOptions as yu, ObjectSummary as z, OrganizationRoleDeletedEventResponse as za, EnrollAuthFactorOptions as zc, SerializedCreatePermissionOptions as zd, EventResponse as zi, SerializedAuthenticateWithPasswordOptions as zl, CreateM2MApplication as zn, KeyContext as zo, AuthenticationMagicAuthFailedEventResponse as zr, Session as zs, SmsResponse as zt, RoleList as zu };
|
|
8315
|
-
//# sourceMappingURL=factory-
|
|
8566
|
+
export { ReadObjectMetadataResponse as $, PermissionUpdatedEventResponse as $a, SerializedCreateMagicAuthOptions as $c, AuthorizationResource as $d, CryptoProvider as $f, GroupMemberAddedEventResponse as $i, AuthenticateUserWithEmailVerificationCredentials as $l, AutoPaginatable as $n, RuntimeClientStats as $o, AuthenticationPasswordFailedEventResponse as $r, ResetPasswordOptions as $s, RadarStandaloneAssessRequestAction as $t, RemoveGroupRoleAssignmentsOptions as $u, ApiKeyRequiredException as A, OrganizationMembershipCreated as Aa, OrganizationMembershipStatus as Ac, SerializedListRoleAssignmentsOptions as Ad, EnvironmentRoleListResponse as Af, DsyncUserDeletedEvent as Ai, UserResponse as Al, ExternalAuthCompleteResponse as An, VaultDekReadEventResponse as Ao, GetOptions as Ar, SerializedCreateOrganizationDomainOptions as As, SerializedAuditLogExportOptions as At, DirectoryUserResponse as Au, ObjectSummaryResponse as B, OrganizationRoleUpdatedEvent as Ba, EnrollAuthFactorOptions as Bc, ListResourcesForMembershipOptionsWithParentId as Bd, DirectoryResponse as Bf, FlagCreatedEvent as Bi, SerializedAuthenticateWithPasswordOptions as Bl, CreateM2MApplicationResponse as Bn, SerializedUpdateGroupOptions as Bo, AuthenticationMagicAuthSucceededEvent as Br, Session as Bs, EnrollFactorOptions as Bt, RoleList as Bu, BadRequestException as C, OrganizationDomainDeletedEventResponse as Ca, SerializedListOrganizationMembershipsOptions as Cc, AssignRoleOptionsWithResourceId as Cd, SetEnvironmentRolePermissionsOptions as Cf, DsyncGroupUpdatedEventResponse as Ci, SessionCookieData as Cl, ConnectApplicationM2M as Cn, VaultDataReadEvent as Co, WorkOSOptions as Cr, OrganizationDomainVerificationFailed as Cs, AuditLogSchema as Ct, ConnectionDomain as Cu, isAuthenticationErrorData as D, OrganizationDomainVerificationFailedEventResponse as Da, BaseOrganizationMembershipResponse as Dc, ListRoleAssignmentsForResourceOptions as Dd, SerializedCreateEnvironmentRoleOptions as Df, DsyncGroupUserRemovedEventResponse as Di, CreateUserResponse as Dl, ConnectApplicationResponse as Dn, VaultDekDecryptedEvent as Do, PatchOptions as Dr, OrganizationDomainState as Ds, AuditLogExport as Dt, SSOPKCEAuthorizationURLResult as Du, AuthenticationException as E, OrganizationDomainVerificationFailedEvent as Ea, BaseOrganizationMembership as Ec, ListRoleAssignmentsForResourceByExternalIdOptions as Ed, CreateEnvironmentRoleOptions as Ef, DsyncGroupUserRemovedEvent as Ei, AuthenticationResponseResponse as El, ConnectApplicationOAuthResponse as En, VaultDataUpdatedEventResponse as Eo, PostOptions as Er, OrganizationDomainResponse as Es, AuditLogTargetSchema as Et, SSOAuthorizationURLOptions as Eu, UpdateWebhookEndpointEvents as F, OrganizationMembershipUpdatedResponse as Fa, Invitation as Fc, RoleAssignmentRole as Fd, SerializedListDirectoriesOptions as Ff, EmailVerificationCreatedEventResponse as Fi, AuthenticateUserWithRefreshTokenCredentials as Fl, DeleteApplicationOptions as Fn, VaultNamesListedEvent as Fo, ApiKeyRevokedEventResponse as Fr, SerializedUpdateUserOptions as Fs, FactorResponse as Ft, OrganizationRoleEventResponse as Fu, ObjectMetadata as G, PasswordResetCreatedEventResponse as Ga, EmailVerificationResponse as Gc, AuthorizationCheckResult as Gd, EventDirectoryResponse as Gf, FlagRuleUpdatedEventResponse as Gi, AuthenticateWithRadarSmsChallengeOptions as Gl, ListApplicationsOptions as Gn, Group as Go, AuthenticationOAuthFailedEventResponse as Gr, SendRadarSmsChallengeResponse as Gs, RadarListEntryAlreadyPresentResponseWire as Gt, GroupRoleAssignmentEntry as Gu, ObjectVersionResponse as H, OrganizationUpdatedEvent as Ha, EmailVerification as Hc, AuthorizationCheckOptions as Hd, DirectoryStateResponse as Hf, FlagDeletedEvent as Hi, AuthenticateWithOrganizationSelectionOptions as Hl, CreateOAuthApplicationResponse as Hn, RemoveGroupOrganizationMembershipOptions as Ho, AuthenticationMfaSucceededEvent as Hr, SessionStatus as Hs, ChallengeResponse as Ht, ListEffectivePermissionsByExternalIdOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationRoleCreatedEvent as Ia, InvitationEvent as Ic, ListMembershipsForResourceByExternalIdOptions as Id, PaginationOptions as If, Event as Ii, AuthenticateWithRefreshTokenOptions as Il, UpdateApplicationOptions as In, VaultNamesListedEventResponse as Io, AuthenticationEmailVerificationSucceededEvent as Ir, UpdateUserOptions as Is, FactorWithSecrets as It, OrganizationRoleResponse as Iu, ActorResponse as J, PermissionCreatedEvent as Ja, CreatePasswordResetOptions as Jc, DeleteAuthorizationResourceByExternalIdOptions as Jd, HttpClientResponseInterface as Jf, GroupCreatedEvent as Ji, AuthenticateWithRadarEmailChallengeOptions as Jl, UserConsentOptionResponse as Jn, DeleteGroupOptions as Jo, AuthenticationPasskeyFailedEvent as Jr, SendInvitationOptions as Js, RadarStandaloneResponseBlocklistType as Jt, GroupRoleAssignmentEntryWithResourceId as Ju, ObjectMetadataResponse as K, PasswordResetSucceededEvent as Ka, CreateUserOptions as Kc, SerializedAuthorizationCheckOptions as Kd, HttpClient as Kf, FlagUpdatedEvent as Ki, SerializedAuthenticateWithRadarSmsChallengeOptions as Kl, CompleteOAuth2Options as Kn, GroupResponse as Ko, AuthenticationOAuthSucceededEvent as Kr, SendRadarSmsChallengeResponseResponse as Ks, RadarStandaloneResponse as Kt, GroupRoleAssignmentEntryForOrganization as Ku, CreateWebhookEndpointEvents as L, OrganizationRoleCreatedEventResponse as La, InvitationEventResponse as Lc, ListMembershipsForResourceOptions as Ld, DirectoryGroup as Lf, EventBase as Li, SerializedAuthenticateWithRefreshTokenOptions as Ll, GetApplicationOptions as Ln, DataKey as Lo, AuthenticationEmailVerificationSucceededEventResponse as Lr, SerializedUpdateOrganizationMembershipOptions as Ls, FactorWithSecretsResponse as Lt, Role as Lu, WebhookEndpoint as M, OrganizationMembershipDeleted as Ma, SerializedListInvitationsOptions as Mc, RoleAssignmentResource as Md, ListDirectoryUsersOptions as Mf, DsyncUserUpdatedEvent as Mi, ImpersonatorResponse as Ml, DeleteClientSecretOptions as Mn, VaultKekCreatedEventResponse as Mo, ApiKeyCreatedEvent as Mr, VerifyEmailOptions as Ms, VerifyResponseResponse as Mt, DirectoryUserWithGroupsResponse as Mu, WebhookEndpointResponse as N, OrganizationMembershipDeletedResponse as Na, ListGroupsForOrganizationMembershipOptions as Nc, RoleAssignmentResourceResponse as Nd, ListDirectoryGroupsOptions as Nf, DsyncUserUpdatedEventResponse as Ni, AuthenticateWithRefreshTokenPublicClientOptions as Nl, CreateApplicationClientSecretOptions as Nn, VaultMetadataReadEvent as No, ApiKeyCreatedEventResponse as Nr, SerializedUpdateUserPasswordOptions as Ns, VerifyChallengeOptions as Nt, ListOrganizationRolesResponse as Nu, GenericServerException as O, OrganizationDomainVerifiedEvent as Oa, OrganizationMembership as Oc, SerializedListRoleAssignmentsForResourceOptions as Od, EnvironmentRole as Of, DsyncUserCreatedEvent as Oi, CreateUserResponseResponse as Ol, ConnectApplicationRedirectUri as On, VaultDekDecryptedEventResponse as Oo, List as Or, OrganizationDomainVerificationStrategy as Os, AuditLogExportResponse as Ot, DefaultCustomAttributes as Ou, WebhookEndpointStatus as P, OrganizationMembershipUpdated as Pa, ListAuthFactorsOptions as Pc, RoleAssignmentResponse as Pd, ListDirectoriesOptions as Pf, EmailVerificationCreatedEvent as Pi, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Pl, ListApplicationClientSecretsOptions as Pn, VaultMetadataReadEventResponse as Po, ApiKeyRevokedEvent as Pr, UpdateUserPasswordOptions as Ps, Factor as Pt, OrganizationRoleEvent as Pu, UpdateObjectOptions as Q, PermissionUpdatedEvent as Qa, CreateMagicAuthOptions as Qc, SerializedListAuthorizationResourcesOptions as Qd, ResponseHeaders as Qf, GroupMemberAddedEvent as Qi, SerializedAuthenticateWithMagicAuthOptions as Ql, UserObjectResponse as Qn, SerializedAddGroupOrganizationMembershipOptions as Qo, AuthenticationPasswordFailedEvent as Qr, serializeRevokeSessionOptions as Qs, RadarListType as Qt, BaseRemoveGroupRoleAssignmentsOptions as Qu, WorkOS as R, OrganizationRoleDeletedEvent as Ra, InvitationResponse as Rc, ListResourcesForMembershipOptions as Rd, DirectoryGroupResponse as Rf, EventName as Ri, AuthenticateUserWithPasswordCredentials as Rl, CreateApplicationOptions as Rn, DataKeyPair as Ro, AuthenticationMagicAuthFailedEvent as Rr, UpdateOrganizationMembershipOptions as Rs, Sms as Rt, RoleEvent as Ru, ConflictException as S, OrganizationDomainDeletedEvent as Sa, ListOrganizationMembershipsOptions as Sc, AssignRoleOptionsWithResourceExternalId as Sd, AddEnvironmentRolePermissionOptions as Sf, DsyncGroupUpdatedEvent as Si, AuthenticateWithSessionCookieSuccessResponse as Sl, ConnectApplication as Sn, VaultDataDeletedEventResponse as So, WorkOSResponseError as Sr, SerializedApiKey as Ss, AuditLogActorSchema as St, Connection as Su, AuthenticationErrorData as T, OrganizationDomainUpdatedEventResponse as Ta, AuthorizationOrganizationMembershipResponse as Tc, SerializedAssignRoleOptions as Td, UpdateEnvironmentRoleOptions as Tf, DsyncGroupUserAddedEventResponse as Ti, AuthenticationResponse as Tl, ConnectApplicationOAuth as Tn, VaultDataUpdatedEvent as To, PutOptions as Tr, OrganizationDomain as Ts, AuditLogSchemaResponse as Tt, ConnectionType as Tu, VaultObject as U, OrganizationUpdatedResponse as Ua, EmailVerificationEvent as Uc, AuthorizationCheckOptionsWithResourceExternalId as Ud, DirectoryType as Uf, FlagDeletedEventResponse as Ui, SerializedAuthenticateWithOrganizationSelectionOptions as Ul, RedirectUriInput as Un, ListGroupsOptions as Uo, AuthenticationMfaSucceededEventResponse as Ur, SendVerificationEmailOptions as Us, ChallengeFactorOptions as Ut, ListEffectivePermissionsOptions as Uu, ObjectVersion as V, OrganizationRoleUpdatedEventResponse as Va, SerializedEnrollUserInMfaFactorOptions as Vc, SerializedListResourcesForMembershipOptions as Vd, DirectoryState as Vf, FlagCreatedEventResponse as Vi, AuthenticateUserWithOrganizationSelectionCredentials as Vl, CreateOAuthApplication as Vn, UpdateGroupOptions as Vo, AuthenticationMagicAuthSucceededEventResponse as Vr, SessionResponse as Vs, Challenge as Vt, RoleResponse as Vu, VaultObjectResponse as W, PasswordResetCreatedEvent as Wa, EmailVerificationEventResponse as Wc, AuthorizationCheckOptionsWithResourceId as Wd, EventDirectory as Wf, FlagRuleUpdatedEvent as Wi, AuthenticateUserWithRadarSmsChallengeCredentials as Wl, RedirectUriInputResponse as Wn, ListGroupOrganizationMembershipsOptions as Wo, AuthenticationOAuthFailedEvent as Wr, SendRadarSmsChallengeOptions as Ws, RadarListEntryAlreadyPresentResponse as Wt, BaseGroupRoleAssignmentEntry as Wu, CreateDataKeyResponseWire as X, PermissionDeletedEvent as Xa, CreateOrganizationMembershipOptions as Xc, GetAuthorizationResourceByExternalIdOptions as Xd, RequestOptions as Xf, GroupDeletedEvent as Xi, AuthenticateUserWithMagicAuthCredentials as Xl, UserConsentOptionChoiceResponse as Xn, SerializedCreateGroupOptions as Xo, AuthenticationPasskeySucceededEvent as Xr, RevokeSessionOptions as Xs, RadarStandaloneResponseVerdict as Xt, SerializedGroupRoleAssignmentEntry as Xu, CreateDataKeyResponse as Y, PermissionCreatedEventResponse as Ya, SerializedCreatePasswordResetOptions as Yc, UpdateAuthorizationResourceByExternalIdOptions as Yd, RequestHeaders as Yf, GroupCreatedEventResponse as Yi, SerializedAuthenticateWithRadarEmailChallengeOptions as Yl, UserConsentOptionChoice as Yn, CreateGroupOptions as Yo, AuthenticationPasskeyFailedEventResponse as Yr, SerializedSendInvitationOptions as Ys, RadarStandaloneResponseControl as Yt, ReplaceGroupRoleAssignmentsOptions as Yu, UpdateObjectEntity as Z, PermissionDeletedEventResponse as Za, SerializedCreateOrganizationMembershipOptions as Zc, ListAuthorizationResourcesOptions as Zd, ResponseHeaderValue as Zf, GroupDeletedEventResponse as Zi, AuthenticateWithMagicAuthOptions as Zl, UserObject as Zn, AddGroupOrganizationMembershipOptions as Zo, AuthenticationPasskeySucceededEventResponse as Zr, SerializedRevokeSessionOptions as Zs, RadarListAction as Zt, SerializedReplaceGroupRoleAssignmentsOptions as Zu, SignatureVerificationException as _, OrganizationCreatedResponse as _a, ListUsersOptions as _c, RemoveRoleOptions as _d, SerializedUpdateOrganizationRoleOptions as _f, DsyncDeletedEventResponse as _i, AuthenticateWithTotpOptions as _l, SerializedListEventOptions as _n, VaultByokKeyVerificationCompletedEvent as _o, CreateOrganizationOptions as _r, SerializedCreatedApiKey as _s, AuditLogActor as _t, OauthTokensResponse as _u, PublicWorkOS as a, GroupUpdatedEventResponse as aa, PasswordReset as ac, BaseCreateGroupRoleAssignmentOptions as ad, SerializedUpdateAuthorizationResourceOptions as af, AuthenticationSSOFailedEventResponse as ai, AuthenticationFactorResponse as al, SerializedGetAccessTokenFailureResponse as an, RoleUpdatedEventResponse as ao, UserRegistrationActionResponseData as ar, FlagPollEntry as as, DecryptDataKeyResponse as at, AuthenticateWithCodeOptions as au, NotFoundException as b, OrganizationDomainCreatedEvent as ba, ListSessionsOptions as bc, SerializedRemoveRoleOptions as bd, SerializedCreateOrganizationRoleOptions as bf, DsyncGroupDeletedEvent as bi, AuthenticateWithSessionCookieFailureReason as bl, ApplicationCredentialsListItem as bn, VaultDataCreatedEventResponse as bo, DomainData as br, SerializedCreateOrganizationApiKeyOptions as bs, CreateAuditLogEventRequestOptions as bt, GetProfileAndTokenOptions as bu, PortalLinkResponseWire as c, InvitationCreatedEvent as ca, PasswordResetResponse as cc, CreateGroupRoleAssignmentOptionsWithResourceExternalId as cd, SerializedUpdatePermissionOptions as cf, ConnectionActivatedEvent as ci, Totp as cl, SerializedGetAccessTokenSuccessResponse as cn, SessionRevokedEvent as co, UserData as cr, FeatureFlag as cs, WidgetSessionTokenResponseWire as ct, AuthenticateWithSessionOptions as cu, IntentOptions as d, InvitationResentEventResponse as da, MagicAuth as dc, GetGroupRoleAssignmentOptions as dd, SerializedCreatePermissionOptions as df, ConnectionDeactivatedEventResponse as di, TotpWithSecretsResponse as dl, SendSessionResponse as dn, UserCreatedEvent as do, SerializedUpdateOrganizationOptions as dr, AddFlagTargetOptions as ds, FeatureFlagsRuntimeClient as dt, WithResolvedClientId as du, GroupMemberEventData as ea, SerializedResetPasswordOptions as ec, RemoveGroupRoleAssignmentsOptionsForOrganization as ed, AuthorizationResourceResponse as ef, AuthenticationPasswordSucceededEvent as ei, PKCEAuthorizationURLResult as el, RadarStandaloneAssessRequestAuthMethod as en, RoleCreatedEvent as eo, PKCE as er, RuntimeClientLogger as es, ReadObjectOptions as et, AuthenticateWithEmailVerificationOptions as eu, IntentOptionsResponse as f, InvitationRevokedEvent as fa, MagicAuthEvent as fc, ListGroupRoleAssignmentsOptions as fd, Permission as ff, ConnectionDeletedEvent as fi, AuthenticationEvent as fl, CreatePasswordlessSessionOptions as fn, UserCreatedEventResponse as fo, UpdateOrganizationOptions as fr, SerializedValidateApiKeyResponse as fs, CookieSession as ft, ProfileAndToken as fu, UnauthorizedException as g, OrganizationCreatedEvent as ga, Locale as gc, BaseRemoveRoleOptions as gd, SetOrganizationRolePermissionsOptions as gf, DsyncDeletedEvent as gi, AuthenticateUserWithTotpCredentials as gl, ListEventOptions as gn, UserUpdatedEventResponse as go, ListOrganizationFeatureFlagsOptions as gr, CreatedApiKey as gs, SerializedCreateAuditLogSchemaOptions as gt, OauthTokens as gu, UnprocessableEntityException as h, MagicAuthCreatedEventResponse as ha, LogoutURLOptions as hc, RemoveRoleAssignmentOptions as hd, AddOrganizationRolePermissionOptions as hf, DsyncActivatedEventResponse as hi, AuthenticationEventSsoResponse as hl, PasswordlessSessionResponse as hn, UserUpdatedEvent as ho, ListOrganizationsOptions as hr, ListOrganizationApiKeysOptions as hs, CreateAuditLogSchemaResponse as ht, ProfileResponse as hu, PublicUserManagement as i, GroupUpdatedEvent as ia, RefreshSessionResponse as ic, RemoveGroupRoleAssignmentOptions as id, SerializedCreateAuthorizationResourceOptions as if, AuthenticationSSOFailedEvent as ii, AuthenticationFactor as il, GetAccessTokenSuccessResponse as in, RoleUpdatedEvent as io, ResponsePayload as ir, FlagChange as is, DecryptDataKeyOptions as it, AuthenticateUserWithCodeCredentials as iu, Webhooks as j, OrganizationMembershipCreatedResponse as ja, ListInvitationsOptions as jc, RoleAssignment as jd, EnvironmentRoleResponse as jf, DsyncUserDeletedEventResponse as ji, Impersonator as jl, ExternalAuthCompleteResponseWire as jn, VaultKekCreatedEvent as jo, GenerateLinkIntent as jr, SerializedVerifyEmailOptions as js, VerifyResponse as jt, DirectoryUserWithGroups as ju, WorkOSErrorData as k, OrganizationDomainVerifiedEventResponse as ka, OrganizationMembershipResponse as kc, ListRoleAssignmentsOptions as kd, EnvironmentRoleList as kf, DsyncUserCreatedEventResponse as ki, User as kl, ConnectApplicationRedirectUriResponse as kn, VaultDekReadEvent as ko, ListResponse as kr, CreateOrganizationDomainOptions as ks, AuditLogExportOptions as kt, DirectoryUser as ku, GenerateLink as l, InvitationCreatedEventResponse as la, CreateMagicAuthResponse as lc, CreateGroupRoleAssignmentOptionsWithResourceId as ld, UpdatePermissionOptions as lf, ConnectionActivatedEventResponse as li, TotpResponse as ll, AccessToken as ln, SessionRevokedEventResponse as lo, UserDataPayload as lr, FeatureFlagResponse as ls, CreateTokenOptions as lt, SerializedAuthenticatePublicClientBase as lu, SSOIntentOptionsResponse as m, MagicAuthCreatedEvent as ma, MagicAuthResponse as mc, GroupRoleAssignmentResponse as md, RemoveOrganizationRolePermissionOptions as mf, DsyncActivatedEvent as mi, AuthenticationEventSso as ml, PasswordlessSession as mn, UserDeletedEventResponse as mo, OrganizationResponse as mr, ValidateApiKeyResponse as ms, CreateAuditLogSchemaRequestOptions as mt, Profile as mu, PublicClientOptions as n, GroupMemberRemovedEvent as na, SerializedResendInvitationOptions as nc, RemoveGroupRoleAssignmentsOptionsWithResourceId as nd, CreateOptionsWithParentExternalId as nf, AuthenticationRadarRiskDetectedEvent as ni, AuthenticationRadarRiskDetectedEventData as nl, GetAccessTokenOptions as nn, RoleDeletedEvent as no, Actions as nr, RemoveFlagTargetOptions as ns, CreateObjectEntity as nt, AuthenticateWithCodeAndVerifierOptions as nu, createWorkOS as o, InvitationAcceptedEvent as oa, PasswordResetEvent as oc, CreateGroupRoleAssignmentOptions as od, UpdateAuthorizationResourceOptions as of, AuthenticationSSOSucceededEvent as oi, AuthenticationFactorWithSecrets as ol, SerializedGetAccessTokenOptions as on, SessionCreatedEvent as oo, ActionContext as or, FlagPollResponse as os, CreateDataKeyOptions as ot, SerializedAuthenticateWithCodeOptions as ou, SSOIntentOptions as p, InvitationRevokedEventResponse as pa, MagicAuthEventResponse as pc, GroupRoleAssignment as pd, PermissionResponse as pf, ConnectionDeletedEventResponse as pi, AuthenticationEventResponse as pl, SerializedCreatePasswordlessSessionOptions as pn, UserDeletedEvent as po, Organization as pr, ValidateApiKeyOptions as ps, CreateAuditLogSchemaOptions as pt, ProfileAndTokenResponse as pu, Actor as q, PasswordResetSucceededEventResponse as qa, SerializedCreateUserOptions as qc, DeleteAuthorizationResourceOptions as qd, HttpClientInterface as qf, FlagUpdatedEventResponse as qi, AuthenticateUserWithRadarEmailChallengeCredentials as ql, UserConsentOption as qn, GetGroupOptions as qo, AuthenticationOAuthSucceededEventResponse as qr, SerializedSendRadarSmsChallengeOptions as qs, RadarStandaloneResponseWire as qt, GroupRoleAssignmentEntryWithResourceExternalId as qu, PublicSSO as r, GroupMemberRemovedEventResponse as ra, RefreshSessionFailureReason as rc, SerializedRemoveGroupRoleAssignmentsOptions as rd, CreateOptionsWithParentResourceId as rf, AuthenticationRadarRiskDetectedEventResponse as ri, AuthenticationRadarRiskDetectedEventResponseData as rl, GetAccessTokenResponse as rn, RoleDeletedEventResponse as ro, AuthenticationActionResponseData as rr, ListFeatureFlagsOptions as rs, CreateObjectOptions as rt, SerializedAuthenticateWithCodeAndVerifierOptions as ru, PortalLinkResponse as s, InvitationAcceptedEventResponse as sa, PasswordResetEventResponse as sc, CreateGroupRoleAssignmentOptionsForOrganization as sd, ListPermissionsOptions as sf, AuthenticationSSOSucceededEventResponse as si, AuthenticationFactorWithSecretsResponse as sl, SerializedGetAccessTokenResponse as sn, SessionCreatedEventResponse as so, ActionPayload as sr, FlagTarget as ss, WidgetSessionTokenResponse as st, AuthenticateWithOptionsBase as su, ConfidentialClientOptions as t, GroupMemberEventResponseData as ta, ResendInvitationOptions as tc, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as td, CreateAuthorizationResourceOptions as tf, AuthenticationPasswordSucceededEventResponse as ti, UserManagementAuthorizationURLOptions as tl, GetAccessTokenFailureResponse as tn, RoleCreatedEventResponse as to, PKCEPair as tr, RuntimeClientOptions as ts, ReadObjectResponse as tt, SerializedAuthenticateWithEmailVerificationOptions as tu, GenerateLinkResponse as u, InvitationResentEvent as ua, CreateMagicAuthResponseResponse as uc, SerializedCreateGroupRoleAssignmentOptions as ud, CreatePermissionOptions as uf, ConnectionDeactivatedEvent as ui, TotpWithSecrets as ul, SerializedAccessToken as un, UnknownEvent as uo, UserRegistrationActionPayload as ur, EvaluationContext as us, WidgetSessionTokenScopes as ut, SerializedAuthenticateWithOptionsBase as uu, RateLimitExceededException as v, OrganizationDeletedEvent as va, SerializedListUsersOptions as vc, RemoveRoleOptionsWithResourceExternalId as vd, UpdateOrganizationRoleOptions as vf, DsyncGroupCreatedEvent as vi, SerializedAuthenticateWithTotpOptions as vl, NewConnectApplicationSecret as vn, VaultByokKeyVerificationCompletedEventResponse as vo, CreateOrganizationRequestOptions as vr, CreateOrganizationApiKeyOptions as vs, AuditLogTarget as vt, ListConnectionsOptions as vu, AuthenticationErrorCode as w, OrganizationDomainUpdatedEvent as wa, AuthorizationOrganizationMembership as wc, BaseAssignRoleOptions as wd, SerializedUpdateEnvironmentRoleOptions as wf, DsyncGroupUserAddedEvent as wi, UserManagementAccessToken as wl, ConnectApplicationM2MResponse as wn, VaultDataReadEventResponse as wo, UnprocessableEntityError as wr, OrganizationDomainVerificationFailedResponse as ws, AuditLogSchemaMetadata as wt, ConnectionResponse as wu, NoApiKeyProvidedException as x, OrganizationDomainCreatedEventResponse as xa, SerializedListSessionsOptions as xc, AssignRoleOptions as xd, OrganizationRole as xf, DsyncGroupDeletedEventResponse as xi, AuthenticateWithSessionCookieOptions as xl, ApplicationCredentialsListItemResponse as xn, VaultDataDeletedEvent as xo, DomainDataState as xr, ApiKey as xs, SerializedCreateAuditLogEventOptions as xt, GetProfileOptions as xu, OauthException as y, OrganizationDeletedResponse as ya, ListUserFeatureFlagsOptions as yc, RemoveRoleOptionsWithResourceId as yd, CreateOrganizationRoleOptions as yf, DsyncGroupCreatedEventResponse as yi, AuthenticateWithSessionCookieFailedResponse as yl, NewConnectApplicationSecretResponse as yn, VaultDataCreatedEvent as yo, SerializedCreateOrganizationOptions as yr, CreateOrganizationApiKeyRequestOptions as ys, CreateAuditLogEventOptions as yt, SerializedListConnectionsOptions as yu, ObjectSummary as z, OrganizationRoleDeletedEventResponse as za, Identity as zc, ListResourcesForMembershipOptionsWithParentExternalId as zd, Directory as zf, EventResponse as zi, AuthenticateWithPasswordOptions as zl, CreateM2MApplication as zn, KeyContext as zo, AuthenticationMagicAuthFailedEventResponse as zr, AuthMethod as zs, SmsResponse as zt, RoleEventResponse as zu };
|
|
8567
|
+
//# sourceMappingURL=factory-B85kMVYe.d.mts.map
|