@soat/sdk 0.5.1 → 0.5.2

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/dist/esm/index.js CHANGED
@@ -971,6 +971,121 @@ var Actors = class {
971
971
  });
972
972
  }
973
973
  };
974
+ var AgentFormations = class {
975
+ static {
976
+ __name(this, "AgentFormations");
977
+ }
978
+ /**
979
+ * Validate a formation template
980
+ *
981
+ * Validates a formation template without creating any resources. Returns a list of errors and warnings.
982
+ *
983
+ */
984
+ static validateAgentFormation(options) {
985
+ return (options.client ?? client).post({
986
+ url: "/api/v1/agent-formations/validate",
987
+ ...options,
988
+ headers: {
989
+ "Content-Type": "application/json",
990
+ ...options.headers
991
+ }
992
+ });
993
+ }
994
+ /**
995
+ * Plan a formation deployment
996
+ *
997
+ * Computes a diff between the desired template and the current stack state without making any changes. Returns the list of planned actions.
998
+ *
999
+ */
1000
+ static planAgentFormation(options) {
1001
+ return (options.client ?? client).post({
1002
+ url: "/api/v1/agent-formations/plan",
1003
+ ...options,
1004
+ headers: {
1005
+ "Content-Type": "application/json",
1006
+ ...options.headers
1007
+ }
1008
+ });
1009
+ }
1010
+ /**
1011
+ * List agent formations
1012
+ *
1013
+ * Returns all formation stacks for a project
1014
+ */
1015
+ static listAgentFormations(options) {
1016
+ return (options?.client ?? client).get({
1017
+ url: "/api/v1/agent-formations",
1018
+ ...options
1019
+ });
1020
+ }
1021
+ /**
1022
+ * Create a new agent formation
1023
+ *
1024
+ * Validates the template, creates the formation record, then provisions all declared resources in dependency order.
1025
+ *
1026
+ */
1027
+ static createAgentFormation(options) {
1028
+ return (options.client ?? client).post({
1029
+ url: "/api/v1/agent-formations",
1030
+ ...options,
1031
+ headers: {
1032
+ "Content-Type": "application/json",
1033
+ ...options.headers
1034
+ }
1035
+ });
1036
+ }
1037
+ /**
1038
+ * Delete an agent formation
1039
+ *
1040
+ * Deletes the formation stack and all its managed resources in reverse dependency order.
1041
+ *
1042
+ */
1043
+ static deleteAgentFormation(options) {
1044
+ return (options.client ?? client).delete({
1045
+ url: "/api/v1/agent-formations/{formation_id}",
1046
+ ...options
1047
+ });
1048
+ }
1049
+ /**
1050
+ * Get a specific agent formation
1051
+ *
1052
+ * Returns the formation stack including its current resources.
1053
+ */
1054
+ static getAgentFormation(options) {
1055
+ return (options.client ?? client).get({
1056
+ url: "/api/v1/agent-formations/{formation_id}",
1057
+ ...options
1058
+ });
1059
+ }
1060
+ /**
1061
+ * Update an agent formation
1062
+ *
1063
+ * Applies a new template to the formation. Resources are created, updated, or deleted to reconcile the current state with the desired state.
1064
+ *
1065
+ */
1066
+ static updateAgentFormation(options) {
1067
+ return (options.client ?? client).put({
1068
+ url: "/api/v1/agent-formations/{formation_id}",
1069
+ ...options,
1070
+ headers: {
1071
+ "Content-Type": "application/json",
1072
+ ...options.headers
1073
+ }
1074
+ });
1075
+ }
1076
+ /**
1077
+ * List formation operation events
1078
+ *
1079
+ * Returns all operations (create, update, delete) with their event logs for the formation, ordered chronologically.
1080
+ *
1081
+ */
1082
+ static listAgentFormationEvents(options) {
1083
+ return (options.client ?? client).get({
1084
+ url: "/api/v1/agent-formations/{formation_id}/events",
1085
+ ...options
1086
+ });
1087
+ }
1088
+ };
974
1089
  var AgentTools = class {
975
1090
  static {
976
1091
  __name(this, "AgentTools");
@@ -2667,4 +2782,4 @@ var SoatClient = class {
2667
2782
  this.webhooks = bindResource(Webhooks, httpClient);
2668
2783
  }
2669
2784
  };
2670
- export { Actors, AgentTools, Agents, AiProviders, ApiKeys, Chats, Conversations, Documents, Files, Knowledge, Memories, MemoryEntries, Policies, Projects, Secrets, Sessions, SoatClient, Traces, Users, Webhooks, createClient, createConfig };
2785
+ export { Actors, AgentFormations, AgentTools, Agents, AiProviders, ApiKeys, Chats, Conversations, Documents, Files, Knowledge, Memories, MemoryEntries, Policies, Projects, Secrets, Sessions, SoatClient, Traces, Users, Webhooks, createClient, createConfig };
package/dist/index.d.cts CHANGED
@@ -347,6 +347,147 @@ type ActorRecord = {
347
347
  type ErrorResponse = {
348
348
  error?: string;
349
349
  };
350
+ type FormationTemplate = {
351
+ /**
352
+ * Map of logical resource IDs to resource declarations
353
+ */
354
+ resources: {
355
+ [key: string]: ResourceDeclaration;
356
+ };
357
+ /**
358
+ * Map of output names to values. Values may use `{ "ref": "logicalId" }` to reference physical IDs of created resources.
359
+ *
360
+ */
361
+ outputs?: {
362
+ [key: string]: unknown;
363
+ } | null;
364
+ metadata?: {
365
+ [key: string]: unknown;
366
+ } | null;
367
+ };
368
+ type ResourceDeclaration = {
369
+ /**
370
+ * Resource type
371
+ */
372
+ type: 'ai_provider' | 'agent_tool' | 'agent' | 'document' | 'memory' | 'memory_entry' | 'webhook';
373
+ /**
374
+ * Resource properties. Values may use `{ "ref": "logicalId" }` to reference physical IDs of other resources in the template.
375
+ *
376
+ */
377
+ properties: {
378
+ [key: string]: unknown;
379
+ };
380
+ /**
381
+ * Explicit dependency list. In addition to implicit `ref` dependencies.
382
+ */
383
+ depends_on?: Array<string> | null;
384
+ metadata?: {
385
+ [key: string]: unknown;
386
+ } | null;
387
+ };
388
+ type AgentFormationResource = {
389
+ /**
390
+ * Public ID of the resource record
391
+ */
392
+ id?: string;
393
+ /**
394
+ * Logical identifier from the template
395
+ */
396
+ logical_id?: string;
397
+ /**
398
+ * Resource type (e.g. agent, memory)
399
+ */
400
+ resource_type?: string;
401
+ /**
402
+ * Public ID of the physical SOAT resource
403
+ */
404
+ physical_resource_id?: string | null;
405
+ /**
406
+ * Current resource status
407
+ */
408
+ status?: 'pending' | 'created' | 'updated' | 'deleted' | 'failed';
409
+ };
410
+ type AgentFormation = {
411
+ /**
412
+ * Public ID of the formation
413
+ */
414
+ id?: string;
415
+ /**
416
+ * Project public ID
417
+ */
418
+ project_id?: string;
419
+ /**
420
+ * Human-readable formation name
421
+ */
422
+ name?: string;
423
+ template?: FormationTemplate;
424
+ /**
425
+ * Resolved output values after stack deployment
426
+ */
427
+ outputs?: {
428
+ [key: string]: string;
429
+ } | null;
430
+ /**
431
+ * Formation status
432
+ */
433
+ status?: 'creating' | 'active' | 'updating' | 'failed' | 'deleting' | 'deleted' | 'delete_failed';
434
+ metadata?: {
435
+ [key: string]: unknown;
436
+ } | null;
437
+ /**
438
+ * Resources managed by this formation (present on get/create/update)
439
+ */
440
+ resources?: Array<AgentFormationResource>;
441
+ created_at?: Date;
442
+ updated_at?: Date;
443
+ };
444
+ type ValidationError = {
445
+ /**
446
+ * JSON path to the field with the error
447
+ */
448
+ path?: string;
449
+ /**
450
+ * Error description
451
+ */
452
+ message?: string;
453
+ };
454
+ type ValidationResult = {
455
+ valid?: boolean;
456
+ errors?: Array<ValidationError>;
457
+ warnings?: Array<ValidationError>;
458
+ };
459
+ type PlanChange = {
460
+ logical_id?: string;
461
+ resource_type?: string;
462
+ action?: 'create' | 'update' | 'delete' | 'no-op';
463
+ };
464
+ type PlanResult = {
465
+ changes?: Array<PlanChange>;
466
+ };
467
+ type FormationEvent = {
468
+ timestamp?: Date;
469
+ logical_id?: string;
470
+ resource_type?: string;
471
+ action?: string;
472
+ status?: 'succeeded' | 'failed';
473
+ physical_resource_id?: string | null;
474
+ error?: string | null;
475
+ };
476
+ type FormationOperation = {
477
+ /**
478
+ * Public ID of the operation
479
+ */
480
+ id?: string;
481
+ operation_type?: 'validate' | 'plan' | 'create' | 'update' | 'delete';
482
+ status?: 'pending' | 'running' | 'succeeded' | 'failed';
483
+ events?: Array<FormationEvent> | null;
484
+ plan?: PlanResult | null;
485
+ error?: {
486
+ [key: string]: unknown;
487
+ } | null;
488
+ created_at?: Date;
489
+ updated_at?: Date;
490
+ };
350
491
  type AgentTool = {
351
492
  /**
352
493
  * Public ID of the agent tool
@@ -1859,6 +2000,262 @@ type ReplaceActorTagsResponses = {
1859
2000
  };
1860
2001
  };
1861
2002
  type ReplaceActorTagsResponse = ReplaceActorTagsResponses[keyof ReplaceActorTagsResponses];
2003
+ type ValidateAgentFormationData = {
2004
+ body: {
2005
+ template: FormationTemplate;
2006
+ };
2007
+ path?: never;
2008
+ query?: never;
2009
+ url: '/api/v1/agent-formations/validate';
2010
+ };
2011
+ type ValidateAgentFormationErrors = {
2012
+ /**
2013
+ * Unauthorized
2014
+ */
2015
+ 401: unknown;
2016
+ };
2017
+ type ValidateAgentFormationResponses = {
2018
+ /**
2019
+ * Validation result
2020
+ */
2021
+ 200: ValidationResult;
2022
+ };
2023
+ type ValidateAgentFormationResponse = ValidateAgentFormationResponses[keyof ValidateAgentFormationResponses];
2024
+ type PlanAgentFormationData = {
2025
+ body: {
2026
+ /**
2027
+ * Project ID
2028
+ */
2029
+ project_id: string;
2030
+ /**
2031
+ * Existing formation ID to compare against. Omit for new formation planning.
2032
+ *
2033
+ */
2034
+ formation_id?: string;
2035
+ template: FormationTemplate;
2036
+ };
2037
+ path?: never;
2038
+ query?: never;
2039
+ url: '/api/v1/agent-formations/plan';
2040
+ };
2041
+ type PlanAgentFormationErrors = {
2042
+ /**
2043
+ * Bad Request
2044
+ */
2045
+ 400: unknown;
2046
+ /**
2047
+ * Unauthorized
2048
+ */
2049
+ 401: unknown;
2050
+ /**
2051
+ * Forbidden
2052
+ */
2053
+ 403: unknown;
2054
+ };
2055
+ type PlanAgentFormationResponses = {
2056
+ /**
2057
+ * Plan result
2058
+ */
2059
+ 200: PlanResult;
2060
+ };
2061
+ type PlanAgentFormationResponse = PlanAgentFormationResponses[keyof PlanAgentFormationResponses];
2062
+ type ListAgentFormationsData = {
2063
+ body?: never;
2064
+ path?: never;
2065
+ query?: {
2066
+ /**
2067
+ * Project ID (required if not using project key auth)
2068
+ */
2069
+ project_id?: string;
2070
+ };
2071
+ url: '/api/v1/agent-formations';
2072
+ };
2073
+ type ListAgentFormationsErrors = {
2074
+ /**
2075
+ * Unauthorized
2076
+ */
2077
+ 401: unknown;
2078
+ /**
2079
+ * Forbidden
2080
+ */
2081
+ 403: unknown;
2082
+ };
2083
+ type ListAgentFormationsResponses = {
2084
+ /**
2085
+ * List of formations
2086
+ */
2087
+ 200: Array<AgentFormation>;
2088
+ };
2089
+ type ListAgentFormationsResponse = ListAgentFormationsResponses[keyof ListAgentFormationsResponses];
2090
+ type CreateAgentFormationData = {
2091
+ body: {
2092
+ /**
2093
+ * Project ID
2094
+ */
2095
+ project_id: string;
2096
+ /**
2097
+ * Human-readable name for the formation stack
2098
+ */
2099
+ name: string;
2100
+ template: FormationTemplate;
2101
+ metadata?: {
2102
+ [key: string]: unknown;
2103
+ } | null;
2104
+ };
2105
+ path?: never;
2106
+ query?: never;
2107
+ url: '/api/v1/agent-formations';
2108
+ };
2109
+ type CreateAgentFormationErrors = {
2110
+ /**
2111
+ * Bad Request
2112
+ */
2113
+ 400: unknown;
2114
+ /**
2115
+ * Unauthorized
2116
+ */
2117
+ 401: unknown;
2118
+ /**
2119
+ * Forbidden
2120
+ */
2121
+ 403: unknown;
2122
+ /**
2123
+ * Formation with this name already exists
2124
+ */
2125
+ 409: unknown;
2126
+ };
2127
+ type CreateAgentFormationResponses = {
2128
+ /**
2129
+ * Formation created
2130
+ */
2131
+ 201: AgentFormation;
2132
+ };
2133
+ type CreateAgentFormationResponse = CreateAgentFormationResponses[keyof CreateAgentFormationResponses];
2134
+ type DeleteAgentFormationData = {
2135
+ body?: never;
2136
+ path: {
2137
+ formation_id: string;
2138
+ };
2139
+ query?: never;
2140
+ url: '/api/v1/agent-formations/{formation_id}';
2141
+ };
2142
+ type DeleteAgentFormationErrors = {
2143
+ /**
2144
+ * Unauthorized
2145
+ */
2146
+ 401: unknown;
2147
+ /**
2148
+ * Forbidden
2149
+ */
2150
+ 403: unknown;
2151
+ /**
2152
+ * Not Found
2153
+ */
2154
+ 404: unknown;
2155
+ };
2156
+ type DeleteAgentFormationResponses = {
2157
+ /**
2158
+ * Deleted
2159
+ */
2160
+ 204: void;
2161
+ };
2162
+ type DeleteAgentFormationResponse = DeleteAgentFormationResponses[keyof DeleteAgentFormationResponses];
2163
+ type GetAgentFormationData = {
2164
+ body?: never;
2165
+ path: {
2166
+ formation_id: string;
2167
+ };
2168
+ query?: never;
2169
+ url: '/api/v1/agent-formations/{formation_id}';
2170
+ };
2171
+ type GetAgentFormationErrors = {
2172
+ /**
2173
+ * Unauthorized
2174
+ */
2175
+ 401: unknown;
2176
+ /**
2177
+ * Forbidden
2178
+ */
2179
+ 403: unknown;
2180
+ /**
2181
+ * Not Found
2182
+ */
2183
+ 404: unknown;
2184
+ };
2185
+ type GetAgentFormationResponses = {
2186
+ /**
2187
+ * Formation details
2188
+ */
2189
+ 200: AgentFormation;
2190
+ };
2191
+ type GetAgentFormationResponse = GetAgentFormationResponses[keyof GetAgentFormationResponses];
2192
+ type UpdateAgentFormationData = {
2193
+ body?: {
2194
+ template?: FormationTemplate;
2195
+ metadata?: {
2196
+ [key: string]: unknown;
2197
+ } | null;
2198
+ };
2199
+ path: {
2200
+ formation_id: string;
2201
+ };
2202
+ query?: never;
2203
+ url: '/api/v1/agent-formations/{formation_id}';
2204
+ };
2205
+ type UpdateAgentFormationErrors = {
2206
+ /**
2207
+ * Bad Request
2208
+ */
2209
+ 400: unknown;
2210
+ /**
2211
+ * Unauthorized
2212
+ */
2213
+ 401: unknown;
2214
+ /**
2215
+ * Forbidden
2216
+ */
2217
+ 403: unknown;
2218
+ /**
2219
+ * Not Found
2220
+ */
2221
+ 404: unknown;
2222
+ };
2223
+ type UpdateAgentFormationResponses = {
2224
+ /**
2225
+ * Updated formation
2226
+ */
2227
+ 200: AgentFormation;
2228
+ };
2229
+ type UpdateAgentFormationResponse = UpdateAgentFormationResponses[keyof UpdateAgentFormationResponses];
2230
+ type ListAgentFormationEventsData = {
2231
+ body?: never;
2232
+ path: {
2233
+ formation_id: string;
2234
+ };
2235
+ query?: never;
2236
+ url: '/api/v1/agent-formations/{formation_id}/events';
2237
+ };
2238
+ type ListAgentFormationEventsErrors = {
2239
+ /**
2240
+ * Unauthorized
2241
+ */
2242
+ 401: unknown;
2243
+ /**
2244
+ * Forbidden
2245
+ */
2246
+ 403: unknown;
2247
+ /**
2248
+ * Not Found
2249
+ */
2250
+ 404: unknown;
2251
+ };
2252
+ type ListAgentFormationEventsResponses = {
2253
+ /**
2254
+ * List of operations
2255
+ */
2256
+ 200: Array<FormationOperation>;
2257
+ };
2258
+ type ListAgentFormationEventsResponse = ListAgentFormationEventsResponses[keyof ListAgentFormationEventsResponses];
1862
2259
  type ListAgentToolsData = {
1863
2260
  body?: never;
1864
2261
  path?: never;
@@ -4270,6 +4667,11 @@ type ListMemoriesData = {
4270
4667
  * Project ID (required if not using project key auth)
4271
4668
  */
4272
4669
  project_id?: string;
4670
+ /**
4671
+ * Filter memories by tag patterns. Supports glob syntax (`*` matches any substring, `?` matches any single character). Multiple values are ORed — a memory is returned if any of its tags match any of the provided patterns. Omit to return all memories.
4672
+ *
4673
+ */
4674
+ tags?: Array<string>;
4273
4675
  };
4274
4676
  url: '/api/v1/memories';
4275
4677
  };
@@ -6253,6 +6655,62 @@ declare class Actors {
6253
6655
  */
6254
6656
  static replaceActorTags<ThrowOnError extends boolean = false>(options: Options<ReplaceActorTagsData, ThrowOnError>): RequestResult<ReplaceActorTagsResponses, ReplaceActorTagsErrors, ThrowOnError, "fields">;
6255
6657
  }
6658
+ declare class AgentFormations {
6659
+ /**
6660
+ * Validate a formation template
6661
+ *
6662
+ * Validates a formation template without creating any resources. Returns a list of errors and warnings.
6663
+ *
6664
+ */
6665
+ static validateAgentFormation<ThrowOnError extends boolean = false>(options: Options<ValidateAgentFormationData, ThrowOnError>): RequestResult<ValidateAgentFormationResponses, ValidateAgentFormationErrors, ThrowOnError, "fields">;
6666
+ /**
6667
+ * Plan a formation deployment
6668
+ *
6669
+ * Computes a diff between the desired template and the current stack state without making any changes. Returns the list of planned actions.
6670
+ *
6671
+ */
6672
+ static planAgentFormation<ThrowOnError extends boolean = false>(options: Options<PlanAgentFormationData, ThrowOnError>): RequestResult<PlanAgentFormationResponses, PlanAgentFormationErrors, ThrowOnError, "fields">;
6673
+ /**
6674
+ * List agent formations
6675
+ *
6676
+ * Returns all formation stacks for a project
6677
+ */
6678
+ static listAgentFormations<ThrowOnError extends boolean = false>(options?: Options<ListAgentFormationsData, ThrowOnError>): RequestResult<ListAgentFormationsResponses, ListAgentFormationsErrors, ThrowOnError, "fields">;
6679
+ /**
6680
+ * Create a new agent formation
6681
+ *
6682
+ * Validates the template, creates the formation record, then provisions all declared resources in dependency order.
6683
+ *
6684
+ */
6685
+ static createAgentFormation<ThrowOnError extends boolean = false>(options: Options<CreateAgentFormationData, ThrowOnError>): RequestResult<CreateAgentFormationResponses, CreateAgentFormationErrors, ThrowOnError, "fields">;
6686
+ /**
6687
+ * Delete an agent formation
6688
+ *
6689
+ * Deletes the formation stack and all its managed resources in reverse dependency order.
6690
+ *
6691
+ */
6692
+ static deleteAgentFormation<ThrowOnError extends boolean = false>(options: Options<DeleteAgentFormationData, ThrowOnError>): RequestResult<DeleteAgentFormationResponses, DeleteAgentFormationErrors, ThrowOnError, "fields">;
6693
+ /**
6694
+ * Get a specific agent formation
6695
+ *
6696
+ * Returns the formation stack including its current resources.
6697
+ */
6698
+ static getAgentFormation<ThrowOnError extends boolean = false>(options: Options<GetAgentFormationData, ThrowOnError>): RequestResult<GetAgentFormationResponses, GetAgentFormationErrors, ThrowOnError, "fields">;
6699
+ /**
6700
+ * Update an agent formation
6701
+ *
6702
+ * Applies a new template to the formation. Resources are created, updated, or deleted to reconcile the current state with the desired state.
6703
+ *
6704
+ */
6705
+ static updateAgentFormation<ThrowOnError extends boolean = false>(options: Options<UpdateAgentFormationData, ThrowOnError>): RequestResult<UpdateAgentFormationResponses, UpdateAgentFormationErrors, ThrowOnError, "fields">;
6706
+ /**
6707
+ * List formation operation events
6708
+ *
6709
+ * Returns all operations (create, update, delete) with their event logs for the formation, ordered chronologically.
6710
+ *
6711
+ */
6712
+ static listAgentFormationEvents<ThrowOnError extends boolean = false>(options: Options<ListAgentFormationEventsData, ThrowOnError>): RequestResult<ListAgentFormationEventsResponses, ListAgentFormationEventsErrors, ThrowOnError, "fields">;
6713
+ }
6256
6714
  declare class AgentTools {
6257
6715
  /**
6258
6716
  * List agent tools
@@ -7074,4 +7532,4 @@ declare class SoatClient {
7074
7532
  constructor({ baseUrl, token, headers }?: SoatClientOptions);
7075
7533
  }
7076
7534
 
7077
- export { type ActorRecord, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentId, type AgentTool, AgentTools, Agents, AiProviders, type ApiKeyCreated, type ApiKeyRecord, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentActorData, type CreateAgentActorError, type CreateAgentActorErrors, type CreateAgentActorResponse, type CreateAgentActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAgentSessionData, type CreateAgentSessionError, type CreateAgentSessionErrors, type CreateAgentSessionResponse, type CreateAgentSessionResponses, type CreateAgentToolData, type CreateAgentToolError, type CreateAgentToolErrors, type CreateAgentToolRequest, type CreateAgentToolResponse, type CreateAgentToolResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatActorData, type CreateChatActorError, type CreateChatActorErrors, type CreateChatActorResponse, type CreateChatActorResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionRequest, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAgentSessionData, type DeleteAgentSessionError, type DeleteAgentSessionErrors, type DeleteAgentSessionResponse, type DeleteAgentSessionResponses, type DeleteAgentToolData, type DeleteAgentToolError, type DeleteAgentToolErrors, type DeleteAgentToolResponse, type DeleteAgentToolResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentRecord, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, type ErrorResponse, type FileRecord, Files, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAgentSessionData, type GetAgentSessionError, type GetAgentSessionErrors, type GetAgentSessionResponse, type GetAgentSessionResponses, type GetAgentToolData, type GetAgentToolError, type GetAgentToolErrors, type GetAgentToolResponse, type GetAgentToolResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserPoliciesData, type GetUserPoliciesErrors, type GetUserPoliciesResponse, type GetUserPoliciesResponses, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentSessionMessagesData, type ListAgentSessionMessagesError, type ListAgentSessionMessagesErrors, type ListAgentSessionMessagesResponse, type ListAgentSessionMessagesResponses, type ListAgentSessionsData, type ListAgentSessionsError, type ListAgentSessionsErrors, type ListAgentSessionsResponse, type ListAgentSessionsResponses, type ListAgentToolsData, type ListAgentToolsError, type ListAgentToolsErrors, type ListAgentToolsResponse, type ListAgentToolsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationActorsData, type ListConversationActorsError, type ListConversationActorsErrors, type ListConversationActorsResponse, type ListConversationActorsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type Options, Policies, type PolicyDocument, type PolicyRecord, type PolicyStatement, type ProjectRecord, Projects, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, Secrets, type SendSessionMessageResponse, type SessionId, type SessionMessage, type SessionRecord, Sessions, SoatClient, type SoatClientOptions, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAgentToolData, type UpdateAgentToolError, type UpdateAgentToolErrors, type UpdateAgentToolRequest, type UpdateAgentToolResponse, type UpdateAgentToolResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UserRecord, Users, type Webhook, type WebhookWithSecret, Webhooks, createClient, createConfig };
7535
+ export { type ActorRecord, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentFormation, type AgentFormationResource, AgentFormations, type AgentGenerationResponse, type AgentId, type AgentTool, AgentTools, Agents, AiProviders, type ApiKeyCreated, type ApiKeyRecord, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentActorData, type CreateAgentActorError, type CreateAgentActorErrors, type CreateAgentActorResponse, type CreateAgentActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentFormationData, type CreateAgentFormationErrors, type CreateAgentFormationResponse, type CreateAgentFormationResponses, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAgentSessionData, type CreateAgentSessionError, type CreateAgentSessionErrors, type CreateAgentSessionResponse, type CreateAgentSessionResponses, type CreateAgentToolData, type CreateAgentToolError, type CreateAgentToolErrors, type CreateAgentToolRequest, type CreateAgentToolResponse, type CreateAgentToolResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatActorData, type CreateChatActorError, type CreateChatActorErrors, type CreateChatActorResponse, type CreateChatActorResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionRequest, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentFormationData, type DeleteAgentFormationErrors, type DeleteAgentFormationResponse, type DeleteAgentFormationResponses, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAgentSessionData, type DeleteAgentSessionError, type DeleteAgentSessionErrors, type DeleteAgentSessionResponse, type DeleteAgentSessionResponses, type DeleteAgentToolData, type DeleteAgentToolError, type DeleteAgentToolErrors, type DeleteAgentToolResponse, type DeleteAgentToolResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentRecord, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, type ErrorResponse, type FileRecord, Files, type FormationEvent, type FormationOperation, type FormationTemplate, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentFormationData, type GetAgentFormationErrors, type GetAgentFormationResponse, type GetAgentFormationResponses, type GetAgentResponse, type GetAgentResponses, type GetAgentSessionData, type GetAgentSessionError, type GetAgentSessionErrors, type GetAgentSessionResponse, type GetAgentSessionResponses, type GetAgentToolData, type GetAgentToolError, type GetAgentToolErrors, type GetAgentToolResponse, type GetAgentToolResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserPoliciesData, type GetUserPoliciesErrors, type GetUserPoliciesResponse, type GetUserPoliciesResponses, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentFormationEventsData, type ListAgentFormationEventsErrors, type ListAgentFormationEventsResponse, type ListAgentFormationEventsResponses, type ListAgentFormationsData, type ListAgentFormationsErrors, type ListAgentFormationsResponse, type ListAgentFormationsResponses, type ListAgentSessionMessagesData, type ListAgentSessionMessagesError, type ListAgentSessionMessagesErrors, type ListAgentSessionMessagesResponse, type ListAgentSessionMessagesResponses, type ListAgentSessionsData, type ListAgentSessionsError, type ListAgentSessionsErrors, type ListAgentSessionsResponse, type ListAgentSessionsResponses, type ListAgentToolsData, type ListAgentToolsError, type ListAgentToolsErrors, type ListAgentToolsResponse, type ListAgentToolsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationActorsData, type ListConversationActorsError, type ListConversationActorsErrors, type ListConversationActorsResponse, type ListConversationActorsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type Options, type PlanAgentFormationData, type PlanAgentFormationErrors, type PlanAgentFormationResponse, type PlanAgentFormationResponses, type PlanChange, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyStatement, type ProjectRecord, Projects, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type ResourceDeclaration, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, Secrets, type SendSessionMessageResponse, type SessionId, type SessionMessage, type SessionRecord, Sessions, SoatClient, type SoatClientOptions, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentFormationData, type UpdateAgentFormationErrors, type UpdateAgentFormationResponse, type UpdateAgentFormationResponses, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAgentToolData, type UpdateAgentToolError, type UpdateAgentToolErrors, type UpdateAgentToolRequest, type UpdateAgentToolResponse, type UpdateAgentToolResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UserRecord, Users, type ValidateAgentFormationData, type ValidateAgentFormationErrors, type ValidateAgentFormationResponse, type ValidateAgentFormationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookWithSecret, Webhooks, createClient, createConfig };