@workos-inc/node 10.12.0 → 10.13.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-CQfrl-3d.cjs → factory-BfdUyn2X.cjs} +453 -2
- package/lib/factory-BfdUyn2X.cjs.map +1 -0
- package/lib/{factory-CCkRzS83.d.cts → factory-C4y25QQJ.d.cts} +641 -22
- package/lib/{factory-CCkRzS83.d.mts → factory-C4y25QQJ.d.mts} +641 -22
- package/lib/{factory-AQv-AfDk.mjs → factory-DQwwZIi5.mjs} +453 -2
- package/lib/factory-DQwwZIi5.mjs.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 -1
- package/lib/factory-AQv-AfDk.mjs.map +0 -1
- package/lib/factory-CQfrl-3d.cjs.map +0 -1
|
@@ -1886,6 +1886,21 @@ interface SerializedCreateUserOptions {
|
|
|
1886
1886
|
signals_id?: string;
|
|
1887
1887
|
}
|
|
1888
1888
|
//#endregion
|
|
1889
|
+
//#region src/user-management/interfaces/create-waitlist-entry-options.interface.d.ts
|
|
1890
|
+
interface CreateWaitlistEntryOptions {
|
|
1891
|
+
/** The email address of the user joining the waitlist. */
|
|
1892
|
+
email: string;
|
|
1893
|
+
/** Additional key/value pairs collected with the waitlist entry. Supports up to 50 string pairs, with keys up to 40 characters and values up to 600 characters. */
|
|
1894
|
+
additionalFields?: Record<string, string>;
|
|
1895
|
+
/** Whether to send the waitlist confirmation email to the user. Defaults to `false`. No email is sent when the waitlist confirmation email is disabled in the environment, even if `sendConfirmationEmail` is `true`. */
|
|
1896
|
+
sendConfirmationEmail?: boolean;
|
|
1897
|
+
}
|
|
1898
|
+
interface SerializedCreateWaitlistEntryOptions {
|
|
1899
|
+
email: string;
|
|
1900
|
+
additional_fields?: Record<string, string>;
|
|
1901
|
+
send_confirmation_email?: boolean;
|
|
1902
|
+
}
|
|
1903
|
+
//#endregion
|
|
1889
1904
|
//#region src/user-management/interfaces/email-verification.interface.d.ts
|
|
1890
1905
|
interface EmailVerification {
|
|
1891
1906
|
/** Distinguishes the email verification object. */
|
|
@@ -2143,6 +2158,52 @@ interface SerializedListUsersOptions extends PaginationOptions {
|
|
|
2143
2158
|
organization_id?: string;
|
|
2144
2159
|
}
|
|
2145
2160
|
//#endregion
|
|
2161
|
+
//#region src/user-management/interfaces/waitlist-entry.interface.d.ts
|
|
2162
|
+
type WaitlistEntryState = 'pending' | 'approved' | 'denied';
|
|
2163
|
+
interface WaitlistEntry {
|
|
2164
|
+
/** Distinguishes the Waitlist Entry object. */
|
|
2165
|
+
object: 'waitlist_entry';
|
|
2166
|
+
/** The unique ID of the waitlist entry. */
|
|
2167
|
+
id: string;
|
|
2168
|
+
/** The email address of the user on the waitlist. */
|
|
2169
|
+
email: string;
|
|
2170
|
+
/** The state of the waitlist entry. */
|
|
2171
|
+
state: WaitlistEntryState;
|
|
2172
|
+
/** The timestamp when the entry was approved, or null if not yet approved. */
|
|
2173
|
+
approvedAt: string | null;
|
|
2174
|
+
/** Additional fields submitted when the user joined the waitlist. Values are user-provided — treat them as untrusted input when rendering or exporting. */
|
|
2175
|
+
additionalFields?: Record<string, string>;
|
|
2176
|
+
/** The unique ID of the waitlist the entry belongs to. */
|
|
2177
|
+
waitlistId: string | null;
|
|
2178
|
+
/** An ISO 8601 timestamp. */
|
|
2179
|
+
createdAt: string;
|
|
2180
|
+
/** An ISO 8601 timestamp. */
|
|
2181
|
+
updatedAt: string;
|
|
2182
|
+
}
|
|
2183
|
+
interface WaitlistEntryResponse {
|
|
2184
|
+
object: 'waitlist_entry';
|
|
2185
|
+
id: string;
|
|
2186
|
+
email: string;
|
|
2187
|
+
state: WaitlistEntryState;
|
|
2188
|
+
approved_at: string | null;
|
|
2189
|
+
additional_fields?: Record<string, string>;
|
|
2190
|
+
waitlist_id?: string | null;
|
|
2191
|
+
created_at: string;
|
|
2192
|
+
updated_at: string;
|
|
2193
|
+
}
|
|
2194
|
+
//#endregion
|
|
2195
|
+
//#region src/user-management/interfaces/list-waitlist-entries-options.interface.d.ts
|
|
2196
|
+
interface ListWaitlistEntriesOptions extends PaginationOptions {
|
|
2197
|
+
/** Filter entries by state. */
|
|
2198
|
+
state?: WaitlistEntryState;
|
|
2199
|
+
/** Filter entries by email address. */
|
|
2200
|
+
email?: string;
|
|
2201
|
+
}
|
|
2202
|
+
interface SerializedListWaitlistEntriesOptions extends PaginationOptions {
|
|
2203
|
+
state?: WaitlistEntryState;
|
|
2204
|
+
email?: string;
|
|
2205
|
+
}
|
|
2206
|
+
//#endregion
|
|
2146
2207
|
//#region src/user-management/interfaces/locale.interface.d.ts
|
|
2147
2208
|
type Locale = 'af' | 'am' | 'ar' | 'bg' | 'bn' | 'bs' | 'ca' | 'cs' | 'da' | 'de' | 'de-DE' | 'el' | 'en' | 'en-AU' | 'en-CA' | 'en-GB' | 'en-US' | 'es' | 'es-419' | 'es-ES' | 'es-US' | 'et' | 'fa' | 'fi' | 'fil' | 'fr' | 'fr-BE' | 'fr-CA' | 'fr-FR' | 'fy' | 'gl' | 'gu' | 'ha' | 'he' | 'hi' | 'hr' | 'hu' | 'hy' | 'id' | 'is' | 'it' | 'it-IT' | 'ja' | 'jv' | 'ka' | 'kk' | 'km' | 'kn' | 'ko' | 'lt' | 'lv' | 'mk' | 'ml' | 'mn' | 'mr' | 'ms' | 'my' | 'nb' | 'ne' | 'nl' | 'nl-BE' | 'nl-NL' | 'nn' | 'no' | 'pa' | 'pl' | 'pt' | 'pt-BR' | 'pt-PT' | 'ro' | 'ru' | 'sk' | 'sl' | 'sq' | 'sr' | 'sv' | 'sw' | 'ta' | 'te' | 'th' | 'tr' | 'uk' | 'ur' | 'uz' | 'vi' | 'zh' | 'zh-CN' | 'zh-HK' | 'zh-TW' | 'zu';
|
|
2148
2209
|
//#endregion
|
|
@@ -2509,6 +2570,24 @@ interface SerializedVerifyEmailOptions {
|
|
|
2509
2570
|
code: string;
|
|
2510
2571
|
}
|
|
2511
2572
|
//#endregion
|
|
2573
|
+
//#region src/user-management/interfaces/waitlist.interface.d.ts
|
|
2574
|
+
interface Waitlist {
|
|
2575
|
+
/** Distinguishes the Waitlist object. */
|
|
2576
|
+
object: 'waitlist';
|
|
2577
|
+
/** The unique ID of the Waitlist. */
|
|
2578
|
+
id: string;
|
|
2579
|
+
/** An ISO 8601 timestamp. */
|
|
2580
|
+
createdAt: string;
|
|
2581
|
+
/** An ISO 8601 timestamp. */
|
|
2582
|
+
updatedAt: string;
|
|
2583
|
+
}
|
|
2584
|
+
interface WaitlistResponse {
|
|
2585
|
+
object: 'waitlist';
|
|
2586
|
+
id: string;
|
|
2587
|
+
created_at: string;
|
|
2588
|
+
updated_at: string;
|
|
2589
|
+
}
|
|
2590
|
+
//#endregion
|
|
2512
2591
|
//#region src/organization-domains/interfaces/create-organization-domain-options.interface.d.ts
|
|
2513
2592
|
interface CreateOrganizationDomainOptions {
|
|
2514
2593
|
domain: string;
|
|
@@ -4862,6 +4941,265 @@ declare class PKCE {
|
|
|
4862
4941
|
private base64UrlEncode;
|
|
4863
4942
|
}
|
|
4864
4943
|
//#endregion
|
|
4944
|
+
//#region src/common/utils/pagination.d.ts
|
|
4945
|
+
declare class AutoPaginatable<ResourceType, ParametersType extends PaginationOptions = PaginationOptions> {
|
|
4946
|
+
protected list: List<ResourceType>;
|
|
4947
|
+
private apiCall;
|
|
4948
|
+
readonly object: "list";
|
|
4949
|
+
readonly options: ParametersType;
|
|
4950
|
+
constructor(list: List<ResourceType>, apiCall: (params: PaginationOptions) => Promise<List<ResourceType>>, options?: ParametersType);
|
|
4951
|
+
get data(): ResourceType[];
|
|
4952
|
+
get listMetadata(): {
|
|
4953
|
+
before?: string | null;
|
|
4954
|
+
after?: string | null;
|
|
4955
|
+
};
|
|
4956
|
+
private generatePages;
|
|
4957
|
+
/**
|
|
4958
|
+
* Automatically paginates over the list of results, returning the complete data set.
|
|
4959
|
+
* Returns the first result if `options.limit` is passed to the first request.
|
|
4960
|
+
*/
|
|
4961
|
+
autoPagination(): Promise<ResourceType[]>;
|
|
4962
|
+
}
|
|
4963
|
+
//#endregion
|
|
4964
|
+
//#region src/agents/interfaces/agent-blueprint.interface.d.ts
|
|
4965
|
+
/** Who may mint sessions from an agent blueprint. */
|
|
4966
|
+
interface AgentBlueprintInvocableBy {
|
|
4967
|
+
/**
|
|
4968
|
+
* Role slugs whose members may mint user-delegated sessions from the
|
|
4969
|
+
* blueprint. An empty list allows any member.
|
|
4970
|
+
*/
|
|
4971
|
+
roleSlugs: string[];
|
|
4972
|
+
/**
|
|
4973
|
+
* Organizations in which sessions may be minted from the blueprint. An empty
|
|
4974
|
+
* list allows any organization in the environment.
|
|
4975
|
+
*/
|
|
4976
|
+
organizationIds: string[];
|
|
4977
|
+
}
|
|
4978
|
+
interface SerializedAgentBlueprintInvocableBy {
|
|
4979
|
+
role_slugs: string[];
|
|
4980
|
+
organization_ids: string[];
|
|
4981
|
+
}
|
|
4982
|
+
/** Token and session lifetimes for sessions minted from an agent blueprint. */
|
|
4983
|
+
interface AgentBlueprintSessionSettings {
|
|
4984
|
+
/**
|
|
4985
|
+
* Maximum lifetime of a session in seconds; refreshes never extend a session
|
|
4986
|
+
* past this. At most 31,536,000 (365 days).
|
|
4987
|
+
*/
|
|
4988
|
+
maxAgeSeconds: number;
|
|
4989
|
+
/** Lifetime of each minted access token in seconds. At most 3,600 (1 hour). */
|
|
4990
|
+
accessTokenTtlSeconds: number;
|
|
4991
|
+
/** Lifetime of each rotated refresh token in seconds. At most 5,184,000 (60 days). */
|
|
4992
|
+
refreshTokenTtlSeconds: number;
|
|
4993
|
+
}
|
|
4994
|
+
interface SerializedAgentBlueprintSessionSettings {
|
|
4995
|
+
max_age_seconds: number;
|
|
4996
|
+
access_token_ttl_seconds: number;
|
|
4997
|
+
refresh_token_ttl_seconds: number;
|
|
4998
|
+
}
|
|
4999
|
+
/**
|
|
5000
|
+
* An agent blueprint: the template describing what an agent may do (its
|
|
5001
|
+
* permission ceiling), who may invoke it, and the lifetimes of its sessions.
|
|
5002
|
+
*/
|
|
5003
|
+
interface AgentBlueprint {
|
|
5004
|
+
object: 'agent_blueprint';
|
|
5005
|
+
/** Unique identifier of the agent blueprint. */
|
|
5006
|
+
id: string;
|
|
5007
|
+
/** Human-readable name of the agent blueprint. */
|
|
5008
|
+
name: string;
|
|
5009
|
+
/** Human-readable description of the agent blueprint. */
|
|
5010
|
+
description: string | null;
|
|
5011
|
+
/**
|
|
5012
|
+
* Permission slugs forming the ceiling on what sessions minted from the
|
|
5013
|
+
* blueprint may do.
|
|
5014
|
+
*/
|
|
5015
|
+
permissions: string[];
|
|
5016
|
+
/** Who may mint sessions from the blueprint. */
|
|
5017
|
+
invocableBy: AgentBlueprintInvocableBy;
|
|
5018
|
+
/** Token and session lifetimes for sessions minted from the blueprint. */
|
|
5019
|
+
sessionSettings: AgentBlueprintSessionSettings;
|
|
5020
|
+
/** An ISO 8601 timestamp. */
|
|
5021
|
+
createdAt: string;
|
|
5022
|
+
/** An ISO 8601 timestamp. */
|
|
5023
|
+
updatedAt: string;
|
|
5024
|
+
}
|
|
5025
|
+
interface SerializedAgentBlueprint {
|
|
5026
|
+
object: 'agent_blueprint';
|
|
5027
|
+
id: string;
|
|
5028
|
+
name: string;
|
|
5029
|
+
description: string | null;
|
|
5030
|
+
permissions: string[];
|
|
5031
|
+
invocable_by: SerializedAgentBlueprintInvocableBy;
|
|
5032
|
+
session_settings: SerializedAgentBlueprintSessionSettings;
|
|
5033
|
+
created_at: string;
|
|
5034
|
+
updated_at: string;
|
|
5035
|
+
}
|
|
5036
|
+
/** Options for creating an agent blueprint. */
|
|
5037
|
+
interface CreateAgentBlueprintOptions {
|
|
5038
|
+
/** Human-readable name of the agent blueprint. */
|
|
5039
|
+
name: string;
|
|
5040
|
+
/** Human-readable description of the agent blueprint. */
|
|
5041
|
+
description?: string;
|
|
5042
|
+
/**
|
|
5043
|
+
* Permission slugs forming the ceiling on what sessions minted from the
|
|
5044
|
+
* blueprint may do. Each slug must exist in the environment.
|
|
5045
|
+
*/
|
|
5046
|
+
permissions?: string[];
|
|
5047
|
+
/** Who may mint sessions from the blueprint. */
|
|
5048
|
+
invocableBy?: {
|
|
5049
|
+
roleSlugs?: string[];
|
|
5050
|
+
organizationIds?: string[];
|
|
5051
|
+
};
|
|
5052
|
+
/** Token and session lifetimes for sessions minted from the blueprint. */
|
|
5053
|
+
sessionSettings: {
|
|
5054
|
+
maxAgeSeconds: number;
|
|
5055
|
+
accessTokenTtlSeconds: number;
|
|
5056
|
+
refreshTokenTtlSeconds: number;
|
|
5057
|
+
};
|
|
5058
|
+
}
|
|
5059
|
+
interface SerializedCreateAgentBlueprintOptions {
|
|
5060
|
+
name: string;
|
|
5061
|
+
description?: string;
|
|
5062
|
+
permissions?: string[];
|
|
5063
|
+
invocable_by?: {
|
|
5064
|
+
role_slugs?: string[];
|
|
5065
|
+
organization_ids?: string[];
|
|
5066
|
+
};
|
|
5067
|
+
session_settings: SerializedAgentBlueprintSessionSettings;
|
|
5068
|
+
}
|
|
5069
|
+
/**
|
|
5070
|
+
* Options for updating an agent blueprint. Omitted fields are left unchanged;
|
|
5071
|
+
* provided lists replace the existing configuration.
|
|
5072
|
+
*/
|
|
5073
|
+
interface UpdateAgentBlueprintOptions {
|
|
5074
|
+
/** Unique identifier of the agent blueprint. */
|
|
5075
|
+
agentBlueprintId: string;
|
|
5076
|
+
/** Human-readable name of the agent blueprint. */
|
|
5077
|
+
name?: string;
|
|
5078
|
+
/** Human-readable description of the agent blueprint, or `null` to clear it. */
|
|
5079
|
+
description?: string | null;
|
|
5080
|
+
/**
|
|
5081
|
+
* Permission slugs forming the ceiling on what sessions minted from the
|
|
5082
|
+
* blueprint may do. Each slug must exist in the environment.
|
|
5083
|
+
*/
|
|
5084
|
+
permissions?: string[];
|
|
5085
|
+
/** Who may mint sessions from the blueprint. */
|
|
5086
|
+
invocableBy?: {
|
|
5087
|
+
roleSlugs?: string[];
|
|
5088
|
+
organizationIds?: string[];
|
|
5089
|
+
};
|
|
5090
|
+
/** Token and session lifetimes for sessions minted from the blueprint. */
|
|
5091
|
+
sessionSettings?: {
|
|
5092
|
+
maxAgeSeconds?: number;
|
|
5093
|
+
accessTokenTtlSeconds?: number;
|
|
5094
|
+
refreshTokenTtlSeconds?: number;
|
|
5095
|
+
};
|
|
5096
|
+
}
|
|
5097
|
+
interface SerializedUpdateAgentBlueprintOptions {
|
|
5098
|
+
name?: string;
|
|
5099
|
+
description?: string | null;
|
|
5100
|
+
permissions?: string[];
|
|
5101
|
+
invocable_by?: {
|
|
5102
|
+
role_slugs?: string[];
|
|
5103
|
+
organization_ids?: string[];
|
|
5104
|
+
};
|
|
5105
|
+
session_settings?: {
|
|
5106
|
+
max_age_seconds?: number;
|
|
5107
|
+
access_token_ttl_seconds?: number;
|
|
5108
|
+
refresh_token_ttl_seconds?: number;
|
|
5109
|
+
};
|
|
5110
|
+
}
|
|
5111
|
+
/** Options for listing agent blueprints. */
|
|
5112
|
+
type ListAgentBlueprintsOptions = PaginationOptions;
|
|
5113
|
+
//#endregion
|
|
5114
|
+
//#region src/agents/interfaces/agent-instance-session.interface.d.ts
|
|
5115
|
+
/** The lifecycle status of an agent instance session. */
|
|
5116
|
+
type AgentInstanceSessionStatus = 'active' | 'revoked' | 'expired';
|
|
5117
|
+
/** A session minted for an agent instance. */
|
|
5118
|
+
interface AgentInstanceSession {
|
|
5119
|
+
object: 'agent_instance_session';
|
|
5120
|
+
/** Unique identifier of the agent instance session. */
|
|
5121
|
+
id: string;
|
|
5122
|
+
/** Unique identifier of the agent instance the session belongs to. */
|
|
5123
|
+
agentInstanceId: string;
|
|
5124
|
+
/** The lifecycle status of the session. */
|
|
5125
|
+
status: AgentInstanceSessionStatus;
|
|
5126
|
+
/** An ISO 8601 timestamp of when the session expires. */
|
|
5127
|
+
expiresAt: string;
|
|
5128
|
+
/** An ISO 8601 timestamp of when the session was revoked, or `null`. */
|
|
5129
|
+
revokedAt: string | null;
|
|
5130
|
+
/** An ISO 8601 timestamp. */
|
|
5131
|
+
createdAt: string;
|
|
5132
|
+
/** An ISO 8601 timestamp. */
|
|
5133
|
+
updatedAt: string;
|
|
5134
|
+
}
|
|
5135
|
+
interface SerializedAgentInstanceSession {
|
|
5136
|
+
object: 'agent_instance_session';
|
|
5137
|
+
id: string;
|
|
5138
|
+
agent_instance_id: string;
|
|
5139
|
+
status: AgentInstanceSessionStatus;
|
|
5140
|
+
expires_at: string;
|
|
5141
|
+
revoked_at: string | null;
|
|
5142
|
+
created_at: string;
|
|
5143
|
+
updated_at: string;
|
|
5144
|
+
}
|
|
5145
|
+
/** Options for listing agent instance sessions. */
|
|
5146
|
+
interface ListAgentInstanceSessionsOptions extends PaginationOptions {
|
|
5147
|
+
/** Filter sessions to a single agent blueprint. */
|
|
5148
|
+
agentBlueprintId?: string;
|
|
5149
|
+
/** Filter sessions to a single agent instance. */
|
|
5150
|
+
agentInstanceId?: string;
|
|
5151
|
+
}
|
|
5152
|
+
interface SerializedListAgentInstanceSessionsOptions extends PaginationOptions {
|
|
5153
|
+
agent_blueprint_id?: string;
|
|
5154
|
+
agent_instance_id?: string;
|
|
5155
|
+
}
|
|
5156
|
+
//#endregion
|
|
5157
|
+
//#region src/agents/interfaces/agent-instance.interface.d.ts
|
|
5158
|
+
/** How an agent instance was minted. */
|
|
5159
|
+
type AgentInstanceType = 'delegated' | 'autonomous';
|
|
5160
|
+
/** A concrete agent minted from an agent blueprint. */
|
|
5161
|
+
interface AgentInstance {
|
|
5162
|
+
object: 'agent_instance';
|
|
5163
|
+
/** Unique identifier of the agent instance. */
|
|
5164
|
+
id: string;
|
|
5165
|
+
/** Unique identifier of the agent blueprint the instance was minted from. */
|
|
5166
|
+
agentBlueprintId: string;
|
|
5167
|
+
/** Unique identifier of the Organization the instance belongs to. */
|
|
5168
|
+
organizationId: string;
|
|
5169
|
+
/**
|
|
5170
|
+
* Unique identifier of the Organization Membership the instance acts on
|
|
5171
|
+
* behalf of, or `null` for autonomous instances.
|
|
5172
|
+
*/
|
|
5173
|
+
organizationMembershipId: string | null;
|
|
5174
|
+
/** How the instance was minted. */
|
|
5175
|
+
type: AgentInstanceType;
|
|
5176
|
+
/** An ISO 8601 timestamp. */
|
|
5177
|
+
createdAt: string;
|
|
5178
|
+
/** An ISO 8601 timestamp. */
|
|
5179
|
+
updatedAt: string;
|
|
5180
|
+
}
|
|
5181
|
+
interface SerializedAgentInstance {
|
|
5182
|
+
object: 'agent_instance';
|
|
5183
|
+
id: string;
|
|
5184
|
+
agent_blueprint_id: string;
|
|
5185
|
+
organization_id: string;
|
|
5186
|
+
organization_membership_id: string | null;
|
|
5187
|
+
type: AgentInstanceType;
|
|
5188
|
+
created_at: string;
|
|
5189
|
+
updated_at: string;
|
|
5190
|
+
}
|
|
5191
|
+
/** Options for listing agent instances. */
|
|
5192
|
+
interface ListAgentInstancesOptions extends PaginationOptions {
|
|
5193
|
+
/** Filter instances to a single Organization. */
|
|
5194
|
+
organizationId?: string;
|
|
5195
|
+
/** Filter instances to a single agent blueprint. */
|
|
5196
|
+
agentBlueprintId?: string;
|
|
5197
|
+
}
|
|
5198
|
+
interface SerializedListAgentInstancesOptions extends PaginationOptions {
|
|
5199
|
+
organization_id?: string;
|
|
5200
|
+
agent_blueprint_id?: string;
|
|
5201
|
+
}
|
|
5202
|
+
//#endregion
|
|
4865
5203
|
//#region src/agents/interfaces/agent-registration.interface.d.ts
|
|
4866
5204
|
/** The lifecycle status of an agent registration. */
|
|
4867
5205
|
type AgentRegistrationStatus = 'unverified' | 'verified' | 'expired' | 'revoked';
|
|
@@ -4954,6 +5292,86 @@ interface SerializedAgentRegistration {
|
|
|
4954
5292
|
updated_at: string;
|
|
4955
5293
|
}
|
|
4956
5294
|
//#endregion
|
|
5295
|
+
//#region src/agents/interfaces/agent-token.interface.d.ts
|
|
5296
|
+
/** Tokens minted for an agent session. */
|
|
5297
|
+
interface AgentToken {
|
|
5298
|
+
/** The access token for the agent session. */
|
|
5299
|
+
accessToken: string;
|
|
5300
|
+
/** The token type, always `Bearer`. */
|
|
5301
|
+
tokenType: 'Bearer';
|
|
5302
|
+
/** Number of seconds until the access token expires. */
|
|
5303
|
+
expiresIn: number;
|
|
5304
|
+
/** The refresh token for the agent session. */
|
|
5305
|
+
refreshToken: string;
|
|
5306
|
+
/** Unique identifier of the agent instance the token belongs to. */
|
|
5307
|
+
agentInstanceId: string;
|
|
5308
|
+
/** Whether a new agent instance was created by this mint. */
|
|
5309
|
+
newInstance: boolean;
|
|
5310
|
+
/** Unique identifier of the agent instance session the token belongs to. */
|
|
5311
|
+
agentInstanceSessionId: string;
|
|
5312
|
+
/** The permission slugs granted to the session. */
|
|
5313
|
+
permissions: string[];
|
|
5314
|
+
}
|
|
5315
|
+
interface SerializedAgentToken {
|
|
5316
|
+
access_token: string;
|
|
5317
|
+
token_type: 'Bearer';
|
|
5318
|
+
expires_in: number;
|
|
5319
|
+
refresh_token: string;
|
|
5320
|
+
agent_instance_id: string;
|
|
5321
|
+
new_instance: boolean;
|
|
5322
|
+
agent_instance_session_id: string;
|
|
5323
|
+
permissions: string[];
|
|
5324
|
+
}
|
|
5325
|
+
interface MintAgentTokenBaseOptions {
|
|
5326
|
+
/** Unique identifier of the agent blueprint to mint from. */
|
|
5327
|
+
agentBlueprintId: string;
|
|
5328
|
+
/** A free-form description of what the session is intended to do. */
|
|
5329
|
+
intent?: string;
|
|
5330
|
+
}
|
|
5331
|
+
/** Options for minting a user-delegated agent token. */
|
|
5332
|
+
interface MintUserDelegatedAgentTokenOptions extends MintAgentTokenBaseOptions {
|
|
5333
|
+
type: 'user_delegated';
|
|
5334
|
+
/** The access token of the user delegating to the agent. */
|
|
5335
|
+
userAccessToken: string;
|
|
5336
|
+
}
|
|
5337
|
+
/** Options for minting an autonomous agent token. */
|
|
5338
|
+
interface MintAutonomousAgentTokenOptions extends MintAgentTokenBaseOptions {
|
|
5339
|
+
type: 'autonomous';
|
|
5340
|
+
/** The organization in which to mint the session. */
|
|
5341
|
+
organizationId: string;
|
|
5342
|
+
}
|
|
5343
|
+
/** Options for minting an agent-delegated agent token. */
|
|
5344
|
+
interface MintAgentDelegatedAgentTokenOptions extends MintAgentTokenBaseOptions {
|
|
5345
|
+
type: 'agent_delegated';
|
|
5346
|
+
/** The access token of the agent delegating to the new agent. */
|
|
5347
|
+
agentAccessToken: string;
|
|
5348
|
+
}
|
|
5349
|
+
/** Options for refreshing an agent token. */
|
|
5350
|
+
interface RefreshAgentTokenOptions extends MintAgentTokenBaseOptions {
|
|
5351
|
+
type: 'refresh';
|
|
5352
|
+
/** The refresh token from a previous mint. */
|
|
5353
|
+
refreshToken: string;
|
|
5354
|
+
}
|
|
5355
|
+
/** Options for minting an agent token from a blueprint. */
|
|
5356
|
+
type MintAgentTokenOptions = MintUserDelegatedAgentTokenOptions | MintAutonomousAgentTokenOptions | MintAgentDelegatedAgentTokenOptions | RefreshAgentTokenOptions;
|
|
5357
|
+
type SerializedMintAgentTokenOptions = {
|
|
5358
|
+
type: 'user_delegated';
|
|
5359
|
+
user_access_token: string;
|
|
5360
|
+
intent?: string;
|
|
5361
|
+
} | {
|
|
5362
|
+
type: 'autonomous';
|
|
5363
|
+
organization_id: string;
|
|
5364
|
+
intent?: string;
|
|
5365
|
+
} | {
|
|
5366
|
+
type: 'agent_delegated';
|
|
5367
|
+
agent_access_token: string;
|
|
5368
|
+
intent?: string;
|
|
5369
|
+
} | {
|
|
5370
|
+
type: 'refresh';
|
|
5371
|
+
refresh_token: string;
|
|
5372
|
+
intent?: string;
|
|
5373
|
+
};
|
|
5374
|
+
//#endregion
|
|
4957
5375
|
//#region src/agents/interfaces/claim-attempt.interface.d.ts
|
|
4958
5376
|
/** Options for linking an external user to a claim attempt via the admin API. */
|
|
4959
5377
|
interface LinkClaimAttemptToExternalUserOptions {
|
|
@@ -5124,6 +5542,154 @@ declare class Agents {
|
|
|
5124
5542
|
private readonly workos;
|
|
5125
5543
|
private _jwks?;
|
|
5126
5544
|
constructor(workos: WorkOS);
|
|
5545
|
+
/**
|
|
5546
|
+
* Create an agent blueprint
|
|
5547
|
+
*
|
|
5548
|
+
* Creates an agent blueprint: the template describing what an agent may do
|
|
5549
|
+
* (its permission ceiling), who may invoke it, and the lifetimes of its
|
|
5550
|
+
* sessions.
|
|
5551
|
+
*
|
|
5552
|
+
* @param options - Configuration for the new agent blueprint.
|
|
5553
|
+
* @returns {Promise<AgentBlueprint>}
|
|
5554
|
+
* @throws {BadRequestException} 400
|
|
5555
|
+
* @throws {ConflictException} 409 - Name already in use.
|
|
5556
|
+
* @throws {UnprocessableEntityException} 422 - Permission, role, or organization not found.
|
|
5557
|
+
*/
|
|
5558
|
+
createBlueprint(options: CreateAgentBlueprintOptions): Promise<AgentBlueprint>;
|
|
5559
|
+
/**
|
|
5560
|
+
* List agent blueprints
|
|
5561
|
+
*
|
|
5562
|
+
* Lists the agent blueprints in the current environment.
|
|
5563
|
+
*
|
|
5564
|
+
* @param options - Pagination options.
|
|
5565
|
+
* @returns {Promise<AutoPaginatable<AgentBlueprint, ListAgentBlueprintsOptions>>}
|
|
5566
|
+
*/
|
|
5567
|
+
listBlueprints(options?: ListAgentBlueprintsOptions): Promise<AutoPaginatable<AgentBlueprint, ListAgentBlueprintsOptions>>;
|
|
5568
|
+
/**
|
|
5569
|
+
* Get an agent blueprint
|
|
5570
|
+
*
|
|
5571
|
+
* Retrieves an agent blueprint by ID.
|
|
5572
|
+
* @param agentBlueprintId - Unique identifier of the agent blueprint.
|
|
5573
|
+
*
|
|
5574
|
+
* @example
|
|
5575
|
+
* "agent_blueprint_01EHWNCE74X7JSDV0X3SZ3KJNY"
|
|
5576
|
+
*
|
|
5577
|
+
* @returns {Promise<AgentBlueprint>}
|
|
5578
|
+
* @throws {NotFoundException} 404
|
|
5579
|
+
*/
|
|
5580
|
+
getBlueprint(agentBlueprintId: string): Promise<AgentBlueprint>;
|
|
5581
|
+
/**
|
|
5582
|
+
* Update an agent blueprint
|
|
5583
|
+
*
|
|
5584
|
+
* Updates an agent blueprint. Omitted fields are left unchanged; provided
|
|
5585
|
+
* lists replace the existing configuration.
|
|
5586
|
+
*
|
|
5587
|
+
* @param options - Object containing the agent blueprint ID and the fields to update.
|
|
5588
|
+
* @returns {Promise<AgentBlueprint>}
|
|
5589
|
+
* @throws {BadRequestException} 400
|
|
5590
|
+
* @throws {NotFoundException} 404
|
|
5591
|
+
* @throws {ConflictException} 409 - Name already in use.
|
|
5592
|
+
* @throws {UnprocessableEntityException} 422 - Permission, role, or organization not found.
|
|
5593
|
+
*/
|
|
5594
|
+
updateBlueprint(options: UpdateAgentBlueprintOptions): Promise<AgentBlueprint>;
|
|
5595
|
+
/**
|
|
5596
|
+
* Delete an agent blueprint
|
|
5597
|
+
*
|
|
5598
|
+
* Deletes an agent blueprint by ID.
|
|
5599
|
+
* @param agentBlueprintId - Unique identifier of the agent blueprint.
|
|
5600
|
+
*
|
|
5601
|
+
* @example
|
|
5602
|
+
* "agent_blueprint_01EHWNCE74X7JSDV0X3SZ3KJNY"
|
|
5603
|
+
*
|
|
5604
|
+
* @returns {Promise<void>}
|
|
5605
|
+
* @throws {NotFoundException} 404
|
|
5606
|
+
*/
|
|
5607
|
+
deleteBlueprint(agentBlueprintId: string): Promise<void>;
|
|
5608
|
+
/**
|
|
5609
|
+
* Mint an agent token
|
|
5610
|
+
*
|
|
5611
|
+
* Mints tokens for an agent session from a blueprint. Supports
|
|
5612
|
+
* user-delegated, autonomous, and agent-delegated mints, as well as
|
|
5613
|
+
* refreshing an existing session with a refresh token.
|
|
5614
|
+
*
|
|
5615
|
+
* @param options - Object containing the agent blueprint ID, the mint type, and its credentials.
|
|
5616
|
+
* @returns {Promise<AgentToken>}
|
|
5617
|
+
* @throws {BadRequestException} 400
|
|
5618
|
+
* @throws {NotFoundException} 404
|
|
5619
|
+
*/
|
|
5620
|
+
mintToken(options: MintAgentTokenOptions): Promise<AgentToken>;
|
|
5621
|
+
/**
|
|
5622
|
+
* List agent instances
|
|
5623
|
+
*
|
|
5624
|
+
* Lists the agent instances in the current environment, optionally filtered
|
|
5625
|
+
* by organization or agent blueprint.
|
|
5626
|
+
*
|
|
5627
|
+
* @param options - Pagination and filter options.
|
|
5628
|
+
* @returns {Promise<AutoPaginatable<AgentInstance, SerializedListAgentInstancesOptions>>}
|
|
5629
|
+
*/
|
|
5630
|
+
listInstances(options?: ListAgentInstancesOptions): Promise<AutoPaginatable<AgentInstance, SerializedListAgentInstancesOptions>>;
|
|
5631
|
+
/**
|
|
5632
|
+
* Get an agent instance
|
|
5633
|
+
*
|
|
5634
|
+
* Retrieves an agent instance by ID.
|
|
5635
|
+
* @param agentInstanceId - Unique identifier of the agent instance.
|
|
5636
|
+
*
|
|
5637
|
+
* @example
|
|
5638
|
+
* "agent_instance_01EHWNCE74X7JSDV0X3SZ3KJNY"
|
|
5639
|
+
*
|
|
5640
|
+
* @returns {Promise<AgentInstance>}
|
|
5641
|
+
* @throws {NotFoundException} 404
|
|
5642
|
+
*/
|
|
5643
|
+
getInstance(agentInstanceId: string): Promise<AgentInstance>;
|
|
5644
|
+
/**
|
|
5645
|
+
* Delete an agent instance
|
|
5646
|
+
*
|
|
5647
|
+
* Deletes an agent instance by ID.
|
|
5648
|
+
* @param agentInstanceId - Unique identifier of the agent instance.
|
|
5649
|
+
*
|
|
5650
|
+
* @example
|
|
5651
|
+
* "agent_instance_01EHWNCE74X7JSDV0X3SZ3KJNY"
|
|
5652
|
+
*
|
|
5653
|
+
* @returns {Promise<void>}
|
|
5654
|
+
* @throws {NotFoundException} 404
|
|
5655
|
+
*/
|
|
5656
|
+
deleteInstance(agentInstanceId: string): Promise<void>;
|
|
5657
|
+
/**
|
|
5658
|
+
* List agent instance sessions
|
|
5659
|
+
*
|
|
5660
|
+
* Lists the agent instance sessions in the current environment, optionally
|
|
5661
|
+
* filtered by agent blueprint or agent instance.
|
|
5662
|
+
*
|
|
5663
|
+
* @param options - Pagination and filter options.
|
|
5664
|
+
* @returns {Promise<AutoPaginatable<AgentInstanceSession, SerializedListAgentInstanceSessionsOptions>>}
|
|
5665
|
+
*/
|
|
5666
|
+
listInstanceSessions(options?: ListAgentInstanceSessionsOptions): Promise<AutoPaginatable<AgentInstanceSession, SerializedListAgentInstanceSessionsOptions>>;
|
|
5667
|
+
/**
|
|
5668
|
+
* Get an agent instance session
|
|
5669
|
+
*
|
|
5670
|
+
* Retrieves an agent instance session by ID.
|
|
5671
|
+
* @param agentInstanceSessionId - Unique identifier of the agent instance session.
|
|
5672
|
+
*
|
|
5673
|
+
* @example
|
|
5674
|
+
* "agent_instance_session_01EHWNCE74X7JSDV0X3SZ3KJNY"
|
|
5675
|
+
*
|
|
5676
|
+
* @returns {Promise<AgentInstanceSession>}
|
|
5677
|
+
* @throws {NotFoundException} 404
|
|
5678
|
+
*/
|
|
5679
|
+
getInstanceSession(agentInstanceSessionId: string): Promise<AgentInstanceSession>;
|
|
5680
|
+
/**
|
|
5681
|
+
* Revoke an agent instance session
|
|
5682
|
+
*
|
|
5683
|
+
* Revokes an agent instance session by ID, invalidating its tokens.
|
|
5684
|
+
* @param agentInstanceSessionId - Unique identifier of the agent instance session.
|
|
5685
|
+
*
|
|
5686
|
+
* @example
|
|
5687
|
+
* "agent_instance_session_01EHWNCE74X7JSDV0X3SZ3KJNY"
|
|
5688
|
+
*
|
|
5689
|
+
* @returns {Promise<AgentInstanceSession>}
|
|
5690
|
+
* @throws {NotFoundException} 404
|
|
5691
|
+
*/
|
|
5692
|
+
revokeInstanceSession(agentInstanceSessionId: string): Promise<AgentInstanceSession>;
|
|
5127
5693
|
/**
|
|
5128
5694
|
* Link a claim attempt to an external user
|
|
5129
5695
|
*
|
|
@@ -5184,26 +5750,6 @@ declare class Agents {
|
|
|
5184
5750
|
private getJWKS;
|
|
5185
5751
|
}
|
|
5186
5752
|
//#endregion
|
|
5187
|
-
//#region src/common/utils/pagination.d.ts
|
|
5188
|
-
declare class AutoPaginatable<ResourceType, ParametersType extends PaginationOptions = PaginationOptions> {
|
|
5189
|
-
protected list: List<ResourceType>;
|
|
5190
|
-
private apiCall;
|
|
5191
|
-
readonly object: "list";
|
|
5192
|
-
readonly options: ParametersType;
|
|
5193
|
-
constructor(list: List<ResourceType>, apiCall: (params: PaginationOptions) => Promise<List<ResourceType>>, options?: ParametersType);
|
|
5194
|
-
get data(): ResourceType[];
|
|
5195
|
-
get listMetadata(): {
|
|
5196
|
-
before?: string | null;
|
|
5197
|
-
after?: string | null;
|
|
5198
|
-
};
|
|
5199
|
-
private generatePages;
|
|
5200
|
-
/**
|
|
5201
|
-
* Automatically paginates over the list of results, returning the complete data set.
|
|
5202
|
-
* Returns the first result if `options.limit` is passed to the first request.
|
|
5203
|
-
*/
|
|
5204
|
-
autoPagination(): Promise<ResourceType[]>;
|
|
5205
|
-
}
|
|
5206
|
-
//#endregion
|
|
5207
5753
|
//#region src/api-keys/api-keys.d.ts
|
|
5208
5754
|
declare class ApiKeys {
|
|
5209
5755
|
private readonly workos;
|
|
@@ -7829,6 +8375,79 @@ declare class UserManagement {
|
|
|
7829
8375
|
* @throws {UnprocessableEntityException} 422
|
|
7830
8376
|
*/
|
|
7831
8377
|
resendInvitation(invitationId: string, options?: ResendInvitationOptions): Promise<Invitation>;
|
|
8378
|
+
/**
|
|
8379
|
+
* List waitlists
|
|
8380
|
+
*
|
|
8381
|
+
* Get a list of the waitlists in the environment. All waitlists are
|
|
8382
|
+
* returned in a single response — this endpoint is not paginated.
|
|
8383
|
+
* @returns {Promise<List<Waitlist>>}
|
|
8384
|
+
*/
|
|
8385
|
+
listWaitlists(): Promise<List<Waitlist>>;
|
|
8386
|
+
/**
|
|
8387
|
+
* Get a waitlist
|
|
8388
|
+
*
|
|
8389
|
+
* Get the details of an existing waitlist. The literal id `default`
|
|
8390
|
+
* is accepted and resolves to the environment's default waitlist.
|
|
8391
|
+
* @returns {Promise<Waitlist>}
|
|
8392
|
+
* @throws {NotFoundException} 404
|
|
8393
|
+
*/
|
|
8394
|
+
getWaitlist(waitlistId: string): Promise<Waitlist>;
|
|
8395
|
+
/**
|
|
8396
|
+
* List waitlist entries
|
|
8397
|
+
*
|
|
8398
|
+
* Get a list of the entries on a waitlist matching the criteria specified.
|
|
8399
|
+
* The literal id `default` is accepted and resolves to the environment's
|
|
8400
|
+
* default waitlist.
|
|
8401
|
+
* @param waitlistId - The unique ID of the waitlist.
|
|
8402
|
+
* @param options - Pagination and filter options.
|
|
8403
|
+
* @returns {Promise<AutoPaginatable<WaitlistEntry, SerializedListWaitlistEntriesOptions>>}
|
|
8404
|
+
* @throws {NotFoundException} 404
|
|
8405
|
+
* @throws {UnprocessableEntityException} 422
|
|
8406
|
+
*/
|
|
8407
|
+
listWaitlistEntries(waitlistId: string, options?: ListWaitlistEntriesOptions): Promise<AutoPaginatable<WaitlistEntry, SerializedListWaitlistEntriesOptions>>;
|
|
8408
|
+
/**
|
|
8409
|
+
* Create a waitlist entry
|
|
8410
|
+
*
|
|
8411
|
+
* Add an email address to a waitlist. Adding an email address that is
|
|
8412
|
+
* already on the waitlist returns the existing entry unchanged. The
|
|
8413
|
+
* literal id `default` is accepted and resolves to the environment's
|
|
8414
|
+
* default waitlist.
|
|
8415
|
+
* @param waitlistId - The unique ID of the waitlist.
|
|
8416
|
+
* @param payload - Object containing email and optional fields.
|
|
8417
|
+
* @returns {Promise<WaitlistEntry>}
|
|
8418
|
+
* @throws {NotFoundException} 404
|
|
8419
|
+
* @throws {UnprocessableEntityException} 422
|
|
8420
|
+
*/
|
|
8421
|
+
createWaitlistEntry(waitlistId: string, payload: CreateWaitlistEntryOptions): Promise<WaitlistEntry>;
|
|
8422
|
+
/**
|
|
8423
|
+
* Approve a waitlist entry
|
|
8424
|
+
*
|
|
8425
|
+
* Approve a waitlist entry, create an invitation for its email address,
|
|
8426
|
+
* and send the invitation email.
|
|
8427
|
+
* @returns {Promise<WaitlistEntry>}
|
|
8428
|
+
* @throws {NotFoundException} 404
|
|
8429
|
+
* @throws {UnprocessableEntityException} 422
|
|
8430
|
+
*/
|
|
8431
|
+
approveWaitlistEntry(waitlistEntryId: string): Promise<WaitlistEntry>;
|
|
8432
|
+
/**
|
|
8433
|
+
* Deny a waitlist entry
|
|
8434
|
+
*
|
|
8435
|
+
* Deny a pending waitlist entry.
|
|
8436
|
+
* @returns {Promise<WaitlistEntry>}
|
|
8437
|
+
* @throws {NotFoundException} 404
|
|
8438
|
+
* @throws {UnprocessableEntityException} 422
|
|
8439
|
+
*/
|
|
8440
|
+
denyWaitlistEntry(waitlistEntryId: string): Promise<WaitlistEntry>;
|
|
8441
|
+
/**
|
|
8442
|
+
* Delete a waitlist entry
|
|
8443
|
+
*
|
|
8444
|
+
* Remove the entry from the waitlist. Its email address can join again
|
|
8445
|
+
* unless a user with that email now exists in the environment. Deleting
|
|
8446
|
+
* the entry does not revoke an invitation created by approving it.
|
|
8447
|
+
* @returns {Promise<void>}
|
|
8448
|
+
* @throws {NotFoundException} 404
|
|
8449
|
+
*/
|
|
8450
|
+
deleteWaitlistEntry(waitlistEntryId: string): Promise<void>;
|
|
7832
8451
|
/**
|
|
7833
8452
|
* Revoke Session
|
|
7834
8453
|
*
|
|
@@ -10068,5 +10687,5 @@ interface ConfidentialClientOptions extends WorkOSOptions {
|
|
|
10068
10687
|
declare function createWorkOS(options: PublicClientOptions): PublicWorkOS;
|
|
10069
10688
|
declare function createWorkOS(options: ConfidentialClientOptions): WorkOS;
|
|
10070
10689
|
//#endregion
|
|
10071
|
-
export { ReadObjectMetadataResponse as $, OrganizationMembershipDeletedResponse as $a, CreatedApiKey as $c, AuthenticateUserWithMagicAuthCredentials as $d, SerializedGroupRoleAssignmentEntry as $f, DsyncUserUpdatedEventResponse as $i, CreateMagicAuthResponseResponse as $l, HttpClientResponseInterface as $m, SerializedLinkClaimAttemptToExternalUserOptions as $n, VaultDataCreatedEventResponse as $o, DeleteAuthorizationResourceByExternalIdOptions as $p, ApiKeyCreatedEventResponse as $r, DataIntegrationAuthorizeUrlResponse as $s, PasswordlessSessionResponse as $t, AuthenticationFactorResponse as $u, ApiKeyRequiredException as A, InvitationResentEvent as Aa, AddGroupOrganizationMembershipOptions as Ac, CreateUserResponse as Ad, SSOPKCEAuthorizationURLResult as Af, ConnectionDeactivatedEvent as Ai, SendVerificationEmailOptions as Al, UpdateEnvironmentRoleOptions as Am, CompleteOAuth2Options as An, PipesConnectedAccountState as Ao, ListRoleAssignmentsForResourceOptions as Ap, DeleteItContactOptions as Ar, DeleteDataIntegrationOptions as As, SerializedAuditLogExportOptions as At, Identity as Au, ObjectSummaryResponse as B, OrganizationDomainCreatedEvent as Ba, FlagPollResponse as Bc, SerializedAuthenticateWithRefreshTokenOptions as Bd, Role as Bf, DsyncGroupDeletedEvent as Bi, ResetPasswordOptions as Bl, SerializedListDirectoriesOptions as Bm, AgentCredentialValidation as Bn, SessionCreatedEventResponse as Bo, RoleAssignmentSourceResponse as Bp, DomainData as Br, DataIntegrationsListResponseDataAuthMethods as Bs, RadarStandaloneResponse as Bt, CreateUserApiKeyRequestOptions as Bu, BadRequestException as C, GroupMemberRemovedEventResponse as Ca, ListGroupOrganizationMembershipsOptions as Cc, AuthenticateWithSessionCookieOptions as Cd, GetProfileAndTokenOptions as Cf, AuthenticationRadarRiskDetectedEventResponse as Ci, UpdateUserOptions as Cl, UpdateOrganizationRoleOptions as Cm, CreateM2MApplication as Cn, PipesConnectedAccountConnectionFailedEvent as Co, SerializedRemoveRoleOptions as Cp, Organization as Cr, UpdateCustomProviderDefinitionResponse as Cs, AuditLogSchema as Ct, SerializedListInvitationsOptions as Cu, isAuthenticationErrorData as D, InvitationAcceptedEventResponse as Da, DeleteGroupOptions as Dc, AuthenticationMethod as Dd, ConnectionResponse as Df, AuthenticationSSOSucceededEventResponse as Di, Session as Dl, AddEnvironmentRolePermissionOptions as Dm, RedirectUriInput as Dn, PipesConnectedAccountReauthorizationNeededEvent as Do, BaseAssignRoleOptions as Dp, ItContact as Dr, GetDataIntegrationOptions as Ds, AuditLogExport as Dt, InvitationEvent as Du, AuthenticationException as E, InvitationAcceptedEvent as Ea, GetGroupOptions as Ec, UserManagementAccessToken as Ed, ConnectionDomain as Ef, AuthenticationSSOSucceededEvent as Ei, AuthMethod as El, OrganizationRole as Em, CreateOAuthApplicationResponse as En, PipesConnectedAccountDisconnectedEventResponse as Eo, AssignRoleOptionsWithResourceId as Ep, ListOrganizationFeatureFlagsOptions as Er, GetUserConnectedAccountOptions as Es, AuditLogTargetSchema as Et, Invitation as Eu, UpdateWebhookEndpointEvents as F, MagicAuthCreatedEventResponse as Fa, RemoveFlagTargetOptions as Fc, ImpersonatorResponse as Fd, DirectoryUserWithGroupsResponse as Ff, DsyncActivatedEventResponse as Fi, SendInvitationOptions as Fl, EnvironmentRoleListResponse as Fm, UserObject as Fn, RoleDeletedEvent as Fo, RoleAssignmentResource as Fp, SerializedCreateItContactOptions as Fr, DataIntegrationsListResponseDataOwnership as Fs, Challenge as Ft, EmailVerificationEventResponse as Fu, ObjectMetadata as G, OrganizationDomainUpdatedEventResponse as Ga, EvaluationResource as Gc, AuthenticateWithOrganizationSelectionOptions as Gd, ListEffectivePermissionsByExternalIdOptions as Gf, DsyncGroupUserAddedEventResponse as Gi, RefreshSessionResponse as Gl, DirectoryResponse as Gm, ValidAgentCredential as Gn, UserCreatedEventResponse as Go, ListResourcesForMembershipOptionsWithParentId as Gp, PutOptions as Gr, DataIntegrationCustomProviderResponse as Gs, RadarListAction as Gt, SerializedCreateOrganizationMembershipOptions as Gu, ObjectVersionResponse as H, OrganizationDomainDeletedEvent as Ha, FeatureFlag as Hc, AuthenticateWithPasswordOptions as Hd, RoleEventResponse as Hf, DsyncGroupUpdatedEvent as Hi, ResendInvitationOptions as Hl, DirectoryGroup as Hm, SerializedAgentAccessTokenClaims as Hn, SessionRevokedEventResponse as Ho, ListMembershipsForResourceOptions as Hp, WorkOSResponseError as Hr, DataIntegrationResponse as Hs, RadarStandaloneResponseBlocklistType as Ht, CreatePasswordResetOptions as Hu, UpdateWebhookEndpointStatus as I, OrganizationCreatedEvent as Ia, ListFeatureFlagsOptions as Ic, AuthenticateWithRefreshTokenPublicClientOptions as Id, ListOrganizationRolesResponse as If, DsyncDeletedEvent as Ii, SerializedSendInvitationOptions as Il, EnvironmentRoleResponse as Im, UserObjectResponse as In, RoleDeletedEventResponse as Io, RoleAssignmentResourceResponse as Ip, SerializedInviteItContactOptions as Ir, DataIntegrationsListResponseDataConnectedAccount as Is, ChallengeResponse as It, EmailVerificationResponse as Iu, ActorResponse as J, OrganizationDomainVerifiedEvent as Ja, AddFlagTargetOptions as Jc, AuthenticateWithRadarSmsChallengeOptions as Jd, GroupRoleAssignmentEntry as Jf, DsyncUserCreatedEvent as Ji, PasswordReset as Jl, DirectoryType as Jm, ValidateAgentCredentialOptions as Jn, UserUpdatedEvent as Jo, AuthorizationCheckOptionsWithResourceExternalId as Jp, List as Jr, DataIntegrationCredentialsResponseCredential as Js, RadarStandaloneAssessRequestAuthMethod as Jt, PKCEAuthorizationURLResult as Ju, ObjectMetadataResponse as K, OrganizationDomainVerificationFailedEvent as Ka, LegacyEvaluationContext as Kc, SerializedAuthenticateWithOrganizationSelectionOptions as Kd, ListEffectivePermissionsOptions as Kf, DsyncGroupUserRemovedEvent as Ki, RetryableRefreshSessionFailureReason as Kl, DirectoryState as Km, ValidateAgentAccessTokenOptions as Kn, UserDeletedEvent as Ko, SerializedListResourcesForMembershipOptions as Kp, PostOptions as Kr, DataIntegrationCustomProviderAuthenticateVia as Ks, RadarListType as Kt, CreateMagicAuthOptions as Ku, CreateWebhookEndpointEvents as L, OrganizationCreatedResponse as La, FlagChange as Lc, SerializedAuthenticateWithRefreshTokenPublicClientOptions as Ld, OrganizationRoleEvent as Lf, DsyncDeletedEventResponse as Li, RevokeSessionOptions as Ll, ListDirectoryUsersOptions as Lm, AutoPaginatable as Ln, RoleUpdatedEvent as Lo, RoleAssignmentResponse as Lp, CreateOrganizationOptions as Lr, DataIntegrationsListResponseDataConnectedAccountResponse as Ls, ChallengeFactorOptions as Lt, CreateUserOptions as Lu, WebhookEndpoint as M, InvitationRevokedEvent as Ma, RuntimeClientStats as Mc, User as Md, DirectoryUser as Mf, ConnectionDeletedEvent as Mi, SendRadarSmsChallengeResponse as Ml, SerializedCreateEnvironmentRoleOptions as Mm, UserConsentOptionResponse as Mn, PipesConnectionFailedResponse as Mo, ListRoleAssignmentsOptions as Mp, ItContactIntent as Mr, DataIntegrationsListResponseWire as Ms, VerifyResponseResponse as Mt, SerializedEnrollUserInMfaFactorOptions as Mu, WebhookEndpointResponse as N, InvitationRevokedEventResponse as Na, RuntimeClientLogger as Nc, UserResponse as Nd, DirectoryUserResponse as Nf, ConnectionDeletedEventResponse as Ni, SendRadarSmsChallengeResponseResponse as Nl, EnvironmentRole as Nm, UserConsentOptionChoice as Nn, RoleCreatedEvent as No, SerializedListRoleAssignmentsOptions as Np, ListItContactsOptions as Nr, DataIntegrationsListResponseData as Ns, VerifyChallengeOptions as Nt, EmailVerification as Nu, GenericServerException as O, InvitationCreatedEvent as Oa, CreateGroupOptions as Oc, AuthenticationResponse as Od, ConnectionType as Of, ConnectionActivatedEvent as Oi, SessionResponse as Ol, SetEnvironmentRolePermissionsOptions as Om, RedirectUriInputResponse as On, PipesConnectedAccountReauthorizationNeededEventResponse as Oo, SerializedAssignRoleOptions as Op, ItContactResponse as Or, GetAccessTokenOptions as Os, AuditLogExportResponse as Ot, InvitationEventResponse as Ou, WebhookEndpointStatus as P, MagicAuthCreatedEvent as Pa, RuntimeClientOptions as Pc, Impersonator as Pd, DirectoryUserWithGroups as Pf, DsyncActivatedEvent as Pi, SerializedSendRadarSmsChallengeOptions as Pl, EnvironmentRoleList as Pm, UserConsentOptionChoiceResponse as Pn, RoleCreatedEventResponse as Po, RoleAssignment as Pp, RevokeItContactOptions as Pr, DataIntegrationsListResponseDataResponse as Ps, EnrollFactorOptions as Pt, EmailVerificationEvent as Pu, UpdateObjectOptions as Q, OrganizationMembershipDeleted as Qa, ListOrganizationApiKeysOptions as Qc, SerializedAuthenticateWithRadarEmailChallengeOptions as Qd, ReplaceGroupRoleAssignmentsOptions as Qf, DsyncUserUpdatedEvent as Qi, CreateMagicAuthResponse as Ql, HttpClientInterface as Qm, SerializedClaimAttemptResponse as Qn, VaultDataCreatedEvent as Qo, DeleteAuthorizationResourceOptions as Qp, ApiKeyCreatedEvent as Qr, DataIntegrationCredentialType as Qs, PasswordlessSession as Qt, AuthenticationFactor as Qu, WorkOS as R, OrganizationDeletedEvent as Ra, FlagCustomTarget as Rc, AuthenticateUserWithRefreshTokenCredentials as Rd, OrganizationRoleEventResponse as Rf, DsyncGroupCreatedEvent as Ri, SerializedRevokeSessionOptions as Rl, ListDirectoryGroupsOptions as Rm, AgentAccessTokenClaims as Rn, RoleUpdatedEventResponse as Ro, RoleAssignmentRole as Rp, CreateOrganizationRequestOptions as Rr, DataIntegrationsListResponseDataConnectedAccountState as Rs, RadarListEntryAlreadyPresentResponse as Rt, SerializedCreateUserOptions as Ru, ConflictException as S, GroupMemberRemovedEvent as Sa, ListGroupsOptions as Sc, AuthenticateWithSessionCookieFailureReason as Sd, SerializedListConnectionsOptions as Sf, AuthenticationRadarRiskDetectedEvent as Si, SerializedUpdateUserOptions as Sl, SerializedUpdateOrganizationRoleOptions as Sm, CreateApplicationOptions as Sn, PipesConnectedAccountConnectedEventResponse as So, RemoveRoleOptionsWithResourceId as Sp, UpdateOrganizationOptions as Sr, UpdateCustomProviderDefinition as Ss, AuditLogActorSchema as St, ListInvitationsOptions as Su, AuthenticationErrorData as T, GroupUpdatedEventResponse as Ta, GroupResponse as Tc, SessionCookieData as Td, Connection as Tf, AuthenticationSSOFailedEventResponse as Ti, UpdateOrganizationMembershipOptions as Tl, SerializedCreateOrganizationRoleOptions as Tm, CreateOAuthApplication as Tn, PipesConnectedAccountDisconnectedEvent as To, AssignRoleOptionsWithResourceExternalId as Tp, ListOrganizationsOptions as Tr, ListUserDataProvidersOptions as Ts, AuditLogSchemaResponse as Tt, ListAuthFactorsOptions as Tu, VaultObject as U, OrganizationDomainDeletedEventResponse as Ua, FeatureFlagResponse as Uc, SerializedAuthenticateWithPasswordOptions as Ud, RoleList as Uf, DsyncGroupUpdatedEventResponse as Ui, SerializedResendInvitationOptions as Ul, DirectoryGroupResponse as Um, SerializedAgentCredentialValidation as Un, UnknownEvent as Uo, ListResourcesForMembershipOptions as Up, WorkOSOptions as Ur, DataIntegrationState as Us, RadarStandaloneResponseControl as Ut, SerializedCreatePasswordResetOptions as Uu, ObjectVersion as V, OrganizationDomainCreatedEventResponse as Va, FlagTarget as Vc, AuthenticateUserWithPasswordCredentials as Vd, RoleEvent as Vf, DsyncGroupDeletedEventResponse as Vi, SerializedResetPasswordOptions as Vl, PaginationOptions as Vm, InvalidAgentCredential as Vn, SessionRevokedEvent as Vo, ListMembershipsForResourceByExternalIdOptions as Vp, DomainDataState as Vr, DataIntegration as Vs, RadarStandaloneResponseWire as Vt, SerializedCreateUserApiKeyOptions as Vu, VaultObjectResponse as W, OrganizationDomainUpdatedEvent as Wa, EvaluationContext as Wc, AuthenticateUserWithOrganizationSelectionCredentials as Wd, RoleResponse as Wf, DsyncGroupUserAddedEvent as Wi, RefreshSessionFailureReason as Wl, Directory as Wm, SerializedValidateAgentCredentialOptions as Wn, UserCreatedEvent as Wo, ListResourcesForMembershipOptionsWithParentExternalId as Wp, UnprocessableEntityError as Wr, DataIntegrationCustomProvider as Ws, RadarStandaloneResponseVerdict as Wt, CreateOrganizationMembershipOptions as Wu, CreateDataKeyResponseWire as X, OrganizationMembershipCreated as Xa, ValidateApiKeyOptions as Xc, AuthenticateUserWithRadarEmailChallengeCredentials as Xd, GroupRoleAssignmentEntryWithResourceExternalId as Xf, DsyncUserDeletedEvent as Xi, PasswordResetEventResponse as Xl, EventDirectoryResponse as Xm, ClaimAttemptResponse as Xn, VaultByokKeyVerificationCompletedEvent as Xo, AuthorizationCheckResult as Xp, GetOptions as Xr, DataIntegrationCredential as Xs, CreatePasswordlessSessionOptions as Xt, AuthenticationRadarRiskDetectedEventData as Xu, CreateDataKeyResponse as Y, OrganizationDomainVerifiedEventResponse as Ya, SerializedValidateApiKeyResponse as Yc, SerializedAuthenticateWithRadarSmsChallengeOptions as Yd, GroupRoleAssignmentEntryForOrganization as Yf, DsyncUserCreatedEventResponse as Yi, PasswordResetEvent as Yl, EventDirectory as Ym, ClaimAttemptOrganization as Yn, UserUpdatedEventResponse as Yo, AuthorizationCheckOptionsWithResourceId as Yp, ListResponse as Yr, DataIntegrationCredentialsResponseCredentialResponse as Ys, SendSessionResponse as Yt, UserManagementAuthorizationURLOptions as Yu, UpdateObjectEntity as Z, OrganizationMembershipCreatedResponse as Za, ValidateApiKeyResponse as Zc, AuthenticateWithRadarEmailChallengeOptions as Zd, GroupRoleAssignmentEntryWithResourceId as Zf, DsyncUserDeletedEventResponse as Zi, PasswordResetResponse as Zl, HttpClient as Zm, LinkClaimAttemptToExternalUserOptions as Zn, VaultByokKeyVerificationCompletedEventResponse as Zo, SerializedAuthorizationCheckOptions as Zp, GenerateLinkIntent as Zr, DataIntegrationCredentialResponse as Zs, SerializedCreatePasswordlessSessionOptions as Zt, AuthenticationRadarRiskDetectedEventResponseData as Zu, SignatureVerificationException as _, GroupDeletedEventResponse as _a, ConnectedAccountAuthMethod as _c, AuthenticationEventSsoResponse as _d, Profile as _f, AuthenticationPasskeySucceededEventResponse as _i, UserApiKeyWithValue as _l, Permission as _m, CreateApplicationClientSecretOptions as _n, PermissionDeletedEventResponse as _o, GroupRoleAssignmentResponse as _p, ActionPayload as _r, DataKeyPair as _s, AuditLogActor as _t, BaseOrganizationMembership as _u, PublicWorkOS as a, EventResponse as aa, CreateUserConnectedAccountOptions as ac, FactorType as ad, AuthenticateWithCodeAndVerifierOptions as af, AuthenticationMagicAuthFailedEventResponse as ai, SerializedApiKey as al, AuthorizationResourceResponse as am, ApplicationCredentialsListItemResponse as an, OrganizationRoleDeletedEventResponse as ao, RemoveGroupRoleAssignmentsOptionsWithResourceId as ap, AgentRegistrationStatus as ar, VaultDataUpdatedEventResponse as as, DecryptDataKeyResponse as at, Locale as au, NotFoundException as b, GroupMemberEventData as ba, UpdateGroupOptions as bc, SerializedAuthenticateWithTotpOptions as bd, OauthTokensResponse as bf, AuthenticationPasswordSucceededEvent as bi, SerializedUpdateUserPasswordOptions as bl, AddOrganizationRolePermissionOptions as bm, UpdateApplicationOptions as bn, PipesConnectedAccount as bo, RemoveRoleOptions as bp, UserRegistrationActionPayload as br, UpdateDataIntegrationOptions as bs, CreateAuditLogEventRequestOptions as bt, OrganizationMembershipResponse as bu, PortalLinkResponseWire as c, FlagDeletedEvent as ca, CustomProviderDefinitionResponse as cc, Totp as cd, AuthenticateWithCodeOptions as cf, AuthenticationMfaSucceededEvent as ci, OrganizationDomain as cl, CreateOptionsWithParentResourceId as cm, ConnectApplicationM2MResponse as cn, OrganizationUpdatedEvent as co, BaseCreateGroupRoleAssignmentOptions as cp, SerializedAgentRegistrationClaim as cr, VaultDekReadEvent as cs, WidgetSessionTokenResponseWire as ct, ListUserApiKeysOptions as cu, IntentOptions as d, FlagRuleUpdatedEventResponse as da, DataIntegrationCredentialsDtoResponse as dc, TotpWithSecretsResponse as dd, AuthenticateWithSessionOptions as df, AuthenticationOAuthFailedEventResponse as di, OrganizationDomainVerificationStrategy as dl, UpdateAuthorizationResourceOptions as dm, ConnectApplicationResponse as dn, PasswordResetCreatedEventResponse as do, CreateGroupRoleAssignmentOptionsWithResourceExternalId as dp, PKCEPair as dr, VaultKekCreatedEventResponse as ds, FeatureFlagsRuntimeClient as dt, ListSessionsOptions as du, EmailVerificationCreatedEvent as ea, DataIntegrationAuthorizeUrlResponseWire as ec, AuthenticationFactorType as ed, AuthenticateWithMagicAuthOptions as ef, RequestHeaders as eh, ApiKeyRevokedEvent as ei, SerializedCreatedApiKey as el, UpdateAuthorizationResourceByExternalIdOptions as em, ListEventOptions as en, OrganizationMembershipUpdated as eo, SerializedReplaceGroupRoleAssignmentsOptions as ep, AgentIdentity as er, VaultDataDeletedEvent as es, ReadObjectOptions as et, MagicAuth as eu, IntentOptionsResponse as f, FlagUpdatedEvent as fa, DataIntegrationCredentialsType as fc, Sms as fd, SerializedAuthenticatePublicClientBase as ff, AuthenticationOAuthSucceededEvent as fi, CreateOrganizationDomainOptions as fl, ListPermissionsOptions as fm, ConnectApplicationRedirectUri as fn, PasswordResetSucceededEvent as fo, CreateGroupRoleAssignmentOptionsWithResourceId as fp, Actions as fr, VaultMetadataReadEvent as fs, CookieSession as ft, SerializedListSessionsOptions as fu, UnauthorizedException as g, GroupDeletedEvent as ga, ConnectedAccountState as gc, AuthenticationEventSso as gd, ProfileAndTokenResponse as gf, AuthenticationPasskeySucceededEvent as gi, SerializedUserApiKeyWithValue as gl, SerializedCreatePermissionOptions as gm, DeleteClientSecretOptions as gn, PermissionDeletedEvent as go, GroupRoleAssignment as gp, ActionContext as gr, DataKey as gs, SerializedCreateAuditLogSchemaOptions as gt, AuthorizationOrganizationMembershipResponse as gu, UnprocessableEntityException as h, GroupCreatedEventResponse as ha, ConnectedAccountResponse as hc, AuthenticationEventResponse as hd, ProfileAndToken as hf, AuthenticationPasskeyFailedEventResponse as hi, VerifyEmailOptions as hl, CreatePermissionOptions as hm, ExternalAuthCompleteResponseWire as hn, PermissionCreatedEventResponse as ho, ListGroupRoleAssignmentsOptions as hp, UserRegistrationActionResponseData as hr, VaultNamesListedEventResponse as hs, CreateAuditLogSchemaResponse as ht, AuthorizationOrganizationMembership as hu, PublicUserManagement as i, EventName as ia, DataIntegrationAccessTokenResponseAccessTokenResponse as ic, FactorResponse as id, SerializedAuthenticateWithEmailVerificationOptions as if, CryptoProvider as ih, AuthenticationMagicAuthFailedEvent as ii, ApiKey as il, AuthorizationResource as im, ApplicationCredentialsListItem as in, OrganizationRoleDeletedEvent as io, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as ip, AgentRegistrationKind as ir, VaultDataUpdatedEvent as is, DecryptDataKeyOptions as it, LogoutURLOptions as iu, Webhooks as j, InvitationResentEventResponse as ja, SerializedAddGroupOrganizationMembershipOptions as jc, CreateUserResponseResponse as jd, DefaultCustomAttributes as jf, ConnectionDeactivatedEventResponse as ji, SendRadarSmsChallengeOptions as jl, CreateEnvironmentRoleOptions as jm, UserConsentOption as jn, PipesConnectionFailed as jo, SerializedListRoleAssignmentsForResourceOptions as jp, InviteItContactOptions as jr, DataIntegrationsListResponse as js, VerifyResponse as jt, EnrollAuthFactorOptions as ju, WorkOSErrorData as k, InvitationCreatedEventResponse as ka, SerializedCreateGroupOptions as kc, AuthenticationResponseResponse as kd, SSOAuthorizationURLOptions as kf, ConnectionActivatedEventResponse as ki, SessionStatus as kl, SerializedUpdateEnvironmentRoleOptions as km, ListApplicationsOptions as kn, PipesConnectedAccountResponse as ko, ListRoleAssignmentsForResourceByExternalIdOptions as kp, CreateItContactOptions as kr, DeleteUserConnectedAccountOptions as ks, AuditLogExportOptions as kt, InvitationResponse as ku, GenerateLink as l, FlagDeletedEventResponse as la, CustomProviderDefinitionAuthenticateVia as lc, TotpResponse as ld, SerializedAuthenticateWithCodeOptions as lf, AuthenticationMfaSucceededEventResponse as li, OrganizationDomainResponse as ll, SerializedCreateAuthorizationResourceOptions as lm, ConnectApplicationOAuth as ln, OrganizationUpdatedResponse as lo, CreateGroupRoleAssignmentOptions as lp, SerializedAgentRegistrationClaimCompletion as lr, VaultDekReadEventResponse as ls, CreateTokenOptions as lt, SerializedListUserApiKeysOptions as lu, SSOIntentOptionsResponse as m, GroupCreatedEvent as ma, ConnectedAccount as mc, AuthenticationEvent as md, WithResolvedClientId as mf, AuthenticationPasskeyFailedEvent as mi, SerializedVerifyEmailOptions as ml, UpdatePermissionOptions as mm, ExternalAuthCompleteResponse as mn, PermissionCreatedEvent as mo, GetGroupRoleAssignmentOptions as mp, ResponsePayload as mr, VaultNamesListedEvent as ms, CreateAuditLogSchemaRequestOptions as mt, SerializedListOrganizationMembershipsOptions as mu, PublicClientOptions as n, Event as na, DataIntegrationAccessTokenResponseWire as nc, AuthenticationFactorWithSecretsResponse as nd, AuthenticateUserWithEmailVerificationCredentials as nf, ResponseHeaderValue as nh, AuthenticationEmailVerificationSucceededEvent as ni, CreateOrganizationApiKeyRequestOptions as nl, ListAuthorizationResourcesOptions as nm, NewConnectApplicationSecret as nn, OrganizationRoleCreatedEvent as no, RemoveGroupRoleAssignmentsOptions as np, AgentRegistrationClaim as nr, VaultDataReadEvent as ns, CreateObjectEntity as nt, MagicAuthEventResponse as nu, createWorkOS as o, FlagCreatedEvent as oa, CreateDataIntegrationOptions as oc, FactorWithSecrets as od, SerializedAuthenticateWithCodeAndVerifierOptions as of, AuthenticationMagicAuthSucceededEvent as oi, OrganizationDomainVerificationFailed as ol, CreateAuthorizationResourceOptions as om, ConnectApplication as on, OrganizationRoleUpdatedEvent as oo, SerializedRemoveGroupRoleAssignmentsOptions as op, SerializedAgentIdentity as or, VaultDekDecryptedEvent as os, CreateDataKeyOptions as ot, ListUsersOptions as ou, SSOIntentOptions as p, FlagUpdatedEventResponse as pa, CreateDataIntegrationCredentialOptions as pc, SmsResponse as pd, SerializedAuthenticateWithOptionsBase as pf, AuthenticationOAuthSucceededEventResponse as pi, SerializedCreateOrganizationDomainOptions as pl, SerializedUpdatePermissionOptions as pm, ConnectApplicationRedirectUriResponse as pn, PasswordResetSucceededEventResponse as po, SerializedCreateGroupRoleAssignmentOptions as pp, AuthenticationActionResponseData as pr, VaultMetadataReadEventResponse as ps, CreateAuditLogSchemaOptions as pt, ListOrganizationMembershipsOptions as pu, Actor as q, OrganizationDomainVerificationFailedEventResponse as qa, TypedEvaluationContext as qc, AuthenticateUserWithRadarSmsChallengeCredentials as qd, BaseGroupRoleAssignmentEntry as qf, DsyncGroupUserRemovedEventResponse as qi, TerminalRefreshSessionFailureReason as ql, DirectoryStateResponse as qm, ValidateAgentApiKeyOptions as qn, UserDeletedEventResponse as qo, AuthorizationCheckOptions as qp, PatchOptions as qr, DataIntegrationCredentialsResponseError as qs, RadarStandaloneAssessRequestAction as qt, SerializedCreateMagicAuthOptions as qu, PublicSSO as r, EventBase as ra, DataIntegrationAccessTokenResponseAccessToken as rc, Factor as rd, AuthenticateWithEmailVerificationOptions as rf, ResponseHeaders as rh, AuthenticationEmailVerificationSucceededEventResponse as ri, SerializedCreateOrganizationApiKeyOptions as rl, SerializedListAuthorizationResourcesOptions as rm, NewConnectApplicationSecretResponse as rn, OrganizationRoleCreatedEventResponse as ro, RemoveGroupRoleAssignmentsOptionsForOrganization as rp, AgentRegistrationClaimCompletion as rr, VaultDataReadEventResponse as rs, CreateObjectOptions as rt, MagicAuthResponse as ru, PortalLinkResponse as s, FlagCreatedEventResponse as sa, CustomProviderDefinition as sc, FactorWithSecretsResponse as sd, AuthenticateUserWithCodeCredentials as sf, AuthenticationMagicAuthSucceededEventResponse as si, OrganizationDomainVerificationFailedResponse as sl, CreateOptionsWithParentExternalId as sm, ConnectApplicationM2M as sn, OrganizationRoleUpdatedEventResponse as so, RemoveGroupRoleAssignmentOptions as sp, SerializedAgentRegistration as sr, VaultDekDecryptedEventResponse as ss, WidgetSessionTokenResponse as st, SerializedListUsersOptions as su, ConfidentialClientOptions as t, EmailVerificationCreatedEventResponse as ta, DataIntegrationAccessTokenResponse as tc, AuthenticationFactorWithSecrets as td, SerializedAuthenticateWithMagicAuthOptions as tf, RequestOptions as th, ApiKeyRevokedEventResponse as ti, CreateOrganizationApiKeyOptions as tl, GetAuthorizationResourceByExternalIdOptions as tm, SerializedListEventOptions as tn, OrganizationMembershipUpdatedResponse as to, BaseRemoveGroupRoleAssignmentsOptions as tp, AgentRegistration as tr, VaultDataDeletedEventResponse as ts, ReadObjectResponse as tt, MagicAuthEvent as tu, GenerateLinkResponse as u, FlagRuleUpdatedEvent as ua, DataIntegrationCredentialsDto as uc, TotpWithSecrets as ud, AuthenticateWithOptionsBase as uf, AuthenticationOAuthFailedEvent as ui, OrganizationDomainState as ul, SerializedUpdateAuthorizationResourceOptions as um, ConnectApplicationOAuthResponse as un, PasswordResetCreatedEvent as uo, CreateGroupRoleAssignmentOptionsForOrganization as up, PKCE as ur, VaultKekCreatedEvent as us, WidgetSessionTokenScopes as ut, ListUserFeatureFlagsOptions as uu, RateLimitExceededException as v, GroupMemberAddedEvent as va, AuthorizeDataIntegrationOptions as vc, AuthenticateUserWithTotpCredentials as vd, ProfileResponse as vf, AuthenticationPasswordFailedEvent as vi, SerializedUserApiKey as vl, PermissionResponse as vm, ListApplicationClientSecretsOptions as vn, PermissionUpdatedEvent as vo, RemoveRoleAssignmentOptions as vp, UserData as vr, KeyContext as vs, AuditLogTarget as vt, BaseOrganizationMembershipResponse as vu, AuthenticationErrorCode as w, GroupUpdatedEvent as wa, Group as wc, AuthenticateWithSessionCookieSuccessResponse as wd, GetProfileOptions as wf, AuthenticationSSOFailedEvent as wi, SerializedUpdateOrganizationMembershipOptions as wl, CreateOrganizationRoleOptions as wm, CreateM2MApplicationResponse as wn, PipesConnectedAccountConnectionFailedEventResponse as wo, AssignRoleOptions as wp, OrganizationResponse as wr, UpdateCustomProviderDefinitionAuthenticateVia as ws, AuditLogSchemaMetadata as wt, ListGroupsForOrganizationMembershipOptions as wu, NoApiKeyProvidedException as x, GroupMemberEventResponseData as xa, RemoveGroupOrganizationMembershipOptions as xc, AuthenticateWithSessionCookieFailedResponse as xd, ListConnectionsOptions as xf, AuthenticationPasswordSucceededEventResponse as xi, UpdateUserPasswordOptions as xl, SetOrganizationRolePermissionsOptions as xm, GetApplicationOptions as xn, PipesConnectedAccountConnectedEvent as xo, RemoveRoleOptionsWithResourceExternalId as xp, SerializedUpdateOrganizationOptions as xr, UpdateDataIntegrationApiKeyOptions as xs, SerializedCreateAuditLogEventOptions as xt, OrganizationMembershipStatus as xu, OauthException as y, GroupMemberAddedEventResponse as ya, SerializedUpdateGroupOptions as yc, AuthenticateWithTotpOptions as yd, OauthTokens as yf, AuthenticationPasswordFailedEventResponse as yi, UserApiKey as yl, RemoveOrganizationRolePermissionOptions as ym, DeleteApplicationOptions as yn, PermissionUpdatedEventResponse as yo, BaseRemoveRoleOptions as yp, UserDataPayload as yr, UpdateUserConnectedAccountOptions as ys, CreateAuditLogEventOptions as yt, OrganizationMembership as yu, ObjectSummary as z, OrganizationDeletedResponse as za, FlagPollEntry as zc, AuthenticateWithRefreshTokenOptions as zd, OrganizationRoleResponse as zf, DsyncGroupCreatedEventResponse as zi, serializeRevokeSessionOptions as zl, ListDirectoriesOptions as zm, AgentCredentialType as zn, SessionCreatedEvent as zo, RoleAssignmentSource as zp, SerializedCreateOrganizationOptions as zr, DataIntegrationsListResponseDataConnectedAccountAuthMethod as zs, RadarListEntryAlreadyPresentResponseWire as zt, CreateUserApiKeyOptions as zu };
|
|
10072
|
-
//# sourceMappingURL=factory-
|
|
10690
|
+
export { ReadObjectMetadataResponse as $, GroupUpdatedEvent as $a, Group as $c, AuthenticationEventResponse as $d, ProfileAndToken as $f, AuthenticationSSOFailedEvent as $i, SerializedUpdateUserOptions as $l, CreatePermissionOptions as $m, AgentToken as $n, PipesConnectedAccountConnectionFailedEventResponse as $o, ListGroupRoleAssignmentsOptions as $p, OrganizationResponse as $r, UpdateCustomProviderDefinitionAuthenticateVia as $s, PasswordlessSessionResponse as $t, BaseOrganizationMembership as $u, ApiKeyRequiredException as A, EmailVerificationCreatedEventResponse as Aa, DataIntegrationAccessTokenResponse as Ac, CreateMagicAuthOptions as Ad, SerializedAuthenticateWithOrganizationSelectionOptions as Af, DirectoryState as Ah, ApiKeyRevokedEventResponse as Ai, CreateOrganizationApiKeyOptions as Al, SerializedListResourcesForMembershipOptions as Am, CompleteOAuth2Options as An, OrganizationMembershipUpdatedResponse as Ao, ListEffectivePermissionsOptions as Ap, CreateAgentBlueprintOptions as Ar, VaultDataDeletedEventResponse as As, SerializedAuditLogExportOptions as At, CreateMagicAuthResponseResponse as Au, ObjectSummaryResponse as B, FlagRuleUpdatedEventResponse as Ba, DataIntegrationCredentialsDtoResponse as Bc, AuthenticationFactorWithSecretsResponse as Bd, AuthenticateUserWithEmailVerificationCredentials as Bf, ResponseHeaderValue as Bh, AuthenticationOAuthFailedEventResponse as Bi, OrganizationDomainVerificationStrategy as Bl, ListAuthorizationResourcesOptions as Bm, InvalidAgentCredential as Bn, PasswordResetCreatedEventResponse as Bo, RemoveGroupRoleAssignmentsOptions as Bp, PKCEPair as Br, VaultKekCreatedEventResponse as Bs, RadarStandaloneResponse as Bt, WaitlistEntryResponse as Bu, BadRequestException as C, DsyncUserCreatedEvent as Ca, DataIntegrationCredentialsResponseCredential as Cc, CreateUserApiKeyOptions as Cd, AuthenticateWithRefreshTokenOptions as Cf, ListDirectoriesOptions as Ch, List as Ci, AddFlagTargetOptions as Cl, RoleAssignmentSource as Cm, CreateM2MApplication as Cn, OrganizationDomainVerifiedEvent as Co, OrganizationRoleResponse as Cp, AgentInstanceSessionStatus as Cr, UserUpdatedEvent as Cs, AuditLogSchema as Ct, RetryableRefreshSessionFailureReason as Cu, isAuthenticationErrorData as D, DsyncUserUpdatedEvent as Da, DataIntegrationCredentialType as Dc, SerializedCreatePasswordResetOptions as Dd, SerializedAuthenticateWithPasswordOptions as Df, DirectoryGroupResponse as Dh, ApiKeyCreatedEvent as Di, ListOrganizationApiKeysOptions as Dl, ListResourcesForMembershipOptions as Dm, RedirectUriInput as Dn, OrganizationMembershipDeleted as Do, RoleList as Dp, AgentBlueprint as Dr, VaultDataCreatedEvent as Ds, AuditLogExport as Dt, PasswordResetEventResponse as Du, AuthenticationException as E, DsyncUserDeletedEventResponse as Ea, DataIntegrationCredentialResponse as Ec, CreatePasswordResetOptions as Ed, AuthenticateWithPasswordOptions as Ef, DirectoryGroup as Eh, GenerateLinkIntent as Ei, ValidateApiKeyResponse as El, ListMembershipsForResourceOptions as Em, CreateOAuthApplicationResponse as En, OrganizationMembershipCreatedResponse as Eo, RoleEventResponse as Ep, SerializedListAgentInstanceSessionsOptions as Er, VaultByokKeyVerificationCompletedEventResponse as Es, AuditLogTargetSchema as Et, PasswordResetEvent as Eu, UpdateWebhookEndpointEvents as F, FlagCreatedEvent as Fa, CreateDataIntegrationOptions as Fc, AuthenticationRadarRiskDetectedEventResponseData as Fd, AuthenticateWithRadarEmailChallengeOptions as Ff, HttpClient as Fh, AuthenticationMagicAuthSucceededEvent as Fi, OrganizationDomainVerificationFailed as Fl, SerializedAuthorizationCheckOptions as Fm, UserObject as Fn, OrganizationRoleUpdatedEvent as Fo, GroupRoleAssignmentEntryWithResourceId as Fp, SerializedCreateAgentBlueprintOptions as Fr, VaultDekDecryptedEvent as Fs, Challenge as Ft, LogoutURLOptions as Fu, ObjectMetadata as G, GroupDeletedEvent as Ga, ConnectedAccountState as Gc, FactorWithSecretsResponse as Gd, AuthenticateUserWithCodeCredentials as Gf, AuthenticationPasskeySucceededEvent as Gi, SerializedVerifyEmailOptions as Gl, CreateOptionsWithParentExternalId as Gm, ValidateAgentAccessTokenOptions as Gn, PermissionDeletedEvent as Go, RemoveGroupRoleAssignmentOptions as Gp, ActionContext as Gr, DataKey as Gs, RadarListAction as Gt, SerializedListUserApiKeysOptions as Gu, ObjectVersionResponse as H, FlagUpdatedEventResponse as Ha, CreateDataIntegrationCredentialOptions as Hc, FactorResponse as Hd, SerializedAuthenticateWithEmailVerificationOptions as Hf, CryptoProvider as Hh, AuthenticationOAuthSucceededEventResponse as Hi, SerializedCreateOrganizationDomainOptions as Hl, AuthorizationResource as Hm, SerializedAgentCredentialValidation as Hn, PasswordResetSucceededEventResponse as Ho, RemoveGroupRoleAssignmentsOptionsWithResourceExternalId as Hp, AuthenticationActionResponseData as Hr, VaultMetadataReadEventResponse as Hs, RadarStandaloneResponseBlocklistType as Ht, ListUsersOptions as Hu, UpdateWebhookEndpointStatus as I, FlagCreatedEventResponse as Ia, CustomProviderDefinition as Ic, AuthenticationFactor as Id, SerializedAuthenticateWithRadarEmailChallengeOptions as If, HttpClientInterface as Ih, AuthenticationMagicAuthSucceededEventResponse as Ii, OrganizationDomainVerificationFailedResponse as Il, DeleteAuthorizationResourceOptions as Im, UserObjectResponse as In, OrganizationRoleUpdatedEventResponse as Io, ReplaceGroupRoleAssignmentsOptions as Ip, SerializedUpdateAgentBlueprintOptions as Ir, VaultDekDecryptedEventResponse as Is, ChallengeResponse as It, Locale as Iu, ActorResponse as J, GroupMemberAddedEventResponse as Ja, SerializedUpdateGroupOptions as Jc, TotpWithSecrets as Jd, AuthenticateWithOptionsBase as Jf, AuthenticationPasswordFailedEventResponse as Ji, UserApiKeyWithValue as Jl, SerializedUpdateAuthorizationResourceOptions as Jm, ClaimAttemptOrganization as Jn, PermissionUpdatedEventResponse as Jo, CreateGroupRoleAssignmentOptionsForOrganization as Jp, UserDataPayload as Jr, UpdateUserConnectedAccountOptions as Js, RadarStandaloneAssessRequestAuthMethod as Jt, SerializedListSessionsOptions as Ju, ObjectMetadataResponse as K, GroupDeletedEventResponse as Ka, ConnectedAccountAuthMethod as Kc, Totp as Kd, AuthenticateWithCodeOptions as Kf, AuthenticationPasskeySucceededEventResponse as Ki, VerifyEmailOptions as Kl, CreateOptionsWithParentResourceId as Km, ValidateAgentApiKeyOptions as Kn, PermissionDeletedEventResponse as Ko, BaseCreateGroupRoleAssignmentOptions as Kp, ActionPayload as Kr, DataKeyPair as Ks, RadarListType as Kt, ListUserFeatureFlagsOptions as Ku, CreateWebhookEndpointEvents as L, FlagDeletedEvent as La, CustomProviderDefinitionResponse as Lc, AuthenticationFactorResponse as Ld, AuthenticateUserWithMagicAuthCredentials as Lf, HttpClientResponseInterface as Lh, AuthenticationMfaSucceededEvent as Li, OrganizationDomain as Ll, DeleteAuthorizationResourceByExternalIdOptions as Lm, AgentAccessTokenClaims as Ln, OrganizationUpdatedEvent as Lo, SerializedGroupRoleAssignmentEntry as Lp, UpdateAgentBlueprintOptions as Lr, VaultDekReadEvent as Ls, ChallengeFactorOptions as Lt, ListWaitlistEntriesOptions as Lu, WebhookEndpoint as M, EventBase as Ma, DataIntegrationAccessTokenResponseAccessToken as Mc, PKCEAuthorizationURLResult as Md, AuthenticateWithRadarSmsChallengeOptions as Mf, DirectoryType as Mh, AuthenticationEmailVerificationSucceededEventResponse as Mi, SerializedCreateOrganizationApiKeyOptions as Ml, AuthorizationCheckOptionsWithResourceExternalId as Mm, UserConsentOptionResponse as Mn, OrganizationRoleCreatedEventResponse as Mo, GroupRoleAssignmentEntry as Mp, SerializedAgentBlueprint as Mr, VaultDataReadEventResponse as Ms, VerifyResponseResponse as Mt, MagicAuthEvent as Mu, WebhookEndpointResponse as N, EventName as Na, DataIntegrationAccessTokenResponseAccessTokenResponse as Nc, UserManagementAuthorizationURLOptions as Nd, SerializedAuthenticateWithRadarSmsChallengeOptions as Nf, EventDirectory as Nh, AuthenticationMagicAuthFailedEvent as Ni, ApiKey as Nl, AuthorizationCheckOptionsWithResourceId as Nm, UserConsentOptionChoice as Nn, OrganizationRoleDeletedEvent as No, GroupRoleAssignmentEntryForOrganization as Np, SerializedAgentBlueprintInvocableBy as Nr, VaultDataUpdatedEvent as Ns, VerifyChallengeOptions as Nt, MagicAuthEventResponse as Nu, GenericServerException as O, DsyncUserUpdatedEventResponse as Oa, DataIntegrationAuthorizeUrlResponse as Oc, CreateOrganizationMembershipOptions as Od, AuthenticateUserWithOrganizationSelectionCredentials as Of, Directory as Oh, ApiKeyCreatedEventResponse as Oi, CreatedApiKey as Ol, ListResourcesForMembershipOptionsWithParentExternalId as Om, RedirectUriInputResponse as On, OrganizationMembershipDeletedResponse as Oo, RoleResponse as Op, AgentBlueprintInvocableBy as Or, VaultDataCreatedEventResponse as Os, AuditLogExportResponse as Ot, PasswordResetResponse as Ou, WebhookEndpointStatus as P, EventResponse as Pa, CreateUserConnectedAccountOptions as Pc, AuthenticationRadarRiskDetectedEventData as Pd, AuthenticateUserWithRadarEmailChallengeCredentials as Pf, EventDirectoryResponse as Ph, AuthenticationMagicAuthFailedEventResponse as Pi, SerializedApiKey as Pl, AuthorizationCheckResult as Pm, UserConsentOptionChoiceResponse as Pn, OrganizationRoleDeletedEventResponse as Po, GroupRoleAssignmentEntryWithResourceExternalId as Pp, SerializedAgentBlueprintSessionSettings as Pr, VaultDataUpdatedEventResponse as Ps, EnrollFactorOptions as Pt, MagicAuthResponse as Pu, UpdateObjectOptions as Q, GroupMemberRemovedEventResponse as Qa, ListGroupOrganizationMembershipsOptions as Qc, AuthenticationEvent as Qd, WithResolvedClientId as Qf, AuthenticationRadarRiskDetectedEventResponse as Qi, UpdateUserPasswordOptions as Ql, UpdatePermissionOptions as Qm, SerializedLinkClaimAttemptToExternalUserOptions as Qn, PipesConnectedAccountConnectionFailedEvent as Qo, GetGroupRoleAssignmentOptions as Qp, Organization as Qr, UpdateCustomProviderDefinitionResponse as Qs, PasswordlessSession as Qt, AuthorizationOrganizationMembershipResponse as Qu, WorkOS as R, FlagDeletedEventResponse as Ra, CustomProviderDefinitionAuthenticateVia as Rc, AuthenticationFactorType as Rd, AuthenticateWithMagicAuthOptions as Rf, RequestHeaders as Rh, AuthenticationMfaSucceededEventResponse as Ri, OrganizationDomainResponse as Rl, UpdateAuthorizationResourceByExternalIdOptions as Rm, AgentCredentialType as Rn, OrganizationUpdatedResponse as Ro, SerializedReplaceGroupRoleAssignmentsOptions as Rp, AutoPaginatable as Rr, VaultDekReadEventResponse as Rs, RadarListEntryAlreadyPresentResponse as Rt, SerializedListWaitlistEntriesOptions as Ru, ConflictException as S, DsyncGroupUserRemovedEventResponse as Sa, DataIntegrationCredentialsResponseError as Sc, SerializedCreateUserOptions as Sd, AuthenticateUserWithRefreshTokenCredentials as Sf, ListDirectoryGroupsOptions as Sh, PatchOptions as Si, TypedEvaluationContext as Sl, RoleAssignmentRole as Sm, CreateApplicationOptions as Sn, OrganizationDomainVerificationFailedEventResponse as So, OrganizationRoleEventResponse as Sp, AgentInstanceSession as Sr, UserDeletedEventResponse as Ss, AuditLogActorSchema as St, RefreshSessionResponse as Su, AuthenticationErrorData as T, DsyncUserDeletedEvent as Ta, DataIntegrationCredential as Tc, SerializedCreateUserApiKeyOptions as Td, AuthenticateUserWithPasswordCredentials as Tf, PaginationOptions as Th, GetOptions as Ti, ValidateApiKeyOptions as Tl, ListMembershipsForResourceByExternalIdOptions as Tm, CreateOAuthApplication as Tn, OrganizationMembershipCreated as To, RoleEvent as Tp, SerializedAgentInstanceSession as Tr, VaultByokKeyVerificationCompletedEvent as Ts, AuditLogSchemaResponse as Tt, PasswordReset as Tu, VaultObject as U, GroupCreatedEvent as Ua, ConnectedAccount as Uc, FactorType as Ud, AuthenticateWithCodeAndVerifierOptions as Uf, AuthenticationPasskeyFailedEvent as Ui, Waitlist as Ul, AuthorizationResourceResponse as Um, SerializedValidateAgentCredentialOptions as Un, PermissionCreatedEvent as Uo, RemoveGroupRoleAssignmentsOptionsWithResourceId as Up, ResponsePayload as Ur, VaultNamesListedEvent as Us, RadarStandaloneResponseControl as Ut, SerializedListUsersOptions as Uu, ObjectVersion as V, FlagUpdatedEvent as Va, DataIntegrationCredentialsType as Vc, Factor as Vd, AuthenticateWithEmailVerificationOptions as Vf, ResponseHeaders as Vh, AuthenticationOAuthSucceededEvent as Vi, CreateOrganizationDomainOptions as Vl, SerializedListAuthorizationResourcesOptions as Vm, SerializedAgentAccessTokenClaims as Vn, PasswordResetSucceededEvent as Vo, RemoveGroupRoleAssignmentsOptionsForOrganization as Vp, Actions as Vr, VaultMetadataReadEvent as Vs, RadarStandaloneResponseWire as Vt, WaitlistEntryState as Vu, VaultObjectResponse as W, GroupCreatedEventResponse as Wa, ConnectedAccountResponse as Wc, FactorWithSecrets as Wd, SerializedAuthenticateWithCodeAndVerifierOptions as Wf, AuthenticationPasskeyFailedEventResponse as Wi, WaitlistResponse as Wl, CreateAuthorizationResourceOptions as Wm, ValidAgentCredential as Wn, PermissionCreatedEventResponse as Wo, SerializedRemoveGroupRoleAssignmentsOptions as Wp, UserRegistrationActionResponseData as Wr, VaultNamesListedEventResponse as Ws, RadarStandaloneResponseVerdict as Wt, ListUserApiKeysOptions as Wu, CreateDataKeyResponseWire as X, GroupMemberEventResponseData as Xa, RemoveGroupOrganizationMembershipOptions as Xc, Sms as Xd, SerializedAuthenticatePublicClientBase as Xf, AuthenticationPasswordSucceededEventResponse as Xi, UserApiKey as Xl, ListPermissionsOptions as Xm, LinkClaimAttemptToExternalUserOptions as Xn, PipesConnectedAccountConnectedEvent as Xo, CreateGroupRoleAssignmentOptionsWithResourceId as Xp, SerializedUpdateOrganizationOptions as Xr, UpdateDataIntegrationApiKeyOptions as Xs, CreatePasswordlessSessionOptions as Xt, SerializedListOrganizationMembershipsOptions as Xu, CreateDataKeyResponse as Y, GroupMemberEventData as Ya, UpdateGroupOptions as Yc, TotpWithSecretsResponse as Yd, AuthenticateWithSessionOptions as Yf, AuthenticationPasswordSucceededEvent as Yi, SerializedUserApiKey as Yl, UpdateAuthorizationResourceOptions as Ym, ClaimAttemptResponse as Yn, PipesConnectedAccount as Yo, CreateGroupRoleAssignmentOptionsWithResourceExternalId as Yp, UserRegistrationActionPayload as Yr, UpdateDataIntegrationOptions as Ys, SendSessionResponse as Yt, ListOrganizationMembershipsOptions as Yu, UpdateObjectEntity as Z, GroupMemberRemovedEvent as Za, ListGroupsOptions as Zc, SmsResponse as Zd, SerializedAuthenticateWithOptionsBase as Zf, AuthenticationRadarRiskDetectedEvent as Zi, SerializedUpdateUserPasswordOptions as Zl, SerializedUpdatePermissionOptions as Zm, SerializedClaimAttemptResponse as Zn, PipesConnectedAccountConnectedEventResponse as Zo, SerializedCreateGroupRoleAssignmentOptions as Zp, UpdateOrganizationOptions as Zr, UpdateCustomProviderDefinition as Zs, SerializedCreatePasswordlessSessionOptions as Zt, AuthorizationOrganizationMembership as Zu, SignatureVerificationException as _, DsyncGroupUpdatedEvent as _a, DataIntegrationResponse as _c, EmailVerificationEventResponse as _d, UserResponse as _f, EnvironmentRole as _h, WorkOSResponseError as _i, FeatureFlag as _l, SerializedListRoleAssignmentsOptions as _m, CreateApplicationClientSecretOptions as _n, OrganizationDomainDeletedEvent as _o, DirectoryUserResponse as _p, AgentInstance as _r, SessionRevokedEventResponse as _s, AuditLogActor as _t, ResetPasswordOptions as _u, PublicWorkOS as a, ConnectionDeactivatedEvent as aa, DeleteDataIntegrationOptions as ac, SerializedListInvitationsOptions as ad, AuthenticateWithSessionCookieFailedResponse as af, SetOrganizationRolePermissionsOptions as ah, DeleteItContactOptions as ai, AddGroupOrganizationMembershipOptions as al, RemoveRoleOptionsWithResourceExternalId as am, ApplicationCredentialsListItemResponse as an, InvitationResentEvent as ao, ListConnectionsOptions as ap, SerializedAgentToken as ar, PipesConnectedAccountState as as, DecryptDataKeyResponse as at, SessionResponse as au, NotFoundException as b, DsyncGroupUserAddedEventResponse as ba, DataIntegrationCustomProviderResponse as bc, SerializedCreateWaitlistEntryOptions as bd, AuthenticateWithRefreshTokenPublicClientOptions as bf, EnvironmentRoleResponse as bh, PutOptions as bi, EvaluationResource as bl, RoleAssignmentResourceResponse as bm, UpdateApplicationOptions as bn, OrganizationDomainUpdatedEventResponse as bo, ListOrganizationRolesResponse as bp, SerializedAgentInstance as br, UserCreatedEventResponse as bs, CreateAuditLogEventRequestOptions as bt, SerializedResendInvitationOptions as bu, PortalLinkResponseWire as c, ConnectionDeletedEventResponse as ca, DataIntegrationsListResponseData as cc, Invitation as cd, AuthenticateWithSessionCookieSuccessResponse as cf, CreateOrganizationRoleOptions as ch, ListItContactsOptions as ci, RuntimeClientLogger as cl, AssignRoleOptions as cm, ConnectApplicationM2MResponse as cn, InvitationRevokedEventResponse as co, GetProfileOptions as cp, AgentRegistration as cr, RoleCreatedEvent as cs, WidgetSessionTokenResponseWire as ct, SendRadarSmsChallengeOptions as cu, IntentOptions as d, DsyncDeletedEvent as da, DataIntegrationsListResponseDataConnectedAccount as dc, InvitationResponse as dd, AuthenticationMethod as df, AddEnvironmentRolePermissionOptions as dh, SerializedInviteItContactOptions as di, ListFeatureFlagsOptions as dl, BaseAssignRoleOptions as dm, ConnectApplicationResponse as dn, OrganizationCreatedEvent as do, ConnectionResponse as dp, AgentRegistrationKind as dr, RoleDeletedEventResponse as ds, FeatureFlagsRuntimeClient as dt, SerializedSendRadarSmsChallengeOptions as du, AuthenticationSSOFailedEventResponse as ea, ListUserDataProvidersOptions as ec, BaseOrganizationMembershipResponse as ed, AuthenticationEventSso as ef, SerializedCreatePermissionOptions as eh, ListOrganizationsOptions as ei, GroupResponse as el, GroupRoleAssignment as em, ListEventOptions as en, GroupUpdatedEventResponse as eo, ProfileAndTokenResponse as ep, MintAgentDelegatedAgentTokenOptions as er, PipesConnectedAccountDisconnectedEvent as es, ReadObjectOptions as et, UpdateUserOptions as eu, IntentOptionsResponse as f, DsyncDeletedEventResponse as fa, DataIntegrationsListResponseDataConnectedAccountResponse as fc, Identity as fd, AuthenticationResponse as ff, SetEnvironmentRolePermissionsOptions as fh, CreateOrganizationOptions as fi, FlagChange as fl, SerializedAssignRoleOptions as fm, ConnectApplicationRedirectUri as fn, OrganizationCreatedResponse as fo, ConnectionType as fp, AgentRegistrationStatus as fr, RoleUpdatedEvent as fs, CookieSession as ft, SendInvitationOptions as fu, UnauthorizedException as g, DsyncGroupDeletedEventResponse as ga, DataIntegration as gc, EmailVerificationEvent as gd, User as gf, SerializedCreateEnvironmentRoleOptions as gh, DomainDataState as gi, FlagTarget as gl, ListRoleAssignmentsOptions as gm, DeleteClientSecretOptions as gn, OrganizationDomainCreatedEventResponse as go, DirectoryUser as gp, SerializedAgentRegistrationClaimCompletion as gr, SessionRevokedEvent as gs, SerializedCreateAuditLogSchemaOptions as gt, serializeRevokeSessionOptions as gu, UnprocessableEntityException as h, DsyncGroupDeletedEvent as ha, DataIntegrationsListResponseDataAuthMethods as hc, EmailVerification as hd, CreateUserResponseResponse as hf, CreateEnvironmentRoleOptions as hh, DomainData as hi, FlagPollResponse as hl, SerializedListRoleAssignmentsForResourceOptions as hm, ExternalAuthCompleteResponseWire as hn, OrganizationDomainCreatedEvent as ho, DefaultCustomAttributes as hp, SerializedAgentRegistrationClaim as hr, SessionCreatedEventResponse as hs, CreateAuditLogSchemaResponse as ht, SerializedRevokeSessionOptions as hu, PublicUserManagement as i, ConnectionActivatedEventResponse as ia, DeleteUserConnectedAccountOptions as ic, ListInvitationsOptions as id, SerializedAuthenticateWithTotpOptions as if, AddOrganizationRolePermissionOptions as ih, CreateItContactOptions as ii, SerializedCreateGroupOptions as il, RemoveRoleOptions as im, ApplicationCredentialsListItem as in, InvitationCreatedEventResponse as io, OauthTokensResponse as ip, RefreshAgentTokenOptions as ir, PipesConnectedAccountResponse as is, DecryptDataKeyOptions as it, Session as iu, Webhooks as j, Event as ja, DataIntegrationAccessTokenResponseWire as jc, SerializedCreateMagicAuthOptions as jd, AuthenticateUserWithRadarSmsChallengeCredentials as jf, DirectoryStateResponse as jh, AuthenticationEmailVerificationSucceededEvent as ji, CreateOrganizationApiKeyRequestOptions as jl, AuthorizationCheckOptions as jm, UserConsentOption as jn, OrganizationRoleCreatedEvent as jo, BaseGroupRoleAssignmentEntry as jp, ListAgentBlueprintsOptions as jr, VaultDataReadEvent as js, VerifyResponse as jt, MagicAuth as ju, WorkOSErrorData as k, EmailVerificationCreatedEvent as ka, DataIntegrationAuthorizeUrlResponseWire as kc, SerializedCreateOrganizationMembershipOptions as kd, AuthenticateWithOrganizationSelectionOptions as kf, DirectoryResponse as kh, ApiKeyRevokedEvent as ki, SerializedCreatedApiKey as kl, ListResourcesForMembershipOptionsWithParentId as km, ListApplicationsOptions as kn, OrganizationMembershipUpdated as ko, ListEffectivePermissionsByExternalIdOptions as kp, AgentBlueprintSessionSettings as kr, VaultDataDeletedEvent as ks, AuditLogExportOptions as kt, CreateMagicAuthResponse as ku, GenerateLink as l, DsyncActivatedEvent as la, DataIntegrationsListResponseDataResponse as lc, InvitationEvent as ld, SessionCookieData as lf, SerializedCreateOrganizationRoleOptions as lh, RevokeItContactOptions as li, RuntimeClientOptions as ll, AssignRoleOptionsWithResourceExternalId as lm, ConnectApplicationOAuth as ln, MagicAuthCreatedEvent as lo, Connection as lp, AgentRegistrationClaim as lr, RoleCreatedEventResponse as ls, CreateTokenOptions as lt, SendRadarSmsChallengeResponse as lu, SSOIntentOptionsResponse as m, DsyncGroupCreatedEventResponse as ma, DataIntegrationsListResponseDataConnectedAccountAuthMethod as mc, SerializedEnrollUserInMfaFactorOptions as md, CreateUserResponse as mf, UpdateEnvironmentRoleOptions as mh, SerializedCreateOrganizationOptions as mi, FlagPollEntry as ml, ListRoleAssignmentsForResourceOptions as mm, ExternalAuthCompleteResponse as mn, OrganizationDeletedResponse as mo, SSOPKCEAuthorizationURLResult as mp, SerializedAgentRegistration as mr, SessionCreatedEvent as ms, CreateAuditLogSchemaRequestOptions as mt, RevokeSessionOptions as mu, PublicClientOptions as n, AuthenticationSSOSucceededEventResponse as na, GetDataIntegrationOptions as nc, OrganizationMembershipResponse as nd, AuthenticateUserWithTotpCredentials as nf, PermissionResponse as nh, ItContact as ni, DeleteGroupOptions as nl, RemoveRoleAssignmentOptions as nm, NewConnectApplicationSecret as nn, InvitationAcceptedEventResponse as no, ProfileResponse as np, MintAutonomousAgentTokenOptions as nr, PipesConnectedAccountReauthorizationNeededEvent as ns, CreateObjectEntity as nt, UpdateOrganizationMembershipOptions as nu, createWorkOS as o, ConnectionDeactivatedEventResponse as oa, DataIntegrationsListResponse as oc, ListGroupsForOrganizationMembershipOptions as od, AuthenticateWithSessionCookieFailureReason as of, SerializedUpdateOrganizationRoleOptions as oh, InviteItContactOptions as oi, SerializedAddGroupOrganizationMembershipOptions as ol, RemoveRoleOptionsWithResourceId as om, ConnectApplication as on, InvitationResentEventResponse as oo, SerializedListConnectionsOptions as op, SerializedMintAgentTokenOptions as or, PipesConnectionFailed as os, CreateDataKeyOptions as ot, SessionStatus as ou, SSOIntentOptions as p, DsyncGroupCreatedEvent as pa, DataIntegrationsListResponseDataConnectedAccountState as pc, EnrollAuthFactorOptions as pd, AuthenticationResponseResponse as pf, SerializedUpdateEnvironmentRoleOptions as ph, CreateOrganizationRequestOptions as pi, FlagCustomTarget as pl, ListRoleAssignmentsForResourceByExternalIdOptions as pm, ConnectApplicationRedirectUriResponse as pn, OrganizationDeletedEvent as po, SSOAuthorizationURLOptions as pp, SerializedAgentIdentity as pr, RoleUpdatedEventResponse as ps, CreateAuditLogSchemaOptions as pt, SerializedSendInvitationOptions as pu, Actor as q, GroupMemberAddedEvent as qa, AuthorizeDataIntegrationOptions as qc, TotpResponse as qd, SerializedAuthenticateWithCodeOptions as qf, AuthenticationPasswordFailedEvent as qi, SerializedUserApiKeyWithValue as ql, SerializedCreateAuthorizationResourceOptions as qm, ValidateAgentCredentialOptions as qn, PermissionUpdatedEvent as qo, CreateGroupRoleAssignmentOptions as qp, UserData as qr, KeyContext as qs, RadarStandaloneAssessRequestAction as qt, ListSessionsOptions as qu, PublicSSO as r, ConnectionActivatedEvent as ra, GetAccessTokenOptions as rc, OrganizationMembershipStatus as rd, AuthenticateWithTotpOptions as rf, RemoveOrganizationRolePermissionOptions as rh, ItContactResponse as ri, CreateGroupOptions as rl, BaseRemoveRoleOptions as rm, NewConnectApplicationSecretResponse as rn, InvitationCreatedEvent as ro, OauthTokens as rp, MintUserDelegatedAgentTokenOptions as rr, PipesConnectedAccountReauthorizationNeededEventResponse as rs, CreateObjectOptions as rt, AuthMethod as ru, PortalLinkResponse as s, ConnectionDeletedEvent as sa, DataIntegrationsListResponseWire as sc, ListAuthFactorsOptions as sd, AuthenticateWithSessionCookieOptions as sf, UpdateOrganizationRoleOptions as sh, ItContactIntent as si, RuntimeClientStats as sl, SerializedRemoveRoleOptions as sm, ConnectApplicationM2M as sn, InvitationRevokedEvent as so, GetProfileAndTokenOptions as sp, AgentIdentity as sr, PipesConnectionFailedResponse as ss, WidgetSessionTokenResponse as st, SendVerificationEmailOptions as su, ConfidentialClientOptions as t, AuthenticationSSOSucceededEvent as ta, GetUserConnectedAccountOptions as tc, OrganizationMembership as td, AuthenticationEventSsoResponse as tf, Permission as th, ListOrganizationFeatureFlagsOptions as ti, GetGroupOptions as tl, GroupRoleAssignmentResponse as tm, SerializedListEventOptions as tn, InvitationAcceptedEvent as to, Profile as tp, MintAgentTokenOptions as tr, PipesConnectedAccountDisconnectedEventResponse as ts, ReadObjectResponse as tt, SerializedUpdateOrganizationMembershipOptions as tu, GenerateLinkResponse as u, DsyncActivatedEventResponse as ua, DataIntegrationsListResponseDataOwnership as uc, InvitationEventResponse as ud, UserManagementAccessToken as uf, OrganizationRole as uh, SerializedCreateItContactOptions as ui, RemoveFlagTargetOptions as ul, AssignRoleOptionsWithResourceId as um, ConnectApplicationOAuthResponse as un, MagicAuthCreatedEventResponse as uo, ConnectionDomain as up, AgentRegistrationClaimCompletion as ur, RoleDeletedEvent as us, WidgetSessionTokenScopes as ut, SendRadarSmsChallengeResponseResponse as uu, RateLimitExceededException as v, DsyncGroupUpdatedEventResponse as va, DataIntegrationState as vc, EmailVerificationResponse as vd, Impersonator as vf, EnvironmentRoleList as vh, WorkOSOptions as vi, FeatureFlagResponse as vl, RoleAssignment as vm, ListApplicationClientSecretsOptions as vn, OrganizationDomainDeletedEventResponse as vo, DirectoryUserWithGroups as vp, AgentInstanceType as vr, UnknownEvent as vs, AuditLogTarget as vt, SerializedResetPasswordOptions as vu, AuthenticationErrorCode as w, DsyncUserCreatedEventResponse as wa, DataIntegrationCredentialsResponseCredentialResponse as wc, CreateUserApiKeyRequestOptions as wd, SerializedAuthenticateWithRefreshTokenOptions as wf, SerializedListDirectoriesOptions as wh, ListResponse as wi, SerializedValidateApiKeyResponse as wl, RoleAssignmentSourceResponse as wm, CreateM2MApplicationResponse as wn, OrganizationDomainVerifiedEventResponse as wo, Role as wp, ListAgentInstanceSessionsOptions as wr, UserUpdatedEventResponse as ws, AuditLogSchemaMetadata as wt, TerminalRefreshSessionFailureReason as wu, NoApiKeyProvidedException as x, DsyncGroupUserRemovedEvent as xa, DataIntegrationCustomProviderAuthenticateVia as xc, CreateUserOptions as xd, SerializedAuthenticateWithRefreshTokenPublicClientOptions as xf, ListDirectoryUsersOptions as xh, PostOptions as xi, LegacyEvaluationContext as xl, RoleAssignmentResponse as xm, GetApplicationOptions as xn, OrganizationDomainVerificationFailedEvent as xo, OrganizationRoleEvent as xp, SerializedListAgentInstancesOptions as xr, UserDeletedEvent as xs, SerializedCreateAuditLogEventOptions as xt, RefreshSessionFailureReason as xu, OauthException as y, DsyncGroupUserAddedEvent as ya, DataIntegrationCustomProvider as yc, CreateWaitlistEntryOptions as yd, ImpersonatorResponse as yf, EnvironmentRoleListResponse as yh, UnprocessableEntityError as yi, EvaluationContext as yl, RoleAssignmentResource as ym, DeleteApplicationOptions as yn, OrganizationDomainUpdatedEvent as yo, DirectoryUserWithGroupsResponse as yp, ListAgentInstancesOptions as yr, UserCreatedEvent as ys, CreateAuditLogEventOptions as yt, ResendInvitationOptions as yu, ObjectSummary as z, FlagRuleUpdatedEvent as za, DataIntegrationCredentialsDto as zc, AuthenticationFactorWithSecrets as zd, SerializedAuthenticateWithMagicAuthOptions as zf, RequestOptions as zh, AuthenticationOAuthFailedEvent as zi, OrganizationDomainState as zl, GetAuthorizationResourceByExternalIdOptions as zm, AgentCredentialValidation as zn, PasswordResetCreatedEvent as zo, BaseRemoveGroupRoleAssignmentsOptions as zp, PKCE as zr, VaultKekCreatedEvent as zs, RadarListEntryAlreadyPresentResponseWire as zt, WaitlistEntry as zu };
|
|
10691
|
+
//# sourceMappingURL=factory-C4y25QQJ.d.cts.map
|