@soat/sdk 0.5.1 → 0.5.3

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/index.d.ts CHANGED
@@ -338,6 +338,10 @@ type ActorRecord = {
338
338
  * Chat this actor is linked to (mutually exclusive with agentId).
339
339
  */
340
340
  chat_id?: string | null;
341
+ /**
342
+ * Memory container linked to this actor.
343
+ */
344
+ memory_id?: string | null;
341
345
  tags?: {
342
346
  [key: string]: string;
343
347
  };
@@ -347,6 +351,152 @@ type ActorRecord = {
347
351
  type ErrorResponse = {
348
352
  error?: string;
349
353
  };
354
+ /**
355
+ * A formation template supplied as either a JSON object or a YAML/JSON string. When a string is provided the server parses it with a YAML parser (JSON is valid YAML) before processing.
356
+ *
357
+ */
358
+ type FormationTemplateInput = FormationTemplate | string;
359
+ type FormationTemplate = {
360
+ /**
361
+ * Map of logical resource IDs to resource declarations
362
+ */
363
+ resources: {
364
+ [key: string]: ResourceDeclaration;
365
+ };
366
+ /**
367
+ * Map of output names to values. Values may use `{ "ref": "logicalId" }` to reference physical IDs of created resources.
368
+ *
369
+ */
370
+ outputs?: {
371
+ [key: string]: unknown;
372
+ } | null;
373
+ metadata?: {
374
+ [key: string]: unknown;
375
+ } | null;
376
+ };
377
+ type ResourceDeclaration = {
378
+ /**
379
+ * Resource type
380
+ */
381
+ type: 'ai_provider' | 'agent_tool' | 'agent' | 'document' | 'memory' | 'memory_entry' | 'webhook';
382
+ /**
383
+ * Resource properties. Values may use `{ "ref": "logicalId" }` to reference physical IDs of other resources in the template.
384
+ *
385
+ */
386
+ properties: {
387
+ [key: string]: unknown;
388
+ };
389
+ /**
390
+ * Explicit dependency list. In addition to implicit `ref` dependencies.
391
+ */
392
+ depends_on?: Array<string> | null;
393
+ metadata?: {
394
+ [key: string]: unknown;
395
+ } | null;
396
+ };
397
+ type AgentFormationResource = {
398
+ /**
399
+ * Public ID of the resource record
400
+ */
401
+ id?: string;
402
+ /**
403
+ * Logical identifier from the template
404
+ */
405
+ logical_id?: string;
406
+ /**
407
+ * Resource type (e.g. agent, memory)
408
+ */
409
+ resource_type?: string;
410
+ /**
411
+ * Public ID of the physical SOAT resource
412
+ */
413
+ physical_resource_id?: string | null;
414
+ /**
415
+ * Current resource status
416
+ */
417
+ status?: 'pending' | 'created' | 'updated' | 'deleted' | 'failed';
418
+ };
419
+ type AgentFormation = {
420
+ /**
421
+ * Public ID of the formation
422
+ */
423
+ id?: string;
424
+ /**
425
+ * Project public ID
426
+ */
427
+ project_id?: string;
428
+ /**
429
+ * Human-readable formation name
430
+ */
431
+ name?: string;
432
+ template?: FormationTemplate;
433
+ /**
434
+ * Resolved output values after stack deployment
435
+ */
436
+ outputs?: {
437
+ [key: string]: string;
438
+ } | null;
439
+ /**
440
+ * Formation status
441
+ */
442
+ status?: 'creating' | 'active' | 'updating' | 'failed' | 'deleting' | 'deleted' | 'delete_failed';
443
+ metadata?: {
444
+ [key: string]: unknown;
445
+ } | null;
446
+ /**
447
+ * Resources managed by this formation (present on get/create/update)
448
+ */
449
+ resources?: Array<AgentFormationResource>;
450
+ created_at?: Date;
451
+ updated_at?: Date;
452
+ };
453
+ type ValidationError = {
454
+ /**
455
+ * JSON path to the field with the error
456
+ */
457
+ path?: string;
458
+ /**
459
+ * Error description
460
+ */
461
+ message?: string;
462
+ };
463
+ type ValidationResult = {
464
+ valid?: boolean;
465
+ errors?: Array<ValidationError>;
466
+ warnings?: Array<ValidationError>;
467
+ };
468
+ type PlanChange = {
469
+ logical_id?: string;
470
+ resource_type?: string;
471
+ action?: 'create' | 'update' | 'delete' | 'no-op';
472
+ };
473
+ type PlanResult = {
474
+ changes?: Array<PlanChange>;
475
+ };
476
+ type FormationEvent = {
477
+ timestamp?: Date;
478
+ logical_id?: string;
479
+ resource_type?: string;
480
+ action?: string;
481
+ status?: 'succeeded' | 'failed';
482
+ physical_resource_id?: string | null;
483
+ error?: string | null;
484
+ };
485
+ type FormationOperation = {
486
+ /**
487
+ * Public ID of the operation
488
+ */
489
+ id?: string;
490
+ operation_type?: 'validate' | 'plan' | 'create' | 'update' | 'delete';
491
+ status?: 'pending' | 'running' | 'succeeded' | 'failed';
492
+ events?: Array<FormationEvent> | null;
493
+ plan?: PlanResult | null;
494
+ error?: {
495
+ [key: string]: unknown;
496
+ } | null;
497
+ created_at?: Date;
498
+ updated_at?: Date;
499
+ };
350
500
  type AgentTool = {
351
501
  /**
352
502
  * Public ID of the agent tool
@@ -1611,6 +1761,14 @@ type CreateActorData = {
1611
1761
  * Optional external identifier (e.g. WhatsApp phone number). If provided and an actor with this externalId already exists in the project, the existing actor is returned (idempotent — 200 OK).
1612
1762
  */
1613
1763
  external_id?: string;
1764
+ /**
1765
+ * Memory ID to link to this actor. Mutually exclusive with auto_create_memory.
1766
+ */
1767
+ memory_id?: string | null;
1768
+ /**
1769
+ * When true, automatically creates a new memory container for this actor and links it. Ignored if memory_id is set. With external_id (idempotent), memory is only created on first creation.
1770
+ */
1771
+ auto_create_memory?: boolean;
1614
1772
  };
1615
1773
  path?: never;
1616
1774
  query?: never;
@@ -1715,6 +1873,10 @@ type UpdateActorData = {
1715
1873
  * Persona-specific instructions
1716
1874
  */
1717
1875
  instructions?: string;
1876
+ /**
1877
+ * Memory ID to link to this actor. Set to null to unlink.
1878
+ */
1879
+ memory_id?: string | null;
1718
1880
  tags?: {
1719
1881
  [key: string]: string;
1720
1882
  };
@@ -1859,6 +2021,261 @@ type ReplaceActorTagsResponses = {
1859
2021
  };
1860
2022
  };
1861
2023
  type ReplaceActorTagsResponse = ReplaceActorTagsResponses[keyof ReplaceActorTagsResponses];
2024
+ type ValidateAgentFormationData = {
2025
+ body: {
2026
+ template: FormationTemplateInput;
2027
+ };
2028
+ path?: never;
2029
+ query?: never;
2030
+ url: '/api/v1/agent-formations/validate';
2031
+ };
2032
+ type ValidateAgentFormationErrors = {
2033
+ /**
2034
+ * Unauthorized
2035
+ */
2036
+ 401: unknown;
2037
+ };
2038
+ type ValidateAgentFormationResponses = {
2039
+ /**
2040
+ * Validation result
2041
+ */
2042
+ 200: ValidationResult;
2043
+ };
2044
+ type ValidateAgentFormationResponse = ValidateAgentFormationResponses[keyof ValidateAgentFormationResponses];
2045
+ type PlanAgentFormationData = {
2046
+ body: {
2047
+ /**
2048
+ * Project ID
2049
+ */
2050
+ project_id: string;
2051
+ /**
2052
+ * Existing formation ID to compare against. Omit for new formation planning.
2053
+ */
2054
+ formation_id?: string;
2055
+ template: FormationTemplateInput;
2056
+ };
2057
+ path?: never;
2058
+ query?: never;
2059
+ url: '/api/v1/agent-formations/plan';
2060
+ };
2061
+ type PlanAgentFormationErrors = {
2062
+ /**
2063
+ * Bad Request
2064
+ */
2065
+ 400: unknown;
2066
+ /**
2067
+ * Unauthorized
2068
+ */
2069
+ 401: unknown;
2070
+ /**
2071
+ * Forbidden
2072
+ */
2073
+ 403: unknown;
2074
+ };
2075
+ type PlanAgentFormationResponses = {
2076
+ /**
2077
+ * Plan result
2078
+ */
2079
+ 200: PlanResult;
2080
+ };
2081
+ type PlanAgentFormationResponse = PlanAgentFormationResponses[keyof PlanAgentFormationResponses];
2082
+ type ListAgentFormationsData = {
2083
+ body?: never;
2084
+ path?: never;
2085
+ query?: {
2086
+ /**
2087
+ * Project ID (required if not using project key auth)
2088
+ */
2089
+ project_id?: string;
2090
+ };
2091
+ url: '/api/v1/agent-formations';
2092
+ };
2093
+ type ListAgentFormationsErrors = {
2094
+ /**
2095
+ * Unauthorized
2096
+ */
2097
+ 401: unknown;
2098
+ /**
2099
+ * Forbidden
2100
+ */
2101
+ 403: unknown;
2102
+ };
2103
+ type ListAgentFormationsResponses = {
2104
+ /**
2105
+ * List of formations
2106
+ */
2107
+ 200: Array<AgentFormation>;
2108
+ };
2109
+ type ListAgentFormationsResponse = ListAgentFormationsResponses[keyof ListAgentFormationsResponses];
2110
+ type CreateAgentFormationData = {
2111
+ body: {
2112
+ /**
2113
+ * Project ID
2114
+ */
2115
+ project_id: string;
2116
+ /**
2117
+ * Human-readable name for the formation stack
2118
+ */
2119
+ name: string;
2120
+ template: FormationTemplateInput;
2121
+ metadata?: {
2122
+ [key: string]: unknown;
2123
+ } | null;
2124
+ };
2125
+ path?: never;
2126
+ query?: never;
2127
+ url: '/api/v1/agent-formations';
2128
+ };
2129
+ type CreateAgentFormationErrors = {
2130
+ /**
2131
+ * Bad Request
2132
+ */
2133
+ 400: unknown;
2134
+ /**
2135
+ * Unauthorized
2136
+ */
2137
+ 401: unknown;
2138
+ /**
2139
+ * Forbidden
2140
+ */
2141
+ 403: unknown;
2142
+ /**
2143
+ * Formation with this name already exists
2144
+ */
2145
+ 409: unknown;
2146
+ };
2147
+ type CreateAgentFormationResponses = {
2148
+ /**
2149
+ * Formation created
2150
+ */
2151
+ 201: AgentFormation;
2152
+ };
2153
+ type CreateAgentFormationResponse = CreateAgentFormationResponses[keyof CreateAgentFormationResponses];
2154
+ type DeleteAgentFormationData = {
2155
+ body?: never;
2156
+ path: {
2157
+ formation_id: string;
2158
+ };
2159
+ query?: never;
2160
+ url: '/api/v1/agent-formations/{formation_id}';
2161
+ };
2162
+ type DeleteAgentFormationErrors = {
2163
+ /**
2164
+ * Unauthorized
2165
+ */
2166
+ 401: unknown;
2167
+ /**
2168
+ * Forbidden
2169
+ */
2170
+ 403: unknown;
2171
+ /**
2172
+ * Not Found
2173
+ */
2174
+ 404: unknown;
2175
+ };
2176
+ type DeleteAgentFormationResponses = {
2177
+ /**
2178
+ * Deleted
2179
+ */
2180
+ 204: void;
2181
+ };
2182
+ type DeleteAgentFormationResponse = DeleteAgentFormationResponses[keyof DeleteAgentFormationResponses];
2183
+ type GetAgentFormationData = {
2184
+ body?: never;
2185
+ path: {
2186
+ formation_id: string;
2187
+ };
2188
+ query?: never;
2189
+ url: '/api/v1/agent-formations/{formation_id}';
2190
+ };
2191
+ type GetAgentFormationErrors = {
2192
+ /**
2193
+ * Unauthorized
2194
+ */
2195
+ 401: unknown;
2196
+ /**
2197
+ * Forbidden
2198
+ */
2199
+ 403: unknown;
2200
+ /**
2201
+ * Not Found
2202
+ */
2203
+ 404: unknown;
2204
+ };
2205
+ type GetAgentFormationResponses = {
2206
+ /**
2207
+ * Formation details
2208
+ */
2209
+ 200: AgentFormation;
2210
+ };
2211
+ type GetAgentFormationResponse = GetAgentFormationResponses[keyof GetAgentFormationResponses];
2212
+ type UpdateAgentFormationData = {
2213
+ body?: {
2214
+ template?: FormationTemplateInput;
2215
+ metadata?: {
2216
+ [key: string]: unknown;
2217
+ } | null;
2218
+ };
2219
+ path: {
2220
+ formation_id: string;
2221
+ };
2222
+ query?: never;
2223
+ url: '/api/v1/agent-formations/{formation_id}';
2224
+ };
2225
+ type UpdateAgentFormationErrors = {
2226
+ /**
2227
+ * Bad Request
2228
+ */
2229
+ 400: unknown;
2230
+ /**
2231
+ * Unauthorized
2232
+ */
2233
+ 401: unknown;
2234
+ /**
2235
+ * Forbidden
2236
+ */
2237
+ 403: unknown;
2238
+ /**
2239
+ * Not Found
2240
+ */
2241
+ 404: unknown;
2242
+ };
2243
+ type UpdateAgentFormationResponses = {
2244
+ /**
2245
+ * Updated formation
2246
+ */
2247
+ 200: AgentFormation;
2248
+ };
2249
+ type UpdateAgentFormationResponse = UpdateAgentFormationResponses[keyof UpdateAgentFormationResponses];
2250
+ type ListAgentFormationEventsData = {
2251
+ body?: never;
2252
+ path: {
2253
+ formation_id: string;
2254
+ };
2255
+ query?: never;
2256
+ url: '/api/v1/agent-formations/{formation_id}/events';
2257
+ };
2258
+ type ListAgentFormationEventsErrors = {
2259
+ /**
2260
+ * Unauthorized
2261
+ */
2262
+ 401: unknown;
2263
+ /**
2264
+ * Forbidden
2265
+ */
2266
+ 403: unknown;
2267
+ /**
2268
+ * Not Found
2269
+ */
2270
+ 404: unknown;
2271
+ };
2272
+ type ListAgentFormationEventsResponses = {
2273
+ /**
2274
+ * List of operations
2275
+ */
2276
+ 200: Array<FormationOperation>;
2277
+ };
2278
+ type ListAgentFormationEventsResponse = ListAgentFormationEventsResponses[keyof ListAgentFormationEventsResponses];
1862
2279
  type ListAgentToolsData = {
1863
2280
  body?: never;
1864
2281
  path?: never;
@@ -4270,6 +4687,11 @@ type ListMemoriesData = {
4270
4687
  * Project ID (required if not using project key auth)
4271
4688
  */
4272
4689
  project_id?: string;
4690
+ /**
4691
+ * 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.
4692
+ *
4693
+ */
4694
+ tags?: Array<string>;
4273
4695
  };
4274
4696
  url: '/api/v1/memories';
4275
4697
  };
@@ -6253,6 +6675,62 @@ declare class Actors {
6253
6675
  */
6254
6676
  static replaceActorTags<ThrowOnError extends boolean = false>(options: Options<ReplaceActorTagsData, ThrowOnError>): RequestResult<ReplaceActorTagsResponses, ReplaceActorTagsErrors, ThrowOnError, "fields">;
6255
6677
  }
6678
+ declare class AgentFormations {
6679
+ /**
6680
+ * Validate a formation template
6681
+ *
6682
+ * Validates a formation template without creating any resources. Returns a list of errors and warnings. Accepts the template as a JSON object or as a YAML/JSON string.
6683
+ *
6684
+ */
6685
+ static validateAgentFormation<ThrowOnError extends boolean = false>(options: Options<ValidateAgentFormationData, ThrowOnError>): RequestResult<ValidateAgentFormationResponses, ValidateAgentFormationErrors, ThrowOnError, "fields">;
6686
+ /**
6687
+ * Plan a formation deployment
6688
+ *
6689
+ * Computes a diff between the desired template and the current stack state without making any changes. Returns the list of planned actions.
6690
+ *
6691
+ */
6692
+ static planAgentFormation<ThrowOnError extends boolean = false>(options: Options<PlanAgentFormationData, ThrowOnError>): RequestResult<PlanAgentFormationResponses, PlanAgentFormationErrors, ThrowOnError, "fields">;
6693
+ /**
6694
+ * List agent formations
6695
+ *
6696
+ * Returns all formation stacks for a project
6697
+ */
6698
+ static listAgentFormations<ThrowOnError extends boolean = false>(options?: Options<ListAgentFormationsData, ThrowOnError>): RequestResult<ListAgentFormationsResponses, ListAgentFormationsErrors, ThrowOnError, "fields">;
6699
+ /**
6700
+ * Create a new agent formation
6701
+ *
6702
+ * Validates the template, creates the formation record, then provisions all declared resources in dependency order.
6703
+ *
6704
+ */
6705
+ static createAgentFormation<ThrowOnError extends boolean = false>(options: Options<CreateAgentFormationData, ThrowOnError>): RequestResult<CreateAgentFormationResponses, CreateAgentFormationErrors, ThrowOnError, "fields">;
6706
+ /**
6707
+ * Delete an agent formation
6708
+ *
6709
+ * Deletes the formation stack and all its managed resources in reverse dependency order.
6710
+ *
6711
+ */
6712
+ static deleteAgentFormation<ThrowOnError extends boolean = false>(options: Options<DeleteAgentFormationData, ThrowOnError>): RequestResult<DeleteAgentFormationResponses, DeleteAgentFormationErrors, ThrowOnError, "fields">;
6713
+ /**
6714
+ * Get a specific agent formation
6715
+ *
6716
+ * Returns the formation stack including its current resources.
6717
+ */
6718
+ static getAgentFormation<ThrowOnError extends boolean = false>(options: Options<GetAgentFormationData, ThrowOnError>): RequestResult<GetAgentFormationResponses, GetAgentFormationErrors, ThrowOnError, "fields">;
6719
+ /**
6720
+ * Update an agent formation
6721
+ *
6722
+ * Applies a new template to the formation. Resources are created, updated, or deleted to reconcile the current state with the desired state.
6723
+ *
6724
+ */
6725
+ static updateAgentFormation<ThrowOnError extends boolean = false>(options: Options<UpdateAgentFormationData, ThrowOnError>): RequestResult<UpdateAgentFormationResponses, UpdateAgentFormationErrors, ThrowOnError, "fields">;
6726
+ /**
6727
+ * List formation operation events
6728
+ *
6729
+ * Returns all operations (create, update, delete) with their event logs for the formation, ordered chronologically.
6730
+ *
6731
+ */
6732
+ static listAgentFormationEvents<ThrowOnError extends boolean = false>(options: Options<ListAgentFormationEventsData, ThrowOnError>): RequestResult<ListAgentFormationEventsResponses, ListAgentFormationEventsErrors, ThrowOnError, "fields">;
6733
+ }
6256
6734
  declare class AgentTools {
6257
6735
  /**
6258
6736
  * List agent tools
@@ -7074,4 +7552,4 @@ declare class SoatClient {
7074
7552
  constructor({ baseUrl, token, headers }?: SoatClientOptions);
7075
7553
  }
7076
7554
 
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 };
7555
+ 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 FormationTemplateInput, 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 };